diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-09-13 14:58:06 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-09-13 14:58:06 -0700 |
commit | c6b13fad5aebdf7ee7f1b67da58512e49840a7c1 (patch) | |
tree | 785afaa39465aaed851b6b3870ca001509b8560f /info.c | |
parent | c7b9387d4bf624230ca2e317e7ac8cf5b4b81f0c (diff) | |
download | subsurface-c6b13fad5aebdf7ee7f1b67da58512e49840a7c1.tar.gz |
Add divemaster/buddy field and text entry
I have it in some of my notes, and Dirk seems to fill that in too, so
let's just show it, save it, and allow editing of it..
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'info.c')
-rw-r--r-- | info.c | 30 |
1 files changed, 27 insertions, 3 deletions
@@ -9,9 +9,10 @@ static GtkWidget *info_frame; static GtkWidget *divedate, *divetime, *depth, *duration, *temperature; -static GtkEntry *location; +static GtkEntry *location, *buddy, *divemaster; static GtkTextBuffer *notes; static int location_changed = 1, notes_changed = 1; +static int divemaster_changed = 1, buddy_changed = 1; static const char *weekday(int wday) { @@ -41,6 +42,16 @@ void flush_dive_info_changes(struct dive *dive) dive->location = gtk_editable_get_chars(GTK_EDITABLE(location), 0, -1); } + if (divemaster_changed) { + g_free(dive->divemaster); + dive->divemaster = gtk_editable_get_chars(GTK_EDITABLE(divemaster), 0, -1); + } + + if (buddy_changed) { + g_free(dive->buddy); + dive->buddy = gtk_editable_get_chars(GTK_EDITABLE(buddy), 0, -1); + } + if (notes_changed) { g_free(dive->notes); dive->notes = get_text(notes); @@ -118,6 +129,12 @@ void show_dive_info(struct dive *dive) text = dive->location ? : ""; gtk_entry_set_text(location, text); + text = dive->divemaster ? : ""; + gtk_entry_set_text(divemaster, text); + + text = dive->buddy ? : ""; + gtk_entry_set_text(buddy, text); + text = "Dive Info"; if (dive->location && *dive->location) text = dive->location; @@ -208,11 +225,18 @@ static GtkTextBuffer *text_view(GtkWidget *box, const char *label) GtkWidget *extended_dive_info_widget(void) { - GtkWidget *vbox; + GtkWidget *vbox, *hbox; vbox = gtk_vbox_new(FALSE, 6); - location = text_entry(vbox, "Location"); gtk_container_set_border_width(GTK_CONTAINER(vbox), 6); + location = text_entry(vbox, "Location"); + + hbox = gtk_hbox_new(FALSE, 3); + gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, TRUE, 0); + + divemaster = text_entry(hbox, "Divemaster"); + buddy = text_entry(hbox, "Buddy"); + notes = text_view(vbox, "Notes"); /* Add extended info here: name, description, yadda yadda */ |