Diff of /trunk/src/appdata.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2 by achadwick, Wed Dec 10 00:00:05 2008 UTC revision 54 by harbaum, Fri Feb 6 12:06:30 2009 UTC
# Line 69  typedef struct appdata_s { Line 69  typedef struct appdata_s {
69    HildonWindow *window;    HildonWindow *window;
70    osso_context_t *osso_context;    osso_context_t *osso_context;
71    
   /* and the ability to zoom */  
   GtkWidget *fullscreen_menu_item;  
72  #else  #else
73    GtkWidget *window;    GtkWidget *window;
74  #endif  #endif
# Line 92  typedef struct appdata_s { Line 90  typedef struct appdata_s {
90    
91  #ifdef USE_HILDON  #ifdef USE_HILDON
92    dbus_mm_pos_t mmpos;    dbus_mm_pos_t mmpos;
93      GtkWidget *banner;
94  #endif  #endif
95      gboolean banner_is_grabby;
96    
97    /* flags used to prevent re-appearence of dialogs */    /* flags used to prevent re-appearence of dialogs */
98    struct {    struct {
# Line 113  typedef struct appdata_s { Line 113  typedef struct appdata_s {
113    } track;    } track;
114    
115    GtkWidget *menu_item_project_close;    GtkWidget *menu_item_project_close;
116      GtkWidget *menu_item_view_fullscreen;
117    
118    GtkWidget *menu_view;    GtkWidget *menu_view;
119    
120    GtkWidget *menu_osm;    GtkWidget *menu_osm;
121      GtkWidget *menu_item_osm_upload;
122      GtkWidget *menu_item_osm_diff;
123      GtkWidget *menu_item_osm_undo_changes;
124    
125    GtkWidget *menu_wms;    GtkWidget *menu_wms;
126    GtkWidget *menu_item_wms_clear;    GtkWidget *menu_item_wms_clear;
# Line 125  typedef struct appdata_s { Line 129  typedef struct appdata_s {
129    GtkWidget *menu_map;    GtkWidget *menu_map;
130    GtkWidget *menu_item_map_hide_sel;    GtkWidget *menu_item_map_hide_sel;
131    GtkWidget *menu_item_map_show_all;    GtkWidget *menu_item_map_show_all;
132      GtkWidget *menu_item_map_no_icons;
133      GtkWidget *menu_item_map_no_antialias;
134    
135      struct undo_state_s *undo_state;
136    
137  } appdata_t;  } appdata_t;
138    
# Line 148  typedef struct appdata_s { Line 156  typedef struct appdata_s {
156  #include "map_edit.h"  #include "map_edit.h"
157  #include "josm_elemstyles.h"  #include "josm_elemstyles.h"
158  #include "style.h"  #include "style.h"
159    #include "net_io.h"
160    #include "qnd_xml.h"
161    #include "undo.h"
162    
163  #endif // APPDATA_H  #endif // APPDATA_H

Legend:
Removed from v.2  
changed lines
  Added in v.54