Freeciv-3.2
Loading...
Searching...
No Matches
gui_main.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#ifdef AUDIO_SDL
19/* Though it would happily compile without this include,
20 * it is needed for sound to work.
21 * It defines "main" macro to rename our main() so that
22 * it can install SDL's own. */
23#ifdef SDL2_PLAIN_INCLUDE
24#include <SDL.h>
25#else /* PLAIN_INCLUDE */
26#include <SDL2/SDL.h>
27#endif /* PLAIN_INCLUDE */
28#endif /* AUDIO_SDL */
29
30#ifdef HAVE_LOCALE_H
31#include <locale.h>
32#endif
33#include <stdarg.h>
34#include <stdio.h>
35#include <stdlib.h>
36#include <string.h>
37#include <time.h>
38
39#ifdef HAVE_UNISTD_H
40#include <unistd.h>
41#endif
42
43#include <gtk/gtk.h>
44#include <gdk/gdkkeysyms.h>
45
46/* utility */
47#include "fc_cmdline.h"
48#include "fciconv.h"
49#include "fcintl.h"
50#include "log.h"
51#include "mem.h"
52#include "support.h"
53
54/* common */
55#include "dataio.h"
56#include "featured_text.h"
57#include "game.h"
58#include "government.h"
59#include "map.h"
60#include "unitlist.h"
61#include "version.h"
62
63/* client */
64#include "audio.h"
65#include "client_main.h"
66#include "climisc.h"
67#include "clinet.h"
68#include "colors.h"
69#include "connectdlg_common.h"
70#include "control.h"
71#include "editor.h"
72#include "options.h"
73#include "text.h"
74#include "tilespec.h"
75#include "zoom.h"
76
77/* client/gui-gtk-4.0 */
78#include "chatline.h"
79#include "citizensinfo.h"
80#include "connectdlg.h"
81#include "cma_fe.h"
82#include "dialogs.h"
83#include "diplodlg.h"
84#include "editgui.h"
85#include "gotodlg.h"
86#include "graphics.h"
87#include "gui_stuff.h"
88#include "happiness.h"
89#include "helpdlg.h"
90#include "inteldlg.h"
91#include "mapctrl.h"
92#include "mapview.h"
93#include "menu.h"
94#include "messagewin.h"
95#include "optiondlg.h"
96#include "pages.h"
97#include "plrdlg.h"
98#include "luaconsole.h"
99#include "spaceshipdlg.h"
100#include "repodlgs.h"
101#include "voteinfo_bar.h"
102
103#include "gui_main.h"
104
106
107GtkWidget *map_canvas; /* GtkDrawingArea */
110
111GtkWidget *overview_canvas; /* GtkDrawingArea */
112GtkWidget *overview_scrolled_window; /* GtkScrolledWindow */
113/* The two values below define the width and height of the map overview. The
114 * first set of values (2*62, 2*46) define the size for a netbook display. For
115 * bigger displays the values are doubled (default). */
116#define OVERVIEW_CANVAS_STORE_WIDTH_NETBOOK (2 * 64)
117#define OVERVIEW_CANVAS_STORE_HEIGHT_NETBOOK (2 * 46)
118#define OVERVIEW_CANVAS_STORE_WIDTH \
119 (2 * OVERVIEW_CANVAS_STORE_WIDTH_NETBOOK)
120#define OVERVIEW_CANVAS_STORE_HEIGHT \
121 (2 * OVERVIEW_CANVAS_STORE_HEIGHT_NETBOOK)
124
131
135
138
141
149
153
155
156const char *const gui_character_encoding = "UTF-8";
158
165
166static int unit_id_top;
167static int unit_ids[MAX_NUM_UNITS_BELOW]; /* ids of the units icons in
168 * information display: (or 0) */
172
173static gint timer_id; /* Ditto */
177
178static bool gui_up = FALSE;
179
180static bool audio_paused = FALSE;
181static bool client_focus = TRUE;
182
184
185static struct video_mode vmode = { -1, -1 };
186
187static void set_g_log_callbacks(void);
188
190 double x, double y, gpointer data);
191
192static void end_turn_callback(GtkWidget *w, gpointer data);
194 gpointer data);
195static void set_wait_for_writable_socket(struct connection *pc,
196 bool socket_writable);
197
198static void print_usage(void);
199static void activate_gui(GtkApplication *app, gpointer data);
200static bool parse_options(int argc, char **argv);
204 GdkModifierType state,
205 gpointer data);
207 gdouble dx, gdouble dy,
208 gpointer data);
209
210static void tearoff_callback(GtkWidget *b, gpointer data);
211static GtkWidget *detached_widget_new(void);
213
215 double x, double y, gpointer data);
217 double x, double y, gpointer data);
218static gboolean quit_dialog_callback(void);
219
221 gpointer user_data);
222
223static void free_unit_table(void);
224
225static void adjust_default_options(void);
226
227static float zoom_steps_custom[] = {
228 -1.0, 0.13, 0.25, 0.5, 0.75, 1.0, 1.25, 1.5, 2.0, 2.5, 3.0, 4.0, -1.0
229};
230
231/**********************************************************************/
234static void log_callback_utf8(enum log_level level, const char *message,
235 bool file_too)
236{
237 if (!file_too || level <= LOG_FATAL) {
238 fc_fprintf(stderr, "%d: %s\n", level, message);
239 }
240}
241
242/**********************************************************************/
247{
248 double seconds = real_timer_callback();
249
251 if (!audio_paused && !client_focus) {
252 audio_pause();
254 } else if (audio_paused && client_focus) {
255 audio_resume();
257 }
258 }
259
261
262 return FALSE;
263}
264
265/**********************************************************************/
269static void print_usage(void)
270{
271 /* add client-specific usage information here */
273 _("gtk4-client gui-specific options are:\n"));
274
276 _("-r, --resolution WIDTHxHEIGHT\tAssume given resolution "
277 "screen\n"));
278
279#ifdef EXP_ZOOM_LEVELS
281 /* TRANS: Keep word 'default' untranslated */
282 _("-z, --zoom LEVEL\tSet zoom level; use value 'default' "
283 "to reset\n\n"));
284#else
285 fc_fprintf(stderr, "\n");
286#endif /* EXP_ZOOM_LEVELS */
287
288 /* TRANS: No full stop after the URL, could cause confusion. */
289 fc_fprintf(stderr, _("Report bugs at %s\n"), BUG_URL);
290}
291
292/**********************************************************************/
295static bool parse_options(int argc, char **argv)
296{
297 int i = 1;
298
299 while (i < argc) {
300 char *option = NULL;
301
302 if (is_option("--help", argv[i])) {
303 print_usage();
304
305 return FALSE;
306
307#ifdef EXP_ZOOM_LEVELS
308 } else if ((option = get_option_malloc("--zoom", argv, &i, argc, FALSE))) {
309 char *endptr;
310
311 if (strcmp("default", option)) {
314 } else {
316 }
317 free(option);
318#endif /* EXP_ZOOM_LEVELS */
319
320 } else if ((option = get_option_malloc("--resolution", argv, &i, argc, FALSE))) {
322 fc_fprintf(stderr, _("Illegal video mode '%s'\n"), option);
324 }
325 free(option);
326 } else {
327 fc_fprintf(stderr, _("Unknown command-line option \"%s\".\n"),
328 argv[i]);
330 }
331
332 i++;
333 }
334
335 return TRUE;
336}
337
338/**********************************************************************/
342 gpointer data)
343{
344 switch (arg) {
347
348 if (!gtk_widget_get_can_focus(w)) {
349 return;
350 }
351
352 if (!gtk_widget_is_focus(w)) {
354 return;
355 }
356 break;
357
358 default:
359 break;
360 }
361}
362
363/**********************************************************************/
385
386/**********************************************************************/
397
398/**********************************************************************/
402{
403 if ((state & GDK_SHIFT_MASK)) {
404 switch (keyval) {
405
406 case GDK_KEY_Left:
408 return TRUE;
409
410 case GDK_KEY_Right:
412 return TRUE;
413
414 case GDK_KEY_Up:
416 return TRUE;
417
418 case GDK_KEY_Down:
420 return TRUE;
421
422 case GDK_KEY_Home:
424 return TRUE;
425
426 case GDK_KEY_Page_Up:
429 return TRUE;
430
434 return TRUE;
435
436 default:
437 break;
438 }
439 } else if (!(state & GDK_CONTROL_MASK)) {
440 switch (keyval) {
441 default:
442 break;
443 }
444 }
445
446 if (state & GDK_SHIFT_MASK) {
447 bool volchange = FALSE;
448
449 switch (keyval) {
450 case GDK_KEY_plus:
451 case GDK_KEY_KP_Add:
453 volchange = TRUE;
454 break;
455
456 case GDK_KEY_minus:
459 volchange = TRUE;
460 break;
461
462 default:
463 break;
464 }
465
466 if (volchange) {
468 "sound_effects_volume");
469
472 100);
474
475 return TRUE;
476 }
477 } else if (!(state & GDK_CONTROL_MASK)) {
478 switch (keyval) {
479 case GDK_KEY_plus:
480 case GDK_KEY_KP_Add:
481 zoom_step_up();
482 return TRUE;
483
484 case GDK_KEY_minus:
487 return TRUE;
488
489 default:
490 break;
491 }
492 }
493
494 /* Return here if observer */
495 if (client_is_observer()) {
496 return FALSE;
497 }
498
499 switch (keyval) {
500
501 case GDK_KEY_KP_Up:
502 case GDK_KEY_KP_8:
503 case GDK_KEY_Up:
504 case GDK_KEY_8:
506 return TRUE;
507
509 case GDK_KEY_KP_9:
510 case GDK_KEY_Page_Up:
511 case GDK_KEY_9:
513 return TRUE;
514
515 case GDK_KEY_KP_Right:
516 case GDK_KEY_KP_6:
517 case GDK_KEY_Right:
518 case GDK_KEY_6:
520 return TRUE;
521
523 case GDK_KEY_KP_3:
525 case GDK_KEY_3:
527 return TRUE;
528
529 case GDK_KEY_KP_Down:
530 case GDK_KEY_KP_2:
531 case GDK_KEY_Down:
532 case GDK_KEY_2:
534 return TRUE;
535
536 case GDK_KEY_KP_End:
537 case GDK_KEY_KP_1:
538 case GDK_KEY_End:
539 case GDK_KEY_1:
541 return TRUE;
542
543 case GDK_KEY_KP_Left:
544 case GDK_KEY_KP_4:
545 case GDK_KEY_Left:
546 case GDK_KEY_4:
548 return TRUE;
549
550 case GDK_KEY_KP_Home:
551 case GDK_KEY_KP_7:
552 case GDK_KEY_Home:
553 case GDK_KEY_7:
555 return TRUE;
556
557 case GDK_KEY_KP_Begin:
558 case GDK_KEY_KP_5:
559 case GDK_KEY_5:
561 return TRUE;
562
563 case GDK_KEY_Escape:
565 return TRUE;
566
567 case GDK_KEY_b:
570 return TRUE;
571 }
572 break;
573
574 default:
575 break;
576 };
577
578 return FALSE;
579}
580
581/**********************************************************************/
587 GdkModifierType state,
588 gpointer data)
589{
590 if (inputline_has_focus()) {
591 return FALSE;
592 }
593
594 if (keyval == GDK_KEY_apostrophe) {
595 /* Allow this even if not in main map view; chatline is present on
596 * some other pages too */
597
598 /* Make the chatline visible if it's not currently.
599 * FIXME: should find the correct window, even when detached, from any
600 * other window; should scroll to the bottom automatically showing the
601 * latest text from other players; MUST NOT make spurious text windows
602 * at the bottom of other dialogs. */
604 /* The main game view is visible. May need to switch notebook. */
607 } else {
609 }
610 }
611
612 /* If the chatline is (now) visible, focus it. */
613 if (inputline_is_visible()) {
615 return TRUE;
616 }
617 }
618
621 return FALSE;
622 }
623
624 if (editor_is_active()) {
625 if (handle_edit_key_press(keyval, state)) {
626 return TRUE;
627 }
628 }
629
630 if (state & GDK_SHIFT_MASK) {
631 switch (keyval) {
632
633 case GDK_KEY_Return:
634 case GDK_KEY_KP_Enter:
635 key_end_turn();
636 return TRUE;
637
638 default:
639 break;
640 }
641 }
642
644 /* 0 means the map view is focused. */
645 return key_press_map_canvas(keyval, state);
646 }
647
648#if 0
649 /* We are focused some other dialog, tab, or widget. */
650 if ((state & GDK_CONTROL_MASK)) {
651 } else if ((state & GDK_SHIFT_MASK)) {
652 } else {
653 switch (keyval) {
654
655 case GDK_KEY_F4:
657 return TRUE;
658
659 default:
660 break;
661 };
662 }
663#endif /* 0 */
664
665 return FALSE;
666}
667
668/**********************************************************************/
714
715/**********************************************************************/
721{
722 g_object_ref(wdg); /* Make sure reference count stays above 0
723 * during the transition to new parent. */
724
725 if (GTK_IS_PANED(old_wdg)) {
727 } else if (GTK_IS_WINDOW(old_wdg)) {
729 } else {
731
733 }
734
735 if (GTK_IS_PANED(new_wdg)) {
737 } else if (GTK_IS_WINDOW(new_wdg)) {
739 } else {
741
743 }
744
746}
747
748/**********************************************************************/
758
759/**********************************************************************/
769
770/**********************************************************************/
774{
776
777 aparent = g_object_get_data(G_OBJECT(box), "aparent");
779
780 if (aparent != cparent) {
782
784 }
785}
786
787/**********************************************************************/
790static void tearoff_close(GtkWidget *w, gpointer data)
791{
793}
794
795/**********************************************************************/
800{
801 GtkWidget *box = GTK_WIDGET(data);
803
805 GtkWidget *w;
807
808 w = gtk_window_new();
810 gtk_widget_set_name(w, "Freeciv");
811 gtk_window_set_title(GTK_WINDOW(w), _("Freeciv"));
812 g_signal_connect(w, "close-request", G_CALLBACK(tearoff_close), box);
813
814 g_object_set_data(G_OBJECT(box), "aparent", gtk_widget_get_parent(box));
815
816 temp_hide = g_object_get_data(G_OBJECT(box), "hide-over-reparent");
817 if (temp_hide != NULL) {
819 }
820
822
824
825 if (temp_hide != NULL) {
827 }
828 } else {
829 tearoff_reattach(box);
830 }
831}
832
833/**********************************************************************/
837{
839
840 return hbox;
841}
842
843/**********************************************************************/
848{
849 GtkWidget *b, *fillbox;
851
854
855 /* These toggle buttons run vertically down the side of many UI
856 * elements, so they need to be thin horizontally. */
858 ".detach_button {\n"
859 " padding: 0px 0px 0px 0px;\n"
860 " min-width: 6px;\n"
861 "}",
862 -1);
863 }
864
870 gtk_widget_add_css_class(b, "detach_button");
871
874
876
878
879 return fillbox;
880}
881
882/**********************************************************************/
889static void populate_unit_pic_table(void)
890{
891 int i, width;
893 GdkPixbuf *pix;
894 int ttw;
896
897 /* Get width of the overview window */
901
903
905 /* We want arrow to appear if there is other units in addition
906 to active one in tile. Active unit is not counted, so there
907 can be 0 other units to not to display arrow. */
908 num_units_below = 1 - 1;
909 } else {
912 }
913
914 /* Top row: the active unit. */
915 /* Note, we ref this and other widgets here so that we can unref them
916 * in reset_unit_table. */
920 gtk_grid_attach(GTK_GRID(table), unit_pic, 0, 0, 1, 1);
921
923 g_signal_connect(controller, "pressed",
925 GINT_TO_POINTER(-1));
927
929 /* Bottom row: other units in the same tile. */
930 for (i = 0; i < num_units_below; i++) {
934
936 g_signal_connect(controller, "pressed",
940
942 i, 1, 1, 1);
943 }
944 }
945
946 /* Create arrow (popup for all units on the selected tile) */
950
952 g_signal_connect(controller, "pressed",
954 NULL);
956
957 /* An extra layer so that we can hide the clickable button but keep
958 * an explicit size request to avoid the layout jumping around */
965 gdk_pixbuf_get_width(pix), -1);
967
969 /* Display on bottom row. */
971 num_units_below, 1, 1, 1);
972 } else {
973 /* Display on top row (there is no bottom row). */
975 1, 0, 1, 1);
976 }
977
979}
980
981/**********************************************************************/
1004
1005/**********************************************************************/
1009{
1010 /* Unreference all of the widgets that we're about to reallocate, thus
1011 * avoiding a memory leak. Remove them from the container first, just
1012 * to be safe. Note, the widgets are ref'd in
1013 * populate_unit_pic_table(). */
1015
1017
1018 /* We have to force a redraw of the units. And we explicitly have
1019 * to force a redraw of the focus unit, which is normally only
1020 * redrawn when the focus changes. We also have to force the 'more'
1021 * arrow to go away, both by expicitly hiding it and telling it to
1022 * do so (this will be reset immediately afterwards if necessary,
1023 * but we have to make the *internal* state consistent). */
1026 if (get_num_units_in_focus() == 1) {
1028 } else {
1029 set_unit_icon(-1, NULL);
1030 }
1032}
1033
1034/**********************************************************************/
1037#if 0
1039{
1044}
1045#endif
1046
1047/**********************************************************************/
1055
1056/**********************************************************************/
1060{
1061 struct option *opt = optset_option_by_name(server_optset, "fixedlength");
1062
1063 if (opt != NULL && option_bool_get(opt)) {
1065 _("Fixed length turns"));
1066 } else {
1067 char buf[256];
1068
1069 fc_snprintf(buf, sizeof(buf), "%s:\n%s",
1070 _("Turn Done"), _("Shift+Return"));
1072 }
1073}
1074
1075/**********************************************************************/
1078static void setup_widgets(void)
1079{
1080 GtkWidget *page, *hgrid, *hgrid2, *label;
1081 GtkWidget *frame, *table, *table2, *paned, *sw, *text;
1082 GtkWidget *button, *view, *mainbox, *vbox, *right_vbox = NULL;
1083 int i;
1084 GtkWidget *notebook, *statusbar;
1086 struct sprite *spr;
1087 int right_row = 0;
1088 int top_row = 0;
1089 int grid_col = 0;
1090 int grid2_col = 0;
1093 GtkWidget *ebar;
1094
1096
1097 notebook = gtk_notebook_new();
1098
1099 toplevel_tabs = notebook;
1104 gtk_box_append(GTK_BOX(mainbox), notebook);
1107
1118
1120
1126
1127 /* *** Everything in the top *** */
1128
1129 page = gtk_scrolled_window_new();
1134 TRUE);
1135 gtk_notebook_append_page(GTK_NOTEBOOK(notebook), page, NULL);
1136
1141 hgrid = gtk_grid_new();
1142
1144 /* The window is divided into two horizontal panels: overview +
1145 * civinfo + unitinfo, main view + message window. */
1147 right_row = 0;
1151
1157
1158 /* Overview size designed for small displays (netbooks). */
1161 } else {
1162 /* The window is divided into two vertical panes: overview +
1163 * + civinfo + unitinfo + main view, message window. */
1168
1169 /* Overview size designed for big displays (desktops). */
1172 }
1173
1174 /* This holds the overview canvas, production info, etc. */
1176 /* Put vbox to the left of anything else in hgrid -- right_vbox is either
1177 * the chat/messages pane, or NULL which is OK */
1179 GTK_POS_LEFT, 1, 1);
1180 grid_col++;
1181
1182 /* Overview canvas */
1188
1196
1206
1208
1211
1214
1229
1230 /* The rest */
1237
1238 /* Info on player's civilization, when game is running. */
1239 frame = gtk_frame_new("");
1240 gtk_box_append(GTK_BOX(avbox), frame);
1241
1242 main_frame_civ_name = frame;
1243
1247
1248 label = gtk_label_new(NULL);
1252 gtk_widget_set_margin_end(label, 2);
1253 gtk_widget_set_margin_top(label, 2);
1255
1258 G_CALLBACK(show_info_popup), frame);
1261 main_label_info = label;
1262
1263 /* Production status */
1264 table = gtk_grid_new();
1268
1269 /* Citizens for taxrates */
1270 table2 = gtk_grid_new();
1271 gtk_grid_attach(GTK_GRID(table), table2, 0, 0, 10, 1);
1273
1274 for (i = 0; i < 10; i++) {
1276
1279
1282 g_signal_connect(controller, "pressed",
1288 g_signal_connect(controller, "pressed",
1292 }
1293
1294 /* Science, environmental, govt, timeout */
1296 if (spr != NULL) {
1298 } else {
1300 }
1301
1303 if (spr != NULL) {
1305 } else {
1307 }
1308
1310 if (spr != NULL) {
1312 } else {
1314 }
1315
1317 if (spr != NULL) {
1319 } else {
1321 }
1322
1323 for (i = 0; i < 4; i++) {
1324 GtkWidget *w;
1325
1326 switch (i) {
1327 case 0:
1328 w = bulb_label;
1329 break;
1330 case 1:
1331 w = sun_label;
1332 break;
1333 case 2:
1334 w = flake_label;
1335 break;
1336 default:
1337 case 3:
1338 w = government_label;
1339 break;
1340 }
1341
1348 gtk_grid_attach(GTK_GRID(table), w, i, 1, 1, 1);
1349 }
1350
1352
1353 frame = gtk_frame_new(NULL);
1354 gtk_grid_attach(GTK_GRID(table), frame, 4, 1, 6, 1);
1356
1357
1358 /* Turn done */
1360
1362
1366
1367 /* Selected unit status */
1368
1369 /* If you turn this to something else than GtkBox, also adjust
1370 * editgui.c replace_widget() code that removes and adds widgets from it. */
1374
1375 /* In edit mode the unit_info_box widget is replaced by the
1376 * editinfobox, so we need to add a ref here so that it is
1377 * not destroyed when removed from its container.
1378 * See editinfobox_refresh() call to replace_widget() */
1380
1383
1389
1390 label = gtk_label_new(NULL);
1395 gtk_widget_set_margin_end(label, 2);
1396 gtk_widget_set_margin_top(label, 2);
1399 unit_info_label = label;
1400
1401 hgrid2 = gtk_grid_new();
1403
1404 table = gtk_grid_new();
1410
1413
1415
1416 /* Map canvas, editor toolbar, and scrollbars */
1417
1418 /* The top notebook containing the map view and dialogs. */
1419
1423
1424
1429 right_row = 0;
1432
1436 } else {
1438 }
1439
1441
1444
1451
1452 label = gtk_label_new(Q_("?noun:View"));
1454
1455 frame = gtk_frame_new(NULL);
1456 gtk_grid_attach(GTK_GRID(map_widget), frame, 0, 0, 1, 1);
1457
1463
1465
1466#if 0
1475#endif /* 0 */
1476
1478
1482
1486
1488 NULL, NULL);
1489
1493 g_signal_connect(mc_controller, "released",
1501 g_signal_connect(mc_controller, "released",
1520
1521 g_signal_connect(map_canvas, "resize",
1523
1525 g_signal_connect(mc_controller, "key-pressed",
1528
1529 /* *** The message window -- this is a detachable widget *** */
1530
1534 } else {
1536
1540
1544 }
1546
1549 } else {
1551 }
1558
1563
1570 }
1571 }
1572
1574
1577 TRUE);
1582
1583 label = gtk_label_new(_("Chat"));
1585
1592
1593 gtk_widget_set_name(text, "chatline");
1594
1596 gtk_widget_realize(text);
1598
1600 if (dtach_lowbox != NULL) {
1602 }
1603
1605
1606 /* The chat line */
1613
1614 button = gtk_check_button_new_with_label(_("Allies Only"));
1618 g_signal_connect(button, "toggled",
1622
1623 button = gtk_button_new_with_label(_("Clear links"));
1624 g_signal_connect(button, "clicked",
1627
1628 /* Other things to take care of */
1629
1631 TRUE);
1632
1635 }
1636
1639
1643 }
1644}
1645
1646/**********************************************************************/
1651 const gchar *message,
1652 gpointer user_data)
1653{
1654 enum log_level fllvl = LOG_ERROR;
1655
1656 switch (log_level) {
1657 case G_LOG_LEVEL_DEBUG:
1658 fllvl = LOG_DEBUG;
1659 break;
1661 fllvl = LOG_WARN;
1662 break;
1663 default:
1664 break;
1665 }
1666
1667 if (log_domain != NULL) {
1668 log_base(fllvl, "%s: %s", log_domain, message);
1669 } else {
1670 log_base(fllvl, "%s", message);
1671 }
1672}
1673
1674/**********************************************************************/
1678 const GLogField *fields,
1680 gpointer user_data)
1681{
1682 /* No need to have formatter of our own - let's use glib's default one. */
1684
1686
1687 return G_LOG_WRITER_HANDLED;
1688}
1689
1690/**********************************************************************/
1701
1702/**********************************************************************/
1705static void set_g_log_callbacks(void)
1706{
1707 /* Old API, still used by many log producers */
1709
1713
1714 /* glib >= 2.50 API */
1716}
1717
1718/**********************************************************************/
1729
1730/**********************************************************************/
1733int main(int argc, char **argv)
1734{
1735 return client_main(argc, argv, FALSE);
1736}
1737
1738/**********************************************************************/
1742{
1743 log_normal(_("Migrating options from gtk2 to gtk3 client"));
1744
1745#define MIGRATE_OPTION(opt) gui_options.gui_gtk3_##opt = gui_options.gui_gtk2_##opt;
1746#define MIGRATE_STR_OPTION(opt) \
1747 strncpy(gui_options.gui_gtk3_##opt, gui_options.gui_gtk2_##opt, \
1748 sizeof(gui_options.gui_gtk3_##opt));
1749
1750 /* Default theme name is never migrated */
1751 /* 'fullscreen', 'small_display_layout', and 'message_chat_location'
1752 * not migrated, as (unlike Gtk2), Gtk3-client tries to pick better
1753 * defaults for these in fresh installations based on screen size (see
1754 * adjust_default_options()); so user is probably better served by
1755 * getting these adaptive defaults than whatever they had for Gtk2.
1756 * Since 'fullscreen' isn't migrated, we don't need to worry about
1757 * preserving gui_gtk2_migrated_from_2_5 either. */
1771 MIGRATE_OPTION(popup_tech_help);
1772
1786
1787#undef MIGRATE_OPTION
1788#undef MIGRATE_STR_OPTION
1789
1791}
1792
1793/**********************************************************************/
1797{
1798 log_normal(_("Migrating options from gtk3 to gtk3.22 client"));
1799
1800#define MIGRATE_OPTION(opt) gui_options.gui_gtk3_22_##opt = gui_options.gui_gtk3_##opt;
1801#define MIGRATE_STR_OPTION(opt) \
1802 strncpy(gui_options.gui_gtk3_22_##opt, gui_options.gui_gtk3_##opt, \
1803 sizeof(gui_options.gui_gtk3_22_##opt));
1804
1805 /* Default theme name is never migrated */
1806
1807 /* Simulate gui-gtk3's migrate_options_from_2_5() */
1809 log_normal(_("Migrating gtk3-client options from freeciv-2.5 options."));
1812 }
1813
1830 MIGRATE_OPTION(popup_tech_help);
1831
1845
1846#undef MIGRATE_OPTION
1847#undef MIGRATE_STR_OPTION
1848
1850}
1851
1852/**********************************************************************/
1856{
1857 log_normal(_("Migrating options from gtk3.22 to gtk4 client"));
1858
1859#define MIGRATE_OPTION(opt) GUI_GTK_OPTION(opt) = gui_options.gui_gtk3_22_##opt;
1860#define MIGRATE_STR_OPTION(opt) \
1861 strncpy(GUI_GTK_OPTION(opt), gui_options.gui_gtk3_22_##opt, \
1862 sizeof(GUI_GTK_OPTION(opt)));
1863
1864 /* Default theme name is never migrated */
1881 MIGRATE_OPTION(popup_tech_help);
1882
1896
1897#undef MIGRATE_OPTION
1898#undef MIGRATE_STR_OPTION
1899
1901}
1902
1903/**********************************************************************/
1906int ui_main(int argc, char **argv)
1907{
1908 if (parse_options(argc, argv)) {
1909 /* The locale has already been set in init_nls() and the windows-specific
1910 * locale logic in gtk_init() causes problems with zh_CN (see PR#39475) */
1912
1913 if (!gtk_init_check()) {
1914 log_fatal(_("Failed to open graphical mode."));
1915 return EXIT_FAILURE;
1916 }
1917
1919
1920 gui_up = TRUE;
1924 gui_up = FALSE;
1925
1934 cma_fe_done();
1936
1937 /* We have extra ref for unit_info_box that has protected
1938 * it from getting destroyed when editinfobox_refresh()
1939 * moves widgets around. Free that extra ref here. */
1941 if (empty_unit_paintable != NULL) {
1943 }
1944
1945 editgui_free();
1947 message_buffer = NULL; /* Result of destruction of everything */
1949 }
1950
1951 return EXIT_SUCCESS;
1952}
1953
1954/**********************************************************************/
1958{
1960 guint sig;
1962 char window_name[1024];
1963
1965 if (vmode.width > 0 && vmode.height > 0) {
1968 }
1969
1976
1978 gtk_widget_set_name(toplevel, "Freeciv");
1979
1981
1983
1984 if (gui_options.first_boot) {
1986 /* We're using fresh defaults for this version of this client,
1987 * so prevent any future migrations from other clients / versions */
1989 /* Avoid also marking previous Gtk clients as migrated, so that
1990 * they can have their own run of their adjust_default_options() if
1991 * they are ever run (as a side effect of Gtk2->Gtk3 migration). */
1992 } else {
1997 /* We want a fresh look at screen-size-related options after Gtk2 */
1999 /* We don't ever want to consider pre-2.6 fullscreen option again
2000 * (even for gui-gtk3) */
2002 }
2004 }
2006 }
2007 }
2008
2011 }
2012
2013 fc_snprintf(window_name, sizeof(window_name), _("Freeciv (%s)"), GUI_NAME_SHORT);
2015
2016 g_signal_connect(toplevel, "close-request",
2018
2019 /* Disable GTK cursor key focus movement */
2020 sig = g_signal_lookup("move-focus", GTK_TYPE_WIDGET);
2022 0, 0, 0, 0);
2024
2026 if (OT_FONT == option_type(poption)) {
2027 /* Force to call the appropriate callback. */
2029 }
2031
2034
2035 if (NULL == city_names_style) {
2037 log_error("city_names_style should have been set by options.");
2038 }
2041 log_error("city_productions_style should have been set by options.");
2042 }
2043 if (NULL == reqtree_text_style) {
2045 log_error("reqtree_text_style should have been set by options.");
2046 }
2047
2050
2051 /* keep the icon of the executable on Windows (see PR#36491) */
2052#ifndef FREECIV_MSWINDOWS
2053 {
2054 /* Only call this after tileset_load_tiles is called. */
2056 }
2057#endif /* FREECIV_MSWINDOWS */
2058
2059 setup_widgets();
2060 load_cursors();
2061 cma_fe_init();
2068 chatline_init();
2070
2072
2074
2075 /* Assumes toplevel showing */
2077
2078 /* Assumes client_state is set */
2080}
2081
2082/**********************************************************************/
2085bool is_gui_up(void)
2086{
2087 return gui_up;
2088}
2089
2090/**********************************************************************/
2093void ui_exit(void)
2094{
2095 if (message_buffer != NULL) {
2098 }
2099}
2100
2101/**********************************************************************/
2104enum gui_type get_gui_type(void)
2105{
2106 return GUI_GTK4;
2107}
2108
2109/**********************************************************************/
2116
2117/**********************************************************************/
2123void set_unit_icon(int idx, struct unit *punit)
2124{
2125 GtkWidget *w;
2126
2127 fc_assert_ret(idx >= -1 && idx < num_units_below);
2128
2129 if (idx == -1) {
2130 w = unit_pic;
2131 unit_id_top = punit ? punit->id : 0;
2132 } else {
2133 w = unit_below_pic[idx];
2134 unit_ids[idx] = punit ? punit->id : 0;
2135 }
2136
2137 if (!w) {
2138 return;
2139 }
2140
2141 if (punit) {
2143 } else {
2144 if (empty_unit_paintable == NULL) {
2145 /* FIXME: Use proper icon height instead of hardcoded 50 */
2147
2148 /* Add ref to avoid it getting destroyed along any single parent widget. */
2150 }
2152 }
2153}
2154
2155/**********************************************************************/
2161{
2162 static bool showing = FALSE;
2163
2164 if (more_arrow == NULL) {
2165 return;
2166 }
2167
2168 if (onoff && !showing) {
2170 showing = TRUE;
2171 } else if (!onoff && showing) {
2173 showing = FALSE;
2174 }
2175}
2176
2177/**********************************************************************/
2187
2188/**********************************************************************/
2193 double x, double y, gpointer data)
2194{
2195 int i = GPOINTER_TO_INT(data);
2196 struct unit *punit;
2197
2198 if (i == -1) {
2200 if (punit && unit_is_in_focus(punit)) {
2201 /* Clicking on the currently selected unit will center it. */
2203 }
2204 return TRUE;
2205 }
2206
2207 if (unit_ids[i] == 0) { /* No unit displayed at this place */
2208 return TRUE;
2209 }
2210
2212 if (NULL != punit && unit_owner(punit) == client_player()) {
2213 /* Unit shouldn't be NULL but may be owned by an ally. */
2215 }
2216
2217 return TRUE;
2218}
2219
2220/**********************************************************************/
2225 double x, double y, gpointer data)
2226{
2228
2229 if (punit) {
2231 }
2232
2233 return TRUE;
2234}
2235
2236/**********************************************************************/
2240{
2242}
2243
2244/**********************************************************************/
2248 double x, double y, gpointer data)
2249{
2250 GtkWidget *p;
2251 GtkWidget *child;
2252 GtkWidget *frame = GTK_WIDGET(data);
2253
2254 p = gtk_popover_new();
2255
2256 gtk_widget_set_parent(p, frame);
2259 g_signal_connect(p, "closed",
2262
2263 return TRUE;
2264}
2265
2266/**********************************************************************/
2274
2275/**********************************************************************/
2279 gpointer data)
2280{
2282
2283 return TRUE;
2284}
2285
2286/**********************************************************************/
2290 bool socket_writable)
2291{
2292 static bool previous_state = FALSE;
2293
2295
2297 return;
2298
2299 log_debug("set_wait_for_writable_socket(%d)", socket_writable);
2300
2305 NULL);
2306
2308}
2309
2310/**********************************************************************/
2314void add_net_input(int sock)
2315{
2316#ifdef FREECIV_MSWINDOWS
2318#else
2320#endif
2322 G_IO_IN | G_IO_ERR,
2324 NULL);
2326}
2327
2328/**********************************************************************/
2338
2339/**********************************************************************/
2343static void quit_dialog_response(GtkWidget *dialog, gint response)
2344{
2346 if (response == GTK_RESPONSE_YES) {
2348 if (client.conn.used) {
2350 }
2351 quit_gtk_main();
2352 }
2353}
2354
2355/**********************************************************************/
2359{
2360 /* Quit gtk main loop. After this it will return to finish
2361 * ui_main() */
2362
2364}
2365
2366/**********************************************************************/
2371{
2372 static GtkWidget *dialog;
2373
2374 if (!dialog) {
2376 0,
2379 _("Are you sure you want to quit?"));
2380 setup_dialog(dialog, toplevel);
2381
2382 g_signal_connect(dialog, "response",
2384 g_signal_connect(dialog, "destroy",
2385 G_CALLBACK(widget_destroyed), &dialog);
2386 }
2387
2389}
2390
2391/**********************************************************************/
2395{
2397 /* Stop emission of event. */
2398 return TRUE;
2399}
2400
2401struct callback {
2402 void (*callback)(void *data);
2403 void *data;
2404};
2405
2406/**********************************************************************/
2410{
2411 struct callback *cb = data;
2412
2413 (cb->callback)(cb->data);
2414 free(cb);
2415
2416 return FALSE;
2417}
2418
2419/**********************************************************************/
2424void add_idle_callback(void (callback)(void *), void *data)
2425{
2426 struct callback *cb = fc_malloc(sizeof(*cb));
2427
2428 cb->callback = callback;
2429 cb->data = data;
2431}
2432
2433/**********************************************************************/
2443
2444/**********************************************************************/
2449{
2450 GtkWidget *button;
2451
2453 fc_assert_ret(button != NULL);
2455
2458}
2459
2460/**********************************************************************/
2471
2472/**********************************************************************/
2482
2483/**********************************************************************/
2493
2494/**********************************************************************/
2504
2505/**********************************************************************/
2510{
2511
2512 struct option *poption;
2513
2514#define option_var_set_callback(var, callback) \
2515 if ((poption = optset_option_by_name(client_optset, \
2516 GUI_GTK_OPTION_STR(var)))) { \
2517 option_set_changed_callback(poption, callback); \
2518 } else { \
2519 log_error("Didn't find option %s!", GUI_GTK_OPTION_STR(var)); \
2520 }
2521
2526
2533#undef option_var_set_callback
2534}
2535
2536/**********************************************************************/
2541{
2542 GtkWidget *button;
2543
2545 fc_assert_ret(button != NULL);
2547
2548 /* Hide the "Allies Only" button for local games. */
2549 if (is_server_running()) {
2551 } else {
2555 }
2556}
2557
2558/**********************************************************************/
2566
2567/**********************************************************************/
2571{
2572 cat_snprintf(outbuf, outlen, _("\nBuilt against gtk %d.%d.%d, using %d.%d.%d"
2573 "\nBuilt against glib %d.%d.%d, using %d.%d.%d"),
2578}
2579
2580/**********************************************************************/
2585{
2588
2590 if (!display) {
2591 return FALSE;
2592 }
2593
2595
2596 if (!monitor) {
2597 return FALSE;
2598 }
2599
2601
2602 return TRUE;
2603}
2604
2605/**********************************************************************/
2609{
2610 GdkRectangle rect;
2611
2612 if (vmode.width > 0) {
2613 return vmode.width;
2614 }
2615
2616 if (monitor_size(&rect)) {
2617 return rect.width;
2618 } else {
2619 return 0;
2620 }
2621}
2622
2623/**********************************************************************/
2627{
2628 GdkRectangle rect;
2629
2630 if (vmode.height > 0) {
2631 return vmode.height;
2632 }
2633
2634 if (monitor_size(&rect)) {
2635 return rect.height;
2636 } else {
2637 return 0;
2638 }
2639}
2640
2641/**********************************************************************/
2645{
2646 if (vmode.width > 0 && vmode.height > 0) {
2647 return &vmode;
2648 }
2649
2650 return NULL;
2651}
2652
2653/**********************************************************************/
2656static void adjust_default_options(void)
2657{
2658 int scr_height = screen_height();
2659
2660 if (scr_height > 0) {
2661 /* Adjust these options only if we do know the screen height. */
2662
2663 if (scr_height <= 480) {
2664 /* Freeciv is practically unusable outside fullscreen mode in so
2665 * small display */
2666 log_verbose("Changing default to fullscreen due to very small screen");
2668 }
2669 if (scr_height < 1024) {
2670 /* This is a small display */
2671 log_verbose("Defaulting to small widget layout due to small screen");
2673 log_verbose("Defaulting to merged messages/chat due to small screen");
2675 }
2676 }
2677}
2678
2679/**********************************************************************/
2683{
2684 return fc_app;
2685}
void audio_pause(void)
Definition audio.c:606
void audio_resume(void)
Definition audio.c:614
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
void chat_welcome_message(bool gui_has_copying_mitem)
static struct ai_type * self
Definition classicai.c:45
bool client_is_observer(void)
double real_timer_callback(void)
int client_main(int argc, char *argv[], bool postpone_tileset)
void user_ended_turn(void)
struct civclient client
void start_quitting(void)
void set_client_state(enum client_states newstate)
bool can_client_change_view(void)
#define client_player()
#define TIMER_INTERVAL
Definition client_main.h:30
@ C_S_DISCONNECTED
Definition client_main.h:45
void buy_production_in_selected_cities(void)
Definition climisc.c:1305
struct sprite * client_warming_sprite(void)
Definition climisc.c:377
struct sprite * client_cooling_sprite(void)
Definition climisc.c:394
struct sprite * client_research_sprite(void)
Definition climisc.c:354
struct sprite * client_government_sprite(void)
Definition climisc.c:412
void disconnect_from_server(bool leaving_sound)
Definition clinet.c:306
void input_from_server(int fd)
Definition clinet.c:411
struct color * get_color(const struct tileset *t, enum color_std stdcolor)
char * incite_cost
Definition comments.c:74
bool is_server_running(void)
void key_recall_previous_focus_unit(void)
Definition control.c:3291
bool unit_is_in_focus(const struct unit *punit)
Definition control.c:383
void key_cancel_action(void)
Definition control.c:3229
int num_units_below
Definition control.c:76
void unit_focus_set(struct unit *punit)
Definition control.c:501
struct unit_list * get_units_in_focus(void)
Definition control.c:177
void key_end_turn(void)
Definition control.c:3283
void update_unit_pix_label(struct unit_list *punitlist)
Definition control.c:967
void key_unit_move(enum direction8 gui_dir)
Definition control.c:3312
enum cursor_hover_state hover_state
Definition control.c:89
struct unit * head_of_units_in_focus(void)
Definition control.c:405
int get_num_units_in_focus(void)
Definition control.c:185
void control_mouse_cursor(struct tile *ptile)
Definition control.c:1189
void key_center_capital(void)
Definition control.c:3266
#define MAX_NUM_UNITS_BELOW
Definition control.h:295
@ HOVER_NONE
Definition control.h:26
struct unit struct city struct unit struct tile struct extra_type const struct act_prob *act_probs int actor_unit_id struct unit struct unit * punit
Definition dialogs_g.h:74
bool editor_is_active(void)
Definition editor.c:346
bool is_option(const char *option_name, char *option)
Definition fc_cmdline.c:112
char * get_option_malloc(const char *option_name, char **argv, int *i, int argc, bool gc)
Definition fc_cmdline.c:50
@ O_SCIENCE
Definition fc_types.h:101
@ O_GOLD
Definition fc_types.h:101
void fc_fprintf(FILE *stream, const char *format,...) fc__attribute((__format__(__printf__
#define Q_(String)
Definition fcintl.h:70
#define _(String)
Definition fcintl.h:67
struct unit * game_unit_by_number(int id)
Definition game.c:116
bool inputline_has_focus(void)
Definition chatline.c:71
void inputline_toolkit_view_append_button(GtkWidget *toolkit_view, GtkWidget *button)
Definition chatline.c:1292
GtkWidget * inputline_toolkit_view_new(void)
Definition chatline.c:1270
void set_message_buffer_view_link_handlers(GtkWidget *view)
Definition chatline.c:744
bool inputline_is_visible(void)
Definition chatline.c:87
void chatline_init(void)
Definition chatline.c:1302
void inputline_grab_focus(void)
Definition chatline.c:79
void chatline_scroll_to_bottom(bool delayed)
Definition chatline.c:1006
void citizens_dialog_init(void)
void citizens_dialog_done(void)
void cma_fe_init(void)
Definition cma_fe.c:88
void cma_fe_done(void)
Definition cma_fe.c:96
void unit_select_dialog_popup(struct tile *ptile)
Definition dialogs.c:377
gboolean taxrates_callback(GtkWidget *w, GdkEventButton *ev, gpointer data)
Definition dialogs.c:1425
void diplomacy_dialog_init(void)
Definition diplodlg.c:1204
void diplomacy_dialog_done(void)
Definition diplodlg.c:1213
gboolean handle_edit_key_press(GdkEventKey *ev)
Definition editgui.c:1662
void editgui_create_widgets(void)
Definition editgui.c:1822
struct editbar * editgui_get_editbar(void)
Definition editgui.c:1788
void editgui_free(void)
Definition editgui.c:1835
void goto_dialog_focus_units_changed(void)
Definition gotodlg.c:541
static GtkWidget * source
Definition gotodlg.c:58
void load_cursors(void)
Definition graphics.c:78
GtkWidget * map_vertical_scrollbar
Definition gui_main.c:109
int ui_main(int argc, char **argv)
Definition gui_main.c:1909
const char * client_string
Definition gui_main.c:105
GtkTextBuffer * message_buffer
Definition gui_main.c:178
static void quit_dialog_response(GtkWidget *dialog, gint response)
Definition gui_main.c:2344
void real_focus_units_changed(void)
Definition gui_main.c:2171
void set_unit_icons_more_arrow(bool onoff)
Definition gui_main.c:2148
static void print_usage(void)
Definition gui_main.c:265
#define OVERVIEW_CANVAS_STORE_WIDTH_NETBOOK
Definition gui_main.c:116
#define option_var_set_callback(var, callback)
static gboolean quit_dialog_callback(void)
Definition gui_main.c:2397
static GIOChannel * srv_channel
Definition gui_main.c:182
GtkWidget * main_label_info
Definition gui_main.c:138
static bool monitor_size(GdkRectangle *rect_p)
Definition gui_main.c:2575
GtkWidget * bottom_notebook
Definition gui_main.c:129
GtkWidget * unit_info_label
Definition gui_main.c:151
static gboolean timer_callback(gpointer data)
Definition gui_main.c:242
struct video_mode * resolution_request_get(void)
Definition gui_main.c:2633
void set_unit_icon(int idx, struct unit *punit)
Definition gui_main.c:2118
static int unit_ids[MAX_NUM_UNITS_BELOW]
Definition gui_main.c:175
GtkWidget * timeout_label
Definition gui_main.c:148
static bool gui_up
Definition gui_main.c:186
static guint srv_id
Definition gui_main.c:183
static gboolean mouse_scroll_mapcanvas(GtkWidget *w, GdkEventScroll *ev)
Definition gui_main.c:706
PangoFontDescription * city_productions_style
Definition gui_main.c:134
GtkWidget * overview_scrolled_window
Definition gui_main.c:112
static GtkWidget * detached_widget_fill(GtkWidget *tearbox)
Definition gui_main.c:868
GtkWidget * top_notebook
Definition gui_main.c:129
#define MIGRATE_STR_OPTION(opt)
GtkWidget * unit_info_box
Definition gui_main.c:152
gboolean fc_lost_focus(GtkWidget *w, GdkEventKey *ev, gpointer data)
Definition gui_main.c:758
void ui_exit(void)
Definition gui_main.c:2088
enum gui_type get_gui_type(void)
Definition gui_main.c:2099
static GtkWidget * detached_widget_new(void)
Definition gui_main.c:857
gint cur_y
Definition gui_main.c:184
int main(int argc, char **argv)
Definition gui_main.c:1787
void fullscreen_opt_refresh(struct option *poption)
Definition gui_main.c:2455
void ui_init(void)
Definition gui_main.c:1777
static void free_unit_table(void)
Definition gui_main.c:1017
static gboolean idle_callback_wrapper(gpointer data)
Definition gui_main.c:2412
static void apply_city_names_font(struct option *poption)
Definition gui_main.c:2467
static void apply_city_productions_font(struct option *poption)
Definition gui_main.c:2478
gboolean fc_gained_focus(GtkWidget *w, GdkEventKey *ev, gpointer data)
Definition gui_main.c:768
GtkWidget * government_label
Definition gui_main.c:147
GtkWidget * sun_label
Definition gui_main.c:145
PangoFontDescription * city_names_style
Definition gui_main.c:133
void refresh_chat_buttons(void)
Definition gui_main.c:2531
gboolean map_canvas_focus(void)
Definition gui_main.c:382
GtkWidget * turn_done_button
Definition gui_main.c:149
static GtkWidget * bottom_hpaned
Definition gui_main.c:131
static gint timer_id
Definition gui_main.c:181
int screen_width(void)
Definition gui_main.c:2597
GtkWidget * scroll_panel
Definition gui_main.c:141
static void end_turn_callback(GtkWidget *w, gpointer data)
Definition gui_main.c:2270
#define OVERVIEW_CANVAS_STORE_HEIGHT_NETBOOK
Definition gui_main.c:117
static void log_callback_utf8(enum log_level level, const char *message, bool file_too)
Definition gui_main.c:230
void add_idle_callback(void(callback)(void *), void *data)
Definition gui_main.c:2427
static gboolean show_info_popup(GtkWidget *w, GdkEventButton *ev, gpointer data)
Definition gui_main.c:2239
static void set_g_log_callbacks(void)
Definition gui_main.c:1761
void reset_unit_table(void)
Definition gui_main.c:1045
static gboolean key_press_map_canvas(GtkWidget *w, GdkEventKey *ev, gpointer data)
Definition gui_main.c:423
GtkWidget * unit_info_frame
Definition gui_main.c:153
void options_extra_init(void)
Definition gui_main.c:2501
GtkWidget * top_vbox
Definition gui_main.c:128
static void allied_chat_only_callback(struct option *poption)
Definition gui_main.c:2440
static void adjust_default_options(void)
Definition gui_main.c:2645
static void set_wait_for_writable_socket(struct connection *pc, bool socket_writable)
Definition gui_main.c:2290
GtkWidget * ahbox
Definition gui_main.c:140
static void apply_reqtree_text_font(struct option *poption)
Definition gui_main.c:2489
bool is_gui_up(void)
Definition gui_main.c:2080
static gboolean toplevel_focus(GtkWidget *w, GtkDirectionType arg)
Definition gui_main.c:338
PangoFontDescription * reqtree_text_style
Definition gui_main.c:135
GtkWidget * flake_label
Definition gui_main.c:146
static void g_log_to_freelog_cb(const gchar *log_domain, GLogLevelFlags log_level, const gchar *message, gpointer user_data)
Definition gui_main.c:1705
GtkWidget * avbox
Definition gui_main.c:140
gint cur_x
Definition gui_main.c:184
void insert_client_build_info(char *outbuf, size_t outlen)
Definition gui_main.c:2561
static void set_g_log_callback_domain(const char *domain)
Definition gui_main.c:1749
GtkWidget * bulb_label
Definition gui_main.c:144
GtkWidget * overview_canvas
Definition gui_main.c:111
GtkWidget * toplevel
Definition gui_main.c:125
static void setup_widgets(void)
Definition gui_main.c:1149
#define OVERVIEW_CANVAS_STORE_WIDTH
Definition gui_main.c:118
void remove_net_input(void)
Definition gui_main.c:2333
GtkWidget * map_horizontal_scrollbar
Definition gui_main.c:108
GtkWidget * map_canvas
Definition gui_main.c:107
static gboolean toplevel_key_press_handler(GtkWidget *w, GdkEventKey *ev, gpointer data)
Definition gui_main.c:622
void sound_bell(void)
Definition gui_main.c:2107
static void migrate_options_from_gtk2(void)
Definition gui_main.c:1795
GtkWidget * econ_label[10]
Definition gui_main.c:143
void popup_quit_dialog(void)
Definition gui_main.c:2371
static void migrate_options_from_gtk3(void)
Definition gui_main.c:1850
const char *const gui_character_encoding
Definition gui_main.c:161
static int unit_id_top
Definition gui_main.c:174
static gboolean get_net_input(GIOChannel *source, GIOCondition condition, gpointer data)
Definition gui_main.c:2279
static bool audio_paused
Definition gui_main.c:188
GtkWidget * map_widget
Definition gui_main.c:130
static bool client_focus
Definition gui_main.c:189
GtkWidget * right_notebook
Definition gui_main.c:129
void quit_gtk_main(void)
Definition gui_main.c:2359
static void allied_chat_button_toggled(GtkToggleButton *button, gpointer user_data)
Definition gui_main.c:2552
static struct video_mode vmode
Definition gui_main.c:191
void add_net_input(int sock)
Definition gui_main.c:2315
static GLogWriterOutput g_log_writer_to_freelog_cb(GLogLevelFlags log_level, const GLogField *fields, gsize n_fields, gpointer user_data)
Definition gui_main.c:1733
GtkWidget * toplevel_tabs
Definition gui_main.c:127
static GtkWidget * allied_chat_toggle_button
Definition gui_main.c:179
int overview_canvas_store_width
Definition gui_main.c:122
void update_turn_done_tooltip(void)
Definition gui_main.c:1130
static void tearoff_callback(GtkWidget *b, gpointer data)
Definition gui_main.c:812
GtkTextView * main_message_area
Definition gui_main.c:177
int overview_canvas_store_height
Definition gui_main.c:123
int screen_height(void)
Definition gui_main.c:2615
static bool parse_options(int argc, char **argv)
Definition gui_main.c:295
GtkWidget * conn_box
Definition gui_main.c:140
#define OVERVIEW_CANVAS_STORE_HEIGHT
Definition gui_main.c:120
GtkWidget * main_frame_civ_name
Definition gui_main.c:137
#define MIGRATE_OPTION(opt)
const bool gui_use_transliteration
Definition gui_main.c:162
#define GUI_NAME_FULL
Definition gui_main.h:22
#define GUI_NAME_SHORT
Definition gui_main.h:23
#define GUI_GTK_OPTION(optname)
Definition gui_main.h:25
void dlg_tab_provider_prepare(void)
Definition gui_stuff.c:1155
void setup_dialog(GtkWidget *shell, GtkWidget *parent)
Definition gui_stuff.c:287
void gui_update_font_full(const char *font_name, const char *font_value, PangoFontDescription **font_desc)
Definition gui_stuff.c:1073
void happiness_dialog_init(void)
Definition happiness.c:86
void happiness_dialog_done(void)
Definition happiness.c:94
void help_system_init(void)
Definition helpdlg.c:157
void intel_dialog_done(void)
Definition inteldlg.c:128
void intel_dialog_init(void)
Definition inteldlg.c:119
void luaconsole_dialog_init(void)
Definition luaconsole.c:83
void luaconsole_dialog_done(void)
Definition luaconsole.c:101
gboolean move_overviewcanvas(GtkWidget *w, GdkEventMotion *ev, gpointer data)
Definition mapctrl.c:463
gboolean move_mapcanvas(GtkWidget *w, GdkEventMotion *ev, gpointer data)
Definition mapctrl.c:406
gboolean leave_mapcanvas(GtkWidget *widget, GdkEventCrossing *event)
Definition mapctrl.c:435
void update_city_descriptions(void)
Definition mapview.c:488
gboolean map_canvas_draw(GtkWidget *w, cairo_t *cr, gpointer data)
Definition mapview.c:424
gboolean overview_canvas_draw(GtkWidget *w, cairo_t *cr, gpointer data)
Definition mapview.c:356
void meswin_dialog_popup(bool raise)
Definition messagewin.c:417
GtkWidget * create_start_page(void)
Definition pages.c:2607
GtkWidget * create_network_page(void)
Definition pages.c:1185
GtkWidget * create_scenario_page(void)
Definition pages.c:3169
static GtkWidget * statusbar
Definition pages.c:89
enum client_pages get_current_client_page(void)
Definition pages.c:3329
void destroy_server_scans(void)
Definition pages.c:752
GtkWidget * create_load_page(void)
Definition pages.c:2888
GtkWidget * create_statusbar(void)
Definition pages.c:893
GtkWidget * create_main_page(void)
Definition pages.c:229
void science_report_dialog_redraw(void)
Definition repodlgs.c:761
void spaceship_dialog_init(void)
void spaceship_dialog_done(void)
GdkPixbuf * sprite_get_pixbuf(struct sprite *sprite)
Definition sprite.c:402
GtkWidget * ingame_votebar
GtkWidget * voteinfo_bar_new(bool split_bar)
gboolean reverse_taxrates_callback(GtkGestureClick *gesture, int n_press, double x, double y)
Definition dialogs.c:1458
static GdkPaintable * empty_unit_paintable
Definition gui_main.c:159
static void tearoff_close(GtkWidget *w, gpointer data)
Definition gui_main.c:790
static void tearoff_reattach(GtkWidget *box)
Definition gui_main.c:773
gboolean terminate_signal_processing(GtkEventControllerFocus *controller, gpointer data)
Definition gui_main.c:1050
static GtkWidget * more_arrow_container
Definition gui_main.c:164
static GtkWidget * unit_pic
Definition gui_main.c:161
static gboolean select_more_arrow_callback(GtkGestureClick *gesture, int n_press, double x, double y, gpointer data)
Definition gui_main.c:2224
GtkWidget * econ_widget
Definition gui_main.c:154
static GtkApplication * fc_app
Definition gui_main.c:183
GtkApplication * gui_app(void)
Definition gui_main.c:2682
static GtkWidget * more_arrow
Definition gui_main.c:163
static float zoom_steps_custom[]
Definition gui_main.c:227
static void migrate_options_from_gtk3_22(void)
Definition gui_main.c:1855
void animation_idle_cb(void *data)
Definition gui_main.c:2436
static void activate_gui(GtkApplication *app, gpointer data)
Definition gui_main.c:1957
static void populate_unit_pic_table(void)
Definition gui_main.c:889
static void info_popup_closed(GtkWidget *self, gpointer data)
Definition gui_main.c:2239
static void move_from_container_to_container(GtkWidget *wdg, GtkWidget *old_wdg, GtkWidget *new_wdg)
Definition gui_main.c:718
static gboolean select_unit_pic_callback(GtkGestureClick *gesture, int n_press, double x, double y, gpointer data)
Definition gui_main.c:2192
static GtkWidget * unit_pic_table
Definition gui_main.c:160
static GtkWidget * unit_below_pic[MAX_NUM_UNITS_BELOW]
Definition gui_main.c:162
void main_message_area_resize(void *data)
Definition gui_main.c:368
void widget_destroyed(GtkWidget *wdg, void *data)
Definition gui_stuff.c:1154
gboolean right_butt_down_overviewcanvas(GtkGestureClick *gesture, int n_press, double x, double y, gpointer data)
Definition mapctrl.c:499
gboolean left_butt_up_mapcanvas(GtkGestureClick *gesture, int n_press, double x, double y, gpointer data)
Definition mapctrl.c:164
gboolean right_butt_up_mapcanvas(GtkGestureClick *gesture, int n_press, double x, double y, gpointer data)
Definition mapctrl.c:181
gboolean left_butt_down_overviewcanvas(GtkGestureClick *gesture, int n_press, double x, double y, gpointer data)
Definition mapctrl.c:474
gboolean left_butt_down_mapcanvas(GtkGestureClick *gesture, int n_press, double x, double y, gpointer data)
Definition mapctrl.c:206
gboolean right_butt_down_mapcanvas(GtkGestureClick *gesture, int n_press, double x, double y, gpointer data)
Definition mapctrl.c:261
gboolean middle_butt_down_mapcanvas(GtkGestureClick *gesture, int n_press, double x, double y, gpointer data)
Definition mapctrl.c:330
void map_canvas_resize(GtkWidget *w, int width, int height, gpointer data)
Definition mapview.c:407
void put_unit_picture(struct unit *punit, GtkPicture *p, int height)
Definition mapview.c:493
void menus_set_initial_toggle_values(void)
Definition menu.c:2937
GtkWidget * picture_new_from_surface(cairo_surface_t *surf)
Definition sprite.c:526
log_callback_fn log_set_callback(log_callback_fn callback)
Definition log.c:290
#define fc_assert_ret(condition)
Definition log.h:191
#define log_verbose(message,...)
Definition log.h:109
#define fc_assert(condition)
Definition log.h:176
#define log_fatal(message,...)
Definition log.h:100
#define log_debug(message,...)
Definition log.h:115
#define log_normal(message,...)
Definition log.h:107
#define log_base(level, message,...)
Definition log.h:94
log_level
Definition log.h:28
@ LOG_ERROR
Definition log.h:30
@ LOG_DEBUG
Definition log.h:34
@ LOG_FATAL
Definition log.h:29
@ LOG_WARN
Definition log.h:31
#define log_error(message,...)
Definition log.h:103
void update_line(int canvas_x, int canvas_y)
void maybe_activate_keyboardless_goto(int canvas_x, int canvas_y)
bool rbutton_down
bool tiles_hilited_cities
void scroll_mapview(enum direction8 gui_dir)
bool keyboardless_goto_button_down
void update_selection_rectangle(float canvas_x, float canvas_y)
void init_mapcanvas_and_overview(void)
struct tile * canvas_pos_to_tile(float canvas_x, float canvas_y, float zoom)
void free_mapcanvas_and_overview(void)
void get_mapview_scroll_pos(int *scroll_x, int *scroll_y)
void get_mapview_scroll_step(int *xstep, int *ystep)
void set_mapview_scroll_pos(int scroll_x, int scroll_y, float zoom)
void center_tile_mapcanvas(const struct tile *ptile)
void update_animation(void)
void set_frame_by_frame_animation(void)
void link_marks_clear_all(void)
#define fc_malloc(sz)
Definition mem.h:34
void option_changed(struct option *poption)
Definition options.c:747
const struct option_set * server_optset
Definition options.c:4019
const struct option_set * client_optset
Definition options.c:1279
bool option_bool_get(const struct option *poption)
Definition options.c:796
enum option_type option_type(const struct option *poption)
Definition options.c:657
const char * option_font_target(const struct option *poption)
Definition options.c:1162
bool string_to_video_mode(const char *buf, struct video_mode *mode)
Definition options.c:6508
struct client_options gui_options
Definition options.c:71
const char * option_font_get(const struct option *poption)
Definition options.c:1140
struct option * optset_option_by_name(const struct option_set *poptset, const char *name)
Definition options.c:430
#define GUI_GTK_OVERVIEW_MIN_XSIZE
Definition options.h:598
#define options_iterate(poptset, poption)
Definition options.h:551
@ GUI_GTK_MSGCHAT_MERGED
Definition options.h:69
@ GUI_GTK_MSGCHAT_SPLIT
Definition options.h:67
#define options_iterate_end
Definition options.h:556
const char * get_info_label_text_popup(void)
Definition text.c:969
struct setting_list * level[OLEVELS_NUM]
Definition settings.c:190
#define CLIP(lower, current, upper)
Definition shared.h:57
struct sprite int int y
Definition sprite_g.h:31
struct sprite int x
Definition sprite_g.h:31
void * data
Definition gui_main.c:2406
void(* callback)(void *data)
Definition gui_main.c:2405
struct connection conn
Definition client_main.h:96
bool silent_when_not_in_focus
Definition options.h:191
bool gui_gtk3_22_migrated_from_gtk3
Definition options.h:134
bool gui_gtk3_migrated_from_2_5
Definition options.h:139
int sound_effects_volume
Definition options.h:190
bool first_boot
Definition options.h:128
float zoom_default_level
Definition options.h:231
bool gui_gtk3_fullscreen
Definition options.h:266
bool migrate_fullscreen
Definition options.h:145
bool gui_gtk3_migrated_from_gtk2
Definition options.h:133
Definition colors.h:21
void(* notify_of_writable_data)(struct connection *pc, bool data_available_and_socket_full)
Definition connection.h:181
GtkWidget * widget
Definition editgui.h:26
Definition unit.h:138
int id
Definition unit.h:145
int height
Definition options.h:48
int width
Definition options.h:47
int fc_snprintf(char *str, size_t n, const char *format,...)
Definition support.c:974
int cat_snprintf(char *str, size_t n, const char *format,...)
Definition support.c:1000
#define TRUE
Definition support.h:46
#define FALSE
Definition support.h:47
void tileset_load_tiles(struct tileset *t)
Definition tilespec.c:3632
void tileset_free_tiles(struct tileset *t)
Definition tilespec.c:6608
void tileset_use_preferred_theme(const struct tileset *t)
Definition tilespec.c:7073
void tileset_init(struct tileset *t)
Definition tilespec.c:7130
struct sprite * get_arrow_sprite(const struct tileset *t, enum arrow_type arrow)
Definition tilespec.c:6872
struct sprite * get_tax_sprite(const struct tileset *t, Output_type_id otype)
Definition tilespec.c:6883
int tileset_tile_width(const struct tileset *t)
Definition tilespec.c:753
@ ARROW_RIGHT
Definition tilespec.h:200
#define unit_tile(_pu)
Definition unit.h:390
#define unit_owner(_pu)
Definition unit.h:389
float mouse_zoom
Definition zoom.c:28
void zoom_phase_set(bool individual_tiles)
Definition zoom.c:97
void zoom_set_steps(float *steps)
Definition zoom.c:84
void zoom_step_down(void)
Definition zoom.c:134
void zoom_step_up(void)
Definition zoom.c:110