initial commit, lordsawar source, slightly modified
[lordsawar] / src / gui / army-bonus-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_BONUS_DIALOG_H
20 #define ARMY_BONUS_DIALOG_H
21
22 #include <memory>
23 #include <sigc++/trackable.h>
24 #include <sigc++/signal.h>
25 #include <gtkmm.h>
26 #include <list>
27 class Player;
28
29 #include "decorated.h"
30 // dialog for showing the bonuses that armies have
31 class ArmyBonusDialog: public Decorated
32 {
33  public:
34     ArmyBonusDialog(Player *p);
35     ~ArmyBonusDialog();
36
37     void set_parent_window(Gtk::Window &parent);
38
39     void run();
40     void hide();
41
42  private:
43     Gtk::Dialog* dialog;
44
45     Gtk::TreeView *armies_treeview;
46
47     class ArmiesColumns: public Gtk::TreeModelColumnRecord {
48     public:
49         ArmiesColumns() 
50         { add(image); add(name); add(str);
51           add(move); add(move_image); add(bonus);}
52         
53         Gtk::TreeModelColumn<Glib::RefPtr<Gdk::Pixbuf> > image;
54         Gtk::TreeModelColumn<Glib::ustring> name;
55         Gtk::TreeModelColumn<guint32> str;
56         Gtk::TreeModelColumn<guint32> move;
57         Gtk::TreeModelColumn<Glib::RefPtr<Gdk::Pixbuf> > move_image;
58         Gtk::TreeModelColumn<Glib::ustring> bonus;
59     };
60     const ArmiesColumns armies_columns;
61     Glib::RefPtr<Gtk::ListStore> armies_list;
62  private:
63     void addArmyType(guint32 army_type);
64     Player *d_player; //show armies in this player's colour
65 };
66
67 #endif