From: Dirk Hohndel Date: Wed, 21 Sep 2011 17:31:03 +0000 (-0700) Subject: Show the "save changes" dialog before the main window is destroyed X-Git-Url: http://git.tdb.fi/?a=commitdiff_plain;h=8a8ad3f9978c47d9ba10085236e6e6722949b5e2;p=ext%2Fsubsurface.git Show the "save changes" dialog before the main window is destroyed By using the delete-event callback instead of the destroy callback we are able to display our dialog (and the file-save dialog) while the program window is still being displayed. Much nicer this way. Signed-off-by: Dirk Hohndel --- diff --git a/gtk-gui.c b/gtk-gui.c index 3efeab0..1a3838e 100644 --- a/gtk-gui.c +++ b/gtk-gui.c @@ -141,7 +141,7 @@ static void file_save(GtkWidget *w, gpointer data) filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog)); save_dives(filename); g_free(filename); - mark_divelist_changed(TRUE); + mark_divelist_changed(FALSE); } gtk_widget_destroy(dialog); } @@ -165,13 +165,19 @@ static void ask_save_changes() gtk_widget_destroy(dialog); } -void on_destroy(GtkWidget* w, gpointer data) +static gboolean on_delete(GtkWidget* w, gpointer data) { /* Make sure to flush any modified dive data */ update_dive(NULL); if (unsaved_changes()) ask_save_changes(); + + return FALSE; /* go ahead, kill the program, we're good now */ +} + +static void on_destroy(GtkWidget* w, gpointer data) +{ gtk_main_quit(); } @@ -417,6 +423,7 @@ void init_ui(int argc, char **argv) error_info_bar = NULL; win = gtk_window_new(GTK_WINDOW_TOPLEVEL); gtk_window_set_icon_from_file(GTK_WINDOW(win), "icon.svg", NULL); + g_signal_connect(G_OBJECT(win), "delete-event", G_CALLBACK (on_delete), NULL); g_signal_connect(G_OBJECT(win), "destroy", G_CALLBACK(on_destroy), NULL); main_window = win;