~ubuntu-branches/ubuntu/saucy/lordsawar/saucy

« back to all changes in this revision

Viewing changes to src/gui/item-bonus-dialog.h

  • Committer: Bazaar Package Importer
  • Author(s): Barry deFreese, Barry deFreese
  • Date: 2008-12-20 13:52:12 UTC
  • mfrom: (1.1.6 upstream) (5.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20081220135212-noeb2w3y98ebo7o9
Tags: 0.1.4-1
[ Barry deFreese ]
* New upstream release.
* Move 0.0.8-2.1 changelog entry to correct point in changelog.
* Make lordsawar-data suggest lordsawar.
* Update my e-mail address.
* Add build-depends on intltool, uuid-dev, and libboost-dev.
* Don't install locales since there are no translations currently.
* Add simple man page for new lordsawar-pbm binary.
* Drop gcc4.3 patches as they have been fixed upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
#include <gtkmm/treeview.h>
28
28
#include <list>
29
29
#include <SDL.h>
30
 
class Item;
 
30
class ItemProto;
31
31
 
 
32
#include "decorated.h"
32
33
// dialog for showing the bonuses that items have
33
 
class ItemBonusDialog: public sigc::trackable
 
34
class ItemBonusDialog: public Decorated
34
35
{
35
36
 public:
36
37
    ItemBonusDialog();
56
57
    const ItemsColumns items_columns;
57
58
    Glib::RefPtr<Gtk::ListStore> items_list;
58
59
 private:
59
 
    void addItem(Item *item);
 
60
    void addItemProto(ItemProto *itemproto);
60
61
};
61
62
 
62
63
#endif