Diff of /trunk/src/main.c

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

revision 107 by harbaum, Fri Sep 11 12:16:50 2009 UTC revision 231 by harbaum, Mon Dec 7 16:14:50 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 143  gpx_t *choose_file(appdata_t *appdata, g Line 157  gpx_t *choose_file(appdata_t *appdata, g
157        gpx_dialog_t *dialog = gpx_busy_dialog_new(GTK_WIDGET(appdata->window));        gpx_dialog_t *dialog = gpx_busy_dialog_new(GTK_WIDGET(appdata->window));
158    
159        if(!whole_dir)        if(!whole_dir)
160          gpx = gpx_parse(dialog, filename);          gpx = gpx_parse(dialog, filename, appdata->username);
161        else {        else {
162          /* cur trailing '/' if present */          /* cur trailing '/' if present */
163          if(strlastchr(filename) == '/')          if(strlastchr(filename) == '/')
164            filename[strlen(filename)] = 0;            filename[strlen(filename)] = 0;
165    
166          gpx = gpx_parse_dir(dialog, filename);          gpx = gpx_parse_dir(dialog, filename, appdata->username);
167        }        }
168    
169        gpx_busy_dialog_destroy(dialog);        gpx_busy_dialog_destroy(dialog);
170    
171        /* save path if gpx was successfully loaded */        /* save path if gpx was successfully loaded */
# Line 205  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        crumb_add(appdata, cache->name, CRUMB_CACHE, cache);
227    
228        gtk_container_remove(GTK_CONTAINER(appdata->vbox), appdata->cur_view);
229        appdata->cur_view = cache_view(appdata, cache);
230        gtk_box_pack_start_defaults(GTK_BOX(appdata->vbox), appdata->cur_view);
231        gtk_widget_show_all(appdata->vbox);
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 222  void cachelist_view_onRowActivated(GtkTr Line 249  void cachelist_view_onRowActivated(GtkTr
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 274  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 298  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 326  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 334  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 468  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 587  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      HildonWindowStack *stack = hildon_window_stack_get_default();
603      appdata->window = HILDON_WINDOW(hildon_window_stack_peek(stack));
604    
605    if(appdata->search_results) {    if(appdata->search_results) {
606      search_result_free(appdata->search_results);      search_result_free(appdata->search_results);
607      appdata->search_results = NULL;      appdata->search_results = NULL;
608    }    }
609    appdata->cur_gpx = NULL;    appdata->cur_gpx = NULL;
610    
611    #ifdef ENABLE_OSM_GPS_MAP
612      map_update(appdata);
613    #endif
614    
615    /* restore cur_view */    /* restore cur_view */
616    appdata->cur_view = g_object_get_data(G_OBJECT(widget), "cur_view");    appdata->cur_view = g_object_get_data(G_OBJECT(widget), "cur_view");
617  }  }
618    
619  void cachelist_dialog(appdata_t *appdata, gpx_t *gpx) {  void cachelist_dialog(appdata_t *appdata, gpx_t *gpx) {
620    GtkWidget *window = hildon_stackable_window_new();    GtkWidget *window = hildon_stackable_window_new();
621      appdata->window = HILDON_WINDOW(window);
622    
623    /* store last "cur_view" in window */    /* store last "cur_view" in window */
624    g_object_set_data(G_OBJECT(window), "cur_view", appdata->cur_view);    g_object_set_data(G_OBJECT(window), "cur_view", appdata->cur_view);
625    
626    appdata->cur_gpx = gpx;    appdata->cur_gpx = gpx;
627    char *title = g_strdup_printf("%s - GPXView", gpx->name);    gtk_window_set_title(GTK_WINDOW(window), gpx->name);
   gtk_window_set_title(GTK_WINDOW(window), title);  
   g_free(title);  
628    
629    appdata->cur_view = cachelist_create(appdata, gpx, NULL);    appdata->cur_view = cachelist_create(appdata, gpx, NULL);
630    gtk_container_add(GTK_CONTAINER(window), appdata->cur_view);    gtk_container_add(GTK_CONTAINER(window), appdata->cur_view);
# Line 619  void cachelist_dialog(appdata_t *appdata Line 637  void cachelist_dialog(appdata_t *appdata
637                     G_CALLBACK(on_cachelist_destroy), appdata);                     G_CALLBACK(on_cachelist_destroy), appdata);
638    
639    gtk_widget_show_all(window);    gtk_widget_show_all(window);
640    
641    #ifdef ENABLE_OSM_GPS_MAP
642      map_update(appdata);
643    #endif
644  }  }
645  #endif  #endif
646  #endif  #endif
# Line 651  static GdkPixbuf *gpx_icon_get(gpx_t *gp Line 673  static GdkPixbuf *gpx_icon_get(gpx_t *gp
673    return icon_get(ICON_FILE, 0);    return icon_get(ICON_FILE, 0);
674  }  }
675    
676  static void gpxlist_set(GtkListStore *store, GtkTreeIter *iter, gpx_t *gpx) {  void gpxlist_set(GtkListStore *store, GtkTreeIter *iter, gpx_t *gpx) {
677    char date_str[32], cnum[32];    char date_str[32], cnum[32];
678    
679    if(gpx->year && gpx->month && gpx->day) {    if(gpx->year && gpx->month && gpx->day) {
# Line 676  static void gpxlist_set(GtkListStore *st Line 698  static void gpxlist_set(GtkListStore *st
698                       GPXLIST_COL_OPEN, !gpx->closed,                       GPXLIST_COL_OPEN, !gpx->closed,
699                       GPXLIST_COL_CACHES, gpx->closed?NULL:cnum,                       GPXLIST_COL_CACHES, gpx->closed?NULL:cnum,
700  #ifdef USE_PANNABLE_AREA  #ifdef USE_PANNABLE_AREA
701                       GPXLIST_COL_DELETE, icon_get(ICON_MISC, 7),                       GPXLIST_COL_DELETE, icon_get(ICON_MISC, 2),
702  #endif  #endif
703                       GPXLIST_COL_DATA, gpx,                       GPXLIST_COL_DATA, gpx,
704                       -1);                       -1);
# Line 722  static void gpxlist_close(appdata_t *app Line 744  static void gpxlist_close(appdata_t *app
744    gconf_save_closed_name(appdata, gpx->filename, gpx->name);    gconf_save_closed_name(appdata, gpx->filename, gpx->name);
745  }  }
746    
747    void gpxlist_goto_cachelist(appdata_t *appdata, gpx_t *gpx) {
748    #if !defined(USE_BREAD_CRUMB_TRAIL) && !defined(BCT)
749    #ifdef USE_STACKABLE_WINDOW
750      if(!appdata->cur_gpx)
751    #endif
752        cachelist_dialog(appdata, gpx);
753    #ifdef USE_STACKABLE_WINDOW
754      else
755        printf("selected gpx, but cachelist window already present\n");
756    #endif
757    #else
758      gtk_container_remove(GTK_CONTAINER(appdata->vbox), appdata->cur_view);
759      appdata->cur_view = cachelist_create(appdata, gpx, NULL);
760      gtk_box_pack_start_defaults(GTK_BOX(appdata->vbox), appdata->cur_view);
761      gtk_widget_show_all(appdata->vbox);
762    
763      crumb_add(appdata, gpx->name, CRUMB_CACHELIST, gpx);
764    #endif
765    }
766    
767  static void gpxlist_view_onRowActivated(GtkTreeView *treeview,  static void gpxlist_view_onRowActivated(GtkTreeView *treeview,
768                            GtkTreePath        *path,                            GtkTreePath        *path,
769                            GtkTreeViewColumn  *col,                            GtkTreeViewColumn  *col,
# Line 748  static void gpxlist_view_onRowActivated( Line 790  static void gpxlist_view_onRowActivated(
790      if(col_name && !strcmp(col_name, "Del")) {      if(col_name && !strcmp(col_name, "Del")) {
791        printf("clicked delete\n");        printf("clicked delete\n");
792    
793    #if !defined(USE_MAEMO) || (MAEMO_VERSION_MAJOR < 5)
794        /* ask user what he wants */        /* ask user what he wants */
795        GtkWidget *dialog = gtk_message_dialog_new(        GtkWidget *dialog = gtk_message_dialog_new(
796                   GTK_WINDOW(appdata->window),                   GTK_WINDOW(appdata->window),
797                   GTK_DIALOG_DESTROY_WITH_PARENT,                   GTK_DIALOG_DESTROY_WITH_PARENT,
798                   GTK_MESSAGE_QUESTION, GTK_BUTTONS_CANCEL,                   GTK_MESSAGE_QUESTION,
799                     GTK_BUTTONS_CANCEL,
800                   _("Do you want to close this entry only or do "                   _("Do you want to close this entry only or do "
801                     "you want to remove it completely from the list?"));                     "you want to remove it completely from the list?"));
802    
# Line 761  static void gpxlist_view_onRowActivated( Line 805  static void gpxlist_view_onRowActivated(
805                               _("Close"), 2,                               _("Close"), 2,
806                               NULL);                               NULL);
807    
808          gtk_window_set_title(GTK_WINDOW(dialog), _("Close or remove entry?"));
809    #else
810    
811          GtkWidget *dialog =
812            gtk_dialog_new_with_buttons(_("Close or remove entry?"),
813                                GTK_WINDOW(appdata->window),
814                                GTK_DIALOG_DESTROY_WITH_PARENT,
815                                GTK_STOCK_CANCEL, GTK_RESPONSE_REJECT,
816                                _("Remove"), 1,
817                                _("Close"), 2,
818                                NULL);
819    
820          GtkWidget *content_area =
821            gtk_dialog_get_content_area (GTK_DIALOG (dialog));
822    
823          GtkWidget *hbox = gtk_hbox_new(FALSE, 0);
824    
825          gtk_box_pack_start(GTK_BOX(hbox),
826             gtk_image_new_from_stock( GTK_STOCK_DIALOG_QUESTION,
827                                       GTK_ICON_SIZE_DIALOG),
828                             FALSE, FALSE, 0);
829    
830          GtkWidget *label = gtk_label_new(
831                      _("Do you want to close this entry only or do "
832                        "you want to remove it completely from the list?"));
833    
834          gtk_label_set_line_wrap(GTK_LABEL(label), TRUE);
835          gtk_label_set_line_wrap_mode(GTK_LABEL(label), PANGO_WRAP_WORD);
836    
837          gtk_box_pack_start_defaults(GTK_BOX(hbox), label);
838          gtk_container_add (GTK_CONTAINER (content_area), hbox);
839    
840          gtk_widget_show_all (dialog);
841    #endif
842    
843        if(gpx->closed)        if(gpx->closed)
844          gtk_dialog_set_response_sensitive(GTK_DIALOG(dialog), 2, FALSE);          gtk_dialog_set_response_sensitive(GTK_DIALOG(dialog), 2, FALSE);
845    
       gtk_window_set_title(GTK_WINDOW(dialog), _("Remove entry?"));  
   
846        /* set the active flag again if the user answered "no" */        /* set the active flag again if the user answered "no" */
847        switch(gtk_dialog_run(GTK_DIALOG(dialog))) {        switch(gtk_dialog_run(GTK_DIALOG(dialog))) {
848    
# Line 795  static void gpxlist_view_onRowActivated( Line 872  static void gpxlist_view_onRowActivated(
872          gpx_t *new = NULL;          gpx_t *new = NULL;
873    
874          if(g_file_test(gpx->filename, G_FILE_TEST_IS_DIR))          if(g_file_test(gpx->filename, G_FILE_TEST_IS_DIR))
875            new = gpx_parse_dir(dialog, gpx->filename);            new = gpx_parse_dir(dialog, gpx->filename, appdata->username);
876          else          else
877            new = gpx_parse(dialog, gpx->filename);            new = gpx_parse(dialog, gpx->filename, appdata->username);
878    
879          if(new) {          if(new) {
880            gpx_t **prev = &(appdata->gpx);            gpx_t **prev = &(appdata->gpx);
# Line 833  static void gpxlist_view_onRowActivated( Line 910  static void gpxlist_view_onRowActivated(
910    
911          gpx_busy_dialog_destroy(dialog);          gpx_busy_dialog_destroy(dialog);
912        }        }
913  #ifndef USE_BREAD_CRUMB_TRAIL  
914  #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  
915      }      }
916    }    }
917  }  }
918    
919    /* search gpx file in gpx list */
920    gboolean gpxlist_find(appdata_t *appdata, GtkTreeIter *iter, gpx_t *gpx) {
921      GtkTreeModel *model =
922        gtk_tree_view_get_model(GTK_TREE_VIEW(appdata->gpxview));
923    
924      gboolean found =
925        gtk_tree_model_get_iter_first(model, iter);
926    
927      while(found) {
928        gpx_t *this_gpx;
929        gtk_tree_model_get(model, iter, GPXLIST_COL_DATA, &this_gpx, -1);
930    
931        if(gpx == this_gpx)
932          return TRUE;
933    
934        found = gtk_tree_model_iter_next(model, iter);
935      }
936    
937      return FALSE;
938    }
939    
940    
941  #ifndef USE_PANNABLE_AREA  #ifndef USE_PANNABLE_AREA
942  static gboolean  static gboolean
943  view_selection_func(GtkTreeSelection *selection, GtkTreeModel *model,  view_selection_func(GtkTreeSelection *selection, GtkTreeModel *model,
# Line 904  static GtkWidget *gpxlist_create_view_an Line 988  static GtkWidget *gpxlist_create_view_an
988    gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(appdata->gpxview),    gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(appdata->gpxview),
989                    -1, "Icon", renderer,                    -1, "Icon", renderer,
990                    "pixbuf", GPXLIST_COL_ICON,                    "pixbuf", GPXLIST_COL_ICON,
991                //                  "sensitive", GPXLIST_COL_OPEN,  #ifdef USE_PANNABLE_AREA
992            /* at least one entry needs to be sensitive. */
993            /* This is the delete icon if the PANNABLE_AREA is used */
994                      "sensitive", GPXLIST_COL_OPEN,
995    #endif
996                    NULL);                    NULL);
997    
998    /* --- "FileName" column --- */    /* --- "FileName" column --- */
# Line 960  static GtkWidget *gpxlist_create_view_an Line 1048  static GtkWidget *gpxlist_create_view_an
1048    gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(appdata->gpxview),    gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(appdata->gpxview),
1049                    -1, "Del", renderer,                    -1, "Del", renderer,
1050                    "pixbuf", GPXLIST_COL_DELETE,                    "pixbuf", GPXLIST_COL_DELETE,
1051                    "sensitive", GPXLIST_COL_OPEN,                //                  "sensitive", GPXLIST_COL_OPEN,
1052                    NULL);                    NULL);
1053  #endif  #endif
1054    
# Line 977  static GtkWidget *gpxlist_create_view_an Line 1065  static GtkWidget *gpxlist_create_view_an
1065    GtkTreeIter sel_iter;    GtkTreeIter sel_iter;
1066    gboolean sel_iter_valid = FALSE;    gboolean sel_iter_valid = FALSE;
1067    while(gpx) {    while(gpx) {
1068      /* don't display entries that failed at load */      GtkTreeIter         iter;
1069      if(!gpx->failed) {      gtk_list_store_append(appdata->gpxstore, &iter);
1070        GtkTreeIter         iter;      gpxlist_set(appdata->gpxstore, &iter, gpx);
1071        gtk_list_store_append(appdata->gpxstore, &iter);  
1072        gpxlist_set(appdata->gpxstore, &iter, gpx);      if(gpx == sel_gpx) {
1073          sel_iter = iter;
1074        if(gpx == sel_gpx) {        sel_iter_valid = TRUE;
         sel_iter = iter;  
         sel_iter_valid = TRUE;  
       }  
1075      }      }
1076    
1077      gpx = gpx->next;      gpx = gpx->next;
# Line 1027  static GtkWidget *gpxlist_create_view_an Line 1112  static GtkWidget *gpxlist_create_view_an
1112  }  }
1113    
1114  /* add last entry in gpx list to visual representation */  /* add last entry in gpx list to visual representation */
1115  static void gpxlist_add(appdata_t *appdata, gpx_t *new) {  void gpxlist_add(appdata_t *appdata, gpx_t *new) {
1116    GtkTreeIter         iter;    GtkTreeIter         iter;
1117    
1118    gtk_list_store_append(appdata->gpxstore, &iter);    gtk_list_store_append(appdata->gpxstore, &iter);
# Line 1037  static void gpxlist_add(appdata_t *appda Line 1122  static void gpxlist_add(appdata_t *appda
1122    gpx_t **gpx = &appdata->gpx;    gpx_t **gpx = &appdata->gpx;
1123    while(*gpx) gpx = &((*gpx)->next);    while(*gpx) gpx = &((*gpx)->next);
1124    *gpx = new;    *gpx = new;
1125    
1126      /* select new iter */
1127      GtkTreeSelection *selection =
1128        gtk_tree_view_get_selection(GTK_TREE_VIEW(appdata->gpxview));
1129      gtk_tree_selection_select_iter(selection, &iter);
1130      GtkTreePath *path =
1131        gtk_tree_model_get_path(GTK_TREE_MODEL(appdata->gpxstore), &iter);
1132      gtk_tree_view_scroll_to_cell(GTK_TREE_VIEW(appdata->gpxview),
1133                                   path, NULL, TRUE, 0.0, 0.0);
1134      gtk_tree_path_free(path);
1135  }  }
1136    
1137  /******************** end of gpxlist ********************/  /******************** end of gpxlist ********************/
1138    
1139  /******************** begin of menu *********************/  /******************** begin of menu *********************/
1140    
 typedef struct {  
   appdata_t *appdata;  
   GtkWidget *dialog;  
 } about_context_t;  
   
 #ifdef ENABLE_BROWSER_INTERFACE  
 void on_paypal_button_clicked(GtkButton *button, about_context_t *context) {  
   gtk_dialog_response(GTK_DIALOG(context->dialog), GTK_RESPONSE_ACCEPT);  
   browser_url(context->appdata,  
               "https://www.paypal.com/cgi-bin/webscr"  
               "?cmd=_s-xclick&hosted_button_id=7400558");  
 }  
 #endif  
   
