Freeciv-3.3
Loading...
Searching...
No Matches
gui_stuff.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 <stdarg.h>
19#include <stdio.h>
20#include <stdlib.h>
21#include <string.h>
22
23#include <gtk/gtk.h>
24#include <gdk/gdkkeysyms.h>
25
26/* utility */
27#include "fcintl.h"
28#include "log.h"
29#include "mem.h"
30#include "support.h"
31
32/* client */
33#include "options.h"
34
35/* client/gui-gtk-5.0 */
36#include "colors.h"
37#include "gui_main.h"
38
39#include "gui_stuff.h"
40
41
43
45
47
48
49/**********************************************************************/
56
57/**********************************************************************/
64 const gchar *label_text)
65{
66 GtkWidget *button;
67
68 fc_assert(icon_name != NULL || label_text != NULL);
69
70 if (label_text != NULL) {
71 button = gtk_button_new_with_mnemonic(label_text);
72 } else if (icon_name != NULL) {
74 } else {
75 button = NULL;
76 }
77
78 return button;
79}
80
81/**********************************************************************/
85void gtk_stockbutton_set_label(GtkWidget *button, const gchar *label_text)
86{
87 gtk_button_set_label(GTK_BUTTON(button), label_text);
88}
89
90/**********************************************************************/
100void intl_slist(int n, const char **s, bool *done)
101{
102 int i;
103
104 if (!*done) {
105 for (i = 0; i < n; i++) {
106 s[i] = Q_(s[i]);
107 }
108
109 *done = TRUE;
110 }
111}
112
113/**********************************************************************/
117{
118 it->model = model;
119 it->end = !gtk_tree_model_get_iter_first(it->model, &it->it);
120}
121
122/**********************************************************************/
126{
127 return it->end;
128}
129
130/**********************************************************************/
134{
135 it->end = !gtk_tree_model_iter_next(it->model, &it->it);
136}
137
138/**********************************************************************/
141void itree_set(ITree *it, ...)
142{
143 va_list ap;
144
145 va_start(ap, it);
147 va_end(ap);
148}
149
150/**********************************************************************/
153void itree_get(ITree *it, ...)
154{
155 va_list ap;
156
157 va_start(ap, it);
159 va_end(ap);
160}
161
162/**********************************************************************/
166{
167 it->model = GTK_TREE_MODEL(store);
168 if (parent)
170 else
172 it->end = FALSE;
173}
174
175/**********************************************************************/
179{
180 return gtk_tree_selection_iter_is_selected(selection, &it->it);
181}
182
183/**********************************************************************/
187{
188 gtk_tree_selection_select_iter(selection, &it->it);
189}
190
191/**********************************************************************/
195{
196 gtk_tree_selection_unselect_iter(selection, &it->it);
197}
198
199/**********************************************************************/
204{
205 GtkTreeModel *model;
206 GtkTreeIter it;
207 gint row = -1;
208
209 if (gtk_tree_selection_get_selected(selection, &model, &it)) {
210 GtkTreePath *path;
211 gint *idx;
212
213 path = gtk_tree_model_get_path(model, &it);
214 idx = gtk_tree_path_get_indices(path);
215 row = idx[0];
216 gtk_tree_path_free(path);
217 }
218
219 return row;
220}
221
222/**********************************************************************/
226{
227 GtkTreeModel *model;
228 GtkTreePath *path;
230
231 if ((model = gtk_tree_view_get_model(view))
233 && (path = gtk_tree_model_get_path(model, &iter))) {
235 gtk_tree_path_free(path);
237 }
238}
239
240/**********************************************************************/
250
251/**********************************************************************/
254static void close_callback(GtkDialog *dialog, gpointer data)
255{
257}
258
259/**********************************************************************/
286
287/**********************************************************************/
290static void gui_dialog_response(struct gui_dialog *dlg, int response)
291{
292 if (dlg->response_callback) {
293 (*dlg->response_callback)(dlg, response, dlg->user_data);
294 }
295}
296
297/**********************************************************************/
300static void gui_dialog_destroyed(struct gui_dialog *dlg, int response,
301 gpointer data)
302{
304}
305
306/**********************************************************************/
310{
311 if (dlg->type == GUI_DIALOG_TAB) {
312 GtkWidget *notebook = dlg->v.tab.notebook;
313 gulong handler_id = dlg->v.tab.handler_id;
314
315 g_signal_handler_disconnect(notebook, handler_id);
316 }
317
319
320 if (*(dlg->source)) {
321 *(dlg->source) = NULL;
322 }
323
325
326 /* Raise the return dialog set by gui_dialog_set_return_dialog() */
327 if (dlg->return_dialog_id != -1) {
328 GList *it;
329
330 for (it = dialog_list; it; it = g_list_next(it)) {
331 struct gui_dialog *adialog = (struct gui_dialog *)it->data;
332
333 if (adialog->id == dlg->return_dialog_id) {
335 break;
336 }
337 }
338 }
339
340 if (dlg->title) {
341 free(dlg->title);
342 }
343
344 free(dlg);
345}
346
347/**********************************************************************/
353{
354 struct gui_dialog *dlg = data;
355
356 /* emit response signal. */
358
359 /* do the destroy by default. */
360 return FALSE;
361}
362
363/**********************************************************************/
369{
371 int n;
372
373 notebook = dlg->v.tab.notebook;
376 != dlg->v.tab.child) {
378 }
379
380 /* Emit response signal. */
382
383 /* Do the destroy by default. */
384 return FALSE;
385}
386
387
388/**********************************************************************/
393 GdkModifierType state,
394 gpointer data)
395{
396 struct gui_dialog *dlg = (struct gui_dialog *)data;
397
399 || ((state & GDK_CONTROL_MASK) && keyval == GDK_KEY_w)) {
400 /* Emit response signal. */
402 }
403
404 /* Propagate event further. */
405 return FALSE;
406}
407
408/**********************************************************************/
412 GtkWidget *page,
413 guint num,
414 struct gui_dialog *dlg)
415{
416 gint n;
417
419
420 if (n == num) {
421 gtk_widget_remove_css_class(dlg->v.tab.label, "alert");
422 gtk_widget_remove_css_class(dlg->v.tab.label, "notice");
423 }
424}
425
426/**********************************************************************/
429static void gui_dialog_detach(struct gui_dialog *dlg)
430{
431 gint n;
434
435 if (dlg->type != GUI_DIALOG_TAB) {
436 return;
437 }
438 dlg->type = GUI_DIALOG_WINDOW;
439
440 /* Create a new reference to the main widget, so it won't be
441 * destroyed in gtk_notebook_remove_page() */
442 g_object_ref(dlg->grid);
443
444 /* Remove widget from the notebook */
445 notebook = dlg->v.tab.notebook;
446 handler_id = dlg->v.tab.handler_id;
448
451
452
453 /* Create window and put the widget inside */
457
459 dlg->v.window = window;
460 g_signal_connect(window, "close-request",
462
464 dlg->default_width,
465 dlg->default_height);
467}
468
469/**********************************************************************/
473 int n_press,
474 double x, double y, gpointer data)
475{
476 if (n_press == 2) {
477 gui_dialog_detach((struct gui_dialog *)data);
478 }
479
480 return TRUE;
481}
482
483/**********************************************************************/
493{
494 struct gui_dialog *dlg;
496 static int dialog_id_counter;
498
499 dlg = fc_malloc(sizeof(*dlg));
501
502 dlg->source = pdlg;
503 *pdlg = dlg;
504 dlg->user_data = user_data;
505 dlg->title = NULL;
506
507 dlg->default_width = 200;
508 dlg->default_height = 300;
509
511 dlg->type = GUI_DIALOG_TAB;
512 } else {
513 dlg->type = GUI_DIALOG_WINDOW;
514 }
515
516 if (!gui_action) {
518 }
520
521 dlg->grid = gtk_grid_new();
522 dlg->content_counter = 0;
526 /* We expect this to be short (as opposed to tall); maximise usable
527 * height by putting buttons down the right hand side */
529 dlg->vertical_content = FALSE;
530 } else {
531 /* We expect this to be reasonably tall; maximise usable width by
532 * putting buttons along the bottom */
536 dlg->vertical_content = TRUE;
537 }
538
542
547
552
553 switch (dlg->type) {
555 {
557
559 gtk_widget_set_name(window, "Freeciv");
561
563 dlg->v.window = window;
564 g_signal_connect(window, "close-request",
566
567 }
568 break;
569 case GUI_DIALOG_TAB:
570 {
571 GtkWidget *hbox, *label, *button;
572 gchar *buf;
573
575
584
585 button = gtk_button_new();
587 g_signal_connect_swapped(button, "clicked",
589
590 buf = g_strdup_printf(_("Close Tab:\n%s"), _("Ctrl+W"));
592 g_free(buf);
593
594 gtk_button_set_icon_name(GTK_BUTTON(button), "window-close");
595
596 gtk_box_append(GTK_BOX(hbox), button);
597
599
601 dlg->v.tab.handler_id
602 = g_signal_connect(notebook, "switch-page",
604 dlg->v.tab.child = dlg->grid;
605
606 dlg->v.tab.label = label;
608
610 g_signal_connect(controller, "pressed",
613 }
614 break;
615 }
616
617 dlg->actions = action_area;
618
620
621 dlg->id = dialog_id_counter;
623 dlg->return_dialog_id = -1;
624
625 g_signal_connect(dlg->grid, "destroy",
628 g_signal_connect(controller, "key-pressed",
631
632 g_object_set_data(G_OBJECT(dlg->grid), "gui-dialog-data", dlg);
633}
634
635/**********************************************************************/
639{
640 struct gui_dialog *dlg =
641 g_object_get_data(G_OBJECT(vbox), "gui-dialog-data");
642 gpointer arg2 =
643 g_object_get_data(G_OBJECT(button), "gui-dialog-response-data");
644
646}
647
648/**********************************************************************/
651static void gui_dialog_pack_button(struct gui_dialog *dlg, GtkWidget *button,
652 int response)
653{
655
657
658 g_object_set_data(G_OBJECT(button), "gui-dialog-response-data",
659 GINT_TO_POINTER(response));
660
661 if ((signal_id = g_signal_lookup("clicked", GTK_TYPE_BUTTON))) {
663
665 G_OBJECT(dlg->grid));
667 }
668
669 gui_dialog_add_action_widget(dlg, button);
671}
672
673/**********************************************************************/
677 const char *icon_name,
678 const char *text, int response)
679{
680 GtkWidget *button;
681
682 button = icon_label_button_new(icon_name, text);
683 gui_dialog_pack_button(dlg, button, response);
684
685 return button;
686}
687
688/**********************************************************************/
700
701/**********************************************************************/
705 int response, bool setting)
706{
708
710 iter != NULL;
712 if (GTK_IS_BUTTON(iter)) {
714 "gui-dialog-response-data");
715
716 if (response == GPOINTER_TO_INT(data)) {
718 }
719 }
720 }
721}
722
723/**********************************************************************/
730
731/**********************************************************************/
735{
737
738 if (dlg->type == GUI_DIALOG_TAB) {
740 gint num_visible = 0;
741
743 iter != NULL;
745 if (!GTK_IS_BUTTON(iter)) {
746 num_visible++;
747 } else {
749 "gui-dialog-response-data");
750 int response = GPOINTER_TO_INT(data);
751
752 if (response != GTK_RESPONSE_CLOSE
753 && response != GTK_RESPONSE_CANCEL) {
754 num_visible++;
755 } else {
757 }
758 }
759 }
760
761 if (num_visible == 0) {
763 }
764 }
765}
766
767/**********************************************************************/
771{
772 fc_assert_ret(nullptr != dlg);
773
774 switch (dlg->type) {
777 break;
778 case GUI_DIALOG_TAB:
779 {
781 gint current, n;
782
785
786 if (current != n) {
787 gtk_widget_add_css_class(dlg->v.tab.label, "notice");
788 }
789 }
790 break;
791 }
792}
793
794/**********************************************************************/
798{
799 fc_assert_ret(NULL != dlg);
800
801 switch (dlg->type) {
804 break;
805 case GUI_DIALOG_TAB:
806 {
808 gint n;
809
812 }
813 break;
814 }
815}
816
817/**********************************************************************/
821{
822 fc_assert_ret(NULL != dlg);
823
824 switch (dlg->type) {
826 break;
827 case GUI_DIALOG_TAB:
828 {
830 gint current, n;
831
834
835 if (current != n) {
836 /* Have only alert - remove notice if it exist. */
837 gtk_widget_remove_css_class(dlg->v.tab.label, "notice");
838 gtk_widget_add_css_class(dlg->v.tab.label, "alert");
839 }
840 }
841 break;
842 }
843}
844
845/**********************************************************************/
849{
850 dlg->default_width = width;
851 dlg->default_height = height;
852 switch (dlg->type) {
855 break;
856 case GUI_DIALOG_TAB:
857 break;
858 }
859}
860
861/**********************************************************************/
864void gui_dialog_set_title(struct gui_dialog *dlg, const char *title)
865{
866 if (dlg->title) {
867 free(dlg->title);
868 }
869 dlg->title = fc_strdup(title);
870 switch (dlg->type) {
873 break;
874 case GUI_DIALOG_TAB:
876 break;
877 }
878}
879
880/**********************************************************************/
884{
885 switch (dlg->type) {
888 break;
889 case GUI_DIALOG_TAB:
890 {
891 gint n;
892
895 }
896 break;
897 }
898}
899
900/**********************************************************************/
904{
905 GList *it, *it_next;
906
907 for (it = dialog_list; it; it = it_next) {
908 it_next = g_list_next(it);
909
910 gui_dialog_destroy((struct gui_dialog *)it->data);
911 }
912}
913
914/**********************************************************************/
922
923/**********************************************************************/
928{
929 if (return_dialog == NULL) {
930 dlg->return_dialog_id = -1;
931 } else {
933 }
934}
935
936/**********************************************************************/
939void gui_update_font(const char *font_name, const char *font_value)
940{
941 char *str;
944 int size;
945 const char *fam;
946 const char *style;
947 const char *weight;
948
950
951 if (desc == NULL) {
952 return;
953 }
954
956
957 if (fam == NULL) {
958 return;
959 }
960
962 style = "\n font-style: italic;";
963 } else {
964 style = "";
965 }
966
967 if (pango_font_description_get_weight(desc) >= 700) {
968 weight = "\n font-weight: bold;";
969 } else {
970 weight = "";
971 }
972
974
975 if (size != 0) {
977 str = g_strdup_printf("#Freeciv #%s { font-family: %s; font-size: %dpx;%s%s}",
978 font_name, fam, size / PANGO_SCALE, style, weight);
979 } else {
980 str = g_strdup_printf("#Freeciv #%s { font-family: %s; font-size: %dpt;%s%s}",
981 font_name, fam, size / PANGO_SCALE, style, weight);
982 }
983 } else {
984 str = g_strdup_printf("#Freeciv #%s { font-family: %s;%s%s}",
985 font_name, fam, style, weight);
986 }
987
989
992 str, -1);
996 g_free(str);
997}
998
999/**********************************************************************/
1014
1015/**********************************************************************/
1020{
1021 gulong hid;
1022
1023 if (!obj || !cb) {
1024 return;
1025 }
1026
1028 0, 0, NULL, cb, NULL);
1030}
1031
1032/**********************************************************************/
1036{
1037 gulong hid;
1038
1039 if (!obj || !cb) {
1040 return;
1041 }
1042
1044 0, 0, NULL, cb, NULL);
1046}
1047
1048/**********************************************************************/
1053 GType gtype, int model_index)
1054{
1057 const char *attr;
1058
1062
1063 if (gtype == G_TYPE_BOOLEAN) {
1065 attr = "active";
1066 } else if (gtype == GDK_TYPE_PIXBUF) {
1068 attr = "pixbuf";
1069 } else {
1071 attr = "text";
1072 }
1073
1075 model_index, NULL);
1077
1078 return col;
1079}
1080
1081/**********************************************************************/
1085{
1087
1089 ".alert {\n"
1090 "color: rgba(255, 0, 0, 255);\n"
1091 "}\n"
1092 ".notice {\n"
1093 "color: rgba(0, 0, 255, 255);\n"
1094 "}\n",
1095 -1);
1096
1101}
1102
1103/**********************************************************************/
1107{
1108 if (dlg->vertical_content) {
1110 0, dlg->content_counter++, 1, 1);
1111 } else {
1113 dlg->content_counter++, 0, 1, 1);
1114 }
1115}
1116
1117struct blocking_dialog_data {
1118 GMainLoop *loop;
1119 gint response;
1120};
1121
1122/**********************************************************************/
1125static void blocking_dialog_response(GtkWidget *dlg, gint response, void *data)
1126{
1127 struct blocking_dialog_data *bd_data = (struct blocking_dialog_data *)data;
1128
1130
1132}
1133
1134/**********************************************************************/
1138{
1139 struct blocking_dialog_data data;
1141
1143 dlg_loop = g_main_loop_new(nullptr, FALSE);
1144 data.loop = dlg_loop;
1146 &data);
1147
1149
1150 return data.response;
1151}
1152
1153/**********************************************************************/
1157{
1158 *(GtkWidget **)data = NULL;
1159}
1160
1161/**********************************************************************/
1169
1170/**********************************************************************/
1174 gpointer data)
1175{
1177}
1178
1179/**********************************************************************/
1183{
1185 int row_number = -1; /* 0 after header */
1186 int curr_y = 0;
1187
1188 while (GTK_IS_WIDGET(child)) {
1190
1191 if (curr_y > y) {
1192 return row_number;
1193 }
1194
1195 row_number++;
1196
1197 child = gtk_widget_get_next_sibling(child);
1198 }
1199
1200 return -1;
1201}
#define str
Definition astring.c:76
#define n
Definition astring.c:77
struct canvas int int struct sprite int int int int height
Definition canvas_g.h:44
struct canvas int int struct sprite int int int width
Definition canvas_g.h:44
char * incite_cost
Definition comments.c:76
#define Q_(String)
Definition fcintl.h:70
#define _(String)
Definition fcintl.h:67
GtkWidget * top_notebook
Definition gui_main.c:130
gboolean fc_lost_focus(GtkWidget *w, GdkEventKey *ev, gpointer data)
Definition gui_main.c:736
gboolean fc_gained_focus(GtkWidget *w, GdkEventKey *ev, gpointer data)
Definition gui_main.c:746
GtkWidget * toplevel
Definition gui_main.c:126
#define GUI_GTK_OPTION(optname)
Definition gui_main.h:25
void gtk_tree_view_focus(GtkTreeView *view)
Definition gui_stuff.c:236
void gui_dialog_destroy(struct gui_dialog *dlg)
Definition gui_stuff.c:954
static void gui_dialog_pack_button(struct gui_dialog *dlg, GtkWidget *button, int response)
Definition gui_stuff.c:680
void gui_dialog_present(struct gui_dialog *dlg)
Definition gui_stuff.c:835
static void gui_dialog_switch_page_handler(GtkNotebook *notebook, GtkWidget *page, guint num, struct gui_dialog *dlg)
Definition gui_stuff.c:431
void gtk_stockbutton_set_label(GtkWidget *button, const gchar *label_text)
Definition gui_stuff.c:96
static GtkCssProvider * dlg_tab_provider
Definition gui_stuff.c:46
void itree_get(ITree *it,...)
Definition gui_stuff.c:164
void itree_set(ITree *it,...)
Definition gui_stuff.c:152
void gui_dialog_raise(struct gui_dialog *dlg)
Definition gui_stuff.c:865
void gui_dialog_new(struct gui_dialog **pdlg, GtkNotebook *notebook, gpointer user_data, bool check_top)
Definition gui_stuff.c:517
void disable_gobject_callback(GObject *obj, GCallback cb)
Definition gui_stuff.c:1090
gint gtk_tree_selection_get_row(GtkTreeSelection *selection)
Definition gui_stuff.c:215
void gui_dialog_set_return_dialog(struct gui_dialog *dlg, struct gui_dialog *return_dialog)
Definition gui_stuff.c:997
void dlg_tab_provider_prepare(void)
Definition gui_stuff.c:1155
void gui_dialog_response_set_callback(struct gui_dialog *dlg, GUI_DIALOG_RESPONSE_FUN fun)
Definition gui_stuff.c:988
static GtkSizeGroup * gui_action
Definition gui_stuff.c:44
void itree_begin(GtkTreeModel *model, ITree *it)
Definition gui_stuff.c:127
static void gui_dialog_destroyed(struct gui_dialog *dlg, int response, gpointer data)
Definition gui_stuff.c:322
static void action_widget_activated(GtkWidget *button, GtkWidget *vbox)
Definition gui_stuff.c:667
void itree_unselect(GtkTreeSelection *selection, ITree *it)
Definition gui_stuff.c:206
void enable_gobject_callback(GObject *obj, GCallback cb)
Definition gui_stuff.c:1106
static void gui_dialog_detach(struct gui_dialog *dlg)
Definition gui_stuff.c:451
void gui_dialog_show_all(struct gui_dialog *dlg)
Definition gui_stuff.c:795
static gboolean gui_dialog_key_press_handler(GtkWidget *w, GdkEventKey *ev, gpointer data)
Definition gui_stuff.c:413
static gint gui_dialog_delete_handler(GtkWidget *widget, GdkEventAny *ev, gpointer data)
Definition gui_stuff.c:374
void itree_select(GtkTreeSelection *selection, ITree *it)
Definition gui_stuff.c:198
void gui_dialog_set_title(struct gui_dialog *dlg, const char *title)
Definition gui_stuff.c:935
static void close_callback(GtkDialog *dialog, gpointer data)
Definition gui_stuff.c:277
void gui_dialog_set_default_size(struct gui_dialog *dlg, int width, int height)
Definition gui_stuff.c:919
GtkWidget * icon_label_button_new(const gchar *icon_name, const gchar *label_text)
Definition gui_stuff.c:76
void gui_dialog_alert(struct gui_dialog *dlg)
Definition gui_stuff.c:888
GtkTreeViewColumn * add_treeview_column(GtkWidget *view, const char *title, GType gtype, int model_index)
Definition gui_stuff.c:1123
static void gui_dialog_destroy_handler(GtkWidget *w, struct gui_dialog *dlg)
Definition gui_stuff.c:331
void tstore_append(GtkTreeStore *store, ITree *it, ITree *parent)
Definition gui_stuff.c:176
static gint gui_dialog_delete_tab_handler(struct gui_dialog *dlg)
Definition gui_stuff.c:391
void itree_next(ITree *it)
Definition gui_stuff.c:144
void gui_dialog_destroy_all(void)
Definition gui_stuff.c:974
static gboolean click_on_tab_callback(GtkWidget *w, GdkEventButton *button, gpointer data)
Definition gui_stuff.c:494
gboolean itree_is_selected(GtkTreeSelection *selection, ITree *it)
Definition gui_stuff.c:190
GtkWidget * gui_dialog_add_button(struct gui_dialog *dlg, const char *icon_name, const char *text, int response)
Definition gui_stuff.c:706
void setup_dialog(GtkWidget *shell, GtkWidget *parent)
Definition gui_stuff.c:287
static GList * dialog_list
Definition gui_stuff.c:42
void gui_update_font_full(const char *font_name, const char *font_value, PangoFontDescription **font_desc)
Definition gui_stuff.c:1073
void gtk_expose_now(GtkWidget *w)
Definition gui_stuff.c:52
void gui_dialog_set_response_sensitive(struct gui_dialog *dlg, int response, bool setting)
Definition gui_stuff.c:760
GtkWidget * gui_dialog_get_toplevel(struct gui_dialog *dlg)
Definition gui_stuff.c:787
void intl_slist(int n, const char **s, bool *done)
Definition gui_stuff.c:111
gboolean itree_end(ITree *it)
Definition gui_stuff.c:136
static void gui_dialog_response(struct gui_dialog *dlg, int response)
Definition gui_stuff.c:312
@ GUI_DIALOG_WINDOW
Definition gui_stuff.h:61
@ GUI_DIALOG_TAB
Definition gui_stuff.h:62
void(* GUI_DIALOG_RESPONSE_FUN)(struct gui_dialog *, int, gpointer)
Definition gui_stuff.h:67
static struct gui_dialog * shell
Definition messagedlg.c:39
const char * title
Definition repodlgs.c:1314
gint blocking_dialog(GtkWidget *dlg)
Definition gui_stuff.c:1136
GtkWidget * aux_menu_new(void)
Definition gui_stuff.c:244
void gui_dialog_add_content_widget(struct gui_dialog *dlg, GtkWidget *wdg)
Definition gui_stuff.c:1105
GtkWidget * widget_get_child(GtkWidget *wdg)
Definition gui_stuff.c:1164
static void blocking_dialog_response(GtkWidget *dlg, gint response, void *data)
Definition gui_stuff.c:1124
GtkWidget * gui_dialog_add_action_widget(struct gui_dialog *dlg, GtkWidget *widget)
Definition gui_stuff.c:690
void widget_destroyed(GtkWidget *wdg, void *data)
Definition gui_stuff.c:1155
void alert_close_response(GObject *dialog, GAsyncResult *result, gpointer data)
Definition gui_stuff.c:1173
int get_column_view_row(GtkWidget *cview, int y)
Definition gui_stuff.c:1182
const char * font_name
Definition gui_main_g.h:43
gui_update_font
Definition gui_main_g.h:43
#define fc_assert_ret(condition)
Definition log.h:192
#define fc_assert(condition)
Definition log.h:177
#define fc_assert_ret_val(condition, val)
Definition log.h:195
#define fc_strdup(str)
Definition mem.h:43
#define fc_malloc(sz)
Definition mem.h:34
size_t size
Definition specvec.h:72
struct sprite int int y
Definition sprite_g.h:31
struct sprite int x
Definition sprite_g.h:31
GtkTreeModel * model
Definition gui_stuff.h:33
gboolean end
Definition gui_stuff.h:34
GtkTreeIter it
Definition gui_stuff.h:35
GtkWidget * vbox
Definition gui_stuff.h:72
char * title
Definition gui_stuff.h:76
gulong handler_id
Definition gui_stuff.h:89
struct gui_dialog::@156::@157 tab
GtkWidget * grid
Definition gui_stuff.h:71
int content_counter
Definition gui_stuff.h:84
bool vertical_content
Definition gui_stuff.h:83
GtkSizeGroup * gui_button
Definition gui_stuff.h:99
GtkWidget * action_area
Definition gui_stuff.h:73
GUI_DIALOG_RESPONSE_FUN response_callback
Definition gui_stuff.h:96
GtkWidget * label
Definition gui_stuff.h:87
GtkWidget * notebook
Definition gui_stuff.h:88
int return_dialog_id
Definition gui_stuff.h:79
int default_height
Definition gui_stuff.h:82
struct gui_dialog ** source
Definition gui_stuff.h:94
gpointer user_data
Definition gui_stuff.h:97
GtkWidget * window
Definition gui_stuff.h:85
union gui_dialog::@156 v
enum gui_dialog_type type
Definition gui_stuff.h:77
int default_width
Definition gui_stuff.h:81
GtkWidget * child
Definition gui_stuff.h:90
GtkWidget * actions
Definition gui_stuff.h:72
#define TRUE
Definition support.h:46
#define FALSE
Definition support.h:47