]> git.street.me.uk Git - andy/viking.git/blobdiff - src/dialog.h
Gpslayer: New menu items to remove all tracks and waypoints in GPS folders.
[andy/viking.git] / src / dialog.h
index 93aa6a985f7df437b11cbacb0400895415b04407..dafce1697f6a614eeddee1f13075e1ced83d31cb 100644 (file)
 #ifndef _VIKING_DIALOG_H
 #define _VIKING_DIALOG_H
 
+#include <glib.h>
+#include <gtk/gtk.h>
+
+#include "coords.h"
+#include "vikwaypoint.h"
+#include "vikcoord.h"
+
 /* most of this file is an architechtural flaw. */
 
 #define a_dialog_info_msg(win,info) a_dialog_msg(win,GTK_MESSAGE_INFO,info,NULL)
@@ -36,6 +43,8 @@ void a_dialog_msg ( GtkWindow *parent, gint type, const gchar *info, const gchar
 
 void a_dialog_response_accept ( GtkDialog *dialog );
 
+void a_dialog_about ( GtkWindow *parent );
+
 /* okay, everthing below here is an architechtural flaw. */
 gboolean a_dialog_goto_latlon ( GtkWindow *parent, struct LatLon *ll, const struct LatLon *old );
 gboolean a_dialog_goto_utm ( GtkWindow *parent, struct UTM *utm, const struct UTM *old );
@@ -46,6 +55,7 @@ gchar *a_dialog_new_track ( GtkWindow *parent, GHashTable *tracks );
 
 gboolean a_dialog_overwrite ( GtkWindow *parent, const gchar *message, const gchar *extra );
 gboolean a_dialog_custom_zoom ( GtkWindow *parent, gdouble *xmpp, gdouble *ympp );
+gboolean a_dialog_time_threshold ( GtkWindow *parent, gchar *title_text, gchar *label_text, guint *thr );
 
 void a_dialog_choose_dir ( GtkWidget *entry );