initial commit, lordsawar source, slightly modified
[lordsawar] / src / editor / backpack-editor-dialog.h
1 //  Copyright (C) 2009 Ben Asselstine
2 //
3 //  This program is free software; you can redistribute it and/or modify
4 //  it under the terms of the GNU General Public License as published by
5 //  the Free Software Foundation; either version 3 of the License, or
6 //  (at your option) any later version.
7 //
8 //  This program is distributed in the hope that it will be useful,
9 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
10 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 //  GNU Library General Public License for more details.
12 //
13 //  You should have received a copy of the GNU General Public License
14 //  along with this program; if not, write to the Free Software
15 //  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 
16 //  02110-1301, USA.
17
18 #ifndef BACKPACK_EDITOR_DIALOG_H
19 #define BACKPACK_EDITOR_DIALOG_H
20
21 #include <sigc++/trackable.h>
22 #include <gtkmm.h>
23
24 class Item;
25 class Backpack;
26
27 // dialog for showing info about a hero, esp. about the hero's items
28 class BackpackEditorDialog
29 {
30  public:
31     BackpackEditorDialog(Backpack *backpack);
32     ~BackpackEditorDialog();
33
34     void set_parent_window(Gtk::Window &parent);
35
36     int run();
37     void hide();
38     
39  private:
40     Backpack *backpack; //destination backpack
41     Backpack *working; //the backpack we're going to work with before that
42     Gtk::Dialog* dialog;
43
44     Gtk::TreeView *item_treeview;
45     Gtk::Button *remove_button;
46     Gtk::Button *add_button;
47
48     class ItemColumns: public Gtk::TreeModelColumnRecord {
49     public:
50         ItemColumns() 
51         { add(name); add(attributes); add(item); }
52         
53         Gtk::TreeModelColumn<Glib::ustring> name;
54         Gtk::TreeModelColumn<Glib::ustring> attributes;
55         Gtk::TreeModelColumn<Item *> item;
56     };
57     const ItemColumns item_columns;
58     Glib::RefPtr<Gtk::ListStore> item_list;
59
60
61     void on_item_selection_changed();
62     void on_remove_item_clicked();
63     void on_add_item_clicked();
64
65     void add_item(Item *item);
66
67     void fill_bag();
68 };
69
70 #endif