1141  static void  static void
1142  cb_menu_about(GtkWidget *window, gpointer data) {  cb_menu_about(GtkWidget *window, gpointer data) {
1143    about_context_t context;    about_box((appdata_t*)data);
   
   context.appdata = (appdata_t *)data;  
   
 #ifdef ENABLE_LIBLOCATION  
   char *uses = "uses liblocation";  
 #elif defined(ENABLE_GPSBT)  
   char *uses = "uses gpsbt and gpsd";  
 #else  
   char *uses = "uses gpsd";  
 #endif  
   
   const gchar *authors[] = {  
     "Till Harbaum <till@harbaum.org>",  
     "John Stowers <john.stowers@gmail.com>",  
     NULL };  
   
   context.dialog = g_object_new(GTK_TYPE_ABOUT_DIALOG,  
                         "name", "GPXView",  
                         "version", VERSION,  
                         "copyright", _("Copyright 2008-2009"),  
                         "authors", authors,  
                         "website", _("http://www.harbaum.org/till/maemo"),  
                         "comments", _(uses),  
                         NULL);  
   
 #ifdef ENABLE_BROWSER_INTERFACE  
   /* add a way to donate to the project */  
   GtkWidget *alignment = gtk_alignment_new(0.5, 0, 0, 0);  
   
   GtkWidget *hbox = gtk_hbox_new(FALSE, 8);  
   gtk_box_pack_start(GTK_BOX(hbox),  
                      gtk_label_new(_("Do you like GPXView?")),  
                      FALSE, FALSE, 0);  
   
   GtkWidget *button = gtk_button_new();  
   gtk_button_set_image(GTK_BUTTON(button),  
                        icon_get_widget(ICON_MISC, 8));  
   gtk_button_set_relief(GTK_BUTTON(button), GTK_RELIEF_NONE);  
   g_signal_connect(button, "clicked",  
                    G_CALLBACK(on_paypal_button_clicked), &context);  
   gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0);  
   
   gtk_container_add(GTK_CONTAINER(alignment), hbox);  
   gtk_box_pack_start_defaults(GTK_BOX((GTK_DIALOG(context.dialog))->vbox),  
                               alignment);  
   
   gtk_widget_show_all(alignment);  
 #endif  
   
   gtk_dialog_run(GTK_DIALOG(context.dialog));  
   gtk_widget_destroy(context.dialog);  
1144  }  }
1145    
1146  #if defined(USE_MAEMO) && defined(HILDON_HELP)  #if defined(USE_MAEMO) && defined(HILDON_HELP)
# Line 1282  gpx_t *search_do(appdata_t *appdata, gpx Line 1312  gpx_t *search_do(appdata_t *appdata, gpx
1312        else if(cache->long_description && (what & SEARCH_DESC) &&        else if(cache->long_description && (what & SEARCH_DESC) &&
1313                strcasestr(cache->long_description, phrase))                strcasestr(cache->long_description, phrase))
1314          hit = 1;          hit = 1;
1315        else if(cache->owner && (what & SEARCH_OWNER) &&        else if(cache->owner && cache->owner->name && (what & SEARCH_OWNER) &&
1316                strcasestr(cache->owner, phrase))                strcasestr(cache->owner->name, phrase))
1317          hit = 1;          hit = 1;
1318    
1319        if(hit) {        if(hit) {
# Line 1312  typedef struct { Line 1342  typedef struct {
1342    GtkWidget *in_id, *in_name, *in_desc, *in_owner, *in_finds;    GtkWidget *in_id, *in_name, *in_desc, *in_owner, *in_finds;
1343  } search_context_t;  } search_context_t;
1344    
1345    
1346    static GtkWidget *check_button_new_with_label(char *label) {
1347    #if !defined(USE_MAEMO) || (MAEMO_VERSION_MAJOR < 5)
1348      return gtk_check_button_new_with_label(label);
1349    #else
1350      GtkWidget *cbut =
1351        hildon_check_button_new(HILDON_SIZE_FINGER_HEIGHT | HILDON_SIZE_AUTO_WIDTH);
1352      gtk_button_set_label(GTK_BUTTON(cbut), label);
1353      return cbut;
1354    #endif
1355    }
1356    
1357    static void check_button_set_active(GtkWidget *button, gboolean active) {
1358    #if !defined(USE_MAEMO) || (MAEMO_VERSION_MAJOR < 5)
1359      gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button), active);
1360    #else
1361      hildon_check_button_set_active(HILDON_CHECK_BUTTON(button), active);
1362    #endif
1363    }
1364    
1365    static gboolean check_button_get_active(GtkWidget *button) {
1366    #if !defined(USE_MAEMO) || (MAEMO_VERSION_MAJOR < 5)
1367      return gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(button));
1368    #else
1369      return hildon_check_button_get_active(HILDON_CHECK_BUTTON(button));
1370    #endif
1371    }
1372    
1373  static void callback_finds_toggled(GtkWidget *widget, gpointer data ) {  static void callback_finds_toggled(GtkWidget *widget, gpointer data ) {
1374    search_context_t *context = (search_context_t*)data;    search_context_t *context = (search_context_t*)data;
1375    
1376    gboolean in_finds = gtk_toggle_button_get_active(    gboolean in_finds = check_button_get_active(context->in_finds);
           GTK_TOGGLE_BUTTON(context->in_finds));  
1377    
1378    gtk_widget_set_sensitive(context->entry,    !in_finds);    gtk_widget_set_sensitive(context->entry,    !in_finds);
1379    gtk_widget_set_sensitive(context->in_id,    !in_finds);    gtk_widget_set_sensitive(context->in_id,    !in_finds);
# Line 1346  cb_menu_search(GtkWidget *window, gpoint Line 1403  cb_menu_search(GtkWidget *window, gpoint
1403    GtkWidget *table = gtk_table_new(2, 2, TRUE);    GtkWidget *table = gtk_table_new(2, 2, TRUE);
1404    gtk_table_set_col_spacing(GTK_TABLE(table), 0, 8);    gtk_table_set_col_spacing(GTK_TABLE(table), 0, 8);
1405    
1406    context.in_id = gtk_check_button_new_with_label(_("Waypoint IDs"));    context.in_id = check_button_new_with_label(_("Waypoint IDs"));
1407    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);  
1408    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);
1409    
1410    context.in_name = gtk_check_button_new_with_label(_("Names"));    context.in_name = check_button_new_with_label(_("Names"));
1411    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);  
1412    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);
1413    
1414    context.in_desc = gtk_check_button_new_with_label(_("Descriptions"));    context.in_desc = check_button_new_with_label(_("Descriptions"));
1415    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);  
1416    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);
1417    
1418    context.in_owner = gtk_check_button_new_with_label(_("Owner"));    context.in_owner = check_button_new_with_label(_("Owner"));
1419    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);  
1420    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);
1421    
1422    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 1372  cb_menu_search(GtkWidget *window, gpoint Line 1425  cb_menu_search(GtkWidget *window, gpoint
1425    
1426    gtk_box_pack_start_defaults(GTK_BOX(GTK_DIALOG(dialog)->vbox),    gtk_box_pack_start_defaults(GTK_BOX(GTK_DIALOG(dialog)->vbox),
1427                                gtk_label_new(_("Search for:")));                                gtk_label_new(_("Search for:")));
1428      context.entry = entry_new();
1429    gtk_box_pack_start_defaults(GTK_BOX(GTK_DIALOG(dialog)->vbox),    gtk_box_pack_start_defaults(GTK_BOX(GTK_DIALOG(dialog)->vbox),
1430                                context.entry = gtk_entry_new());                                context.entry);
1431    
1432    if(appdata->search_str)    if(appdata->search_str)
1433      gtk_entry_set_text(GTK_ENTRY(context.entry), appdata->search_str);      gtk_entry_set_text(GTK_ENTRY(context.entry), appdata->search_str);
1434    
# Line 1384  cb_menu_search(GtkWidget *window, gpoint Line 1439  cb_menu_search(GtkWidget *window, gpoint
1439    
1440    GtkWidget *hbox = gtk_hbox_new(FALSE, 5);    GtkWidget *hbox = gtk_hbox_new(FALSE, 5);
1441    
1442    context.in_finds = gtk_check_button_new_with_label(_("Search finds for"));    context.in_finds = check_button_new_with_label(_("Search finds for"));
1443    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);  
1444    gtk_box_pack_start_defaults(GTK_BOX(hbox), context.in_finds);    gtk_box_pack_start_defaults(GTK_BOX(hbox), context.in_finds);
1445    g_signal_connect(G_OBJECT(context.in_finds), "toggled",    g_signal_connect(G_OBJECT(context.in_finds), "toggled",
1446                     G_CALLBACK(callback_finds_toggled), &context);                     G_CALLBACK(callback_finds_toggled), &context);
# Line 1426  cb_menu_search(GtkWidget *window, gpoint Line 1480  cb_menu_search(GtkWidget *window, gpoint
1480                      HILDON_NUMBER_EDITOR(context.spinner));                      HILDON_NUMBER_EDITOR(context.spinner));
1481  #endif  #endif
1482    
1483      if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(context.in_finds)))      if(check_button_get_active(context.in_finds))
1484        appdata->search |=  SEARCH_FINDS;        appdata->search |=  SEARCH_FINDS;
1485      else      else
1486        appdata->search &= ~SEARCH_FINDS;        appdata->search &= ~SEARCH_FINDS;
1487    
1488      if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(context.in_id)))      if(check_button_get_active(context.in_id))
1489        appdata->search |=  SEARCH_ID;        appdata->search |=  SEARCH_ID;
1490      else      else
1491        appdata->search &= ~SEARCH_ID;        appdata->search &= ~SEARCH_ID;
1492    
1493      if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(context.in_name)))      if(check_button_get_active(context.in_name))
1494        appdata->search |=  SEARCH_NAME;        appdata->search |=  SEARCH_NAME;
1495      else      else
1496        appdata->search &= ~SEARCH_NAME;        appdata->search &= ~SEARCH_NAME;
1497    
1498      if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(context.in_desc)))      if(check_button_get_active(context.in_desc))
1499        appdata->search |=  SEARCH_DESC;        appdata->search |=  SEARCH_DESC;
1500      else      else
1501        appdata->search &= ~SEARCH_DESC;        appdata->search &= ~SEARCH_DESC;
1502    
1503      if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(context.in_owner)))      if(check_button_get_active(context.in_owner))
1504        appdata->search |=  SEARCH_OWNER;        appdata->search |=  SEARCH_OWNER;
1505      else      else
1506        appdata->search &= ~SEARCH_OWNER;        appdata->search &= ~SEARCH_OWNER;
# Line 1459  cb_menu_search(GtkWidget *window, gpoint Line 1513  cb_menu_search(GtkWidget *window, gpoint
1513    
1514        printf("Search for %s (flags = %x)...\n", p, appdata->search);        printf("Search for %s (flags = %x)...\n", p, appdata->search);
1515    
1516  #ifndef USE_BREAD_CRUMB_TRAIL  #if !defined(USE_BREAD_CRUMB_TRAIL) && !defined(BCT)
1517        gpx_t *found =        gpx_t *found =
1518          search_do(appdata, appdata->gpx, p, appdata->search, FALSE);          search_do(appdata, appdata->gpx, p, appdata->search, FALSE);
1519    
# Line 1555  cb_menu_export_log(GtkWidget *widget, gp Line 1609  cb_menu_export_log(GtkWidget *widget, gp
1609    notes_log_export(appdata);    notes_log_export(appdata);
1610  }  }
1611    
1612  #ifdef USE_MAEMO  #ifdef ENABLE_MAEMO_MAPPER
1613  static void  static void
1614  cb_menu_export_mmpoi(GtkWidget *widget, gpointer data) {  cb_menu_export_mmpoi(GtkWidget *widget, gpointer data) {
1615    appdata_t *appdata = (appdata_t*)data;    appdata_t *appdata = (appdata_t*)data;
# Line 1591  cb_menu_precpos(GtkWidget *window, gpoin Line 1645  cb_menu_precpos(GtkWidget *window, gpoin
1645    precise_position((appdata_t *)data);    precise_position((appdata_t *)data);
1646  }  }
1647    
1648    static void
1649    cb_menu_geotoad(GtkWidget *window, gpointer data) {
1650      geotoad((appdata_t *)data);
1651    }
1652    
1653  #ifdef USE_STACKABLE_WINDOW  #ifdef USE_STACKABLE_WINDOW
1654  typedef struct {  typedef struct {
1655    char *label, *desc;    char *label, *desc;
# Line 1674  static void submenu_cleanup(GtkWidget *m Line 1733  static void submenu_cleanup(GtkWidget *m
1733  }  }
1734    
1735  static const menu_entry_t submenu_export_entries[] = {  static const menu_entry_t submenu_export_entries[] = {
1736    #ifdef ENABLE_MAEMO_MAPPER
1737    { "Export to Maemo Mapper" , "Save a Maemo Mapper POI file",    { "Export to Maemo Mapper" , "Save a Maemo Mapper POI file",
1738      G_CALLBACK(cb_menu_export_mmpoi)  },      G_CALLBACK(cb_menu_export_mmpoi)  },
1739    #endif
1740    { "Export Field Notes",      "Save a Garmin Field Notes file",    { "Export Field Notes",      "Save a Garmin Field Notes file",
1741      G_CALLBACK(cb_menu_export_log)    },      G_CALLBACK(cb_menu_export_log)    },
1742    { "Export Garmin GPX",       "Save modified waypoints in GPX file",    { "Export Garmin GPX",       "Save modified waypoints in GPX file",
# Line 1703  static const menu_entry_t submenu_tools_ Line 1764  static const menu_entry_t submenu_tools_
1764      G_CALLBACK(cb_menu_geotext) },      G_CALLBACK(cb_menu_geotext) },
1765    { "Precise Position", "Calculate a precise GPS position",    { "Precise Position", "Calculate a precise GPS position",
1766      G_CALLBACK(cb_menu_precpos) },      G_CALLBACK(cb_menu_precpos) },
1767      { "GeoToad",          "Use GeoToad online downloader",
1768        G_CALLBACK(cb_menu_geotoad) },
1769    { NULL, NULL, NULL }    { NULL, NULL, NULL }
1770  };  };
1771    
# Line 1762  HildonAppMenu *menu_create(appdata_t *ap Line 1825  HildonAppMenu *menu_create(appdata_t *ap
1825    hildon_app_menu_append(menu, GTK_BUTTON(button));    hildon_app_menu_append(menu, GTK_BUTTON(button));
1826    
1827  #ifdef ENABLE_OSM_GPS_MAP  #ifdef ENABLE_OSM_GPS_MAP
   if((mode == MENU_GPXLIST) || (mode == MENU_CACHELIST)) {  
1828      button = gtk_button_new_with_label(_("Map"));      button = gtk_button_new_with_label(_("Map"));
1829      g_signal_connect_after(button, "clicked",      g_signal_connect_after(button, "clicked",
1830                             G_CALLBACK(cb_menu_map), appdata);                             G_CALLBACK(cb_menu_map), appdata);
1831      hildon_app_menu_append(menu, GTK_BUTTON(button));      hildon_app_menu_append(menu, GTK_BUTTON(button));
   }  
