initial commit, lordsawar source, slightly modified
[lordsawar] / src / gui / army-gains-level-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 ARMY_GAINS_LEVEL_DIALOG_H
20 #define ARMY_GAINS_LEVEL_DIALOG_H
21
22 #include <memory>
23 #include <vector>
24 #include <sigc++/trackable.h>
25 #include <gtkmm.h>
26
27 #include "hero.h"
28
29 #include "decorated.h"
30 // dialog for choosing what hero stat to boost when a level is gained
31 class ArmyGainsLevelDialog: public Decorated
32 {
33  public:
34     ArmyGainsLevelDialog(Hero *h, bool show_sight_stat);
35     ~ArmyGainsLevelDialog();
36
37     void set_parent_window(Gtk::Window &parent);
38
39     void run();
40     void hide();
41
42     Army::Stat get_selected_stat() { return selected_stat; }
43     
44  private:
45     Gtk::Dialog* dialog;
46     Gtk::VBox *stats_vbox;
47
48     Hero *hero;
49     Army::Stat selected_stat;
50
51     struct StatItem
52     {
53         Army::Stat stat;
54         Glib::ustring desc;
55         Gtk::RadioButton *radio;
56     };
57     
58     std::vector<StatItem> stat_items;
59
60     void add_item(Army::Stat stat, Glib::ustring desc);
61     void on_stat_toggled();
62     void fill_in_descriptions();
63 };
64
65 #endif