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

« back to all changes in this revision

Viewing changes to src/gui/triumphs-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:
24
24
#include <gtkmm/dialog.h>
25
25
#include <gtkmm/notebook.h>
26
26
 
27
 
#include "../player.h"
28
 
 
29
 
//
30
 
//
31
 
class TriumphsDialog: public sigc::trackable
 
27
class Player;
 
28
 
 
29
#include "Triumphs.h"
 
30
 
 
31
#include "decorated.h"
 
32
//
 
33
//
 
34
class TriumphsDialog: public Decorated
32
35
{
33
36
 public:
34
37
    TriumphsDialog(Player *player);
47
50
 
48
51
    void fill_in_info();
49
52
    void fill_in_page(Player *p);
50
 
    Uint32 tally(Player *p, Player::TriumphType type);
 
53
    Uint32 tally(Player *p, Triumphs::TriumphType type);
51
54
};
52
55
 
53
56
#endif