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

« back to all changes in this revision

Viewing changes to src/editor/main-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:
34
34
#include <gtkmm/radiobutton.h>
35
35
#include <gtkmm/tooltips.h>
36
36
 
37
 
#include "../map-tip-position.h"
 
37
#include "map-tip-position.h"
38
38
#include "editorbigmap.h"
39
39
#include "RenamableLocation.h"
40
40
 
44
44
class GameScenario;
45
45
class CreateScenarioRandomize;
46
46
 
47
 
#include "../UniquelyIdentified.h"
 
47
#include "UniquelyIdentified.h"
48
48
 
49
49
//! Scenario editor.  Edits a Scenario.
50
50
class MainWindow: public sigc::trackable
99
99
    void on_new_map_activated();
100
100
    void on_load_map_activated();
101
101
    void on_save_map_activated();
 
102
    void on_export_as_bitmap_activated();
 
103
    void on_export_as_bitmap_no_game_objects_activated();
 
104
    void on_validate_activated();
102
105
    void on_save_map_as_activated();
103
106
    void on_quit_activated();
104
107
    void on_edit_map_info_activated();
109
112
    void on_edit_rewards_activated();
110
113
 
111
114
    void on_fullscreen_activated();
 
115
    void on_tile_graphics_toggled();
112
116
 
113
117
    void on_random_all_cities_activated();
114
118
    void on_random_unnamed_cities_activated();
182
186
    
183
187
    void popup_dialog_for_object(UniquelyIdentified *object);
184
188
 
 
189
    void auto_select_appropriate_pointer();
 
190
 
185
191
    int d_width;
186
192
    int d_height;
187
193