initial commit, lordsawar source, slightly modified
[lordsawar] / src / editor / tileset-selector-editor-dialog.h
1 //  Copyright (C) 2008, 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_SELECTOR_EDITOR_DIALOG_H
19 #define TILESET_SELECTOR_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
28
29 //! Tileset selector editor.  
30 //! Shows and manages the large and small army unit selector animation.
31 class TilesetSelectorEditorDialog: public sigc::trackable
32 {
33  public:
34     TilesetSelectorEditorDialog(Tileset * tileset);
35     ~TilesetSelectorEditorDialog();
36
37     void set_icon_from_file(std::string name) {dialog->set_icon_from_file(name);};
38     std::string get_small_selector_filename() {return small_filename;};
39     std::string get_large_selector_filename() {return large_filename;};
40
41     void set_parent_window(Gtk::Window &parent);
42
43     int run();
44     
45  private:
46     Gtk::Dialog* dialog;
47     Gtk::RadioButton *large_selector_radiobutton;
48     Gtk::RadioButton *small_selector_radiobutton;
49     Gtk::FileChooserButton *selector_filechooserbutton;
50     Gtk::ComboBoxText *shield_theme_combobox;
51     Gtk::Table *preview_table;
52     Tileset *d_tileset;
53
54     void setup_shield_theme_combobox(Gtk::Box *box);
55     void shieldset_changed();
56     void on_image_chosen();
57     void on_large_toggled();
58     void on_small_toggled();
59     void update_selector_panel();
60     void show_preview_selectors(std::string filename);
61
62     bool loadSelector(std::string filename);
63     void clearSelector();
64     std::map< guint32, std::list<Glib::RefPtr<Gdk::Pixbuf> >* > selectors;
65     sigc::connection heartbeat;
66     std::map<guint32, std::list<Glib::RefPtr<Gdk::Pixbuf> >::iterator> frame;
67
68     void on_heartbeat();
69     std::string small_filename;
70     std::string large_filename;
71
72 };
73
74 #endif