initial commit, lordsawar source, slightly modified
[lordsawar] / src / editor / tileset-explosion-picture-editor-dialog.h
1 //  Copyright (C) 2009 Ben Asselstine
2 //
3 //  This program is free software; you can redistribute it and/or modify
4 //  it under the terms of the GNU General Public License as published by
5 //  the Free Software Foundation; either version 3 of the License, or
6 //  (at your option) any later version.
7 //
8 //  This program is distributed in the hope that it will be useful,
9 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
10 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 //  GNU Library General Public License for more details.
12 //
13 //  You should have received a copy of the GNU General Public License
14 //  along with this program; if not, write to the Free Software
15 //  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 
16 //  02110-1301, USA.
17
18 #ifndef TILESET_EXPLOSION_PICTURE_EDITOR_DIALOG_H
19 #define TILESET_EXPLOSION_PICTURE_EDITOR_DIALOG_H
20
21 #include <memory>
22 #include <map>
23 #include <sigc++/trackable.h>
24 #include <sigc++/connection.h>
25 #include <gtkmm.h>
26 #include "tileset.h"
27 #include "tile-preview-scene.h"
28
29
30 //! Tileset explosion picture editor.  
31 class TilesetExplosionPictureEditorDialog: public sigc::trackable
32 {
33  public:
34     TilesetExplosionPictureEditorDialog(Tileset * tileset);
35     ~TilesetExplosionPictureEditorDialog();
36
37     void set_parent_window(Gtk::Window &parent);
38
39     void set_icon_from_file(std::string name) {dialog->set_icon_from_file(name);};
40     std::string get_selected_filename() {return selected_filename;};
41     int run();
42     
43  private:
44     Gtk::Dialog* dialog;
45     Gtk::RadioButton *large_explosion_radiobutton;
46     Gtk::RadioButton *small_explosion_radiobutton;
47     Gtk::FileChooserButton *explosion_filechooserbutton;
48     Gtk::Image *scene_image;
49     Tileset *d_tileset;
50     std::string selected_filename;
51
52     void on_image_chosen();
53     void on_large_toggled();
54     void on_small_toggled();
55     void show_explosion_image(std::string filename);
56     void update_panel();
57
58     void update_scene(TilePreviewScene *scene, std::string filename);
59
60 };
61
62 #endif