Diff of /trunk/src/main.c

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

revision 143 by harbaum, Mon Oct 26 19:55:00 2009 UTC revision 243 by harbaum, Mon Dec 14 20:07:54 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    #endif
40  #endif  #endif
41    
42  #include <locale.h>  #include <locale.h>
# Line 92  void errorf(const char *fmt, ...) { Line 100  void errorf(const char *fmt, ...) {
100      }      }
101    }    }
102    
103    #if !defined(USE_MAEMO) || (MAEMO_VERSION_MAJOR < 5)
104    GtkWidget *dialog = gtk_message_dialog_new(    GtkWidget *dialog = gtk_message_dialog_new(
105                             GTK_WINDOW(NULL),                             GTK_WINDOW(NULL),
106                             GTK_DIALOG_DESTROY_WITH_PARENT,                             GTK_DIALOG_DESTROY_WITH_PARENT,
 #if !defined(USE_MAEMO) || (MAEMO_VERSION_MAJOR < 5)  
107                             GTK_MESSAGE_ERROR,                             GTK_MESSAGE_ERROR,
 #else  
                            GTK_MESSAGE_OTHER,  
 #endif  
108                             GTK_BUTTONS_CLOSE, buf);                             GTK_BUTTONS_CLOSE, buf);
109    
110    gtk_window_set_title(GTK_WINDOW(dialog), _("ERROR"));    gtk_window_set_title(GTK_WINDOW(dialog), _("ERROR"));
111    #else
112      GtkWidget *dialog =
113        hildon_note_new_information(GTK_WINDOW(NULL), buf);
114    #endif
115    
116    gtk_dialog_run(GTK_DIALOG(dialog));    gtk_dialog_run(GTK_DIALOG(dialog));
117    gtk_widget_destroy(dialog);    gtk_widget_destroy(dialog);
# Line 147  gpx_t *choose_file(appdata_t *appdata, g Line 156  gpx_t *choose_file(appdata_t *appdata, g
156        gpx_dialog_t *dialog = gpx_busy_dialog_new(GTK_WIDGET(appdata->window));        gpx_dialog_t *dialog = gpx_busy_dialog_new(GTK_WIDGET(appdata->window));
157    
158        if(!whole_dir)        if(!whole_dir)
159          gpx = gpx_parse(dialog, filename);          gpx = gpx_parse(dialog, filename, appdata->username);
160        else {        else {
161          /* cur trailing '/' if present */          /* cur trailing '/' if present */
162          if(strlastchr(filename) == '/')          if(strlastchr(filename) == '/')
163            filename[strlen(filename)] = 0;            filename[strlen(filename)] = 0;
164    
165          gpx = gpx_parse_dir(dialog, filename);          gpx = gpx_parse_dir(dialog, filename, appdata->username);
166        }        }
167    
168        gpx_busy_dialog_destroy(dialog);        gpx_busy_dialog_destroy(dialog);
169    
170        /* save path if gpx was successfully loaded */        /* save path if gpx was successfully loaded */
# Line 213  void cachelist_goto_cache(appdata_t *app Line 222  void cachelist_goto_cache(appdata_t *app
222  #if !defined(USE_BREAD_CRUMB_TRAIL) && !defined(BCT)  #if !defined(USE_BREAD_CRUMB_TRAIL) && !defined(BCT)
223      cache_dialog(appdata, cache);      cache_dialog(appdata, cache);
224  #else  #else
225        crumb_add(appdata, cache->name, CRUMB_CACHE, cache);
226    
227      gtk_container_remove(GTK_CONTAINER(appdata->vbox), appdata->cur_view);      gtk_container_remove(GTK_CONTAINER(appdata->vbox), appdata->cur_view);
228      appdata->cur_view = cache_view(appdata, cache);      appdata->cur_view = cache_view(appdata, cache);
229      gtk_box_pack_start_defaults(GTK_BOX(appdata->vbox), appdata->cur_view);      gtk_box_pack_start_defaults(GTK_BOX(appdata->vbox), appdata->cur_view);
230      gtk_widget_show_all(appdata->vbox);      gtk_widget_show_all(appdata->vbox);
   
     crumb_add(appdata, cache->name, CRUMB_CACHE, cache);  
