#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;
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
#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();