initial commit, lordsawar source, slightly modified
[lordsawar] / src / editor / map-info-dialog.h
1 //  Copyright (C) 2007 Ole Laursen
2 //  Copyright (C) 2007, 2008, 2009 Ben Asselstine
3 //
4 //  This program is free software; you can redistribute it and/or modify
5 //  it under the terms of the GNU General Public License as published by
6 //  the Free Software Foundation; either version 3 of the License, or
7 //  (at your option) any later version.
8 //
9 //  This program is distributed in the hope that it will be useful,
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 //  GNU Library General Public License for more details.
13 //
14 //  You should have received a copy of the GNU General Public License
15 //  along with this program; if not, write to the Free Software
16 //  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 
17 //  02110-1301, USA.
18
19 #ifndef MAP_INFO_DIALOG_H
20 #define MAP_INFO_DIALOG_H
21
22 #include <memory>
23 #include <sigc++/trackable.h>
24 #include <gtkmm.h>
25
26 class GameScenario;
27
28 //! Scenario editor.  Edits the description of the scenario.
29 class MapInfoDialog: public sigc::trackable
30 {
31  public:
32     MapInfoDialog(GameScenario *game_scenario);
33     ~MapInfoDialog();
34
35     void set_parent_window(Gtk::Window &parent);
36
37     int run();
38     
39  private:
40     Gtk::Dialog* dialog;
41     Gtk::Entry *name_entry;
42     Gtk::TextView *description_textview;
43     Gtk::TextView *copyright_textview;
44     Gtk::TextView *license_textview;
45     GameScenario *game_scenario;
46 };
47
48 #endif