Rulesave saves trade.type and trade.bonus correctly.
[freeciv.git] / client / gui-gtk-2.0 / pages.h
blob165f40595aaf8235878c779be705c3fa15dca578
1 /**********************************************************************
2 Freeciv - Copyright (C) 1996 - A Kjeldberg, L Gregersen, P Unold
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
5 the Free Software Foundation; either version 2, or (at your option)
6 any later version.
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
12 ***********************************************************************/
13 #ifndef FC__PAGES_H
14 #define FC__PAGES_H
16 #include <gtk/gtk.h>
18 #include "support.h" /* bool type */
20 #include "pages_g.h"
22 extern GtkWidget *start_message_area;
24 GtkWidget *create_main_page(void);
25 GtkWidget *create_start_page(void);
26 GtkWidget *create_scenario_page(void);
27 GtkWidget *create_load_page(void);
28 GtkWidget *create_network_page(void);
30 GtkWidget *create_statusbar(void);
31 void append_network_statusbar(const char *text, bool force);
33 void save_game_dialog_popup(void);
34 void save_scenario_dialog_popup(void);
35 void save_mapimg_dialog_popup(void);
36 void mapimg_client_save(const char *filename);
38 void ai_fill_changed_by_server(int aifill);
40 void destroy_server_scans(void);
42 #endif /* FC__PAGES_H */