]> git.tdb.fi Git - ext/subsurface.git/commitdiff
Add Ok/Cancel buttons to unit dialog
authorLinus Torvalds <torvalds@linux-foundation.org>
Wed, 7 Sep 2011 18:20:09 +0000 (11:20 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Wed, 7 Sep 2011 18:20:09 +0000 (11:20 -0700)
.. instead of just having a live running dialog all the time.

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
main.c

diff --git a/main.c b/main.c
index 970e85ffbde5d3d4ff644bda8f2c9bee94088f9a..4d96fa7c45e2d3f8a7ec4e6bd16b12f507f9a83e 100644 (file)
--- a/main.c
+++ b/main.c
@@ -243,11 +243,11 @@ static void create_radio(GtkWidget *dialog, const char *name, ...)
 static void name(GtkWidget *w, gpointer data)                  \
 {                                                              \
        if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(w))) \
-               output_units.type = value;                      \
-       repaint_dive();                                         \
-       dive_list_update_dives(dive_list);                      \
+               menu_units.type = value;                        \
 }
 
+static struct units menu_units;
+
 UNITCALLBACK(set_meter, length, METERS)
 UNITCALLBACK(set_feet, length, FEET)
 UNITCALLBACK(set_bar, pressure, BAR)
@@ -259,11 +259,17 @@ UNITCALLBACK(set_fahrenheit, temperature, FAHRENHEIT)
 
 static void unit_dialog(GtkWidget *w, gpointer data)
 {
+       int result;
        GtkWidget *dialog;
 
+       menu_units = output_units;
+
        dialog = gtk_dialog_new_with_buttons("Units",
                GTK_WINDOW(main_window),
-               GTK_DIALOG_DESTROY_WITH_PARENT, NULL);
+               GTK_DIALOG_DESTROY_WITH_PARENT,
+               GTK_STOCK_OK, GTK_RESPONSE_ACCEPT,
+               GTK_STOCK_CANCEL, GTK_RESPONSE_REJECT,
+               NULL);
 
        create_radio(dialog, "Depth:",
                "Meter", set_meter, (output_units.length == METERS),
@@ -286,6 +292,13 @@ static void unit_dialog(GtkWidget *w, gpointer data)
                NULL);
 
        gtk_widget_show(dialog);
+       result = gtk_dialog_run(GTK_DIALOG(dialog));
+       if (result == GTK_RESPONSE_ACCEPT) {
+               output_units = menu_units;
+               repaint_dive();
+               dive_list_update_dives(dive_list);
+       }
+       gtk_widget_destroy(dialog);
 }
 
 static GtkActionEntry menu_items[] = {