]> err.no Git - mapper/commitdiff
Add Quick POI tab
authorKaj-Michael Lang <milang@onion.tal.org>
Tue, 26 Feb 2008 17:02:09 +0000 (19:02 +0200)
committerKaj-Michael Lang <milang@onion.tal.org>
Tue, 26 Feb 2008 17:02:09 +0000 (19:02 +0200)
src/ui-common.c

index e1affdda941dfcc52db748c97c4f4582d99c69be..140f73a7ddc6ff112089ec161ef15e123a3762b7 100644 (file)
 #include "dialogs.h"
 #include "settings-gui.h"
 #include "map-repo.h"
+#include "poi-gui.h"
 
 /* Callbacks */
 #include "cb.h"
 
 /* Default size */
 #define WINDOW_SIZE_X 800
-#define WINDOW_SIZE_Y 600
+#define WINDOW_SIZE_Y 480
 
 static GtkWidget *menu_bar;
 static GtkWidget *toolbar;
@@ -59,9 +60,12 @@ struct ui_notebook_struct {
     gint heading;
        gint route;
        gint track;
+       gint qpoi;
 };
 struct ui_notebook_struct ui_notebook;
 
+static poi_quick_data tqp;
+
 /* A GPS icon would be nice.. anyone ? */
 
 #ifndef GTK_STOCK_INFO
@@ -709,6 +713,13 @@ g_signal_connect(G_OBJECT(route_tree_view), "row-activated", G_CALLBACK(route_wa
 #endif
 ui_notebook.route=gtk_notebook_append_page(notebook, vbox, label);
 
+/* Quick POI Tab */
+label=gtk_label_new("Quick POI");
+tqp.fixed=FALSE;
+tqp.close=FALSE;
+vbox=poi_quick_button_box(&tqp);
+ui_notebook.qpoi=gtk_notebook_append_page(notebook, vbox, label);
+
 menu_maps_add_repos();
 menu_init_cmenu();