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

« back to all changes in this revision

Viewing changes to src/gui/city-window.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 <sigc++/trackable.h>
25
25
#include <gtkmm/button.h>
26
26
#include <gtkmm/dialog.h>
 
27
#include <gtkmm/box.h>
27
28
#include <gtkmm/label.h>
28
29
#include <gtkmm/image.h>
29
30
#include <gtkmm/togglebutton.h>
30
 
#include "../vectormap.h"
 
31
#include "vectormap.h"
31
32
#include "army-info-tip.h"
32
33
 
33
34
class City;
34
35
 
 
36
#include "decorated.h"
35
37
// dialog for displaying a friendly city
36
 
class CityWindow: public sigc::trackable
 
38
class CityWindow: public Decorated
37
39
{
38
40
 public:
39
41
    CityWindow(City *city, bool razing_possible, bool see_opponents_production);
67
69
    bool d_see_all;
68
70
 
69
71
 
 
72
    Gtk::Box *production_toggles_hbox;
70
73
    std::vector<Gtk::ToggleButton *> production_toggles;
71
74
    bool ignore_toggles;
72
75