initial commit, lordsawar source, slightly modified
[lordsawar] / src / editor / masked-image-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 MASKED_IMAGE_EDITOR_DIALOG_H
19 #define MASKED_IMAGE_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
27
28 //! general picture editor.  
29 /**
30  * This class doesn't actually edit the image, instead it shows the image
31  * being edited in each player colour.  The user can pick a new file to be
32  * the new image.
33  */
34 class MaskedImageEditorDialog: public sigc::trackable
35 {
36  public:
37     MaskedImageEditorDialog(std::string filename);
38     ~MaskedImageEditorDialog();
39
40     void set_parent_window(Gtk::Window &parent);
41
42   
43     void set_icon_from_file(std::string name) {dialog->set_icon_from_file(name);};
44     std::string get_selected_filename() {return target_filename;};
45
46     int run();
47     
48  private:
49     std::string target_filename;
50     Gtk::Dialog* dialog;
51     Gtk::FileChooserButton *filechooserbutton;
52     Gtk::Image *image_white;
53     Gtk::Image *image_green;
54     Gtk::Image *image_yellow;
55     Gtk::Image *image_light_blue;
56     Gtk::Image *image_red;
57     Gtk::Image *image_dark_blue;
58     Gtk::Image *image_orange;
59     Gtk::Image *image_black;
60     Gtk::Image *image_neutral;
61     void on_image_chosen();
62     void show_image(std::string filename);
63     void update_panel();
64
65 };
66
67 #endif