1 /**********************************************************************
2 Freeciv - Copyright (C) 1996 - A Kjeldberg, L Gregersen, P Unold
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
5 the Free Software Foundation; either version 2, or (at your option)
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
12 ***********************************************************************/
15 #include <fc_config.h>
24 #include "dialogs_g.h"
30 static bool load_theme
= FALSE
;
32 static void theme_suggestion_callback(GtkWidget
*dlg
, gint arg
);
34 /****************************************************************
35 Callback deciding if the theme may be loaded or not
36 *****************************************************************/
37 static void theme_suggestion_callback(GtkWidget
*dlg
, gint arg
)
39 load_theme
= (arg
== GTK_RESPONSE_YES
);
42 /****************************************************************
43 Popup dialog asking if tileset suggested theme should be
45 *****************************************************************/
46 bool popup_theme_suggestion_dialog(const char *theme_name
)
48 GtkWidget
*dialog
, *label
;
50 char *current_name
= GUI_GTK_OPTION(default_theme_name
);
52 if (current_name
== NULL
) {
53 /* gui option default_theme_name is not yet set.
54 * This can happen when we load tileset requested at command line and
55 * user has not saved theme information to .freeciv-client-rc.A.B. */
56 current_name
= FC_GTK3_DEFAULT_THEME_NAME
;
59 dialog
= gtk_dialog_new_with_buttons(_("Theme suggested"),
64 _("Keep current theme"),
67 gtk_dialog_set_default_response(GTK_DIALOG(dialog
), GTK_RESPONSE_YES
);
68 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog
), TRUE
);
70 fc_snprintf(buf
, sizeof(buf
),
71 _("Tileset suggests using %s theme.\n"
72 "You are currently using %s."),
73 theme_name
, current_name
);
75 label
= gtk_label_new(buf
);
76 gtk_container_add(GTK_CONTAINER(gtk_dialog_get_content_area(GTK_DIALOG(dialog
))), label
);
77 gtk_label_set_justify(GTK_LABEL(label
), GTK_JUSTIFY_CENTER
);
78 gtk_widget_show(label
);
80 g_signal_connect(dialog
, "response",
81 G_CALLBACK(theme_suggestion_callback
), NULL
);
83 gtk_dialog_run(GTK_DIALOG(dialog
));
85 gtk_widget_destroy(dialog
);