Diff of /trunk/src/main.c

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

revision 12 by harbaum, Fri Jun 26 20:07:33 2009 UTC revision 211 by harbaum, Wed Nov 25 10:13:26 2009 UTC
# Line 15  Line 15 
15   * along with GPXView.  If not, see <http://www.gnu.org/licenses/>.   * along with GPXView.  If not, see <http://www.gnu.org/licenses/>.
16   */   */
17    
18  #include <stdio.h>  #define __USE_GNU
19  #include <string.h>  #include <string.h>
20    
21    #include <stdio.h>
22  #include <math.h>  #include <math.h>
23    
24    #include <curl/curl.h>
25    
26  #include <time.h>  #include <time.h>
27  #include <sys/time.h>  #include <sys/time.h>
28    
# Line 29  Line 33 
33    
34  #ifdef USE_MAEMO  #ifdef USE_MAEMO
35  #include <hildon/hildon-banner.h>  #include <hildon/hildon-banner.h>
36    #if MAEMO_VERSION_MAJOR >= 5
37    #include <hildon/hildon-note.h>
38    #include <hildon/hildon-entry.h>
39    #include <hildon/hildon-check-button.h>
40    #endif
41  #endif  #endif
42    
43  #include <locale.h>  #include <locale.h>
44    
45  extern char *strcasestr (__const char *__haystack, __const char *__needle);  extern char *strcasestr (__const char *__haystack, __const char *__needle);
46    
47  #ifdef USE_BREAD_CRUMB_TRAIL  #if defined(USE_BREAD_CRUMB_TRAIL) || defined(BCT)
48  static void crumb_add(appdata_t *appdata, char *name, int level,  static void crumb_add(appdata_t *appdata, char *name, int level,
49                        gpointer user_data);                        gpointer user_data);
50    
# Line 92  void errorf(const char *fmt, ...) { Line 101  void errorf(const char *fmt, ...) {
101      }      }
102    }    }
103    
104    #if !defined(USE_MAEMO) || (MAEMO_VERSION_MAJOR < 5)
105    GtkWidget *dialog = gtk_message_dialog_new(    GtkWidget *dialog = gtk_message_dialog_new(
106                             GTK_WINDOW(NULL),                             GTK_WINDOW(NULL),
107                             GTK_DIALOG_DESTROY_WITH_PARENT,                             GTK_DIALOG_DESTROY_WITH_PARENT,
108                             GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE,                             GTK_MESSAGE_ERROR,
109                             buf);                             GTK_BUTTONS_CLOSE, buf);
110    
111    gtk_window_set_title(GTK_WINDOW(dialog), _("ERROR"));    gtk_window_set_title(GTK_WINDOW(dialog), _("ERROR"));
112    #else
113      GtkWidget *dialog =
114        hildon_note_new_information(GTK_WINDOW(NULL), buf);
115    #endif
116    
117    gtk_dialog_run(GTK_DIALOG(dialog));    gtk_dialog_run(GTK_DIALOG(dialog));
118    gtk_widget_destroy(dialog);    gtk_widget_destroy(dialog);
# Line 138  gpx_t *choose_file(appdata_t *appdata, g Line 152  gpx_t *choose_file(appdata_t *appdata, g
152    gtk_widget_show_all (GTK_WIDGET(dialog));    gtk_widget_show_all (GTK_WIDGET(dialog));
153    if (gtk_dialog_run (GTK_DIALOG(dialog)) == GTK_FM_OK) {    if (gtk_dialog_run (GTK_DIALOG(dialog)) == GTK_FM_OK) {
154      char *filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (dialog));      char *filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (dialog));
155    
156        if(filename) {
157          gpx_dialog_t *dialog = gpx_busy_dialog_new(GTK_WIDGET(appdata->window));
158    
159      gpx_dialog_t *dialog = gpx_busy_dialog_new(GTK_WIDGET(appdata->window));        if(!whole_dir)
160            gpx = gpx_parse(dialog, filename, appdata->username);
161      if(!whole_dir)        else {
162        gpx = gpx_parse(dialog, filename);          /* cur trailing '/' if present */
163      else {          if(strlastchr(filename) == '/')
164        /* cur trailing '/' if present */            filename[strlen(filename)] = 0;
165        if(strlastchr(filename) == '/')  
166          filename[strlen(filename)] = 0;          gpx = gpx_parse_dir(dialog, filename, appdata->username);
   
       gpx = gpx_parse_dir(dialog, filename);  
     }  
   
     gpx_busy_dialog_destroy(dialog);  
   
     /* save path if gpx was successfully loaded */  
     if(gpx) {  
       char *r = strrchr(filename, '/');  
   
       /* there is a delimiter, use everything left of it as path */  
       if(r && !whole_dir) {  
         *r = 0;  
         if(appdata->path) free(appdata->path);  
         appdata->path = strdup(filename);  
         /* restore path ... just in case ... */  
         *r = '/';  
167        }        }
168    
169        if(whole_dir)        gpx_busy_dialog_destroy(dialog);
170          appdata->path = strdup(filename);  
171      }        /* save path if gpx was successfully loaded */
172          if(gpx) {
173            char *r = strrchr(filename, '/');
174    
175            /* there is a delimiter, use everything left of it as path */
176            if(r && !whole_dir) {
177              *r = 0;
178              if(appdata->path) free(appdata->path);
179              appdata->path = strdup(filename);
180              /* restore path ... just in case ... */
181              *r = '/';
182            }
183    
184            if(whole_dir)
185              appdata->path = strdup(filename);
186          } else
187            errorf(_("Load error"));
188    
189      g_free (filename);        g_free (filename);
190        } else {
191    #ifndef USE_MAEMO
192          errorf(_("Error accessing the file."));
193    #else
194          errorf(_("Error accessing the file. This may happen if the file "
195                   "resides on a remote file system. Please copy the file onto "
196                   "the device (e.g. onto the memory card) and try again."));
197    #endif
198        }
199    }    }
200    
201    gtk_widget_destroy (dialog);    gtk_widget_destroy (dialog);
# Line 194  enum { Line 219  enum {
219    CACHELIST_NUM_COLS    CACHELIST_NUM_COLS
220  } ;  } ;
221    
222  void cachelist_view_onRowActivated(GtkTreeView        *treeview,  void cachelist_goto_cache(appdata_t *appdata, cache_t *cache) {
223    #if !defined(USE_BREAD_CRUMB_TRAIL) && !defined(BCT)
224        cache_dialog(appdata, cache);
225    #else
226        gtk_container_remove(GTK_CONTAINER(appdata->vbox), appdata->cur_view);
227        appdata->cur_view = cache_view(appdata, cache);
228        gtk_box_pack_start_defaults(GTK_BOX(appdata->vbox), appdata->cur_view);
229        gtk_widget_show_all(appdata->vbox);
230    
231        crumb_add(appdata, cache->name, CRUMB_CACHE, cache);
232    #endif
233    }
234    
235    static void cachelist_view_onRowActivated(GtkTreeView        *treeview,
236                                     GtkTreePath        *path,                                     GtkTreePath        *path,
237                                     GtkTreeViewColumn  *col,                                     GtkTreeViewColumn  *col,
238                                     gpointer            userdata) {                                     gpointer            userdata) {
# Line 202  void cachelist_view_onRowActivated(GtkTr Line 240  void cachelist_view_onRowActivated(GtkTr
240    GtkTreeIter   iter;    GtkTreeIter   iter;
241    GtkTreeModel *model = gtk_tree_view_get_model(treeview);    GtkTreeModel *model = gtk_tree_view_get_model(treeview);
242    
243    #ifdef USE_MAEMO
244      /* check if a cache is already selected and ignore click if yes */
245      /* (was probably a double click) */
246      if(appdata->cur_cache) return;
247    #endif
248    
249    if(gtk_tree_model_get_iter(model, &iter, path)) {    if(gtk_tree_model_get_iter(model, &iter, path)) {
250      cache_t *cache;      cache_t *cache;
251      gtk_tree_model_get(model, &iter, CACHELIST_COL_DATA, &cache, -1);      gtk_tree_model_get(model, &iter, CACHELIST_COL_DATA, &cache, -1);
252  #ifndef USE_BREAD_CRUMB_TRAIL      cachelist_goto_cache(appdata, cache);
     cache_dialog(appdata, cache);  
 #else  
     gtk_container_remove(GTK_CONTAINER(appdata->vbox), appdata->cur_view);  
     appdata->cur_view = cache_view(appdata, cache);  
     gtk_box_pack_start_defaults(GTK_BOX(appdata->vbox), appdata->cur_view);  
     gtk_widget_show_all(appdata->vbox);  
   
     crumb_add(appdata, cache->name, CRUMB_CACHE, cache);  
 #endif  
253    }    }
254  }  }
255    
# Line 257  static GtkWidget *cachelist_create(appda Line 292  static GtkWidget *cachelist_create(appda
292                                     cache_t *sel_cache);                                     cache_t *sel_cache);
293    
294  void cachelist_redraw(appdata_t *appdata) {  void cachelist_redraw(appdata_t *appdata) {
 #ifndef USE_MAEMO  
   //  gtk_container_remove(GTK_CONTAINER(appdata->vbox), appdata->cur_view);  
   //  appdata->cur_view = gpxlist_create_view_and_model(appdata, NULL);  
   //  gtk_box_pack_start_defaults(GTK_BOX(appdata->vbox), appdata->cur_view);  
   // gtk_widget_show_all(appdata->vbox);  
 #else  
   
295    if(!appdata->cur_view) {    if(!appdata->cur_view) {
296      printf("cachelist redraw: no active view\n");      printf("cachelist redraw: no active view\n");
297      return;      return;
# Line 281  void cachelist_redraw(appdata_t *appdata Line 309  void cachelist_redraw(appdata_t *appdata
309    if(redraw) {    if(redraw) {
310      GtkWidget *container = appdata->vbox;      GtkWidget *container = appdata->vbox;
311    
     printf("redraw %d\n", redraw);  
   
312  #ifdef USE_STACKABLE_WINDOW  #ifdef USE_STACKABLE_WINDOW
313      HildonWindowStack *stack = hildon_window_stack_get_default();      HildonWindowStack *stack = hildon_window_stack_get_default();
314      container = hildon_window_stack_peek(stack);      container = hildon_window_stack_peek(stack);
# Line 309  void cachelist_redraw(appdata_t *appdata Line 335  void cachelist_redraw(appdata_t *appdata
335    
336      gtk_widget_show_all(container);      gtk_widget_show_all(container);
337    }    }
 #endif  
338  }  }
339    
340    
# Line 317  static gboolean cachelist_update(gpointe Line 342  static gboolean cachelist_update(gpointe
342    
343    printf("cachelist timer fired!\n");    printf("cachelist timer fired!\n");
344    
 #ifdef USE_MAEMO  
345    appdata_t *appdata = (appdata_t*)data;    appdata_t *appdata = (appdata_t*)data;
346    
347    if(appdata->cur_cache)    if(appdata->cur_cache)
348      return TRUE;      return TRUE;
349    
350    #ifdef USE_MAEMO
351    if(appdata->cachelist_disable_screensaver)    if(appdata->cachelist_disable_screensaver)
352      if (osso_display_blanking_pause(appdata->osso_context) != OSSO_OK)      if (osso_display_blanking_pause(appdata->osso_context) != OSSO_OK)
353        fprintf(stderr, "error with display blank\n");        fprintf(stderr, "error with display blank\n");
354    #endif
355    
356    if(appdata->cachelist_update)    if(appdata->cachelist_update)
357      cachelist_redraw(appdata);      cachelist_redraw(appdata);
 #endif  
358    
359    return TRUE;    return TRUE;
360  }  }
# Line 451  static GtkWidget *cachelist_create(appda Line 476  static GtkWidget *cachelist_create(appda
476      if(tint > 8) tint = 8;      if(tint > 8) tint = 8;
477    
478      /* cache type includes "solved" flag in lowest bit */      /* cache type includes "solved" flag in lowest bit */
479      int type = (cache->type<<8) +      int type = cache->type<<8;
480        (cache->notes?4:0) +      if(cache->notes) type |= 4;
481        ((cache->notes && cache->notes->override)?1:0) +      if(cache->notes && cache->notes->override) type |= 1;
482        ((cache->notes && cache->notes->found)?2:0);      if(cache->notes && cache->notes->found) type |= 2;
483        if(cache->found) type |= 2;
484        if(cache->mine) type |= 8;
485    
486      if((!(type & 2)) || !appdata->cachelist_hide_found) {      if((!(type & 2)) || !appdata->cachelist_hide_found) {
487    
# Line 570  void cachelist_dialog(appdata_t *appdata Line 597  void cachelist_dialog(appdata_t *appdata
597  static void search_result_free(gpx_t *result);  static void search_result_free(gpx_t *result);
598    
599  void on_cachelist_destroy(GtkWidget *widget, appdata_t *appdata) {  void on_cachelist_destroy(GtkWidget *widget, appdata_t *appdata) {
600      printf("cachelist destroy\n");
601    
602    if(appdata->search_results) {    if(appdata->search_results) {
603      search_result_free(appdata->search_results);      search_result_free(appdata->search_results);
604      appdata->search_results = NULL;      appdata->search_results = NULL;
605    }    }
606    appdata->cur_gpx = NULL;    appdata->cur_gpx = NULL;
607    
608    #ifdef ENABLE_OSM_GPS_MAP
609      map_update(appdata);
610    #endif
611    
612    /* restore cur_view */    /* restore cur_view */
613    appdata->cur_view = g_object_get_data(G_OBJECT(widget), "cur_view");    appdata->cur_view = g_object_get_data(G_OBJECT(widget), "cur_view");
614  }  }
# Line 587  void cachelist_dialog(appdata_t *appdata Line 620  void cachelist_dialog(appdata_t *appdata
620    g_object_set_data(G_OBJECT(window), "cur_view", appdata->cur_view);    g_object_set_data(G_OBJECT(window), "cur_view", appdata->cur_view);
621    
622    appdata->cur_gpx = gpx;    appdata->cur_gpx = gpx;
623    char *title = g_strdup_printf("GPXView - %s", gpx->name);    char *title = g_strdup_printf("%s - GPXView", gpx->name);
624    gtk_window_set_title(GTK_WINDOW(window), title);    gtk_window_set_title(GTK_WINDOW(window), title);
625    g_free(title);    g_free(title);
626    
# Line 602  void cachelist_dialog(appdata_t *appdata Line 635  void cachelist_dialog(appdata_t *appdata
635                     G_CALLBACK(on_cachelist_destroy), appdata);                     G_CALLBACK(on_cachelist_destroy), appdata);
636    
637    gtk_widget_show_all(window);    gtk_widget_show_all(window);
638    
639    #ifdef ENABLE_OSM_GPS_MAP
640      map_update(appdata);
641    #endif
642  }  }
643  #endif  #endif
644  #endif  #endif
# Line 634  static GdkPixbuf *gpx_icon_get(gpx_t *gp Line 671  static GdkPixbuf *gpx_icon_get(gpx_t *gp
671    return icon_get(ICON_FILE, 0);    return icon_get(ICON_FILE, 0);
672  }  }
673    
674  static void gpxlist_set(GtkListStore *store, GtkTreeIter *iter, gpx_t *gpx) {  void gpxlist_set(GtkListStore *store, GtkTreeIter *iter, gpx_t *gpx) {
675    char date_str[32], cnum[32];    char date_str[32], cnum[32];
676    
677    if(gpx->year && gpx->month && gpx->day) {    if(gpx->year && gpx->month && gpx->day) {
# Line 659  static void gpxlist_set(GtkListStore *st Line 696  static void gpxlist_set(GtkListStore *st
696                       GPXLIST_COL_OPEN, !gpx->closed,                       GPXLIST_COL_OPEN, !gpx->closed,
697                       GPXLIST_COL_CACHES, gpx->closed?NULL:cnum,                       GPXLIST_COL_CACHES, gpx->closed?NULL:cnum,
698  #ifdef USE_PANNABLE_AREA  #ifdef USE_PANNABLE_AREA
699                       GPXLIST_COL_DELETE, icon_get(ICON_MISC, 7),                       GPXLIST_COL_DELETE, icon_get(ICON_MISC, 4),
700  #endif  #endif
701                       GPXLIST_COL_DATA, gpx,                       GPXLIST_COL_DATA, gpx,
702                       -1);                       -1);
# Line 705  static void gpxlist_close(appdata_t *app Line 742  static void gpxlist_close(appdata_t *app
742    gconf_save_closed_name(appdata, gpx->filename, gpx->name);    gconf_save_closed_name(appdata, gpx->filename, gpx->name);
743  }  }
744    
745    void gpxlist_goto_cachelist(appdata_t *appdata, gpx_t *gpx) {
746    #if !defined(USE_BREAD_CRUMB_TRAIL) && !defined(BCT)
747    #ifdef USE_STACKABLE_WINDOW
748      if(!appdata->cur_gpx)
749    #endif
750        cachelist_dialog(appdata, gpx);
751    #ifdef USE_STACKABLE_WINDOW
752      else
753        printf("selected gpx, but cachelist window already present\n");
754    #endif
755    #else
756      gtk_container_remove(GTK_CONTAINER(appdata->vbox), appdata->cur_view);
757      appdata->cur_view = cachelist_create(appdata, gpx, NULL);
758      gtk_box_pack_start_defaults(GTK_BOX(appdata->vbox), appdata->cur_view);
759      gtk_widget_show_all(appdata->vbox);
760    
761      crumb_add(appdata, gpx->name, CRUMB_CACHELIST, gpx);
762    #endif
763    }
764    
765  static void gpxlist_view_onRowActivated(GtkTreeView *treeview,  static void gpxlist_view_onRowActivated(GtkTreeView *treeview,
766                            GtkTreePath        *path,                            GtkTreePath        *path,
767                            GtkTreeViewColumn  *col,                            GtkTreeViewColumn  *col,
# Line 713  static void gpxlist_view_onRowActivated( Line 770  static void gpxlist_view_onRowActivated(
770    GtkTreeIter   iter;    GtkTreeIter   iter;
771    GtkTreeModel *model = gtk_tree_view_get_model(treeview);    GtkTreeModel *model = gtk_tree_view_get_model(treeview);
772    
773    #ifdef USE_MAEMO
774      /* check if a cache is already selected and ignore click if yes */
775      /* (was probably a double click) */
776      if(appdata->cur_gpx) return;
777    #endif
778    
779    if (gtk_tree_model_get_iter(model, &iter, path)) {    if (gtk_tree_model_get_iter(model, &iter, path)) {
780      gpx_t *gpx;      gpx_t *gpx;
781      gtk_tree_model_get(model, &iter, GPXLIST_COL_DATA, &gpx, -1);      gtk_tree_model_get(model, &iter, GPXLIST_COL_DATA, &gpx, -1);
# Line 725  static void gpxlist_view_onRowActivated( Line 788  static void gpxlist_view_onRowActivated(
788      if(col_name && !strcmp(col_name, "Del")) {      if(col_name && !strcmp(col_name, "Del")) {
789        printf("clicked delete\n");        printf("clicked delete\n");
790    
791    #if !defined(USE_MAEMO) || (MAEMO_VERSION_MAJOR < 5)
792        /* ask user what he wants */        /* ask user what he wants */
793        GtkWidget *dialog = gtk_message_dialog_new(        GtkWidget *dialog = gtk_message_dialog_new(
794                   GTK_WINDOW(appdata->window),                   GTK_WINDOW(appdata->window),
795                   GTK_DIALOG_DESTROY_WITH_PARENT,                   GTK_DIALOG_DESTROY_WITH_PARENT,
796                   GTK_MESSAGE_QUESTION, GTK_BUTTONS_CANCEL,                   GTK_MESSAGE_QUESTION,
797                     GTK_BUTTONS_CANCEL,
798                   _("Do you want to close this entry only or do "                   _("Do you want to close this entry only or do "
799                     "you want to remove it completely from the list?"));                     "you want to remove it completely from the list?"));
800    
# Line 738  static void gpxlist_view_onRowActivated( Line 803  static void gpxlist_view_onRowActivated(
803                               _("Close"), 2,                               _("Close"), 2,
804                               NULL);                               NULL);
805    
806          gtk_window_set_title(GTK_WINDOW(dialog), _("Close or remove entry?"));
807    #else
808    
809          GtkWidget *dialog =
810            gtk_dialog_new_with_buttons(_("Close or remove entry?"),
811                                GTK_WINDOW(appdata->window),
812                                GTK_DIALOG_DESTROY_WITH_PARENT,
813                                GTK_STOCK_CANCEL, GTK_RESPONSE_REJECT,
814                                _("Remove"), 1,
815                                _("Close"), 2,
816                                NULL);
817    
818          GtkWidget *content_area =
819            gtk_dialog_get_content_area (GTK_DIALOG (dialog));
820    
821          GtkWidget *hbox = gtk_hbox_new(FALSE, 0);
822    
823          gtk_box_pack_start(GTK_BOX(hbox),
824             gtk_image_new_from_stock( GTK_STOCK_DIALOG_QUESTION,
825                                       GTK_ICON_SIZE_DIALOG),
826                             FALSE, FALSE, 0);
827    
828          GtkWidget *label = gtk_label_new(
829                      _("Do you want to close this entry only or do "
830                        "you want to remove it completely from the list?"));
831    
832          gtk_label_set_line_wrap(GTK_LABEL(label), TRUE);
833          gtk_label_set_line_wrap_mode(GTK_LABEL(label), PANGO_WRAP_WORD);
834    
835          gtk_box_pack_start_defaults(GTK_BOX(hbox), label);
836          gtk_container_add (GTK_CONTAINER (content_area), hbox);
837    
838          gtk_widget_show_all (dialog);
839    #endif
840    
841        if(gpx->closed)        if(gpx->closed)
842          gtk_dialog_set_response_sensitive(GTK_DIALOG(dialog), 2, FALSE);          gtk_dialog_set_response_sensitive(GTK_DIALOG(dialog), 2, FALSE);
843    
       gtk_window_set_title(GTK_WINDOW(dialog), _("Remove entry?"));  
   
844        /* set the active flag again if the user answered "no" */        /* set the active flag again if the user answered "no" */
845        switch(gtk_dialog_run(GTK_DIALOG(dialog))) {        switch(gtk_dialog_run(GTK_DIALOG(dialog))) {
846    
# Line 772  static void gpxlist_view_onRowActivated( Line 870  static void gpxlist_view_onRowActivated(
870          gpx_t *new = NULL;          gpx_t *new = NULL;
871    
872          if(g_file_test(gpx->filename, G_FILE_TEST_IS_DIR))          if(g_file_test(gpx->filename, G_FILE_TEST_IS_DIR))
873            new = gpx_parse_dir(dialog, gpx->filename);            new = gpx_parse_dir(dialog, gpx->filename, appdata->username);
874          else          else
875            new = gpx_parse(dialog, gpx->filename);            new = gpx_parse(dialog, gpx->filename, appdata->username);
876    
877          if(new) {          if(new) {
878            gpx_t **prev = &(appdata->gpx);            gpx_t **prev = &(appdata->gpx);
# Line 810  static void gpxlist_view_onRowActivated( Line 908  static void gpxlist_view_onRowActivated(
908    
909          gpx_busy_dialog_destroy(dialog);          gpx_busy_dialog_destroy(dialog);
910        }        }
911  #ifndef USE_BREAD_CRUMB_TRAIL  
912  #ifdef USE_STACKABLE_WINDOW        gpxlist_goto_cachelist(appdata, gpx);
       if(!appdata->cur_gpx)  
 #endif  
         cachelist_dialog(appdata, gpx);  
 #ifdef USE_STACKABLE_WINDOW  
       else  
         printf("selected gpx, but cachelist window already present\n");  
 #endif  
 #else  
       gtk_container_remove(GTK_CONTAINER(appdata->vbox), appdata->cur_view);  
       appdata->cur_view = cachelist_create(appdata, gpx, NULL);  
       gtk_box_pack_start_defaults(GTK_BOX(appdata->vbox), appdata->cur_view);  
       gtk_widget_show_all(appdata->vbox);  
   
       crumb_add(appdata, gpx->name, CRUMB_CACHELIST, gpx);  
 #endif  
913      }      }
914    }    }
915  }  }
916    
917    /* search gpx file in gpx list */
918    gboolean gpxlist_find(appdata_t *appdata, GtkTreeIter *iter, gpx_t *gpx) {
919      GtkTreeModel *model =
920        gtk_tree_view_get_model(GTK_TREE_VIEW(appdata->gpxview));
921    
922      gboolean found =
923        gtk_tree_model_get_iter_first(model, iter);
924    
925      while(found) {
926        gpx_t *this_gpx;
927        gtk_tree_model_get(model, iter, GPXLIST_COL_DATA, &this_gpx, -1);
928    
929        if(gpx == this_gpx)
930          return TRUE;
931    
932        found = gtk_tree_model_iter_next(model, iter);
933      }
934    
935      return FALSE;
936    }
937    
938    
939  #ifndef USE_PANNABLE_AREA  #ifndef USE_PANNABLE_AREA
940  static gboolean  static gboolean
941  view_selection_func(GtkTreeSelection *selection, GtkTreeModel *model,  view_selection_func(GtkTreeSelection *selection, GtkTreeModel *model,
# Line 881  static GtkWidget *gpxlist_create_view_an Line 986  static GtkWidget *gpxlist_create_view_an
986    gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(appdata->gpxview),    gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(appdata->gpxview),
987                    -1, "Icon", renderer,                    -1, "Icon", renderer,
988                    "pixbuf", GPXLIST_COL_ICON,                    "pixbuf", GPXLIST_COL_ICON,
989                //                  "sensitive", GPXLIST_COL_OPEN,  #ifdef USE_PANNABLE_AREA
990            /* at least one entry needs to be sensitive. */
991            /* This is the delete icon if the PANNABLE_AREA is used */
992                      "sensitive", GPXLIST_COL_OPEN,
993    #endif
994                    NULL);                    NULL);
995    
996    /* --- "FileName" column --- */    /* --- "FileName" column --- */
# Line 937  static GtkWidget *gpxlist_create_view_an Line 1046  static GtkWidget *gpxlist_create_view_an
1046    gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(appdata->gpxview),    gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(appdata->gpxview),
1047                    -1, "Del", renderer,                    -1, "Del", renderer,
1048                    "pixbuf", GPXLIST_COL_DELETE,                    "pixbuf", GPXLIST_COL_DELETE,
1049                    "sensitive", GPXLIST_COL_OPEN,                //                  "sensitive", GPXLIST_COL_OPEN,
1050                    NULL);                    NULL);
1051  #endif  #endif
1052    
# Line 957  static GtkWidget *gpxlist_create_view_an Line 1066  static GtkWidget *gpxlist_create_view_an
1066      GtkTreeIter         iter;      GtkTreeIter         iter;
1067      gtk_list_store_append(appdata->gpxstore, &iter);      gtk_list_store_append(appdata->gpxstore, &iter);
1068      gpxlist_set(appdata->gpxstore, &iter, gpx);      gpxlist_set(appdata->gpxstore, &iter, gpx);
1069    
1070      if(gpx == sel_gpx) {      if(gpx == sel_gpx) {
1071        sel_iter = iter;        sel_iter = iter;
1072        sel_iter_valid = TRUE;        sel_iter_valid = TRUE;
# Line 1017  static void gpxlist_add(appdata_t *appda Line 1126  static void gpxlist_add(appdata_t *appda
1126    
1127  /******************** begin of menu *********************/  /******************** begin of menu *********************/
1128    
1129    typedef struct {
1130      appdata_t *appdata;
1131      GtkWidget *dialog;
1132    } about_context_t;
1133    
1134    #ifdef ENABLE_BROWSER_INTERFACE
1135    void on_paypal_button_clicked(GtkButton *button, about_context_t *context) {
1136      gtk_dialog_response(GTK_DIALOG(context->dialog), GTK_RESPONSE_ACCEPT);
1137      browser_url(context->appdata,
1138                  "https://www.paypal.com/cgi-bin/webscr"
1139                  "?cmd=_s-xclick&hosted_button_id=7400558");
1140    }
1141    #endif
1142    
1143  static void  static void
1144  cb_menu_about(GtkWidget *window, gpointer data) {  cb_menu_about(GtkWidget *window, gpointer data) {
1145    GtkAboutDialog *about = GTK_ABOUT_DIALOG(gtk_about_dialog_new());    about_context_t context;
1146    
1147      context.appdata = (appdata_t *)data;
1148    
1149    #ifdef ENABLE_LIBLOCATION
1150      char *uses = "uses liblocation";
1151    #elif defined(ENABLE_GPSBT)
1152      char *uses = "uses gpsbt and gpsd";
1153    #else
1154      char *uses = "uses gpsd";
1155    #endif
1156    
1157      const gchar *authors[] = {
1158        "Till Harbaum <till@harbaum.org>",
1159        "John Stowers <john.stowers@gmail.com>",
1160        "GCVote: Guido Wegener <guido.wegener@gmx.de>",
1161        NULL };
1162    
1163      context.dialog = g_object_new(GTK_TYPE_ABOUT_DIALOG,
1164                            "name", "GPXView",
1165                            "version", VERSION,
1166                            "copyright", _("Copyright 2008-2009"),
1167                            "authors", authors,
1168                            "website", _("http://www.harbaum.org/till/maemo"),
1169                            "comments", _(uses),
1170                            NULL);
1171    
1172    #ifdef ENABLE_BROWSER_INTERFACE
1173      /* add a way to donate to the project */
1174      GtkWidget *alignment = gtk_alignment_new(0.5, 0, 0, 0);
1175    
1176      GtkWidget *hbox = gtk_hbox_new(FALSE, 8);
1177      gtk_box_pack_start(GTK_BOX(hbox),
1178                         gtk_label_new(_("Do you like GPXView?")),
1179                         FALSE, FALSE, 0);
1180    
1181      GtkWidget *button = gtk_button_new();
1182      gtk_button_set_image(GTK_BUTTON(button),
1183                           icon_get_widget(ICON_MISC, 5));
1184      gtk_button_set_relief(GTK_BUTTON(button), GTK_RELIEF_NONE);
1185      g_signal_connect(button, "clicked",
1186                       G_CALLBACK(on_paypal_button_clicked), &context);
1187      gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0);
1188    
1189      gtk_container_add(GTK_CONTAINER(alignment), hbox);
1190      gtk_box_pack_start_defaults(GTK_BOX((GTK_DIALOG(context.dialog))->vbox),
1191                                  alignment);
1192    
1193    gtk_about_dialog_set_name(about, "GPXView");    gtk_widget_show_all(alignment);
1194    gtk_about_dialog_set_version(about, VERSION);  #endif
1195    gtk_about_dialog_set_copyright(about,  
1196           _("GPXView (c) 2008 by\n"    gtk_dialog_run(GTK_DIALOG(context.dialog));
1197           "Till Harbaum <till@harbaum.org>\n"    gtk_widget_destroy(context.dialog);
          "Geocaching.com: Tantil"));  
   
   gtk_about_dialog_set_website(about,  
        _("http://www.harbaum.org/till/maemo"));  
   
   gtk_about_dialog_set_comments(about,  
        _("Geocaching.com GPX file viewer"));  
   
   gtk_widget_show_all(GTK_WIDGET(about));  
   gtk_dialog_run(GTK_DIALOG(about));  
   gtk_widget_destroy(GTK_WIDGET(about));  
1198  }  }
1199    
1200  #if defined(USE_MAEMO) && defined(HILDON_HELP)  #if defined(USE_MAEMO) && defined(HILDON_HELP)
# Line 1208  gpx_t *search_do(appdata_t *appdata, gpx Line 1366  gpx_t *search_do(appdata_t *appdata, gpx
1366        else if(cache->long_description && (what & SEARCH_DESC) &&        else if(cache->long_description && (what & SEARCH_DESC) &&
1367                strcasestr(cache->long_description, phrase))                strcasestr(cache->long_description, phrase))
1368          hit = 1;          hit = 1;
1369        else if(cache->owner && (what & SEARCH_OWNER) &&        else if(cache->owner && cache->owner->name && (what & SEARCH_OWNER) &&
1370                strcasestr(cache->owner, phrase))                strcasestr(cache->owner->name, phrase))
1371          hit = 1;          hit = 1;
1372    
1373        if(hit) {        if(hit) {
# Line 1238  typedef struct { Line 1396  typedef struct {
1396    GtkWidget *in_id, *in_name, *in_desc, *in_owner, *in_finds;    GtkWidget *in_id, *in_name, *in_desc, *in_owner, *in_finds;
1397  } search_context_t;  } search_context_t;
1398    
1399    
1400    static GtkWidget *check_button_new_with_label(char *label) {
1401    #if !defined(USE_MAEMO) || (MAEMO_VERSION_MAJOR < 5)
1402      return gtk_check_button_new_with_label(label);
1403    #else
1404      GtkWidget *cbut =
1405        hildon_check_button_new(HILDON_SIZE_FINGER_HEIGHT | HILDON_SIZE_AUTO_WIDTH);
1406      gtk_button_set_label(GTK_BUTTON(cbut), label);
1407      return cbut;
1408    #endif
1409    }
1410    
1411    static void check_button_set_active(GtkWidget *button, gboolean active) {
1412    #if !defined(USE_MAEMO) || (MAEMO_VERSION_MAJOR < 5)
1413      gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button), active);
1414    #else
1415      hildon_check_button_set_active(HILDON_CHECK_BUTTON(button), active);
1416    #endif
1417    }
1418    
1419    static gboolean check_button_get_active(GtkWidget *button) {
1420    #if !defined(USE_MAEMO) || (MAEMO_VERSION_MAJOR < 5)
1421      return gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(button));
1422    #else
1423      return hildon_check_button_get_active(HILDON_CHECK_BUTTON(button));
1424    #endif
1425    }
1426    
1427  static void callback_finds_toggled(GtkWidget *widget, gpointer data ) {  static void callback_finds_toggled(GtkWidget *widget, gpointer data ) {
1428    search_context_t *context = (search_context_t*)data;    search_context_t *context = (search_context_t*)data;
1429    
1430    gboolean in_finds = gtk_toggle_button_get_active(    gboolean in_finds = check_button_get_active(context->in_finds);
           GTK_TOGGLE_BUTTON(context->in_finds));  
1431    
1432    gtk_widget_set_sensitive(context->entry,    !in_finds);    gtk_widget_set_sensitive(context->entry,    !in_finds);
1433    gtk_widget_set_sensitive(context->in_id,    !in_finds);    gtk_widget_set_sensitive(context->in_id,    !in_finds);
# Line 1272  cb_menu_search(GtkWidget *window, gpoint Line 1457  cb_menu_search(GtkWidget *window, gpoint
1457    GtkWidget *table = gtk_table_new(2, 2, TRUE);    GtkWidget *table = gtk_table_new(2, 2, TRUE);
1458    gtk_table_set_col_spacing(GTK_TABLE(table), 0, 8);    gtk_table_set_col_spacing(GTK_TABLE(table), 0, 8);
1459    
1460    context.in_id = gtk_check_button_new_with_label(_("Waypoint IDs"));    context.in_id = check_button_new_with_label(_("Waypoint IDs"));
1461    gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(context.in_id),    check_button_set_active(context.in_id, appdata->search & SEARCH_ID);
                                appdata->search & SEARCH_ID);  
1462    gtk_table_attach_defaults(GTK_TABLE(table), context.in_id, 0, 1, 0, 1);    gtk_table_attach_defaults(GTK_TABLE(table), context.in_id, 0, 1, 0, 1);
1463    
1464    context.in_name = gtk_check_button_new_with_label(_("Names"));    context.in_name = check_button_new_with_label(_("Names"));
1465    gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(context.in_name),    check_button_set_active(context.in_name, appdata->search & SEARCH_NAME);
                                appdata->search & SEARCH_NAME);  
