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

« back to all changes in this revision

Viewing changes to src/gui/ruin-report-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:
25
25
#include <gtkmm/image.h>
26
26
#include <gtkmm/label.h>
27
27
 
28
 
#include "../ruinmap.h"
29
 
#include "../player.h"
 
28
#include "ruinmap.h"
 
29
#include "player.h"
30
30
 
31
31
struct SDL_Surface;
32
32
 
 
33
#include "decorated.h"
33
34
// dialog for showing all ruins and temples
34
35
// the stack parameter is used as a starting position for showing ruins
35
 
class RuinReportDialog: public sigc::trackable
 
36
class RuinReportDialog: public Decorated
36
37
{
37
38
 public:
38
39
    RuinReportDialog(Vector<int> pos);
54
55
    Gtk::Label *name_label;
55
56
    Gtk::Label *type_label;
56
57
    Gtk::Label *explored_label;
 
58
    Gtk::Label *description_label;
57
59
};
58
60
 
59
61
#endif