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