1466    gtk_table_attach_defaults(GTK_TABLE(table), context.in_name, 1, 2, 0, 1);    gtk_table_attach_defaults(GTK_TABLE(table), context.in_name, 1, 2, 0, 1);
1467    
1468    context.in_desc = gtk_check_button_new_with_label(_("Descriptions"));    context.in_desc = check_button_new_with_label(_("Descriptions"));
1469    gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(context.in_desc),    check_button_set_active(context.in_desc, appdata->search & SEARCH_DESC);
                                appdata->search & SEARCH_DESC);  
1470    gtk_table_attach_defaults(GTK_TABLE(table), context.in_desc, 0, 1, 1, 2);    gtk_table_attach_defaults(GTK_TABLE(table), context.in_desc, 0, 1, 1, 2);
1471    
1472    context.in_owner = gtk_check_button_new_with_label(_("Owner"));    context.in_owner = check_button_new_with_label(_("Owner"));
1473    gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(context.in_owner),    check_button_set_active(context.in_owner, appdata->search & SEARCH_OWNER);
                                appdata->search & SEARCH_OWNER);  
1474    gtk_table_attach_defaults(GTK_TABLE(table), context.in_owner, 1, 2, 1, 2);    gtk_table_attach_defaults(GTK_TABLE(table), context.in_owner, 1, 2, 1, 2);
1475    
1476    gtk_box_pack_start_defaults(GTK_BOX(GTK_DIALOG(dialog)->vbox), table);    gtk_box_pack_start_defaults(GTK_BOX(GTK_DIALOG(dialog)->vbox), table);
# Line 1298  cb_menu_search(GtkWidget *window, gpoint Line 1479  cb_menu_search(GtkWidget *window, gpoint
1479    
1480    gtk_box_pack_start_defaults(GTK_BOX(GTK_DIALOG(dialog)->vbox),    gtk_box_pack_start_defaults(GTK_BOX(GTK_DIALOG(dialog)->vbox),
1481                                gtk_label_new(_("Search for:")));                                gtk_label_new(_("Search for:")));
1482    #if !defined(USE_MAEMO) || (MAEMO_VERSION_MAJOR < 5)
1483      context.entry = gtk_entry_new();
1484    #else
1485      context.entry = hildon_entry_new(HILDON_SIZE_AUTO);
1486    #endif
1487    
1488    gtk_box_pack_start_defaults(GTK_BOX(GTK_DIALOG(dialog)->vbox),    gtk_box_pack_start_defaults(GTK_BOX(GTK_DIALOG(dialog)->vbox),
1489                                context.entry = gtk_entry_new());                                context.entry);
1490    
1491    if(appdata->search_str)    if(appdata->search_str)
1492      gtk_entry_set_text(GTK_ENTRY(context.entry), appdata->search_str);      gtk_entry_set_text(GTK_ENTRY(context.entry), appdata->search_str);
1493    
# Line 1310  cb_menu_search(GtkWidget *window, gpoint Line 1498  cb_menu_search(GtkWidget *window, gpoint
1498    
1499    GtkWidget *hbox = gtk_hbox_new(FALSE, 5);    GtkWidget *hbox = gtk_hbox_new(FALSE, 5);
1500    
1501    context.in_finds = gtk_check_button_new_with_label(_("Search finds for"));    context.in_finds = check_button_new_with_label(_("Search finds for"));
1502    gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(context.in_finds),    check_button_set_active(context.in_finds, appdata->search & SEARCH_FINDS);
                                appdata->search & SEARCH_FINDS);  
