initial commit, lordsawar source, slightly modified
[lordsawar] / src / gui / hero-levels-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 HERO_LEVELS_DIALOG_H
20 #define HERO_LEVELS_DIALOG_H
21
22 #include <memory>
23 #include <sigc++/trackable.h>
24 #include <sigc++/signal.h>
25 #include <gtkmm.h>
26 #include <list>
27
28 class Player;
29 class Hero;
30
31 #include "decorated.h"
32
33 // dialog for showing hero information
34 class HeroLevelsDialog: public Decorated
35 {
36  public:
37     HeroLevelsDialog(Player *player);
38     HeroLevelsDialog(std::list<Hero*> heroes);
39     ~HeroLevelsDialog();
40
41     void set_parent_window(Gtk::Window &parent);
42
43     void run();
44     void hide();
45
46  private:
47     Gtk::Dialog* dialog;
48
49     Player *player;
50     Gtk::TreeView *heroes_treeview;
51
52     class HeroesColumns: public Gtk::TreeModelColumnRecord {
53     public:
54         HeroesColumns() 
55         { add(image); add(name); add(level);
56           add(exp); add(needs); add(str); add(move);}
57         
58         Gtk::TreeModelColumn<Glib::RefPtr<Gdk::Pixbuf> > image;
59         Gtk::TreeModelColumn<Glib::ustring> name;
60         Gtk::TreeModelColumn<Glib::ustring> level;
61         Gtk::TreeModelColumn<guint32> exp;
62         Gtk::TreeModelColumn<guint32> needs;
63         Gtk::TreeModelColumn<guint32> str;
64         Gtk::TreeModelColumn<guint32> move;
65     };
66     const HeroesColumns heroes_columns;
67     Glib::RefPtr<Gtk::ListStore> heroes_list;
68  private:
69
70     void init(Player *theplayer);
71     void addHero(Hero *h);
72 };
73
74 #endif