1832  #endif  #endif
1833    
1834  #ifdef HILDON_HELP  #ifdef HILDON_HELP
# Line 1787  void menu_create(appdata_t *appdata) { Line 1848  void menu_create(appdata_t *appdata) {
1848    GtkWidget *menu, *item;    GtkWidget *menu, *item;
1849    menu = gtk_menu_new();    menu = gtk_menu_new();
1850    
1851  #ifdef USE_BREAD_CRUMB_TRAIL  #if defined(USE_BREAD_CRUMB_TRAIL) || defined(BCT)
1852    appdata->menu_import =    appdata->menu_import =
1853  #endif  #endif
1854    item = gtk_menu_item_new_with_label(_("Import"));    item = gtk_menu_item_new_with_label(_("Import"));
# Line 1817  void menu_create(appdata_t *appdata) { Line 1878  void menu_create(appdata_t *appdata) {
1878    g_signal_connect(item, "activate", GTK_SIGNAL_FUNC(cb_menu_remove), appdata);    g_signal_connect(item, "activate", GTK_SIGNAL_FUNC(cb_menu_remove), appdata);
1879  #endif  #endif
1880    
1881  #ifdef USE_BREAD_CRUMB_TRAIL  #if defined(USE_BREAD_CRUMB_TRAIL) || defined(BCT)
1882    appdata->menu_export =    appdata->menu_export =
1883  #endif  #endif
1884      item = gtk_menu_item_new_with_label(_("Export"));      item = gtk_menu_item_new_with_label(_("Export"));
# Line 1825  void menu_create(appdata_t *appdata) { Line 1886  void menu_create(appdata_t *appdata) {
1886    submenu = gtk_menu_new();    submenu = gtk_menu_new();
1887    gtk_menu_item_set_submenu(GTK_MENU_ITEM(item), submenu);    gtk_menu_item_set_submenu(GTK_MENU_ITEM(item), submenu);
1888    
1889  #ifdef USE_MAEMO  #ifdef ENABLE_MAEMO_MAPPER
1890    item = gtk_menu_item_new_with_label( _("Maemo Mapper POI") );    item = gtk_menu_item_new_with_label( _("Maemo Mapper POI") );
1891    gtk_menu_append(GTK_MENU_SHELL(submenu), item);    gtk_menu_append(GTK_MENU_SHELL(submenu), item);
1892    g_signal_connect(item, "activate",    g_signal_connect(item, "activate",
# Line 1842  void menu_create(appdata_t *appdata) { Line 1903  void menu_create(appdata_t *appdata) {
1903    g_signal_connect(item, "activate",    g_signal_connect(item, "activate",
1904                     GTK_SIGNAL_FUNC(cb_menu_export_garmin), appdata);                     GTK_SIGNAL_FUNC(cb_menu_export_garmin), appdata);
1905    
1906  #ifdef USE_BREAD_CRUMB_TRAIL  #if defined(USE_BREAD_CRUMB_TRAIL) || defined(BCT)
1907    appdata->menu_search =    appdata->menu_search =
1908  #endif  #endif
1909    item = gtk_menu_item_new_with_label( _("Search") );    item = gtk_menu_item_new_with_label( _("Search") );
# Line 1851  void menu_create(appdata_t *appdata) { Line 1912  void menu_create(appdata_t *appdata) {
1912    
1913    gtk_menu_append(GTK_MENU_SHELL(menu), gtk_separator_menu_item_new());    gtk_menu_append(GTK_MENU_SHELL(menu), gtk_separator_menu_item_new());
1914    
 #ifndef NO_COPY_N_PASTE  
1915    /* ----------- copy'n paste submenu ----------------- */    /* ----------- copy'n paste submenu ----------------- */
1916    appdata->clipboard = gtk_clipboard_get(GDK_SELECTION_CLIPBOARD);  #ifndef NO_COPY_N_PASTE
   gtk_clipboard_set_can_store(appdata->clipboard, NULL, 0);  
   
1917    item = gtk_menu_item_new_with_label(_("Edit"));    item = gtk_menu_item_new_with_label(_("Edit"));
1918    gtk_menu_append(GTK_MENU_SHELL(menu), item);    gtk_menu_append(GTK_MENU_SHELL(menu), item);
1919    submenu = gtk_menu_new();    submenu = gtk_menu_new();
# Line 1909  void menu_create(appdata_t *appdata) { Line 1967  void menu_create(appdata_t *appdata) {
1967    g_signal_connect(item, "activate",    g_signal_connect(item, "activate",
1968                     GTK_SIGNAL_FUNC(cb_menu_precpos), appdata);                     GTK_SIGNAL_FUNC(cb_menu_precpos), appdata);
1969    
1970      item = gtk_menu_item_new_with_label( _("GeoToad") );
1971      gtk_menu_append(GTK_MENU_SHELL(submenu), item);
1972      g_signal_connect(item, "activate",
1973                       GTK_SIGNAL_FUNC(cb_menu_geotoad), appdata);
1974    
1975    gtk_menu_append(GTK_MENU_SHELL(menu), gtk_separator_menu_item_new());    gtk_menu_append(GTK_MENU_SHELL(menu), gtk_separator_menu_item_new());
1976    
1977  #if defined(USE_MAEMO) && defined(HILDON_HELP)  #if defined(USE_MAEMO) && defined(HILDON_HELP)
# Line 1948  void menu_create(appdata_t *appdata) { Line 2011  void menu_create(appdata_t *appdata) {
2011  /********************* end of menu **********************/  /********************* end of menu **********************/
2012    
2013  void cleanup(appdata_t *appdata) {  void cleanup(appdata_t *appdata) {
2014      gconf_save_state(appdata);
2015    
2016    gpx_free_all(appdata->gpx);    gpx_free_all(appdata->gpx);
   if(appdata->path) free(appdata->path);  
   if(appdata->image_path) free(appdata->image_path);  
   if(appdata->search_str) free(appdata->search_str);  
2017    
2018  #ifdef USE_STACKABLE_WINDOW  #ifdef USE_STACKABLE_WINDOW
2019    if(appdata->export_menu) submenu_cleanup(appdata->export_menu);    if(appdata->export_menu) submenu_cleanup(appdata->export_menu);
# Line 1989  void cleanup(appdata_t *appdata) { Line 2051  void cleanup(appdata_t *appdata) {
2051  static void on_window_destroy (GtkWidget *widget, gpointer data) {  static void on_window_destroy (GtkWidget *widget, gpointer data) {
2052    appdata_t *appdata = (appdata_t*)data;    appdata_t *appdata = (appdata_t*)data;
2053    
   gconf_save_state(appdata);  
2054    gtk_main_quit();    gtk_main_quit();
2055    appdata->window = NULL;    appdata->window = NULL;
2056  }  }
# Line 2049  gboolean on_window_key_press(GtkWidget * Line 2110  gboolean on_window_key_press(GtkWidget *
2110    return handled;    return handled;
2111  }  }
2112    
2113  #ifdef USE_BREAD_CRUMB_TRAIL  #if defined(USE_BREAD_CRUMB_TRAIL) || defined(BCT)
2114  typedef struct {  typedef struct {
2115    int level;    int level;
2116    appdata_t *appdata;    appdata_t *appdata;
# Line 2141  crumb_back(gpointer data) { Line 2202  crumb_back(gpointer data) {
2202    
2203    gtk_widget_show_all(crumb->appdata->vbox);    gtk_widget_show_all(crumb->appdata->vbox);
2204    g_free(data);    g_free(data);
2205    
2206    #ifdef ENABLE_OSM_GPS_MAP
2207      map_update(crumb->appdata);
2208    #endif
2209  }  }
2210    
2211  static void crumb_add(appdata_t *appdata, char *name, int level,  static void crumb_add(appdata_t *appdata, char *name, int level,
# Line 2181  static void crumb_add(appdata_t *appdata Line 2246  static void crumb_add(appdata_t *appdata
2246  #endif  #endif
2247    }    }
2248    
2249    #ifdef USE_BREAD_CRUMB_TRAIL
2250    hildon_bread_crumb_trail_push_text(HILDON_BREAD_CRUMB_TRAIL(appdata->bct),    hildon_bread_crumb_trail_push_text(HILDON_BREAD_CRUMB_TRAIL(appdata->bct),
2251                                       name, crumb, (GDestroyNotify)crumb_back);                                       name, crumb, (GDestroyNotify)crumb_back);
2252    #else
2253      bct_push_text(appdata->bct, name, crumb, (GDestroyNotify)crumb_back);
2254    #endif
2255    
2256    #ifdef ENABLE_OSM_GPS_MAP
2257      map_update(appdata);
2258    #endif
2259  }  }
2260  #endif // USE_BREAD_CRUMB_TRAIL  #endif // USE_BREAD_CRUMB_TRAIL
2261    
# Line 2194  void main_after_settings_redraw(appdata_ Line 2267  void main_after_settings_redraw(appdata_
2267      return;      return;
2268    }    }
2269    
 #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  
