Diff of /trunk/src/gpxview.h

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

revision 126 by harbaum, Mon Sep 28 19:01:03 2009 UTC revision 133 by harbaum, Mon Oct 12 20:27:55 2009 UTC
# Line 35  Line 35 
35  #define MENU_CACHELIST 1  #define MENU_CACHELIST 1
36  #define MENU_CACHE     2  #define MENU_CACHE     2
37  #endif  #endif
38  #else  #endif
39  #define MY_BCT   /* use custom breadcrumbtrail */  
40    #ifdef BCT
41  #include "bct.h"  #include "bct.h"
42  #endif  #endif
43    
# Line 144  typedef struct { Line 145  typedef struct {
145  #ifndef NO_COPY_N_PASTE  #ifndef NO_COPY_N_PASTE
146    /* do enable/disable the edit entries */    /* do enable/disable the edit entries */
147    GtkWidget *menu_cut, *menu_copy, *menu_paste;    GtkWidget *menu_cut, *menu_copy, *menu_paste;
   GtkClipboard *clipboard;     /* clipboard for copy/paste */  
148    GtkTextBuffer *active_buffer;    GtkTextBuffer *active_buffer;
149  #endif  #endif
150    
151      GtkClipboard *clipboard;     /* clipboard for copy/paste */
152    
153  #ifdef USE_STACKABLE_WINDOW  #ifdef USE_STACKABLE_WINDOW
154    GtkWidget *export_menu, *tools_menu;    GtkWidget *export_menu, *tools_menu;
155  #endif  #endif
# Line 178  typedef struct { Line 180  typedef struct {
180    
181    gboolean cachelist_disable_screensaver;    gboolean cachelist_disable_screensaver;
182    gboolean goto_disable_screensaver;    gboolean goto_disable_screensaver;
   gboolean cachelist_update;  
183    
184    HildonProgram *program;    HildonProgram *program;
185    HildonWindow *window;    HildonWindow *window;
# Line 187  typedef struct { Line 188  typedef struct {
188    GtkWidget *window;    GtkWidget *window;
189  #endif  #endif
190    
191  #if defined(USE_BREAD_CRUMB_TRAIL) || defined(MY_BCT)    gboolean cachelist_update;
192    
193    #if defined(USE_BREAD_CRUMB_TRAIL) || defined(BCT)
194    /* reference to enable/disable these while walking the crumb trail */    /* reference to enable/disable these while walking the crumb trail */
195    GtkWidget *menu_import, *menu_export;    GtkWidget *menu_import, *menu_export;
196    GtkWidget *menu_search;    GtkWidget *menu_search;
197    
198      GtkWidget *bct;
199    #endif
200    
201    /* keep track of current "path" in the bread crumb trail */    /* keep track of current "path" in the bread crumb trail */
202    gpx_t *cur_gpx;    gpx_t *cur_gpx;
203    cache_t *cur_cache;    cache_t *cur_cache;
204    
   GtkWidget *bct;  
 #endif  
   
205    gpx_t *search_results;    gpx_t *search_results;
206    
207  #ifdef ENABLE_OSM_GPS_MAP  #ifdef ENABLE_OSM_GPS_MAP

Legend:
Removed from v.126  
changed lines
  Added in v.133