initial commit, lordsawar source, slightly modified
[lordsawar] / src / editor / temple-editor-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 TEMPLE_EDITOR_DIALOG_H
20 #define TEMPLE_EDITOR_DIALOG_H
21
22 #include <memory>
23 #include <sigc++/trackable.h>
24 #include <gtkmm.h>
25
26 class CreateScenarioRandomize;
27
28 class Temple;
29
30 //! Scenario editor.  Edits a Temple object.
31 class TempleEditorDialog: public sigc::trackable
32 {
33  public:
34     TempleEditorDialog(Temple *temple, CreateScenarioRandomize *randomizer);
35     ~TempleEditorDialog();
36
37     void set_parent_window(Gtk::Window &parent);
38
39     int run();
40     
41  private:
42     Gtk::Dialog* dialog;
43     Gtk::Entry *name_entry;
44     Gtk::Entry *description_entry;
45     Gtk::SpinButton *type_entry;
46     Temple *temple;
47     Gtk::Button *randomize_name_button;
48     CreateScenarioRandomize *d_randomizer;
49
50     void on_randomize_name_clicked();
51 };
52
53 #endif