X-Git-Url: https://git.street.me.uk/andy/viking.git/blobdiff_plain/50a14534a51f892500ee82f867e8ab2f85b936ae..700b0908d71f64c9449ba372d0b9a8363257afb1:/src/dialog.h diff --git a/src/dialog.h b/src/dialog.h index 93aa6a98..dafce169 100644 --- a/src/dialog.h +++ b/src/dialog.h @@ -22,6 +22,13 @@ #ifndef _VIKING_DIALOG_H #define _VIKING_DIALOG_H +#include +#include + +#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 );