Freeciv-3.3
Loading...
Searching...
No Matches
theme_dlg.c
Go to the documentation of this file.
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)
6 any later version.
7
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***********************************************************************/
13
14#ifdef HAVE_CONFIG_H
15#include <fc_config.h>
16#endif
17
18#include <gtk/gtk.h>
19
20/* utility */
21#include "fcintl.h"
22
23/* client */
24#include "dialogs_g.h"
25#include "options.h"
26
27/* gui-gtk-3.22 */
28#include "gui_main.h"
29
30static bool load_theme = FALSE;
31
32static void theme_suggestion_callback(GtkWidget *dlg, gint arg);
33
34/************************************************************************/
38{
40}
41
42/************************************************************************/
47{
48 GtkWidget *dialog, *label;
49 char buf[1024];
51
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. */
57 }
58
59 dialog = gtk_dialog_new_with_buttons(_("Theme suggested"),
60 NULL,
61 0,
62 _("Load theme"),
64 _("Keep current theme"),
66 NULL);
69
70 fc_snprintf(buf, sizeof(buf),
71 _("Tileset suggests using %s theme.\n"
72 "You are currently using %s."),
74
75 label = gtk_label_new(buf);
78 gtk_widget_show(label);
79
80 g_signal_connect(dialog, "response",
82
84
85 gtk_widget_destroy(dialog);
86
87 return load_theme;
88}
char * incite_cost
Definition comments.c:76
#define _(String)
Definition fcintl.h:67
#define GUI_GTK_OPTION(optname)
Definition gui_main.h:25
static void theme_suggestion_callback(GtkWidget *dlg, gint arg)
Definition theme_dlg.c:37
bool popup_theme_suggestion_dialog(const char *theme_name)
Definition theme_dlg.c:46
static bool load_theme
Definition theme_dlg.c:30
#define FC_GTK3_22_DEFAULT_THEME_NAME
Definition options.h:301
int fc_snprintf(char *str, size_t n, const char *format,...)
Definition support.c:960
#define TRUE
Definition support.h:46
#define FALSE
Definition support.h:47