]> git.street.me.uk Git - andy/viking.git/blob - src/viktrwlayer_wpwin.c
[QA] Use correct type in sizeof function for memory allocation.
[andy/viking.git] / src / viktrwlayer_wpwin.c
1 /*
2  * viking -- GPS Data and Topo Analyzer, Explorer, and Manager
3  *
4  * Copyright (C) 2003-2005, Evan Battaglia <gtoevan@gmx.net>
5  * Copyright (C) 2010-2015, Rob Norris <rw_norris@hotmail.com>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  *
21  */
22 #include <stdlib.h>
23 #include <glib/gi18n.h>
24
25 #include "viktrwlayer_wpwin.h"
26 #include "degrees_converters.h"
27 #include "garminsymbols.h"
28 #ifdef HAVE_LIBEXIF
29 #include "geotag_exif.h"
30 #endif
31 #include "thumbnails.h"
32 #include "viking.h"
33 #include "vikdatetime_edit_dialog.h"
34 #include "vikgoto.h"
35 #include "vikutils.h"
36
37 static void update_time ( GtkWidget *widget, VikWaypoint *wp )
38 {
39   gchar *msg = vu_get_time_string ( &(wp->timestamp), "%c", &(wp->coord), NULL );
40   gtk_button_set_label ( GTK_BUTTON(widget), msg );
41   g_free ( msg );
42 }
43
44 static VikWaypoint *edit_wp;
45
46 /**
47  * time_edit_click:
48  */
49 static void time_edit_click ( GtkWidget* widget, GdkEventButton *event, VikWaypoint *wp )
50 {
51   if ( event->button == 3 ) {
52     // On right click and when a time is available, allow a method to copy the displayed time as text
53     if ( !gtk_button_get_image ( GTK_BUTTON(widget) ) ) {
54       vu_copy_label_menu ( widget, event->button );
55     }
56     return;
57   }
58   else if ( event->button == 2 ) {
59     return;
60   }
61
62   GTimeZone *gtz = g_time_zone_new_local ();
63   time_t mytime = vik_datetime_edit_dialog ( GTK_WINDOW(gtk_widget_get_toplevel(widget)),
64                                              _("Date/Time Edit"),
65                                              wp->timestamp,
66                                              gtz );
67   g_time_zone_unref ( gtz );
68
69   // Was the dialog cancelled?
70   if ( mytime == 0 )
71     return;
72
73   // Otherwise use new value in the edit buffer
74   edit_wp->timestamp = mytime;
75
76   // Clear the previous 'Add' image as now a time is set
77   if ( gtk_button_get_image ( GTK_BUTTON(widget) ) )
78     gtk_button_set_image ( GTK_BUTTON(widget), NULL );
79
80   update_time ( widget, edit_wp );
81 }
82
83 static void symbol_entry_changed_cb(GtkWidget *combo, GtkListStore *store)
84 {
85   GtkTreeIter iter;
86   gchar *sym;
87
88   if (!gtk_combo_box_get_active_iter(GTK_COMBO_BOX(combo), &iter))
89     return;
90
91   gtk_tree_model_get(GTK_TREE_MODEL(store), &iter, 0, (void *)&sym, -1 );
92   /* Note: symm is NULL when "(none)" is select (first cell is empty) */
93   gtk_widget_set_tooltip_text(combo, sym);
94   g_free(sym);
95 }
96
97 /* Specify if a new waypoint or not */
98 /* If a new waypoint then it uses the default_name for the suggested name allowing the user to change it.
99     The name to use is returned
100  */
101 /* todo: less on this side, like add track */
102 gchar *a_dialog_waypoint ( GtkWindow *parent, gchar *default_name, VikTrwLayer *vtl, VikWaypoint *wp, VikCoordMode coord_mode, gboolean is_new, gboolean *updated )
103 {
104   GtkWidget *dialog = gtk_dialog_new_with_buttons (_("Waypoint Properties"),
105                                                    parent,
106                                                    GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
107                                                    GTK_STOCK_CANCEL,
108                                                    GTK_RESPONSE_REJECT,
109                                                    GTK_STOCK_OK,
110                                                    GTK_RESPONSE_ACCEPT,
111                                                    NULL);
112   struct LatLon ll;
113   GtkWidget *latlabel, *lonlabel, *namelabel, *latentry, *lonentry, *altentry, *altlabel, *nameentry=NULL;
114   GtkWidget *commentlabel, *commententry, *descriptionlabel, *descriptionentry, *imagelabel, *imageentry, *symbollabel, *symbolentry;
115   GtkWidget *timelabel = NULL;
116   GtkWidget *timevaluebutton = NULL;
117   GtkWidget *hasGeotagCB = NULL;
118   GtkWidget *consistentGeotagCB = NULL;
119   GtkListStore *store;
120
121   gchar *lat, *lon, *alt;
122
123   vik_coord_to_latlon ( &(wp->coord), &ll );
124
125   lat = g_strdup_printf ( "%f", ll.lat );
126   lon = g_strdup_printf ( "%f", ll.lon );
127   vik_units_height_t height_units = a_vik_get_units_height ();
128   switch (height_units) {
129   case VIK_UNITS_HEIGHT_METRES:
130     alt = g_strdup_printf ( "%f", wp->altitude );
131     break;
132   case VIK_UNITS_HEIGHT_FEET:
133     alt = g_strdup_printf ( "%f", VIK_METERS_TO_FEET(wp->altitude) );
134     break;
135   default:
136     alt = g_strdup_printf ( "%f", wp->altitude );
137     g_critical("Houston, we've had a problem. height=%d", height_units);
138   }
139
140   *updated = FALSE;
141
142   namelabel = gtk_label_new (_("Name:"));
143   gtk_box_pack_start (GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dialog))), namelabel, FALSE, FALSE, 0);
144   // Name is now always changeable
145   nameentry = gtk_entry_new ();
146   if ( default_name )
147     gtk_entry_set_text( GTK_ENTRY(nameentry), default_name );
148   g_signal_connect_swapped ( nameentry, "activate", G_CALLBACK(a_dialog_response_accept), GTK_DIALOG(dialog) );
149   gtk_box_pack_start (GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dialog))), nameentry, FALSE, FALSE, 0);
150
151   latlabel = gtk_label_new (_("Latitude:"));
152   latentry = gtk_entry_new ();
153   gtk_entry_set_text ( GTK_ENTRY(latentry), lat );
154   g_free ( lat );
155
156   lonlabel = gtk_label_new (_("Longitude:"));
157   lonentry = gtk_entry_new ();
158   gtk_entry_set_text ( GTK_ENTRY(lonentry), lon );
159   g_free ( lon );
160
161   altlabel = gtk_label_new (_("Altitude:"));
162   altentry = gtk_entry_new ();
163   gtk_entry_set_text ( GTK_ENTRY(altentry), alt );
164   g_free ( alt );
165
166   if ( wp->comment && !strncmp(wp->comment, "http", 4) )
167     commentlabel = gtk_link_button_new_with_label (wp->comment, _("Comment:") );
168   else
169     commentlabel = gtk_label_new (_("Comment:"));
170   commententry = gtk_entry_new ();
171   gchar *cmt =  NULL;
172   // Auto put in some kind of 'name' as a comment if one previously 'goto'ed this exact location
173   cmt = a_vik_goto_get_search_string_for_this_place(VIK_WINDOW(parent));
174   if (cmt)
175     gtk_entry_set_text(GTK_ENTRY(commententry), cmt);
176
177   if ( wp->description && !strncmp(wp->description, "http", 4) )
178     descriptionlabel = gtk_link_button_new_with_label (wp->description, _("Description:") );
179   else
180     descriptionlabel = gtk_label_new (_("Description:"));
181   descriptionentry = gtk_entry_new ();
182
183   imagelabel = gtk_label_new (_("Image:"));
184   imageentry = vik_file_entry_new (GTK_FILE_CHOOSER_ACTION_OPEN, VF_FILTER_IMAGE, NULL, NULL);
185
186   {
187     GtkCellRenderer *r;
188     symbollabel = gtk_label_new (_("Symbol:"));
189     GtkTreeIter iter;
190
191     store = gtk_list_store_new(3, G_TYPE_STRING, GDK_TYPE_PIXBUF, G_TYPE_STRING);
192     symbolentry = gtk_combo_box_new_with_model(GTK_TREE_MODEL(store));
193     gtk_combo_box_set_wrap_width(GTK_COMBO_BOX(symbolentry), 6);
194
195     g_signal_connect(symbolentry, "changed", G_CALLBACK(symbol_entry_changed_cb), store);
196     gtk_list_store_append (store, &iter);
197     gtk_list_store_set (store, &iter, 0, NULL, 1, NULL, 2, _("(none)"), -1);
198     a_populate_sym_list(store);
199
200     r = gtk_cell_renderer_pixbuf_new ();
201     gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (symbolentry), r, FALSE);
202     gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (symbolentry), r, "pixbuf", 1, NULL);
203
204     r = gtk_cell_renderer_text_new ();
205     gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (symbolentry), r, FALSE);
206     gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (symbolentry), r, "text", 2, NULL);
207
208     if ( !is_new && wp->symbol ) {
209       gboolean ok;
210       gchar *sym;
211       for (ok = gtk_tree_model_get_iter_first ( GTK_TREE_MODEL(store), &iter ); ok; ok = gtk_tree_model_iter_next ( GTK_TREE_MODEL(store), &iter)) {
212         gtk_tree_model_get ( GTK_TREE_MODEL(store), &iter, 0, (void *)&sym, -1 );
213         if (sym && !strcmp(sym, wp->symbol)) {
214           g_free(sym);
215           break;
216         } else {
217           g_free(sym);
218         }
219       }
220       // Ensure is it a valid symbol in the given symbol set (large vs small)
221       // Not all symbols are available in both
222       // The check prevents a Gtk Critical message
223       if ( iter.stamp )
224         gtk_combo_box_set_active_iter(GTK_COMBO_BOX(symbolentry), &iter);
225     }
226   }
227
228   if ( !is_new && wp->comment )
229     gtk_entry_set_text ( GTK_ENTRY(commententry), wp->comment );
230
231   if ( !is_new && wp->description )
232     gtk_entry_set_text ( GTK_ENTRY(descriptionentry), wp->description );
233
234   if ( !is_new && wp->image ) {
235     vik_file_entry_set_filename ( VIK_FILE_ENTRY(imageentry), wp->image );
236
237 #ifdef HAVE_LIBEXIF
238     // Geotag Info [readonly]
239     hasGeotagCB = gtk_check_button_new_with_label ( _("Has Geotag") );
240     gtk_widget_set_sensitive ( hasGeotagCB, FALSE );
241     gboolean hasGeotag;
242     gchar *ignore = a_geotag_get_exif_date_from_file ( wp->image, &hasGeotag );
243     g_free ( ignore );
244     gtk_toggle_button_set_active ( GTK_TOGGLE_BUTTON(hasGeotagCB), hasGeotag );
245
246     consistentGeotagCB = gtk_check_button_new_with_label ( _("Consistent Position") );
247     gtk_widget_set_sensitive ( consistentGeotagCB, FALSE );
248     if ( hasGeotag ) {
249       struct LatLon ll = a_geotag_get_position ( wp->image );
250       VikCoord coord;
251       vik_coord_load_from_latlon ( &coord, coord_mode, &ll );
252       gtk_toggle_button_set_active ( GTK_TOGGLE_BUTTON(consistentGeotagCB), vik_coord_equals(&coord, &wp->coord) );
253     }
254 #endif
255   }
256
257   timelabel = gtk_label_new ( _("Time:") );
258   timevaluebutton = gtk_button_new();
259   gtk_button_set_relief ( GTK_BUTTON(timevaluebutton), GTK_RELIEF_NONE );
260
261   if ( !edit_wp )
262     edit_wp = vik_waypoint_new ();
263   edit_wp = vik_waypoint_copy ( wp );
264
265   // TODO: Consider if there should be a remove time button...
266
267   if ( !is_new && wp->has_timestamp ) {
268     update_time ( timevaluebutton, wp );
269   }
270   else {
271     GtkWidget *img = gtk_image_new_from_stock ( GTK_STOCK_ADD, GTK_ICON_SIZE_MENU );
272     gtk_button_set_image ( GTK_BUTTON(timevaluebutton), img );
273     // Initially use current time or otherwise whatever the last value used was
274     if ( edit_wp->timestamp == 0 ) {
275       time ( &edit_wp->timestamp );
276     }
277   }
278   g_signal_connect ( G_OBJECT(timevaluebutton), "button-release-event", G_CALLBACK(time_edit_click), edit_wp );
279
280   gtk_box_pack_start (GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dialog))), latlabel, FALSE, FALSE, 0);
281   gtk_box_pack_start (GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dialog))), latentry, FALSE, FALSE, 0);
282   gtk_box_pack_start (GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dialog))), lonlabel, FALSE, FALSE, 0);
283   gtk_box_pack_start (GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dialog))), lonentry, FALSE, FALSE, 0);
284   gtk_box_pack_start (GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dialog))), timelabel, FALSE, FALSE, 0);
285   gtk_box_pack_start (GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dialog))), timevaluebutton, FALSE, FALSE, 0);
286   gtk_box_pack_start (GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dialog))), altlabel, FALSE, FALSE, 0);
287   gtk_box_pack_start (GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dialog))), altentry, FALSE, FALSE, 0);
288   gtk_box_pack_start (GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dialog))), commentlabel, FALSE, FALSE, 0);
289   gtk_box_pack_start (GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dialog))), commententry, FALSE, FALSE, 0);
290   gtk_box_pack_start (GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dialog))), descriptionlabel, FALSE, FALSE, 0);
291   gtk_box_pack_start (GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dialog))), descriptionentry, FALSE, FALSE, 0);
292   gtk_box_pack_start (GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dialog))), imagelabel, FALSE, FALSE, 0);
293   gtk_box_pack_start (GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dialog))), imageentry, FALSE, FALSE, 0);
294   if ( hasGeotagCB ) {
295     GtkWidget *hbox =  gtk_hbox_new ( FALSE, 0 );
296     gtk_box_pack_start (GTK_BOX(hbox), hasGeotagCB, FALSE, FALSE, 0);
297     gtk_box_pack_start (GTK_BOX(hbox), consistentGeotagCB, FALSE, FALSE, 0);
298     gtk_box_pack_start (GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dialog))), hbox, FALSE, FALSE, 0);
299   }
300   gtk_box_pack_start (GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dialog))), symbollabel, FALSE, FALSE, 0);
301   gtk_box_pack_start (GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dialog))), GTK_WIDGET(symbolentry), FALSE, FALSE, 0);
302
303   gtk_dialog_set_default_response ( GTK_DIALOG(dialog), GTK_RESPONSE_ACCEPT );
304
305   gtk_widget_show_all ( gtk_dialog_get_content_area(GTK_DIALOG(dialog)) );
306
307   if ( !is_new ) {
308     // Shift left<->right to try not to obscure the waypoint.
309     trw_layer_dialog_shift ( vtl, GTK_WINDOW(dialog), &(wp->coord), FALSE );
310   }
311
312   while ( gtk_dialog_run ( GTK_DIALOG(dialog) ) == GTK_RESPONSE_ACCEPT )
313   {
314     if ( strlen((gchar*)gtk_entry_get_text ( GTK_ENTRY(nameentry) )) == 0 ) /* TODO: other checks (isalpha or whatever ) */
315       a_dialog_info_msg ( parent, _("Please enter a name for the waypoint.") );
316     else {
317       // NB: No check for unique names - this allows generation of same named entries.
318       gchar *entered_name = g_strdup ( (gchar*)gtk_entry_get_text ( GTK_ENTRY(nameentry) ) );
319
320       /* Do It */
321       ll.lat = convert_dms_to_dec ( gtk_entry_get_text ( GTK_ENTRY(latentry) ) );
322       ll.lon = convert_dms_to_dec ( gtk_entry_get_text ( GTK_ENTRY(lonentry) ) );
323       vik_coord_load_from_latlon ( &(wp->coord), coord_mode, &ll );
324       // Always store in metres
325       switch (height_units) {
326       case VIK_UNITS_HEIGHT_METRES:
327         wp->altitude = atof ( gtk_entry_get_text ( GTK_ENTRY(altentry) ) );
328         break;
329       case VIK_UNITS_HEIGHT_FEET:
330         wp->altitude = VIK_FEET_TO_METERS(atof ( gtk_entry_get_text ( GTK_ENTRY(altentry) ) ));
331         break;
332       default:
333         wp->altitude = atof ( gtk_entry_get_text ( GTK_ENTRY(altentry) ) );
334         g_critical("Houston, we've had a problem. height=%d", height_units);
335       }
336       if ( g_strcmp0 ( wp->comment, gtk_entry_get_text ( GTK_ENTRY(commententry) ) ) )
337         vik_waypoint_set_comment ( wp, gtk_entry_get_text ( GTK_ENTRY(commententry) ) );
338       if ( g_strcmp0 ( wp->description, gtk_entry_get_text ( GTK_ENTRY(descriptionentry) ) ) )
339         vik_waypoint_set_description ( wp, gtk_entry_get_text ( GTK_ENTRY(descriptionentry) ) );
340       if ( g_strcmp0 ( wp->image, vik_file_entry_get_filename ( VIK_FILE_ENTRY(imageentry) ) ) )
341         vik_waypoint_set_image ( wp, vik_file_entry_get_filename ( VIK_FILE_ENTRY(imageentry) ) );
342       if ( wp->image && *(wp->image) && (!a_thumbnails_exists(wp->image)) )
343         a_thumbnails_create ( wp->image );
344       if ( edit_wp->timestamp ) {
345         wp->timestamp = edit_wp->timestamp;
346         wp->has_timestamp = TRUE;
347       }
348
349       GtkTreeIter iter, first;
350       gtk_tree_model_get_iter_first ( GTK_TREE_MODEL(store), &first );
351       if ( !gtk_combo_box_get_active_iter ( GTK_COMBO_BOX(symbolentry), &iter ) || !memcmp(&iter, &first, sizeof(GtkTreeIter)) ) {
352         vik_waypoint_set_symbol ( wp, NULL );
353       } else {
354         gchar *sym;
355         gtk_tree_model_get ( GTK_TREE_MODEL(store), &iter, 0, (void *)&sym, -1 );
356         vik_waypoint_set_symbol ( wp, sym );
357         g_free(sym);
358       }
359
360       gtk_widget_destroy ( dialog );
361       if ( is_new )
362         return entered_name;
363       else {
364         *updated = TRUE;
365         // See if name has been changed
366         if ( g_strcmp0 (default_name, entered_name ) )
367           return entered_name;
368         else
369           return NULL;
370       }
371     }
372   }
373   gtk_widget_destroy ( dialog );
374   return NULL;
375 }