1503    gtk_box_pack_start_defaults(GTK_BOX(hbox), context.in_finds);    gtk_box_pack_start_defaults(GTK_BOX(hbox), context.in_finds);
1504    g_signal_connect(G_OBJECT(context.in_finds), "toggled",    g_signal_connect(G_OBJECT(context.in_finds), "toggled",
1505                     G_CALLBACK(callback_finds_toggled), &context);                     G_CALLBACK(callback_finds_toggled), &context);
# Line 1352  cb_menu_search(GtkWidget *window, gpoint Line 1539  cb_menu_search(GtkWidget *window, gpoint
1539                      HILDON_NUMBER_EDITOR(context.spinner));                      HILDON_NUMBER_EDITOR(context.spinner));
1540  #endif  #endif
1541    
1542      if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(context.in_finds)))      if(check_button_get_active(context.in_finds))
1543        appdata->search |=  SEARCH_FINDS;        appdata->search |=  SEARCH_FINDS;
1544      else      else
1545        appdata->search &= ~SEARCH_FINDS;        appdata->search &= ~SEARCH_FINDS;
1546    
1547      if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(context.in_id)))      if(check_button_get_active(context.in_id))
1548        appdata->search |=  SEARCH_ID;        appdata->search |=  SEARCH_ID;
1549      else      else
1550        appdata->search &= ~SEARCH_ID;        appdata->search &= ~SEARCH_ID;
1551    
1552      if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(context.in_name)))      if(check_button_get_active(context.in_name))
1553        appdata->search |=  SEARCH_NAME;        appdata->search |=  SEARCH_NAME;
1554      else      else
1555        appdata->search &= ~SEARCH_NAME;        appdata->search &= ~SEARCH_NAME;
1556    
1557      if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(context.in_desc)))      if(check_button_get_active(context.in_desc))
1558        appdata->search |=  SEARCH_DESC;        appdata->search |=  SEARCH_DESC;
1559      else      else
1560        appdata->search &= ~SEARCH_DESC;        appdata->search &= ~SEARCH_DESC;
1561    
1562      if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(context.in_owner)))      if(check_button_get_active(context.in_owner))
1563        appdata->search |=  SEARCH_OWNER;        appdata->search |=  SEARCH_OWNER;
1564      else      else
1565        appdata->search &= ~SEARCH_OWNER;        appdata->search &= ~SEARCH_OWNER;
# Line 1385  cb_menu_search(GtkWidget *window, gpoint Line 1572  cb_menu_search(GtkWidget *window, gpoint
1572    
1573        printf("Search for %s (flags = %x)...\n", p, appdata->search);        printf("Search for %s (flags = %x)...\n", p, appdata->search);
1574    
1575  #ifndef USE_BREAD_CRUMB_TRAIL  #if !defined(USE_BREAD_CRUMB_TRAIL) && !defined(BCT)
1576        gpx_t *found =        gpx_t *found =
1577          search_do(appdata, appdata->gpx, p, appdata->search, FALSE);          search_do(appdata, appdata->gpx, p, appdata->search, FALSE);
1578    
# Line 1419  cb_menu_search(GtkWidget *window, gpoint Line 1606  cb_menu_search(GtkWidget *window, gpoint
1606      gtk_widget_destroy(dialog);      gtk_widget_destroy(dialog);
1607  }  }
1608    
1609  void on_window_destroy (GtkWidget *widget, gpointer data);  static void on_window_destroy (GtkWidget *widget, gpointer data);
1610    
1611  #ifndef USE_MAEMO  #ifndef USE_MAEMO
1612  static void  static void
# Line 1481  cb_menu_export_log(GtkWidget *widget, gp Line 1668  cb_menu_export_log(GtkWidget *widget, gp
1668    notes_log_export(appdata);    notes_log_export(appdata);
1669  }  }
1670    
1671  #ifdef USE_MAEMO  #ifdef ENABLE_MAEMO_MAPPER
1672  static void  static void
1673  cb_menu_export_mmpoi(GtkWidget *widget, gpointer data) {  cb_menu_export_mmpoi(GtkWidget *widget, gpointer data) {
1674    appdata_t *appdata = (appdata_t*)data;    appdata_t *appdata = (appdata_t*)data;
# Line 1495  cb_menu_export_garmin(GtkWidget *widget, Line 1682  cb_menu_export_garmin(GtkWidget *widget,
1682    garmin_export(appdata);    garmin_export(appdata);
1683  }  }
1684    
1685    #ifdef ENABLE_OSM_GPS_MAP
1686    static void
1687    cb_menu_map(GtkWidget *window, gpointer data) {
1688      map((appdata_t *)data);
1689    }
1690    #endif
1691    
1692  static void  static void
1693  cb_menu_geomath(GtkWidget *window, gpointer data) {  cb_menu_geomath(GtkWidget *window, gpointer data) {
1694    geomath_dialog((appdata_t *)data);    geomath_dialog((appdata_t *)data);
# Line 1510  cb_menu_precpos(GtkWidget *window, gpoin Line 1704  cb_menu_precpos(GtkWidget *window, gpoin
1704    precise_position((appdata_t *)data);    precise_position((appdata_t *)data);
1705  }  }
1706    
1707  #ifdef USE_STACKABLE_WINDOW  static void
1708  static void on_export_destroy(GtkWidget *widget, appdata_t *appdata) {  cb_menu_geotoad(GtkWidget *window, gpointer data) {
1709    appdata->cur_view = g_object_get_data(G_OBJECT(widget), "cur_view");    geotoad((appdata_t *)data);
1710  }  }
1711    
1712  void on_export_clicked(GtkButton *button, appdata_t *appdata) {  #ifdef USE_STACKABLE_WINDOW
1713    HildonStackableWindow *view_window;  typedef struct {
1714    GtkWidget *but;    char *label, *desc;
1715      GtkSignalFunc activate_cb;
1716    } menu_entry_t;
1717    
1718    view_window = HILDON_STACKABLE_WINDOW (hildon_stackable_window_new ());  typedef struct {
1719    gtk_window_set_title (GTK_WINDOW (view_window), "GPXView - Export");    const char *title;
1720      const menu_entry_t *menu;
1721      int len;
1722    } submenu_t;
1723    
1724     /* store last "cur_view" in window */  #define COLUMNS  1
   g_object_set_data(G_OBJECT(view_window), "cur_view", appdata->cur_view);  
   appdata->cur_view = NULL;  
1725    
1726    g_signal_connect(G_OBJECT(view_window), "destroy",  void on_submenu_entry_clicked(GtkButton *button, GtkWidget *menu) {
                    G_CALLBACK(on_export_destroy), appdata);  
1727    
1728    GtkVBox *contents = GTK_VBOX(gtk_vbox_new (12, FALSE));    /* force closing of submenu dialog */
1729      gtk_dialog_response(GTK_DIALOG(menu), GTK_RESPONSE_NONE);
1730      gtk_widget_hide(menu);
1731    
1732      /* let gtk clean up */
1733      while(gtk_events_pending())
1734        gtk_main_iteration();
1735    }
1736    
1737    but = hildon_button_new_with_text(  static GtkWidget *app_submenu_create(appdata_t *appdata,
1738              HILDON_SIZE_FINGER_HEIGHT | HILDON_SIZE_AUTO_WIDTH,                                       const submenu_t *submenu) {
             HILDON_BUTTON_ARRANGEMENT_VERTICAL,  
             _("Export to Maemo Mapper"),  
             _("Save a Maemo Mapper POI file"));  
   g_signal_connect(but, "clicked",  
                    G_CALLBACK(cb_menu_export_mmpoi), appdata);  
   gtk_box_pack_start(GTK_BOX(contents), but, FALSE, FALSE, 0);  
1739    
1740      /* create a oridinary dialog box */
1741      GtkWidget *dialog = gtk_dialog_new();
1742      gtk_window_set_title(GTK_WINDOW(dialog), _(submenu->title));
1743      gtk_window_set_modal(GTK_WINDOW(dialog), TRUE);
1744      gtk_window_set_transient_for(GTK_WINDOW(dialog),
1745                                   GTK_WINDOW(appdata->window));
1746      gtk_dialog_set_has_separator(GTK_DIALOG(dialog), FALSE);
1747    
1748    but = hildon_button_new_with_text(    GtkWidget *table = gtk_table_new(submenu->len/COLUMNS, COLUMNS, TRUE);
1749              HILDON_SIZE_FINGER_HEIGHT | HILDON_SIZE_AUTO_WIDTH,    int x = 0, y = 0;
1750              HILDON_BUTTON_ARRANGEMENT_VERTICAL,  
1751              _("Export Field Notes"),    const menu_entry_t *menu_entries = submenu->menu;
1752              _("Save a Garmin Field Notes file"));    while(menu_entries->label) {
1753    g_signal_connect(but, "clicked",      GtkWidget *button = NULL;
                    G_CALLBACK(cb_menu_export_log), appdata);  
   gtk_box_pack_start(GTK_BOX(contents), but, FALSE, FALSE, 0);  
   
1754    
1755    but = hildon_button_new_with_text(      button = hildon_button_new_with_text(
1756              HILDON_SIZE_FINGER_HEIGHT | HILDON_SIZE_AUTO_WIDTH,              HILDON_SIZE_FINGER_HEIGHT | HILDON_SIZE_AUTO_WIDTH,
1757              HILDON_BUTTON_ARRANGEMENT_VERTICAL,              HILDON_BUTTON_ARRANGEMENT_VERTICAL,
1758              _("Export Garmin GPX"),              _(menu_entries->label), _(menu_entries->desc));
             _("Save a GPX file containing modified waypoints"));  
   g_signal_connect(but, "clicked",  
                    G_CALLBACK(cb_menu_export_garmin), appdata);  
   gtk_box_pack_start(GTK_BOX(contents), but, FALSE, FALSE, 0);  
1759    
1760    gtk_container_add (GTK_CONTAINER (view_window), GTK_WIDGET (contents));      /* try to center both texts */
1761    gtk_widget_show_all (GTK_WIDGET (view_window));      hildon_button_set_title_alignment(HILDON_BUTTON(button), 0.5, 0.5);
1762  }      hildon_button_set_value_alignment(HILDON_BUTTON(button), 0.5, 0.5);
1763    
1764  static void on_tools_destroy(GtkWidget *widget, appdata_t *appdata) {      g_signal_connect(button, "clicked",
1765    appdata->cur_view = g_object_get_data(G_OBJECT(widget), "cur_view");                       G_CALLBACK(on_submenu_entry_clicked), dialog);
1766    
1767        g_signal_connect(button, "clicked",
1768                         menu_entries->activate_cb, appdata);
1769    
1770        gtk_table_attach_defaults(GTK_TABLE(table),  button, x, x+1, y, y+1);
1771    
1772        x++;
1773        if(x == COLUMNS) { x = 0; y++; }
1774    
1775        menu_entries++;
1776      }
1777    
1778      gtk_box_pack_start_defaults(GTK_BOX(GTK_DIALOG(dialog)->vbox), table);
1779    
1780      return dialog;
1781  }  }
1782    
1783  void on_tools_clicked(GtkButton *button, appdata_t *appdata) {  /* popup the dialog shaped submenu */
1784    HildonStackableWindow *view_window;  static void submenu_popup(GtkWidget *menu) {
1785    GtkWidget *but;    gtk_widget_show_all(menu);
1786      gtk_dialog_run(GTK_DIALOG(menu));
1787      gtk_widget_hide(menu);
1788    }
1789    
1790    view_window = HILDON_STACKABLE_WINDOW (hildon_stackable_window_new ());  static void submenu_cleanup(GtkWidget *menu) {
1791    gtk_window_set_title (GTK_WINDOW (view_window), "GPXView - Tools");    gtk_widget_destroy(menu);
1792    }
1793    
1794     /* store last "cur_view" in window */  static const menu_entry_t submenu_export_entries[] = {
1795    g_object_set_data(G_OBJECT(view_window), "cur_view", appdata->cur_view);  #ifdef ENABLE_MAEMO_MAPPER
1796    appdata->cur_view = NULL;    { "Export to Maemo Mapper" , "Save a Maemo Mapper POI file",
1797        G_CALLBACK(cb_menu_export_mmpoi)  },
1798    #endif
1799      { "Export Field Notes",      "Save a Garmin Field Notes file",
1800        G_CALLBACK(cb_menu_export_log)    },
1801      { "Export Garmin GPX",       "Save modified waypoints in GPX file",
1802        G_CALLBACK(cb_menu_export_garmin) },
1803      { NULL, NULL, NULL }
1804    };
1805    
1806    g_signal_connect(G_OBJECT(view_window), "destroy",  static const submenu_t submenu_export = {
1807                     G_CALLBACK(on_tools_destroy), appdata);    "Export", submenu_export_entries,
1808      sizeof(submenu_export_entries)/sizeof(menu_entry_t)-1
1809    };
1810    
1811    GtkVBox *contents = GTK_VBOX(gtk_vbox_new (12, FALSE));  /* the export submenu */
1812    void on_export_clicked(GtkButton *button, appdata_t *appdata) {
1813      if(!appdata->export_menu)
1814        appdata->export_menu = app_submenu_create(appdata, &submenu_export);
1815    
1816    but = hildon_button_new_with_text(    submenu_popup(appdata->export_menu);
1817              HILDON_SIZE_FINGER_HEIGHT | HILDON_SIZE_AUTO_WIDTH,  }
             HILDON_BUTTON_ARRANGEMENT_VERTICAL,  
             _("Geomath"),  
             _("Geocoordinate calculation"));  
   g_signal_connect(but, "clicked",  
                    G_CALLBACK(cb_menu_geomath), appdata);  
   gtk_box_pack_start(GTK_BOX(contents), but, FALSE, FALSE, 0);  
1818    
1819    static const menu_entry_t submenu_tools_entries[] = {
1820      { "Geomath",          "Geocoordinate calculation",
1821        G_CALLBACK(cb_menu_geomath) },
1822      { "Geotext",          "Text analysis",
1823        G_CALLBACK(cb_menu_geotext) },
1824      { "Precise Position", "Calculate a precise GPS position",
1825        G_CALLBACK(cb_menu_precpos) },
1826      { "GeoToad",          "Use GeoToad online downloader",
1827        G_CALLBACK(cb_menu_geotoad) },
1828      { NULL, NULL, NULL }
1829    };
1830    
1831    but = hildon_button_new_with_text(  static const submenu_t submenu_tools = {
1832              HILDON_SIZE_FINGER_HEIGHT | HILDON_SIZE_AUTO_WIDTH,    "Tools", submenu_tools_entries,
1833              HILDON_BUTTON_ARRANGEMENT_VERTICAL,    sizeof(submenu_tools_entries)/sizeof(menu_entry_t)-1
1834              _("Geotext"),  };
             _("Text analysis, letter counting etc"));  
   g_signal_connect(but, "clicked",  
                    G_CALLBACK(cb_menu_geotext), appdata);  
   gtk_box_pack_start(GTK_BOX(contents), but, FALSE, FALSE, 0);  
   
1835    
1836    but = hildon_button_new_with_text(  /* the tools submenu */
1837              HILDON_SIZE_FINGER_HEIGHT | HILDON_SIZE_AUTO_WIDTH,  void on_tools_clicked(GtkButton *button, appdata_t *appdata) {
1838              HILDON_BUTTON_ARRANGEMENT_VERTICAL,    if(!appdata->tools_menu)
1839              _("Precise Position"),      appdata->tools_menu = app_submenu_create(appdata, &submenu_tools);
             _("Calculate a very precise GPS position"));  
   g_signal_connect(but, "clicked",  
                    G_CALLBACK(cb_menu_precpos), appdata);  
   gtk_box_pack_start(GTK_BOX(contents), but, FALSE, FALSE, 0);  
1840    
1841    gtk_container_add (GTK_CONTAINER (view_window), GTK_WIDGET (contents));    submenu_popup(appdata->tools_menu);
   gtk_widget_show_all (GTK_WIDGET (view_window));  
1842  }  }
1843    
1844  HildonAppMenu *menu_create(appdata_t *appdata, int mode) {  HildonAppMenu *menu_create(appdata_t *appdata, int mode) {
# Line 1642  HildonAppMenu *menu_create(appdata_t *ap Line 1866  HildonAppMenu *menu_create(appdata_t *ap
1866      g_signal_connect_after(button, "clicked",      g_signal_connect_after(button, "clicked",
1867                             G_CALLBACK(cb_menu_adddir), appdata);                             G_CALLBACK(cb_menu_adddir), appdata);
1868      hildon_app_menu_append(menu, GTK_BUTTON(button));      hildon_app_menu_append(menu, GTK_BUTTON(button));
   }  
1869    
   if(mode == MENU_GPXLIST) {  
1870      button = gtk_button_new_with_label(_("Export"));      button = gtk_button_new_with_label(_("Export"));
1871      g_signal_connect_after(button, "clicked",      g_signal_connect_after(button, "clicked",
1872                             G_CALLBACK(on_export_clicked), appdata);                             G_CALLBACK(on_export_clicked), appdata);
# Line 1661  HildonAppMenu *menu_create(appdata_t *ap Line 1883  HildonAppMenu *menu_create(appdata_t *ap
1883                           G_CALLBACK(on_tools_clicked), appdata);                           G_CALLBACK(on_tools_clicked), appdata);
1884    hildon_app_menu_append(menu, GTK_BUTTON(button));    hildon_app_menu_append(menu, GTK_BUTTON(button));
1885    
1886    //  gtk_widget_show(GTK_WIDGET(menu));  #ifdef ENABLE_OSM_GPS_MAP
1887        button = gtk_button_new_with_label(_("Map"));
1888        g_signal_connect_after(button, "clicked",
1889                               G_CALLBACK(cb_menu_map), appdata);
1890        hildon_app_menu_append(menu, GTK_BUTTON(button));
1891    #endif
1892    
1893    #ifdef HILDON_HELP
1894      button = gtk_button_new_with_label(_("Help"));
1895      g_signal_connect_after(button, "clicked",
1896                             G_CALLBACK(cb_menu_help), appdata);
1897      hildon_app_menu_append(menu, GTK_BUTTON(button));
1898    #endif
1899    
1900      gtk_widget_show_all(GTK_WIDGET(menu));
1901    
1902    return menu;    return menu;
1903  }  }
# Line 1671  void menu_create(appdata_t *appdata) { Line 1907  void menu_create(appdata_t *appdata) {
1907    GtkWidget *menu, *item;    GtkWidget *menu, *item;
1908    menu = gtk_menu_new();    menu = gtk_menu_new();
1909    
1910  #ifdef USE_BREAD_CRUMB_TRAIL  #if defined(USE_BREAD_CRUMB_TRAIL) || defined(BCT)
1911    appdata->menu_import =    appdata->menu_import =
1912  #endif  #endif
1913    item = gtk_menu_item_new_with_label(_("Import"));    item = gtk_menu_item_new_with_label(_("Import"));
# Line 1701  void menu_create(appdata_t *appdata) { Line 1937  void menu_create(appdata_t *appdata) {
1937    g_signal_connect(item, "activate", GTK_SIGNAL_FUNC(cb_menu_remove), appdata);    g_signal_connect(item, "activate", GTK_SIGNAL_FUNC(cb_menu_remove), appdata);
1938  #endif  #endif
1939    
1940  #ifdef USE_BREAD_CRUMB_TRAIL  #if defined(USE_BREAD_CRUMB_TRAIL) || defined(BCT)
1941    appdata->menu_export =    appdata->menu_export =
1942  #endif  #endif
1943      item = gtk_menu_item_new_with_label(_("Export"));      item = gtk_menu_item_new_with_label(_("Export"));
# Line 1709  void menu_create(appdata_t *appdata) { Line 1945  void menu_create(appdata_t *appdata) {
1945    submenu = gtk_menu_new();    submenu = gtk_menu_new();
1946    gtk_menu_item_set_submenu(GTK_MENU_ITEM(item), submenu);    gtk_menu_item_set_submenu(GTK_MENU_ITEM(item), submenu);
1947    
1948  #ifdef USE_MAEMO  #ifdef ENABLE_MAEMO_MAPPER
1949    item = gtk_menu_item_new_with_label( _("Maemo Mapper POI") );    item = gtk_menu_item_new_with_label( _("Maemo Mapper POI") );
1950    gtk_menu_append(GTK_MENU_SHELL(submenu), item);    gtk_menu_append(GTK_MENU_SHELL(submenu), item);
1951    g_signal_connect(item, "activate",    g_signal_connect(item, "activate",
# Line 1726  void menu_create(appdata_t *appdata) { Line 1962  void menu_create(appdata_t *appdata) {
1962    g_signal_connect(item, "activate",    g_signal_connect(item, "activate",
1963                     GTK_SIGNAL_FUNC(cb_menu_export_garmin), appdata);                     GTK_SIGNAL_FUNC(cb_menu_export_garmin), appdata);
1964    
1965  #ifdef USE_BREAD_CRUMB_TRAIL  #if defined(USE_BREAD_CRUMB_TRAIL) || defined(BCT)
1966    appdata->menu_search =    appdata->menu_search =
1967  #endif  #endif
1968    item = gtk_menu_item_new_with_label( _("Search") );    item = gtk_menu_item_new_with_label( _("Search") );
# Line 1735  void menu_create(appdata_t *appdata) { Line 1971  void menu_create(appdata_t *appdata) {
1971    
1972    gtk_menu_append(GTK_MENU_SHELL(menu), gtk_separator_menu_item_new());    gtk_menu_append(GTK_MENU_SHELL(menu), gtk_separator_menu_item_new());
1973    
 #ifndef NO_COPY_N_PASTE  
1974    /* ----------- copy'n paste submenu ----------------- */    /* ----------- copy'n paste submenu ----------------- */
1975    appdata->clipboard = gtk_clipboard_get(GDK_SELECTION_CLIPBOARD);  #ifndef NO_COPY_N_PASTE
   gtk_clipboard_set_can_store(appdata->clipboard, NULL, 0);  
   
1976    item = gtk_menu_item_new_with_label(_("Edit"));    item = gtk_menu_item_new_with_label(_("Edit"));
1977    gtk_menu_append(GTK_MENU_SHELL(menu), item);    gtk_menu_append(GTK_MENU_SHELL(menu), item);
1978    submenu = gtk_menu_new();    submenu = gtk_menu_new();
# Line 1766  void menu_create(appdata_t *appdata) { Line 1999  void menu_create(appdata_t *appdata) {
1999    
2000    gtk_menu_append(GTK_MENU_SHELL(menu), gtk_separator_menu_item_new());    gtk_menu_append(GTK_MENU_SHELL(menu), gtk_separator_menu_item_new());
2001    
2002    #ifdef ENABLE_OSM_GPS_MAP
2003      item = gtk_menu_item_new_with_label( _("Map") );
2004      gtk_menu_append(GTK_MENU_SHELL(menu), item);
2005      g_signal_connect(item, "activate",
2006                       GTK_SIGNAL_FUNC(cb_menu_map), appdata);
2007    #endif
2008    
2009    item = gtk_menu_item_new_with_label(_("Tools"));    item = gtk_menu_item_new_with_label(_("Tools"));
2010    gtk_menu_append(GTK_MENU_SHELL(menu), item);    gtk_menu_append(GTK_MENU_SHELL(menu), item);
2011    submenu = gtk_menu_new();    submenu = gtk_menu_new();
# Line 1786  void menu_create(appdata_t *appdata) { Line 2026  void menu_create(appdata_t *appdata) {
2026    g_signal_connect(item, "activate",    g_signal_connect(item, "activate",
2027                     GTK_SIGNAL_FUNC(cb_menu_precpos), appdata);                     GTK_SIGNAL_FUNC(cb_menu_precpos), appdata);
2028    
2029      item = gtk_menu_item_new_with_label( _("GeoToad") );
2030      gtk_menu_append(GTK_MENU_SHELL(submenu), item);
2031      g_signal_connect(item, "activate",
2032                       GTK_SIGNAL_FUNC(cb_menu_geotoad), appdata);
2033    
2034    gtk_menu_append(GTK_MENU_SHELL(menu), gtk_separator_menu_item_new());    gtk_menu_append(GTK_MENU_SHELL(menu), gtk_separator_menu_item_new());
2035    
2036  #if defined(USE_MAEMO) && defined(HILDON_HELP)  #if defined(USE_MAEMO) && defined(HILDON_HELP)
# Line 1830  void cleanup(appdata_t *appdata) { Line 2075  void cleanup(appdata_t *appdata) {
2075    if(appdata->image_path) free(appdata->image_path);    if(appdata->image_path) free(appdata->image_path);
2076    if(appdata->search_str) free(appdata->search_str);    if(appdata->search_str) free(appdata->search_str);
2077    
2078    #ifdef USE_STACKABLE_WINDOW
2079      if(appdata->export_menu) submenu_cleanup(appdata->export_menu);
2080      if(appdata->tools_menu)  submenu_cleanup(appdata->tools_menu);
2081    #endif
2082    
2083    gnome_vfs_shutdown();    gnome_vfs_shutdown();
2084    icons_free();    icons_free();
2085    gps_release(appdata);    gps_release(appdata);
# Line 1858  void cleanup(appdata_t *appdata) { Line 2108  void cleanup(appdata_t *appdata) {
2108    puts("everything is gone");    puts("everything is gone");
2109  }  }
2110    
2111  void on_window_destroy (GtkWidget *widget, gpointer data) {  static void on_window_destroy (GtkWidget *widget, gpointer data) {
2112    appdata_t *appdata = (appdata_t*)data;    appdata_t *appdata = (appdata_t*)data;
2113    
2114    gconf_save_state(appdata);    gconf_save_state(appdata);
# Line 1921  gboolean on_window_key_press(GtkWidget * Line 2171  gboolean on_window_key_press(GtkWidget *
2171    return handled;    return handled;
2172  }  }
2173    
2174  #ifdef USE_BREAD_CRUMB_TRAIL  #if defined(USE_BREAD_CRUMB_TRAIL) || defined(BCT)
2175  typedef struct {  typedef struct {
2176    int level;    int level;
2177    appdata_t *appdata;    appdata_t *appdata;
# Line 2013  crumb_back(gpointer data) { Line 2263  crumb_back(gpointer data) {
2263    
2264    gtk_widget_show_all(crumb->appdata->vbox);    gtk_widget_show_all(crumb->appdata->vbox);
2265    g_free(data);    g_free(data);
2266    
2267    #ifdef ENABLE_OSM_GPS_MAP
2268      map_update(crumb->appdata);
2269    #endif
2270  }  }
2271    
2272  static void crumb_add(appdata_t *appdata, char *name, int level,  static void crumb_add(appdata_t *appdata, char *name, int level,
# Line 2053  static void crumb_add(appdata_t *appdata Line 2307  static void crumb_add(appdata_t *appdata
2307  #endif  #endif
2308    }    }
2309    
2310    #ifdef USE_BREAD_CRUMB_TRAIL
2311    hildon_bread_crumb_trail_push_text(HILDON_BREAD_CRUMB_TRAIL(appdata->bct),    hildon_bread_crumb_trail_push_text(HILDON_BREAD_CRUMB_TRAIL(appdata->bct),
2312                                       name, crumb, (GDestroyNotify)crumb_back);                                       name, crumb, (GDestroyNotify)crumb_back);
2313    #else
2314      bct_push_text(appdata->bct, name, crumb, (GDestroyNotify)crumb_back);
2315    #endif
2316    
2317    #ifdef ENABLE_OSM_GPS_MAP
2318      map_update(appdata);
2319    #endif
2320  }  }
2321  #endif // USE_BREAD_CRUMB_TRAIL  #endif // USE_BREAD_CRUMB_TRAIL
2322    
# Line 2066  void main_after_settings_redraw(appdata_ Line 2328  void main_after_settings_redraw(appdata_
2328      return;      return;
2329    }    }
2330    
 #ifndef USE_MAEMO  
   // in non-maemo setup this can only affect the main screen as  
   // the menu is blocked while a dialog is open. also the main  
   // screen is always present  
   if(appdata->gpxlist_items != appdata->cur_items) {  
     /* re-do the main screen */  
     gtk_container_remove(GTK_CONTAINER(appdata->vbox), appdata->cur_view);  
     appdata->cur_view = gpxlist_create_view_and_model(appdata, NULL);  
     gtk_box_pack_start_defaults(GTK_BOX(appdata->vbox), appdata->cur_view);  
     gtk_widget_show_all(appdata->vbox);  
   }  
 #else  