231  #endif  #endif
232  }  }
233    
# Line 247  typedef struct { Line 256  typedef struct {
256    appdata_t *appdata;    appdata_t *appdata;
257    GtkTreePath *path;    GtkTreePath *path;
258    gboolean done;    gboolean done;
259  } cachelist_expose_t;  } cachelist_context_t;
260    
261  static gboolean cachelist_expose(GtkWidget *widget, GdkEventExpose *event,  static gboolean cachelist_expose(GtkWidget *widget, GdkEventExpose *event,
262                                   gpointer user_data) {                                   gpointer user_data) {
263    cachelist_expose_t *ce = (cachelist_expose_t*)user_data;    cachelist_context_t *ce = (cachelist_context_t*)user_data;
264    
265    if(event->type == GDK_EXPOSE) {    if(event->type == GDK_EXPOSE) {
266      if(ce->path && !ce->done) {      if(ce->path && !ce->done) {
# Line 266  static gboolean cachelist_expose(GtkWidg Line 275  static gboolean cachelist_expose(GtkWidg
275  }  }
276    
277  static void cachelist_destroy(GtkWidget *widget, gpointer user_data) {  static void cachelist_destroy(GtkWidget *widget, gpointer user_data) {
   cachelist_expose_t *ce = (cachelist_expose_t*)user_data;  
278    
279    printf("cachelist timer removed\n");    guint handler_id =
280    g_assert(ce->appdata->cachelist_handler_id);      (guint)g_object_get_data(G_OBJECT(user_data), "handler_id");
   gtk_timeout_remove(ce->appdata->cachelist_handler_id);  
   ce->appdata->cachelist_handler_id = 0;  
281    
282    free(user_data);    if(handler_id) {
283        gtk_timeout_remove(handler_id);
284        g_object_set_data(G_OBJECT(user_data), "handler_id", NULL);
285    
286        printf("cachelist timer removed\n");
287      }
288    
289      gpointer *ce =
290        g_object_get_data(G_OBJECT(user_data), "ce");
291      g_assert(ce);
292    
293      free(ce);
294  }  }
295    
296  #define CACHELIST_UPDATE_TIMEOUT (30000)  #define CACHELIST_UPDATE_TIMEOUT (30000)
# Line 282  static GtkWidget *cachelist_create(appda Line 299  static GtkWidget *cachelist_create(appda
299                                     cache_t *sel_cache);                                     cache_t *sel_cache);
300    
301  void cachelist_redraw(appdata_t *appdata) {  void cachelist_redraw(appdata_t *appdata) {
302      printf("redrawing cachelist\n");
303    
304    if(!appdata->cur_view) {    if(!appdata->cur_view) {
305      printf("cachelist redraw: no active view\n");      printf("cachelist redraw: no active view\n");
306      return;      return;
# Line 297  void cachelist_redraw(appdata_t *appdata Line 316  void cachelist_redraw(appdata_t *appdata
316    }    }
317    
318    if(redraw) {    if(redraw) {
     GtkWidget *container = appdata->vbox;  
   
319  #ifdef USE_STACKABLE_WINDOW  #ifdef USE_STACKABLE_WINDOW
320      HildonWindowStack *stack = hildon_window_stack_get_default();      HildonWindowStack *stack = hildon_window_stack_get_default();
321      container = hildon_window_stack_peek(stack);      GtkWidget *container = hildon_window_stack_peek(stack);
322    #else
323        GtkWidget *container = appdata->vbox;
324  #endif  #endif
325    
326      gtk_container_remove(GTK_CONTAINER(container), appdata->cur_view);      gtk_container_remove(GTK_CONTAINER(container), appdata->cur_view);
# Line 317  void cachelist_redraw(appdata_t *appdata Line 336  void cachelist_redraw(appdata_t *appdata
336      }      }
337    
338  #ifdef USE_STACKABLE_WINDOW  #ifdef USE_STACKABLE_WINDOW
339      if(container != appdata->vbox)      gtk_container_add(GTK_CONTAINER(container), appdata->cur_view);
340        gtk_container_add(GTK_CONTAINER(container), appdata->cur_view);  #else
341      else      gtk_box_pack_start_defaults(GTK_BOX(container), appdata->cur_view);
342  #endif  #endif
       gtk_box_pack_start_defaults(GTK_BOX(container), appdata->cur_view);  
343    
344      gtk_widget_show_all(container);      gtk_widget_show_all(container);
345    }    }
# Line 329  void cachelist_redraw(appdata_t *appdata Line 347  void cachelist_redraw(appdata_t *appdata
347    
348    
349  static gboolean cachelist_update(gpointer data) {  static gboolean cachelist_update(gpointer data) {
350      appdata_t *appdata =
351        (appdata_t*)g_object_get_data(G_OBJECT(data), "appdata");
352      g_assert(appdata);
353    
354    printf("cachelist timer fired!\n");    printf("cachelist timer fired!\n");
355    
356    appdata_t *appdata = (appdata_t*)data;    /* check if the widget the timer fired for is the currently */
357      /* visible one (if a search result is being shown, a cachlist */
358      /* may also be present below it) */
359      if(appdata->cur_view != data) {
360        printf("-> widget is not the one currently on top, don't redraw\n");
361        return TRUE;
362      }
363    
364    if(appdata->cur_cache)    if(appdata->cur_cache)
365      return TRUE;      return TRUE;
# Line 345  static gboolean cachelist_update(gpointe Line 372  static gboolean cachelist_update(gpointe
372    
373    if(appdata->cachelist_update)    if(appdata->cachelist_update)
374      cachelist_redraw(appdata);      cachelist_redraw(appdata);
375      else
376        printf("update disabled\n");
377    
378    return TRUE;    return TRUE;
379  }  }
380    
381  static void cachelist_timer_reset(appdata_t *appdata) {  static void cachelist_timer_reset(GtkWidget *widget) {
382      guint handler_id =
383        (guint)g_object_get_data(G_OBJECT(widget), "handler_id");
384      g_assert(handler_id);
385    
386      appdata_t *appdata =
387        (appdata_t*)g_object_get_data(G_OBJECT(widget), "appdata");
388      g_assert(appdata);
389    
390    printf("cachelist timer reset\n");    printf("cachelist timer reset\n");
391    g_assert(appdata->cachelist_handler_id);    gtk_timeout_remove(handler_id);
392    gtk_timeout_remove(appdata->cachelist_handler_id);    g_object_set_data(G_OBJECT(widget), "handler_id", (gpointer)
393    appdata->cachelist_handler_id =      gtk_timeout_add(CACHELIST_UPDATE_TIMEOUT, cachelist_update, widget));
     gtk_timeout_add(CACHELIST_UPDATE_TIMEOUT, cachelist_update, appdata);  
394  }  }
395    
396  static gboolean cachelist_update_reset0(GtkWidget *widget,  static gboolean cachelist_update_reset0(GtkWidget *widget,
397                                          GdkEventButton *event,                                          GdkEventButton *event,
398                                          gpointer user_data) {                                          gpointer user_data) {
399    cachelist_timer_reset((appdata_t*)user_data);    cachelist_timer_reset(GTK_WIDGET(user_data));
400    return FALSE;    return FALSE;
401  }  }
402    
403  static void cachelist_update_reset1(GtkAdjustment *adj,  static void cachelist_update_reset1(GtkAdjustment *adj,
404                                      gpointer user_data) {                                      gpointer user_data) {
405    cachelist_timer_reset((appdata_t*)user_data);    cachelist_timer_reset(GTK_WIDGET(user_data));
406  }  }
407    
408    static gboolean on_cachelist_focus_in(GtkWidget *widget, GdkEventFocus *event,
409                                          gpointer data) {
410    
411    
412      /* we don't want a runnign timer yet */
413      if(!g_object_get_data(G_OBJECT(data), "handler_id")) {
414        printf("focus received: restarting cachelist timer\n");
415    
416        appdata_t *appdata =
417          (appdata_t*)g_object_get_data(G_OBJECT(data), "appdata");
418        g_assert(appdata);
419    
420        g_object_set_data(G_OBJECT(data), "handler_id", (gpointer)
421          gtk_timeout_add(CACHELIST_UPDATE_TIMEOUT, cachelist_update, data));
422      }
423    
424      return FALSE;
425    }
426    
427    static gboolean on_cachelist_focus_out(GtkWidget *widget, GdkEventFocus *event,
428                                           gpointer data) {
429    
430      guint handler_id =
431        (guint)g_object_get_data(G_OBJECT(data), "handler_id");
432      g_assert(handler_id);
433    
434      gtk_timeout_remove(handler_id);
435      g_object_set_data(G_OBJECT(data), "handler_id", NULL);
436    
437      printf("focus lost: cachelist timer removed\n");
438    
439      return FALSE;
440    }
441    
442  static GtkWidget *cachelist_create(appdata_t *appdata, gpx_t *gpx,  static GtkWidget *cachelist_create(appdata_t *appdata, gpx_t *gpx,
443                                     cache_t *sel_cache) {                                     cache_t *sel_cache) {
444    GtkCellRenderer *renderer;    GtkCellRenderer *renderer;
# Line 466  static GtkWidget *cachelist_create(appda Line 536  static GtkWidget *cachelist_create(appda
536      if(tint > 8) tint = 8;      if(tint > 8) tint = 8;
537    
538      /* cache type includes "solved" flag in lowest bit */      /* cache type includes "solved" flag in lowest bit */
539      int type = (cache->type<<8) +      int type = cache->type<<8;
540        (cache->notes?4:0) +      if(cache->notes) type |= 4;
541        ((cache->notes && cache->notes->override)?1:0) +      if(cache->notes && cache->notes->override) type |= 1;
542        ((cache->notes && cache->notes->found)?2:0);      if(cache->notes && cache->notes->found) type |= 2;
543        if(cache->found) type |= 2;
544        if(cache->mine) type |= 8;
545    
546      if((!(type & 2)) || !appdata->cachelist_hide_found) {      if((!(type & 2)) || !appdata->cachelist_hide_found) {
547    
# Line 512  static GtkWidget *cachelist_create(appda Line 584  static GtkWidget *cachelist_create(appda
584    g_signal_connect(view, "row-activated",    g_signal_connect(view, "row-activated",
585                     (GCallback)cachelist_view_onRowActivated, appdata);                     (GCallback)cachelist_view_onRowActivated, appdata);
586    
587    cachelist_expose_t *ce = malloc(sizeof(cachelist_expose_t));    cachelist_context_t *ce = g_new0(cachelist_context_t, 1);
588    ce->appdata = appdata;    ce->appdata = appdata;
589    ce->path = path;    ce->path = path;
590    ce->done = FALSE;    ce->done = FALSE;
591    
592    g_signal_connect(view, "expose-event",    g_signal_connect(view, "expose-event",
593                     (GCallback)cachelist_expose, ce);                     (GCallback)cachelist_expose, ce);
   g_signal_connect(view, "destroy",  
                    (GCallback)cachelist_destroy, ce);  
594    
595    /* put this inside a scrolled view */    /* put this inside a scrolled view */
596  #ifndef USE_PANNABLE_AREA  #ifndef USE_PANNABLE_AREA
597    GtkWidget *scrolled_window = gtk_scrolled_window_new (NULL, NULL);    GtkWidget *container = gtk_scrolled_window_new (NULL, NULL);
598    gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled_window),    gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(container),
599                                   GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);                                   GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
600    gtk_container_add(GTK_CONTAINER(scrolled_window), view);    gtk_container_add(GTK_CONTAINER(container), view);
601  #else  #else
602    GtkWidget *pannable_area = hildon_pannable_area_new();    GtkWidget *container = hildon_pannable_area_new();
603      gtk_container_add(GTK_CONTAINER(container), view);
   gtk_container_add(GTK_CONTAINER(pannable_area), view);  
604  #endif  #endif
605    
606    /* add a timer for automatic update */    g_signal_connect(view, "destroy",
607    g_assert(!appdata->cachelist_handler_id);                     (GCallback)cachelist_destroy, container);
   appdata->cachelist_handler_id =  
     gtk_timeout_add(CACHELIST_UPDATE_TIMEOUT, cachelist_update, appdata);  
608    
609    /* update timer is being reset if the user scrolls or selects */    /* update timer is being reset if the user scrolls or selects */
610    g_signal_connect(view, "button-press-event",    g_signal_connect(view, "button-press-event",
611                     (GCallback)cachelist_update_reset0, appdata);                     (GCallback)cachelist_update_reset0, container);
612    
613      /* add a timer for automatic update */
614      g_object_set_data(G_OBJECT(container), "handler_id", (gpointer)
615        gtk_timeout_add(CACHELIST_UPDATE_TIMEOUT, cachelist_update, container));
616    
617      printf("cachelist timer created\n");
618    
619      g_object_set_data(G_OBJECT(container), "appdata", (gpointer)appdata);
620    
621      g_object_set_data(G_OBJECT(container), "ce", (gpointer)ce);
622    
623      /* the timer is removed and re-enabled on every focus change event */
624      /* for the main top window */
625      //  GtkWidget *root = gtk_widget_get_toplevel(GTK_WIDGET(button)))
626    
627      g_signal_connect(G_OBJECT(view), "focus-in-event",
628                       G_CALLBACK(on_cachelist_focus_in), container);
629    
630      g_signal_connect(G_OBJECT(view), "focus-out-event",
631                       G_CALLBACK(on_cachelist_focus_out), container);
632    
633  #ifndef USE_PANNABLE_AREA  #ifndef USE_PANNABLE_AREA
634    g_signal_connect(gtk_scrolled_window_get_vadjustment(    g_signal_connect(gtk_scrolled_window_get_vadjustment(
635                         GTK_SCROLLED_WINDOW(scrolled_window)),                 GTK_SCROLLED_WINDOW(container)),
636                             "value-changed",                 "value-changed",
637                             (GCallback)cachelist_update_reset1, appdata);                 (GCallback)cachelist_update_reset1, container);
   
   return scrolled_window;  
638  #else  #else
639    g_signal_connect(hildon_pannable_area_get_vadjustment(    g_signal_connect(hildon_pannable_area_get_vadjustment(
640                         HILDON_PANNABLE_AREA(pannable_area)),                 HILDON_PANNABLE_AREA(container)),
641                             "value-changed",                 "value-changed",
642                             (GCallback)cachelist_update_reset1, appdata);                 (GCallback)cachelist_update_reset1, container);
   
643    
   return pannable_area;  
644  #endif  #endif
645      return container;
646  }  }
647    
648  #ifndef USE_MAEMO  #ifndef USE_MAEMO
# Line 585  void cachelist_dialog(appdata_t *appdata Line 669  void cachelist_dialog(appdata_t *appdata
669  static void search_result_free(gpx_t *result);  static void search_result_free(gpx_t *result);
670    
671  void on_cachelist_destroy(GtkWidget *widget, appdata_t *appdata) {  void on_cachelist_destroy(GtkWidget *widget, appdata_t *appdata) {
672      printf("cachelist destroy\n");
673    
674      HildonWindowStack *stack = hildon_window_stack_get_default();
675      appdata->window = HILDON_WINDOW(hildon_window_stack_peek(stack));
676    
677    if(appdata->search_results) {    if(appdata->search_results) {
678      search_result_free(appdata->search_results);      search_result_free(appdata->search_results);
679      appdata->search_results = NULL;      appdata->search_results = NULL;
# Line 601  void on_cachelist_destroy(GtkWidget *wid Line 690  void on_cachelist_destroy(GtkWidget *wid
690    
691  void cachelist_dialog(appdata_t *appdata, gpx_t *gpx) {  void cachelist_dialog(appdata_t *appdata, gpx_t *gpx) {
692    GtkWidget *window = hildon_stackable_window_new();    GtkWidget *window = hildon_stackable_window_new();
693      appdata->window = HILDON_WINDOW(window);
694    
695    /* store last "cur_view" in window */    /* store last "cur_view" in window */
696    g_object_set_data(G_OBJECT(window), "cur_view", appdata->cur_view);    g_object_set_data(G_OBJECT(window), "cur_view", appdata->cur_view);
697    
698    appdata->cur_gpx = gpx;    appdata->cur_gpx = gpx;
699    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);  
700    
701    appdata->cur_view = cachelist_create(appdata, gpx, NULL);    appdata->cur_view = cachelist_create(appdata, gpx, NULL);
702    gtk_container_add(GTK_CONTAINER(window), appdata->cur_view);    gtk_container_add(GTK_CONTAINER(window), appdata->cur_view);
# Line 657  static GdkPixbuf *gpx_icon_get(gpx_t *gp Line 745  static GdkPixbuf *gpx_icon_get(gpx_t *gp
745    return icon_get(ICON_FILE, 0);    return icon_get(ICON_FILE, 0);
746  }  }
747    
748  static void gpxlist_set(GtkListStore *store, GtkTreeIter *iter, gpx_t *gpx) {  void gpxlist_set(GtkListStore *store, GtkTreeIter *iter, gpx_t *gpx) {
749    char date_str[32], cnum[32];    char date_str[32], cnum[32];
750    
751    if(gpx->year && gpx->month && gpx->day) {    if(gpx->year && gpx->month && gpx->day) {
# Line 682  static void gpxlist_set(GtkListStore *st Line 770  static void gpxlist_set(GtkListStore *st
770                       GPXLIST_COL_OPEN, !gpx->closed,                       GPXLIST_COL_OPEN, !gpx->closed,
771                       GPXLIST_COL_CACHES, gpx->closed?NULL:cnum,                       GPXLIST_COL_CACHES, gpx->closed?NULL:cnum,
772  #ifdef USE_PANNABLE_AREA  #ifdef USE_PANNABLE_AREA
773                       GPXLIST_COL_DELETE, icon_get(ICON_MISC, 7),                       GPXLIST_COL_DELETE, icon_get(ICON_MISC, 2),
774  #endif  #endif
775                       GPXLIST_COL_DATA, gpx,                       GPXLIST_COL_DATA, gpx,
776                       -1);                       -1);
# Line 774  static void gpxlist_view_onRowActivated( Line 862  static void gpxlist_view_onRowActivated(
862      if(col_name && !strcmp(col_name, "Del")) {      if(col_name && !strcmp(col_name, "Del")) {
863        printf("clicked delete\n");        printf("clicked delete\n");
864    
865    #if !defined(USE_MAEMO) || (MAEMO_VERSION_MAJOR < 5)
866        /* ask user what he wants */        /* ask user what he wants */
867        GtkWidget *dialog = gtk_message_dialog_new(        GtkWidget *dialog = gtk_message_dialog_new(
868                   GTK_WINDOW(appdata->window),                   GTK_WINDOW(appdata->window),
869                   GTK_DIALOG_DESTROY_WITH_PARENT,                   GTK_DIALOG_DESTROY_WITH_PARENT,
                  /* this doesn't fix the text selection issues ... */  
 #if defined(USE_MAEMO) && (MAEMO_VERSION_MAJOR >=5)  
                  GTK_MESSAGE_OTHER,  
 #else  
870                   GTK_MESSAGE_QUESTION,                   GTK_MESSAGE_QUESTION,
 #endif  
871                   GTK_BUTTONS_CANCEL,                   GTK_BUTTONS_CANCEL,
872                   _("Do you want to close this entry only or do "                   _("Do you want to close this entry only or do "
873                     "you want to remove it completely from the list?"));                     "you want to remove it completely from the list?"));
# Line 793  static void gpxlist_view_onRowActivated( Line 877  static void gpxlist_view_onRowActivated(
877                               _("Close"), 2,                               _("Close"), 2,
878                               NULL);                               NULL);
879    
880          gtk_window_set_title(GTK_WINDOW(dialog), _("Close or remove entry?"));
881    #else
882    
883          GtkWidget *dialog =
884            gtk_dialog_new_with_buttons(_("Close or remove entry?"),
885                                GTK_WINDOW(appdata->window),
886                                GTK_DIALOG_DESTROY_WITH_PARENT,
887                                GTK_STOCK_CANCEL, GTK_RESPONSE_REJECT,
888                                _("Remove"), 1,
889                                _("Close"), 2,
890                                NULL);
891    
892          GtkWidget *content_area =
893            gtk_dialog_get_content_area (GTK_DIALOG (dialog));
894    
895          GtkWidget *hbox = gtk_hbox_new(FALSE, 0);
896    
897          GtkWidget *label = gtk_label_new(
898                      _("Do you want to close this entry only or do "
899                        "you want to remove it completely from the list?"));
900    
901          gtk_label_set_line_wrap(GTK_LABEL(label), TRUE);
902          gtk_label_set_line_wrap_mode(GTK_LABEL(label), PANGO_WRAP_WORD);
903    
904          gtk_box_pack_start_defaults(GTK_BOX(hbox), label);
905          gtk_container_add (GTK_CONTAINER (content_area), hbox);
906    
907          gtk_widget_show_all (dialog);
908    #endif
909    
910        if(gpx->closed)        if(gpx->closed)
911          gtk_dialog_set_response_sensitive(GTK_DIALOG(dialog), 2, FALSE);          gtk_dialog_set_response_sensitive(GTK_DIALOG(dialog), 2, FALSE);
912    
       gtk_window_set_title(GTK_WINDOW(dialog), _("Close or remove entry?"));  
   
913        /* set the active flag again if the user answered "no" */        /* set the active flag again if the user answered "no" */
914        switch(gtk_dialog_run(GTK_DIALOG(dialog))) {        switch(gtk_dialog_run(GTK_DIALOG(dialog))) {
915    
# Line 827  static void gpxlist_view_onRowActivated( Line 939  static void gpxlist_view_onRowActivated(
939          gpx_t *new = NULL;          gpx_t *new = NULL;
940    
941          if(g_file_test(gpx->filename, G_FILE_TEST_IS_DIR))          if(g_file_test(gpx->filename, G_FILE_TEST_IS_DIR))
942            new = gpx_parse_dir(dialog, gpx->filename);            new = gpx_parse_dir(dialog, gpx->filename, appdata->username);
943          else          else
944            new = gpx_parse(dialog, gpx->filename);            new = gpx_parse(dialog, gpx->filename, appdata->username);
945    
946          if(new) {          if(new) {
947            gpx_t **prev = &(appdata->gpx);            gpx_t **prev = &(appdata->gpx);
# Line 871  static void gpxlist_view_onRowActivated( Line 983  static void gpxlist_view_onRowActivated(
983    }    }
984  }  }
985    
986    /* search gpx file in gpx list */
987    gboolean gpxlist_find(appdata_t *appdata, GtkTreeIter *iter, gpx_t *gpx) {
988      GtkTreeModel *model =
989        gtk_tree_view_get_model(GTK_TREE_VIEW(appdata->gpxview));
990    
991      gboolean found =
992        gtk_tree_model_get_iter_first(model, iter);
993    
994      while(found) {
995        gpx_t *this_gpx;
996        gtk_tree_model_get(model, iter, GPXLIST_COL_DATA, &this_gpx, -1);
997    
998        if(gpx == this_gpx)
999          return TRUE;
1000    
1001        found = gtk_tree_model_iter_next(model, iter);
1002      }
1003    
1004      return FALSE;
1005    }
1006    
1007    
1008  #ifndef USE_PANNABLE_AREA  #ifndef USE_PANNABLE_AREA
1009  static gboolean  static gboolean
1010  view_selection_func(GtkTreeSelection *selection, GtkTreeModel *model,  view_selection_func(GtkTreeSelection *selection, GtkTreeModel *model,
# Line 909  static GtkWidget *gpxlist_create_view_an Line 1043  static GtkWidget *gpxlist_create_view_an
1043    
1044    appdata->gpxview = gtk_tree_view_new ();    appdata->gpxview = gtk_tree_view_new ();
1045    
1046      printf("building gpx list, items = %d\n", appdata->gpxlist_items);
1047    
1048    GtkTreeSelection *selection =    GtkTreeSelection *selection =
1049      gtk_tree_view_get_selection(GTK_TREE_VIEW(appdata->gpxview));      gtk_tree_view_get_selection(GTK_TREE_VIEW(appdata->gpxview));
1050  #ifndef USE_PANNABLE_AREA  #ifndef USE_PANNABLE_AREA
# Line 1045  static GtkWidget *gpxlist_create_view_an Line 1181  static GtkWidget *gpxlist_create_view_an
1181  }  }
1182    
1183  /* add last entry in gpx list to visual representation */  /* add last entry in gpx list to visual representation */
1184  static void gpxlist_add(appdata_t *appdata, gpx_t *new) {  void gpxlist_add(appdata_t *appdata, gpx_t *new) {
1185    GtkTreeIter         iter;    GtkTreeIter         iter;
1186    
1187    gtk_list_store_append(appdata->gpxstore, &iter);    gtk_list_store_append(appdata->gpxstore, &iter);
# Line 1055  static void gpxlist_add(appdata_t *appda Line 1191  static void gpxlist_add(appdata_t *appda
1191    gpx_t **gpx = &appdata->gpx;    gpx_t **gpx = &appdata->gpx;
1192    while(*gpx) gpx = &((*gpx)->next);    while(*gpx) gpx = &((*gpx)->next);
1193    *gpx = new;    *gpx = new;
1194    
1195      /* select new iter */
1196      GtkTreeSelection *selection =
1197        gtk_tree_view_get_selection(GTK_TREE_VIEW(appdata->gpxview));
1198      gtk_tree_selection_select_iter(selection, &iter);
1199      GtkTreePath *path =
1200        gtk_tree_model_get_path(GTK_TREE_MODEL(appdata->gpxstore), &iter);
1201      gtk_tree_view_scroll_to_cell(GTK_TREE_VIEW(appdata->gpxview),
1202                                   path, NULL, TRUE, 0.0, 0.0);
1203      gtk_tree_path_free(path);
1204  }  }
1205    
1206  /******************** end of gpxlist ********************/  /******************** end of gpxlist ********************/
1207    
1208  /******************** begin of menu *********************/  /******************** begin of menu *********************/
1209    
 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  
   
1210  static void  static void
1211  cb_menu_about(GtkWidget *window, gpointer data) {  cb_menu_about(GtkWidget *window, gpointer data) {
1212    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);  
1213  }  }
1214    
1215  #if defined(USE_MAEMO) && defined(HILDON_HELP)  #if defined(USE_MAEMO) && defined(HILDON_HELP)
# Line 1300  gpx_t *search_do(appdata_t *appdata, gpx Line 1381  gpx_t *search_do(appdata_t *appdata, gpx
1381        else if(cache->long_description && (what & SEARCH_DESC) &&        else if(cache->long_description && (what & SEARCH_DESC) &&
1382                strcasestr(cache->long_description, phrase))                strcasestr(cache->long_description, phrase))
1383          hit = 1;          hit = 1;
1384        else if(cache->owner && (what & SEARCH_OWNER) &&        else if(cache->owner && cache->owner->name && (what & SEARCH_OWNER) &&
1385                strcasestr(cache->owner, phrase))                strcasestr(cache->owner->name, phrase))
1386          hit = 1;          hit = 1;
1387    
1388        if(hit) {        if(hit) {
# Line 1330  typedef struct { Line 1411  typedef struct {
1411    GtkWidget *in_id, *in_name, *in_desc, *in_owner, *in_finds;    GtkWidget *in_id, *in_name, *in_desc, *in_owner, *in_finds;
1412  } search_context_t;  } search_context_t;
1413    
1414    
1415  static void callback_finds_toggled(GtkWidget *widget, gpointer data ) {  static void callback_finds_toggled(GtkWidget *widget, gpointer data ) {
1416    search_context_t *context = (search_context_t*)data;    search_context_t *context = (search_context_t*)data;
1417    
1418    gboolean in_finds = gtk_toggle_button_get_active(    gboolean in_finds = check_button_get_active(context->in_finds);
           GTK_TOGGLE_BUTTON(context->in_finds));  
1419    
1420    gtk_widget_set_sensitive(context->entry,    !in_finds);    gtk_widget_set_sensitive(context->entry,    !in_finds);
1421    gtk_widget_set_sensitive(context->in_id,    !in_finds);    gtk_widget_set_sensitive(context->in_id,    !in_finds);
# Line 1364  cb_menu_search(GtkWidget *window, gpoint Line 1445  cb_menu_search(GtkWidget *window, gpoint
1445    GtkWidget *table = gtk_table_new(2, 2, TRUE);    GtkWidget *table = gtk_table_new(2, 2, TRUE);
1446    gtk_table_set_col_spacing(GTK_TABLE(table), 0, 8);    gtk_table_set_col_spacing(GTK_TABLE(table), 0, 8);
1447    
1448    context.in_id = gtk_check_button_new_with_label(_("Waypoint IDs"));    context.in_id = check_button_new_with_label(_("Waypoint IDs"));
1449    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);  
1450    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);
1451    
1452    context.in_name = gtk_check_button_new_with_label(_("Names"));    context.in_name = check_button_new_with_label(_("Names"));
1453    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);  
1454    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);
1455    
1456    context.in_desc = gtk_check_button_new_with_label(_("Descriptions"));    context.in_desc = check_button_new_with_label(_("Descriptions"));
1457    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);  
1458    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);
1459    
1460    context.in_owner = gtk_check_button_new_with_label(_("Owner"));    context.in_owner = check_button_new_with_label(_("Owner"));
1461    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);  
1462    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);
1463    
1464    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 1390  cb_menu_search(GtkWidget *window, gpoint Line 1467  cb_menu_search(GtkWidget *window, gpoint
1467    
1468    gtk_box_pack_start_defaults(GTK_BOX(GTK_DIALOG(dialog)->vbox),    gtk_box_pack_start_defaults(GTK_BOX(GTK_DIALOG(dialog)->vbox),
1469                                gtk_label_new(_("Search for:")));                                gtk_label_new(_("Search for:")));
1470      context.entry = entry_new();
1471    gtk_box_pack_start_defaults(GTK_BOX(GTK_DIALOG(dialog)->vbox),    gtk_box_pack_start_defaults(GTK_BOX(GTK_DIALOG(dialog)->vbox),
1472                                context.entry = gtk_entry_new());                                context.entry);
1473    
1474    if(appdata->search_str)    if(appdata->search_str)
1475      gtk_entry_set_text(GTK_ENTRY(context.entry), appdata->search_str);      gtk_entry_set_text(GTK_ENTRY(context.entry), appdata->search_str);
1476    
# Line 1402  cb_menu_search(GtkWidget *window, gpoint Line 1481  cb_menu_search(GtkWidget *window, gpoint
1481    
1482    GtkWidget *hbox = gtk_hbox_new(FALSE, 5);    GtkWidget *hbox = gtk_hbox_new(FALSE, 5);
1483    
1484    context.in_finds = gtk_check_button_new_with_label(_("Search finds for"));    context.in_finds = check_button_new_with_label(_("Search finds for"));
1485    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);  
1486    gtk_box_pack_start_defaults(GTK_BOX(hbox), context.in_finds);    gtk_box_pack_start_defaults(GTK_BOX(hbox), context.in_finds);
1487    g_signal_connect(G_OBJECT(context.in_finds), "toggled",    g_signal_connect(G_OBJECT(context.in_finds), "toggled",
1488                     G_CALLBACK(callback_finds_toggled), &context);                     G_CALLBACK(callback_finds_toggled), &context);
# Line 1444  cb_menu_search(GtkWidget *window, gpoint Line 1522  cb_menu_search(GtkWidget *window, gpoint
1522                      HILDON_NUMBER_EDITOR(context.spinner));                      HILDON_NUMBER_EDITOR(context.spinner));
1523  #endif  #endif
1524    
1525      if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(context.in_finds)))      if(check_button_get_active(context.in_finds))
1526        appdata->search |=  SEARCH_FINDS;        appdata->search |=  SEARCH_FINDS;
1527      else      else
1528        appdata->search &= ~SEARCH_FINDS;        appdata->search &= ~SEARCH_FINDS;
1529    
1530      if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(context.in_id)))      if(check_button_get_active(context.in_id))
1531        appdata->search |=  SEARCH_ID;        appdata->search |=  SEARCH_ID;
1532      else      else
1533        appdata->search &= ~SEARCH_ID;        appdata->search &= ~SEARCH_ID;
1534    
1535      if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(context.in_name)))      if(check_button_get_active(context.in_name))
1536        appdata->search |=  SEARCH_NAME;        appdata->search |=  SEARCH_NAME;
1537      else      else
1538        appdata->search &= ~SEARCH_NAME;        appdata->search &= ~SEARCH_NAME;
1539    
1540      if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(context.in_desc)))      if(check_button_get_active(context.in_desc))
1541        appdata->search |=  SEARCH_DESC;        appdata->search |=  SEARCH_DESC;
1542      else      else
1543        appdata->search &= ~SEARCH_DESC;        appdata->search &= ~SEARCH_DESC;
1544    
1545      if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(context.in_owner)))      if(check_button_get_active(context.in_owner))
1546        appdata->search |=  SEARCH_OWNER;        appdata->search |=  SEARCH_OWNER;
1547      else      else
1548        appdata->search &= ~SEARCH_OWNER;        appdata->search &= ~SEARCH_OWNER;
# Line 1609  cb_menu_precpos(GtkWidget *window, gpoin Line 1687  cb_menu_precpos(GtkWidget *window, gpoin
1687    precise_position((appdata_t *)data);    precise_position((appdata_t *)data);
1688  }  }
1689    
1690    static void
1691    cb_menu_geotoad(GtkWidget *window, gpointer data) {
1692      geotoad((appdata_t *)data);
1693    }
1694    
1695  #ifdef USE_STACKABLE_WINDOW  #ifdef USE_STACKABLE_WINDOW
1696  typedef struct {  typedef struct {
1697    char *label, *desc;    char *label, *desc;
# Line 1723  static const menu_entry_t submenu_tools_ Line 1806  static const menu_entry_t submenu_tools_
1806      G_CALLBACK(cb_menu_geotext) },      G_CALLBACK(cb_menu_geotext) },
1807    { "Precise Position", "Calculate a precise GPS position",    { "Precise Position", "Calculate a precise GPS position",
1808      G_CALLBACK(cb_menu_precpos) },      G_CALLBACK(cb_menu_precpos) },
1809      { "GeoToad",          "Use GeoToad online downloader",
1810        G_CALLBACK(cb_menu_geotoad) },
1811    { NULL, NULL, NULL }    { NULL, NULL, NULL }
1812  };  };
1813    
# Line 1769  HildonAppMenu *menu_create(appdata_t *ap Line 1854  HildonAppMenu *menu_create(appdata_t *ap
1854      g_signal_connect_after(button, "clicked",      g_signal_connect_after(button, "clicked",
1855                             G_CALLBACK(on_export_clicked), appdata);                             G_CALLBACK(on_export_clicked), appdata);
1856      hildon_app_menu_append(menu, GTK_BUTTON(button));      hildon_app_menu_append(menu, GTK_BUTTON(button));
1857      }
1858    
1859      /* if search results exist, don't allow another search */
1860      if(!appdata->search_results &&
1861         ((mode == MENU_GPXLIST) || (mode == MENU_CACHELIST))) {
1862      button = gtk_button_new_with_label(_("Search"));      button = gtk_button_new_with_label(_("Search"));
1863      g_signal_connect_after(button, "clicked",      g_signal_connect_after(button, "clicked",
1864                             G_CALLBACK(cb_menu_search), appdata);                             G_CALLBACK(cb_menu_search), appdata);
# Line 1924  void menu_create(appdata_t *appdata) { Line 2013  void menu_create(appdata_t *appdata) {
2013    g_signal_connect(item, "activate",    g_signal_connect(item, "activate",
2014                     GTK_SIGNAL_FUNC(cb_menu_precpos), appdata);                     GTK_SIGNAL_FUNC(cb_menu_precpos), appdata);
2015    
2016      item = gtk_menu_item_new_with_label( _("GeoToad") );
2017      gtk_menu_append(GTK_MENU_SHELL(submenu), item);
2018      g_signal_connect(item, "activate",
2019                       GTK_SIGNAL_FUNC(cb_menu_geotoad), appdata);
2020    
2021    gtk_menu_append(GTK_MENU_SHELL(menu), gtk_separator_menu_item_new());    gtk_menu_append(GTK_MENU_SHELL(menu), gtk_separator_menu_item_new());
2022    
2023  #if defined(USE_MAEMO) && defined(HILDON_HELP)  #if defined(USE_MAEMO) && defined(HILDON_HELP)
# Line 1963  void menu_create(appdata_t *appdata) { Line 2057  void menu_create(appdata_t *appdata) {
2057  /********************* end of menu **********************/  /********************* end of menu **********************/
2058    
2059  void cleanup(appdata_t *appdata) {  void cleanup(appdata_t *appdata) {
2060      gconf_save_state(appdata);
2061    
2062    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);  
2063    
2064  #ifdef USE_STACKABLE_WINDOW  #ifdef USE_STACKABLE_WINDOW
2065    if(appdata->export_menu) submenu_cleanup(appdata->export_menu);    if(appdata->export_menu) submenu_cleanup(appdata->export_menu);
# Line 1977  void cleanup(appdata_t *appdata) { Line 2070  void cleanup(appdata_t *appdata) {
2070    icons_free();    icons_free();
2071    gps_release(appdata);    gps_release(appdata);
2072    
 #ifdef USE_MAEMO  
2073    if(appdata->search_results) {    if(appdata->search_results) {
2074      printf("freeing pending search\n");      printf("freeing pending search\n");
2075      search_result_free(appdata->search_results);      search_result_free(appdata->search_results);
2076    }    }
2077    
2078    #ifdef USE_MAEMO
2079    if(appdata->osso_context)    if(appdata->osso_context)
2080      osso_deinitialize(appdata->osso_context);      osso_deinitialize(appdata->osso_context);
2081    
# Line 2004  void cleanup(appdata_t *appdata) { Line 2097  void cleanup(appdata_t *appdata) {
2097  static void on_window_destroy (GtkWidget *widget, gpointer data) {  static void on_window_destroy (GtkWidget *widget, gpointer data) {
2098    appdata_t *appdata = (appdata_t*)data;    appdata_t *appdata = (appdata_t*)data;
2099    
   gconf_save_state(appdata);  
2100    gtk_main_quit();    gtk_main_quit();
2101    appdata->window = NULL;    appdata->window = NULL;
2102  }  }
# Line 2164  crumb_back(gpointer data) { Line 2256  crumb_back(gpointer data) {
2256    
2257  static void crumb_add(appdata_t *appdata, char *name, int level,  static void crumb_add(appdata_t *appdata, char *name, int level,
2258                        gpointer user_data) {                        gpointer user_data) {
2259    crumb_t *crumb = malloc(sizeof(crumb_t));    crumb_t *crumb = g_new0(crumb_t, 1);
2260    crumb->level = level;    crumb->level = level;
2261    crumb->appdata = appdata;    crumb->appdata = appdata;
2262    crumb->data = user_data;    crumb->data = user_data;
# Line 2244  void main_after_settings_redraw(appdata_ Line 2336  void main_after_settings_redraw(appdata_
2336    }    }
2337    
2338    if(redraw) {    if(redraw) {
     GtkWidget *container = appdata->vbox;  
2339    
2340  #ifdef USE_STACKABLE_WINDOW  #ifdef USE_STACKABLE_WINDOW
2341      HildonWindowStack *stack = hildon_window_stack_get_default();      HildonWindowStack *stack = hildon_window_stack_get_default();
2342      container = hildon_window_stack_peek(stack);      GtkWidget *container = hildon_window_stack_peek(stack);
2343    #else
2344        GtkWidget *container = appdata->vbox;
2345  #endif  #endif
2346    
2347      gtk_container_remove(GTK_CONTAINER(container), appdata->cur_view);      gtk_container_remove(GTK_CONTAINER(container), appdata->cur_view);
# Line 2267  void main_after_settings_redraw(appdata_ Line 2360  void main_after_settings_redraw(appdata_
2360      }      }
2361    
2362  #ifdef USE_STACKABLE_WINDOW  #ifdef USE_STACKABLE_WINDOW
     if(container != appdata->vbox)  
2363        gtk_container_add(GTK_CONTAINER(container), appdata->cur_view);        gtk_container_add(GTK_CONTAINER(container), appdata->cur_view);
2364      else  #else
 #endif  
2365        gtk_box_pack_start_defaults(GTK_BOX(container), appdata->cur_view);        gtk_box_pack_start_defaults(GTK_BOX(container), appdata->cur_view);
2366    #endif
2367    
2368      gtk_widget_show_all(container);      gtk_widget_show_all(container);
2369    }    }
# Line 2295  int main(int argc, char *argv[]) { Line 2387  int main(int argc, char *argv[]) {
2387    
2388    gtk_init (&argc, &argv);    gtk_init (&argc, &argv);
2389    
2390      misc_init();
2391    
2392      curl_global_init(CURL_GLOBAL_ALL);
2393    
2394  #ifdef USE_MAEMO  #ifdef USE_MAEMO
2395    printf("Installing osso context for \"org.harbaum." APP "\"\n");    printf("Installing osso context for \"org.harbaum." APP "\"\n");
2396    appdata.osso_context = osso_initialize("org.harbaum."APP,    appdata.osso_context = osso_initialize("org.harbaum."APP,
# Line 2347  int main(int argc, char *argv[]) { Line 2443  int main(int argc, char *argv[]) {
2443    appdata.clipboard = gtk_clipboard_get(GDK_SELECTION_CLIPBOARD);    appdata.clipboard = gtk_clipboard_get(GDK_SELECTION_CLIPBOARD);
2444    gtk_clipboard_set_can_store(appdata.clipboard, NULL, 0);    gtk_clipboard_set_can_store(appdata.clipboard, NULL, 0);
2445    
2446    #ifndef USE_STACKABLE_WINDOW
2447    appdata.vbox = gtk_vbox_new(FALSE, 2);    appdata.vbox = gtk_vbox_new(FALSE, 2);
2448    gtk_container_add(GTK_CONTAINER(appdata.window), appdata.vbox);    gtk_container_add(GTK_CONTAINER(appdata.window), appdata.vbox);
 #ifndef USE_STACKABLE_WINDOW  
2449    menu_create(&appdata);    menu_create(&appdata);
2450  #else  #else
2451    hildon_window_set_app_menu(HILDON_WINDOW(appdata.window),    hildon_window_set_app_menu(HILDON_WINDOW(appdata.window),
# Line 2385  int main(int argc, char *argv[]) { Line 2481  int main(int argc, char *argv[]) {
2481    gps_init(&appdata);    gps_init(&appdata);
2482    
2483    appdata.cur_view = gpxlist_create_view_and_model(&appdata, NULL);    appdata.cur_view = gpxlist_create_view_and_model(&appdata, NULL);
2484    #ifndef USE_STACKABLE_WINDOW
2485    gtk_box_pack_start_defaults(GTK_BOX(appdata.vbox), appdata.cur_view);    gtk_box_pack_start_defaults(GTK_BOX(appdata.vbox), appdata.cur_view);
2486    #else
2487      gtk_container_add(GTK_CONTAINER(appdata.window), appdata.cur_view);
2488    #endif
2489    
2490    gtk_widget_show_all(GTK_WIDGET(appdata.window));    gtk_widget_show_all(GTK_WIDGET(appdata.window));
2491    gtk_main();    gtk_main();

Legend:
Removed from v.143  
changed lines
  Added in v.243