11 |
|
#include "RenegadeConfig.h" |
12 |
|
#include <gtk/gtk.h> |
13 |
|
|
14 |
+ |
extern RenegadeConfig* config; |
15 |
+ |
|
16 |
|
inline void message(GtkWindow* parent, const string& text, const string& title, |
17 |
|
GtkMessageType type) |
18 |
|
{ |
36 |
|
// |
37 |
|
public: |
38 |
|
MapSelector(); |
39 |
< |
~MapSelector(); |
39 |
> |
~MapSelector() {} |
40 |
> |
// friends: |
41 |
> |
friend void destruct(GtkWidget* widget, MapSelector* data); |
42 |
> |
friend void done(GtkWidget* widget, MapSelector* data); |
43 |
> |
friend void mapAdd(GtkWidget* widget, MapSelector* data); |
44 |
> |
friend void mapRemove(GtkWidget* widget, MapSelector* data); |
45 |
> |
friend void mapUp(GtkWidget* widget, MapSelector* data); |
46 |
> |
friend void mapDown(GtkWidget* widget, MapSelector* data); |
47 |
|
}; |
48 |
|
|
49 |
|
#endif _MapSelector_h_ |