initial commit, lordsawar source, slightly modified
[lordsawar] / src / editor / tileset-flag-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_FLAG_EDITOR_DIALOG_H
19 #define TILESET_FLAG_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 flag editor.  
30 //! Shows and manages the flags that appear on stacks
31 class TilesetFlagEditorDialog: public sigc::trackable
32 {
33  public:
34     TilesetFlagEditorDialog(Tileset * tileset);
35     ~TilesetFlagEditorDialog();
36
37     std::string get_selected_filename() {return selected_filename;};
38     void set_icon_from_file(std::string name) {dialog->set_icon_from_file(name);};
39
40     void set_parent_window(Gtk::Window &parent);
41
42     int run();
43     
44  private:
45     Gtk::Dialog* dialog;
46     Gtk::FileChooserButton *flag_filechooserbutton;
47     Gtk::ComboBoxText *shield_theme_combobox;
48     Gtk::Table *preview_table;
49     Tileset *d_tileset;
50     std::string selected_filename;
51
52     void setup_shield_theme_combobox(Gtk::Box *box);
53     void shieldset_changed();
54     void on_image_chosen();
55     void update_flag_panel();
56     void show_preview_flags(std::string filename);
57
58     bool loadFlag(std::string filename);
59     void clearFlag();
60     std::map< guint32, std::list<Glib::RefPtr<Gdk::Pixbuf> >* > flags;
61     sigc::connection heartbeat;
62     std::map<guint32, std::list<Glib::RefPtr<Gdk::Pixbuf> >::iterator> frame;
63
64     void on_heartbeat();
65
66 };
67
68 #endif