2270    /* 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 */
2271    /* need to be redrawn */    /* need to be redrawn */
2272    if(appdata->cur_cache) {    if(appdata->cur_cache) {
# Line 2260  void main_after_settings_redraw(appdata_ Line 2321  void main_after_settings_redraw(appdata_
2321    
2322      gtk_widget_show_all(container);      gtk_widget_show_all(container);
2323    }    }
 #endif // USE_MAEMO  
2324  }  }
2325    
2326  int main(int argc, char *argv[]) {  int main(int argc, char *argv[]) {
# Line 2281  int main(int argc, char *argv[]) { Line 2341  int main(int argc, char *argv[]) {
2341    
2342    gtk_init (&argc, &argv);    gtk_init (&argc, &argv);
2343    
2344      misc_init();
2345    
2346      curl_global_init(CURL_GLOBAL_ALL);
2347    
2348  #ifdef USE_MAEMO  #ifdef USE_MAEMO
2349    printf("Installing osso context for \"org.harbaum." APP "\"\n");    printf("Installing osso context for \"org.harbaum." APP "\"\n");
2350    appdata.osso_context = osso_initialize("org.harbaum."APP,    appdata.osso_context = osso_initialize("org.harbaum."APP,
# Line 2289  int main(int argc, char *argv[]) { Line 2353  int main(int argc, char *argv[]) {
2353      fprintf(stderr, "error initiating osso context\n");      fprintf(stderr, "error initiating osso context\n");
2354    }    }
2355    
2356    #ifdef ENABLE_MAEMO_MAPPER
2357    dbus_register(&appdata);    dbus_register(&appdata);
2358  #endif  #endif
2359    #endif
2360    
2361    icons_init();    icons_init();
2362    
# Line 2314  int main(int argc, char *argv[]) { Line 2380  int main(int argc, char *argv[]) {
2380    /* Create a Window. */    /* Create a Window. */
2381    appdata.window = gtk_window_new(GTK_WINDOW_TOPLEVEL);    appdata.window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
2382    /* Set a decent default size for the window. */    /* Set a decent default size for the window. */
2383    gtk_window_set_default_size(GTK_WINDOW(appdata.window), 500, 300);    gtk_window_set_default_size(GTK_WINDOW(appdata.window), 640, 480);
2384  #endif  #endif
2385    
2386  #if MAEMO_VERSION_MAJOR == 5  #if MAEMO_VERSION_MAJOR == 5
# Line 2327  int main(int argc, char *argv[]) { Line 2393  int main(int argc, char *argv[]) {
2393    g_signal_connect(G_OBJECT(appdata.window), "key_press_event",    g_signal_connect(G_OBJECT(appdata.window), "key_press_event",
2394                     G_CALLBACK(on_window_key_press), &appdata);                     G_CALLBACK(on_window_key_press), &appdata);
2395    
2396      /* prepare clipboard */
2397      appdata.clipboard = gtk_clipboard_get(GDK_SELECTION_CLIPBOARD);
2398      gtk_clipboard_set_can_store(appdata.clipboard, NULL, 0);
2399    
2400    appdata.vbox = gtk_vbox_new(FALSE, 2);    appdata.vbox = gtk_vbox_new(FALSE, 2);
2401    gtk_container_add(GTK_CONTAINER(appdata.window), appdata.vbox);    gtk_container_add(GTK_CONTAINER(appdata.window), appdata.vbox);
2402  #ifndef USE_STACKABLE_WINDOW  #ifndef USE_STACKABLE_WINDOW
# Line 2342  int main(int argc, char *argv[]) { Line 2412  int main(int argc, char *argv[]) {
2412    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);
2413    
2414    hildon_bread_crumb_trail_clear(HILDON_BREAD_CRUMB_TRAIL(appdata.bct));    hildon_bread_crumb_trail_clear(HILDON_BREAD_CRUMB_TRAIL(appdata.bct));
2415    #else
2416    #ifdef BCT
2417      /* on non-hildon machines we use some custom made breadcrumbtrail */
2418      /* replacement */
2419      appdata.bct = bct_new();
2420      gtk_box_pack_start(GTK_BOX(appdata.vbox), appdata.bct, FALSE,FALSE,0);
2421    #endif
2422    #endif
2423    
2424    #if defined(USE_BREAD_CRUMB_TRAIL) || defined(BCT)
2425    crumb_add(&appdata, "GPX", CRUMB_GPXLIST, NULL);    crumb_add(&appdata, "GPX", CRUMB_GPXLIST, NULL);
2426  #endif  #endif
2427    

Legend:
Removed from v.107  
changed lines
  Added in v.231