summaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorGravatar Linus Torvalds <torvalds@linux-foundation.org>2011-09-07 11:20:09 -0700
committerGravatar Linus Torvalds <torvalds@linux-foundation.org>2011-09-07 11:20:09 -0700
commit19dd61b1268cfef1526cb4195180e19276ea81b4 (patch)
tree45c52a0cdbfb846069d8382258d24b4e56dde308 /main.c
parentc4d5ebb069d41f143d829da26693a72152809f20 (diff)
downloadsubsurface-19dd61b1268cfef1526cb4195180e19276ea81b4.tar.gz
Add Ok/Cancel buttons to unit dialog
.. instead of just having a live running dialog all the time. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'main.c')
-rw-r--r--main.c21
1 files changed, 17 insertions, 4 deletions
diff --git a/main.c b/main.c
index 970e85ffb..4d96fa7c4 100644
--- 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[] = {