2331    /* a cache screen cannot be changed from the settings and thus doesn't */    /* a cache screen cannot be changed from the settings and thus doesn't */
2332    /* need to be redrawn */    /* need to be redrawn */
2333    if(appdata->cur_cache) {    if(appdata->cur_cache) {
# Line 2132  void main_after_settings_redraw(appdata_ Line 2382  void main_after_settings_redraw(appdata_
2382    
2383      gtk_widget_show_all(container);      gtk_widget_show_all(container);
2384    }    }
 #endif // USE_MAEMO  
2385  }  }
2386    
2387  int main(int argc, char *argv[]) {  int main(int argc, char *argv[]) {
# Line 2153  int main(int argc, char *argv[]) { Line 2402  int main(int argc, char *argv[]) {
2402    
2403    gtk_init (&argc, &argv);    gtk_init (&argc, &argv);
2404    
2405      curl_global_init(CURL_GLOBAL_ALL);
2406    
2407  #ifdef USE_MAEMO  #ifdef USE_MAEMO
2408    printf("Installing osso context for \"org.harbaum." APP "\"\n");    printf("Installing osso context for \"org.harbaum." APP "\"\n");
2409    appdata.osso_context = osso_initialize("org.harbaum."APP,    appdata.osso_context = osso_initialize("org.harbaum."APP,
# Line 2161  int main(int argc, char *argv[]) { Line 2412  int main(int argc, char *argv[]) {
2412      fprintf(stderr, "error initiating osso context\n");      fprintf(stderr, "error initiating osso context\n");
2413    }    }
2414    
2415    #ifdef ENABLE_MAEMO_MAPPER
2416    dbus_register(&appdata);    dbus_register(&appdata);
2417  #endif  #endif
2418    #endif
2419    
2420    icons_init();    icons_init();
2421    
# Line 2186  int main(int argc, char *argv[]) { Line 2439  int main(int argc, char *argv[]) {
2439    /* Create a Window. */    /* Create a Window. */
2440    appdata.window = gtk_window_new(GTK_WINDOW_TOPLEVEL);    appdata.window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
2441    /* Set a decent default size for the window. */    /* Set a decent default size for the window. */
2442    gtk_window_set_default_size(GTK_WINDOW(appdata.window), 500, 300);    gtk_window_set_default_size(GTK_WINDOW(appdata.window), 640, 480);
2443  #endif  #endif
2444    
2445  #if MAEMO_VERSION_MAJOR == 5  #if MAEMO_VERSION_MAJOR == 5
# Line 2199  int main(int argc, char *argv[]) { Line 2452  int main(int argc, char *argv[]) {
2452    g_signal_connect(G_OBJECT(appdata.window), "key_press_event",    g_signal_connect(G_OBJECT(appdata.window), "key_press_event",
2453                     G_CALLBACK(on_window_key_press), &appdata);                     G_CALLBACK(on_window_key_press), &appdata);
2454    
2455      /* prepare clipboard */
2456      appdata.clipboard = gtk_clipboard_get(GDK_SELECTION_CLIPBOARD);
2457      gtk_clipboard_set_can_store(appdata.clipboard, NULL, 0);
2458    
2459    appdata.vbox = gtk_vbox_new(FALSE, 2);    appdata.vbox = gtk_vbox_new(FALSE, 2);
2460    gtk_container_add(GTK_CONTAINER(appdata.window), appdata.vbox);    gtk_container_add(GTK_CONTAINER(appdata.window), appdata.vbox);
   
2461  #ifndef USE_STACKABLE_WINDOW  #ifndef USE_STACKABLE_WINDOW
2462    menu_create(&appdata);    menu_create(&appdata);
2463  #else  #else
# Line 2215  int main(int argc, char *argv[]) { Line 2471  int main(int argc, char *argv[]) {
2471    gtk_box_pack_start(GTK_BOX(appdata.vbox), appdata.bct, FALSE,FALSE,0);    gtk_box_pack_start(GTK_BOX(appdata.vbox), appdata.bct, FALSE,FALSE,0);
2472    
2473    hildon_bread_crumb_trail_clear(HILDON_BREAD_CRUMB_TRAIL(appdata.bct));    hildon_bread_crumb_trail_clear(HILDON_BREAD_CRUMB_TRAIL(appdata.bct));
2474    #else
2475    #ifdef BCT
2476      /* on non-hildon machines we use some custom made breadcrumbtrail */
2477      /* replacement */
2478      appdata.bct = bct_new();
2479      gtk_box_pack_start(GTK_BOX(appdata.vbox), appdata.bct, FALSE,FALSE,0);
2480    #endif
2481    #endif
2482    
2483    #if defined(USE_BREAD_CRUMB_TRAIL) || defined(BCT)
2484    crumb_add(&appdata, "GPX", CRUMB_GPXLIST, NULL);    crumb_add(&appdata, "GPX", CRUMB_GPXLIST, NULL);
2485  #endif  #endif
2486    

Legend:
Removed from v.12  
changed lines
  Added in v.211