diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-01-28 07:54:30 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-01-28 13:07:08 -0800 |
commit | 332d372b809476df48c987b24476801a61e7e0f2 (patch) | |
tree | 37fd62e0ffe2ee54636c4f18af84258b7fc5a4ad /display-gtk.h | |
parent | 075aba8f7da8139c1dced48e5c0b8ea60cc7ae8f (diff) | |
download | subsurface-332d372b809476df48c987b24476801a61e7e0f2.tar.gz |
Pick GPS coordinates of dive location via map widget
I have some concerns about the way this is implemented - especially the
use of gtk_grab_add to make the map widget work has me worried. But it
seems to work and survived some test cases that I threw at it.
The GtkButton with the Pixmap looks a little off on my screen, but this
way it was easy to implement. Feel free to come up with a better design.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'display-gtk.h')
-rw-r--r-- | display-gtk.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/display-gtk.h b/display-gtk.h index df29ff1d8..07dc58123 100644 --- a/display-gtk.h +++ b/display-gtk.h @@ -71,6 +71,7 @@ extern GtkWidget *weightsystem_list_widget(int w_idx); extern GtkWidget *dive_list_create(void); extern void dive_list_destroy(void); +extern GdkPixbuf *get_gps_icon(void); extern gboolean icon_click_cb(GtkWidget *w, GdkEventButton *event, gpointer data); |