initial commit, lordsawar source, slightly modified
[lordsawar] / src / editor / signpost-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 SIGNPOST_EDITOR_DIALOG_H
20 #define SIGNPOST_EDITOR_DIALOG_H
21
22 #include <memory>
23 #include <sigc++/trackable.h>
24 #include <gtkmm.h>
25
26 class Signpost;
27 class CreateScenarioRandomize;
28
29 //! Scenario editor.  Change the contents of a signpost.
30 class SignpostEditorDialog: public sigc::trackable
31 {
32  public:
33     SignpostEditorDialog(Signpost *signpost, CreateScenarioRandomize *randomizer);
34     ~SignpostEditorDialog();
35
36     void set_parent_window(Gtk::Window &parent);
37
38     int run();
39     
40  private:
41     Gtk::Dialog* dialog;
42     Gtk::TextView *sign_textview;
43     Signpost *signpost;
44     Gtk::Button *randomize_button;
45     CreateScenarioRandomize *d_randomizer;
46     
47     void on_randomize_clicked();
48 };
49
50 #endif