Merge pull request #4077 from LiquidCake/saveactions_persistent_temp_files_doc
[geany-mirror.git] / src / libmain.c
blobe3c493c5d519eec7640311c4bdf1097b8a212d7a
1 /*
2 * libmain.c - this file is part of Geany, a fast and lightweight IDE
4 * Copyright 2005 The Geany contributors
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 /**
22 * @file: main.h
23 * Main program-related commands.
24 * Handles program initialization and cleanup.
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
31 #include "main.h"
33 #include "app.h"
34 #include "build.h"
35 #include "callbacks.h"
36 #include "dialogs.h"
37 #include "document.h"
38 #include "encodingsprivate.h"
39 #include "filetypes.h"
40 #include "geanyobject.h"
41 #include "highlighting.h"
42 #include "keybindings.h"
43 #include "keyfile.h"
44 #include "log.h"
45 #include "msgwindow.h"
46 #include "navqueue.h"
47 #include "notebook.h"
48 #include "plugins.h"
49 #include "projectprivate.h"
50 #include "prefs.h"
51 #include "printing.h"
52 #include "sidebar.h"
53 #ifdef HAVE_SOCKET
54 # include "socket.h"
55 #endif
56 #include "support.h"
57 #include "symbols.h"
58 #include "templates.h"
59 #include "toolbar.h"
60 #include "tools.h"
61 #include "ui_utils.h"
62 #include "utils.h"
63 #include "vte.h"
64 #include "win32.h"
65 #include "osx.h"
67 #include <signal.h>
68 #include <time.h>
69 #include <sys/types.h>
70 #include <sys/stat.h>
71 #include <errno.h>
72 #include <string.h>
73 #include <stdlib.h>
75 #include <gtk/gtk.h>
76 #include <glib/gstdio.h>
78 #ifdef G_OS_UNIX
79 # include <glib-unix.h>
80 #endif
82 #ifdef HAVE_LOCALE_H
83 # include <locale.h>
84 #endif
87 GeanyApp *app;
88 gboolean ignore_callback; /* hack workaround for GTK+ toggle button callback problem */
90 GeanyStatus main_status;
91 CommandLineOptions cl_options; /* fields initialised in parse_command_line_options */
93 static gchar *original_cwd = NULL;
95 static const gchar geany_lib_versions[] = "GTK %u.%u.%u, GLib %u.%u.%u";
97 static gboolean want_plugins;
99 /* command-line options */
100 static gboolean verbose_mode = FALSE;
101 static gboolean ignore_global_tags = FALSE;
102 static gboolean no_msgwin = FALSE;
103 static gboolean show_version = FALSE;
104 static gchar *alternate_config = NULL;
105 #ifdef HAVE_VTE
106 static gboolean no_vte = FALSE;
107 static gchar *lib_vte = NULL;
108 #endif
109 static gboolean generate_tags = FALSE;
110 static gboolean no_preprocessing = FALSE;
111 static gboolean ft_names = FALSE;
112 static gboolean print_prefix = FALSE;
113 #ifdef HAVE_PLUGINS
114 static gboolean no_plugins = FALSE;
115 #endif
116 static gboolean dummy = FALSE;
118 /* in alphabetical order of short options */
119 static GOptionEntry entries[] =
121 { "column", 0, 0, G_OPTION_ARG_INT, &cl_options.goto_column, N_("Set initial column number to COLUMN for the first opened file (useful in conjunction with --line)"), N_("COLUMN") },
122 { "config", 'c', 0, G_OPTION_ARG_FILENAME, &alternate_config, N_("Use alternate configuration directory DIR"), N_("DIR") },
123 { "ft-names", 0, 0, G_OPTION_ARG_NONE, &ft_names, N_("Print internal filetype names"), NULL },
124 { "generate-tags", 'g', 0, G_OPTION_ARG_NONE, &generate_tags, N_("Generate global tags file (see documentation)"), NULL },
125 { "no-preprocessing", 'P', 0, G_OPTION_ARG_NONE, &no_preprocessing, N_("Don't preprocess C/C++ files when generating tags file"), NULL },
126 #ifdef HAVE_SOCKET
127 { "new-instance", 'i', 0, G_OPTION_ARG_NONE, &cl_options.new_instance, N_("Don't open files in a running instance, force opening a new instance"), NULL },
128 { "socket-file", 0, 0, G_OPTION_ARG_FILENAME, &cl_options.socket_filename, N_("Use socket filename FILE for communication with a running Geany instance"), N_("FILE") },
129 { "list-documents", 0, 0, G_OPTION_ARG_NONE, &cl_options.list_documents, N_("Return a list of open documents in a running Geany instance"), NULL },
130 #endif
131 { "line", 'l', 0, G_OPTION_ARG_INT, &cl_options.goto_line, N_("Set initial line number to LINE for the first opened file"), N_("LINE") },
132 { "no-msgwin", 'm', 0, G_OPTION_ARG_NONE, &no_msgwin, N_("Don't show message window at startup"), NULL },
133 { "no-ctags", 'n', 0, G_OPTION_ARG_NONE, &ignore_global_tags, N_("Don't load auto completion data (see documentation)"), NULL },
134 #ifdef HAVE_PLUGINS
135 { "no-plugins", 'p', 0, G_OPTION_ARG_NONE, &no_plugins, N_("Don't load plugins"), NULL },
136 #endif
137 { "print-prefix", 0, 0, G_OPTION_ARG_NONE, &print_prefix, N_("Print Geany's installation prefix"), NULL },
138 { "read-only", 'r', 0, G_OPTION_ARG_NONE, &cl_options.readonly, N_("Open all FILES in read-only mode (see documentation)"), NULL },
139 { "no-session", 's', G_OPTION_FLAG_REVERSE, G_OPTION_ARG_NONE, &cl_options.load_session, N_("Don't load the previous session's files"), NULL },
140 #ifdef HAVE_VTE
141 { "no-terminal", 't', 0, G_OPTION_ARG_NONE, &no_vte, N_("Don't load terminal support"), NULL },
142 { "vte-lib", 0, 0, G_OPTION_ARG_FILENAME, &lib_vte, N_("Use FILE as the dynamically-linked VTE library"), N_("FILE") },
143 #endif
144 { "verbose", 'v', 0, G_OPTION_ARG_NONE, &verbose_mode, N_("Be verbose"), NULL },
145 { "version", 'V', 0, G_OPTION_ARG_NONE, &show_version, N_("Show version and exit"), NULL },
146 { "dummy", 0, G_OPTION_FLAG_HIDDEN, G_OPTION_ARG_NONE, &dummy, NULL, NULL }, /* for +NNN line number arguments */
147 { NULL, 0, 0, 0, NULL, NULL, NULL }
151 static void setup_window_position(void)
153 /* interprets the saved window geometry */
154 if (prefs.save_wingeom)
156 if (ui_prefs.geometry[2] != -1 && ui_prefs.geometry[3] != -1)
158 gtk_window_set_default_size(GTK_WINDOW(main_widgets.window),
159 ui_prefs.geometry[2], ui_prefs.geometry[3]);
163 if (prefs.save_winpos)
165 if (ui_prefs.geometry[0] != -1 && ui_prefs.geometry[1] != -1)
167 gtk_window_move(GTK_WINDOW(main_widgets.window),
168 ui_prefs.geometry[0], ui_prefs.geometry[1]);
170 if (ui_prefs.geometry[4] == 1)
172 gtk_window_maximize(GTK_WINDOW(main_widgets.window));
178 /* special things for the initial setup of the checkboxes and related stuff
179 * an action on a setting is only performed if the setting is not equal to the program default
180 * (all the following code is not perfect but it works for the moment) */
181 static void apply_settings(void)
183 ui_update_fold_items();
185 /* toolbar, message window and sidebar are by default visible, so don't change it if it is true */
186 toolbar_show_hide();
187 if (! ui_prefs.msgwindow_visible)
189 ignore_callback = TRUE;
190 gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(ui_lookup_widget(main_widgets.window, "menu_show_messages_window1")), FALSE);
191 gtk_widget_hide(main_widgets.message_window_notebook);
192 ignore_callback = FALSE;
194 if (! ui_prefs.sidebar_visible)
196 ignore_callback = TRUE;
197 gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(ui_lookup_widget(main_widgets.window, "menu_show_sidebar1")), FALSE);
198 ignore_callback = FALSE;
201 toolbar_apply_settings();
202 toolbar_update_ui();
204 ui_update_view_editor_menu_items();
206 /* hide statusbar if desired */
207 if (! interface_prefs.statusbar_visible)
209 gtk_widget_hide(ui_widgets.statusbar);
212 /* set the tab placements of the notebooks */
213 gtk_notebook_set_tab_pos(GTK_NOTEBOOK(main_widgets.notebook), interface_prefs.tab_pos_editor);
214 gtk_notebook_set_tab_pos(GTK_NOTEBOOK(msgwindow.notebook), interface_prefs.tab_pos_msgwin);
215 gtk_notebook_set_tab_pos(GTK_NOTEBOOK(main_widgets.sidebar_notebook), interface_prefs.tab_pos_sidebar);
217 /* whether to show notebook tabs or not */
218 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(main_widgets.notebook), interface_prefs.show_notebook_tabs);
220 #ifdef HAVE_VTE
221 if (! vte_info.have_vte)
222 #endif
224 gtk_widget_set_sensitive(
225 ui_lookup_widget(main_widgets.window, "send_selection_to_vte1"), FALSE);
228 if (interface_prefs.sidebar_pos != GTK_POS_LEFT)
229 ui_swap_sidebar_pos();
231 gtk_orientable_set_orientation(GTK_ORIENTABLE(ui_lookup_widget(main_widgets.window, "vpaned1")),
232 interface_prefs.msgwin_orientation);
236 static void on_window_active_changed(GtkWindow *window, GParamSpec *pspec, gpointer data)
238 GeanyDocument *doc = document_get_current();
240 if (doc && gtk_window_is_active(window))
241 document_check_disk_status(doc, TRUE);
245 static void main_init(void)
247 /* add our icon path in case we aren't installed in the system prefix */
248 gtk_icon_theme_append_search_path(gtk_icon_theme_get_default(), utils_resource_dir(RESOURCE_DIR_ICON));
250 /* inits */
251 ui_init_stock_items();
253 ui_init_builder();
255 main_widgets.window = NULL;
256 app->project = NULL;
257 ui_widgets.open_fontsel = NULL;
258 ui_widgets.open_colorsel = NULL;
259 ui_widgets.prefs_dialog = NULL;
260 main_status.main_window_realized = FALSE;
261 file_prefs.tab_order_ltr = FALSE;
262 file_prefs.tab_order_beside = FALSE;
263 main_status.quitting = FALSE;
264 ignore_callback = FALSE;
265 ui_prefs.recent_queue = g_queue_new();
266 ui_prefs.recent_projects_queue = g_queue_new();
267 main_status.opening_session_files = 0;
269 main_widgets.window = create_window1();
270 g_signal_connect(main_widgets.window, "notify::is-active", G_CALLBACK(on_window_active_changed), NULL);
272 /* add recent projects to the Project menu */
273 ui_widgets.recent_projects_menuitem = ui_lookup_widget(main_widgets.window, "recent_projects1");
274 ui_widgets.recent_projects_menu_menubar = gtk_menu_new();
275 gtk_menu_item_set_submenu(GTK_MENU_ITEM(ui_widgets.recent_projects_menuitem),
276 ui_widgets.recent_projects_menu_menubar);
278 /* store important pointers for later reference */
279 main_widgets.toolbar = toolbar_init();
280 main_widgets.sidebar_notebook = ui_lookup_widget(main_widgets.window, "notebook3");
281 main_widgets.notebook = ui_lookup_widget(main_widgets.window, "notebook1");
282 main_widgets.editor_menu = create_edit_menu1();
283 main_widgets.tools_menu = ui_lookup_widget(main_widgets.window, "tools1_menu");
284 main_widgets.message_window_notebook = ui_lookup_widget(main_widgets.window, "notebook_info");
285 main_widgets.project_menu = ui_lookup_widget(main_widgets.window, "menu_project1_menu");
287 ui_widgets.toolbar_menu = create_toolbar_popup_menu1();
288 ui_init();
289 #ifdef MAC_INTEGRATION
290 osx_ui_init();
291 #endif
293 /* set widget names for matching with GTK CSS */
294 gtk_widget_set_name(main_widgets.window, "GeanyMainWindow");
295 gtk_widget_set_name(ui_widgets.toolbar_menu, "GeanyToolbarMenu");
296 gtk_widget_set_name(main_widgets.editor_menu, "GeanyEditMenu");
297 gtk_widget_set_name(ui_lookup_widget(main_widgets.window, "menubar1"), "GeanyMenubar");
298 gtk_widget_set_name(main_widgets.toolbar, "GeanyToolbar");
300 gtk_window_set_default_size(GTK_WINDOW(main_widgets.window),
301 GEANY_WINDOW_DEFAULT_WIDTH, GEANY_WINDOW_DEFAULT_HEIGHT);
305 const gchar *main_get_version_string(void)
307 static gchar full[] = PACKAGE_VERSION " (git >= " REVISION ")";
309 if (utils_str_equal(REVISION, "-1"))
310 return PACKAGE_VERSION;
311 else
312 return full;
316 /* get the full file path of a command-line argument
317 * N.B. the result should be freed and may contain '/../' or '/./ ' */
318 gchar *main_get_argv_filename(const gchar *filename)
320 gchar *result;
322 if (g_path_is_absolute(filename) || utils_is_uri(filename))
323 result = g_strdup(filename);
324 else
326 /* use current dir */
327 gchar *cur_dir = NULL;
328 if (original_cwd == NULL)
329 cur_dir = g_get_current_dir();
330 else
331 cur_dir = g_strdup(original_cwd);
333 result = g_strjoin(
334 G_DIR_SEPARATOR_S, cur_dir, filename, NULL);
335 g_free(cur_dir);
337 return result;
341 /* get a :line:column specifier from the end of a filename (if present),
342 * return the line/column values, and remove the specifier from the string
343 * (Note that *line and *column must both be set to -1 initially) */
344 static void get_line_and_column_from_filename(gchar *filename, gint *line, gint *column)
346 gsize i;
347 gint colon_count = 0;
348 gboolean have_number = FALSE;
349 gsize len;
351 g_assert(*line == -1 && *column == -1);
353 if (G_UNLIKELY(EMPTY(filename)))
354 return;
356 /* allow to open files like "test:0" */
357 if (g_file_test(filename, G_FILE_TEST_EXISTS))
358 return;
360 len = strlen(filename);
361 for (i = len - 1; i >= 1; i--)
363 gboolean is_colon = filename[i] == ':';
364 gboolean is_digit = g_ascii_isdigit(filename[i]);
366 if (! is_colon && ! is_digit)
367 break;
369 if (is_colon)
371 if (++colon_count > 1)
372 break; /* bail on 2+ colons in a row */
374 else
375 colon_count = 0;
377 if (is_digit)
378 have_number = TRUE;
380 if (is_colon && have_number)
382 gint number = atoi(&filename[i + 1]);
384 filename[i] = '\0';
385 have_number = FALSE;
387 *column = *line;
388 *line = number;
391 if (*column >= 0)
392 break; /* line and column are set, so we're done */
397 #ifdef G_OS_WIN32
398 static gint get_windows_socket_port(void)
400 /* Read config file early to get TCP port number as we need it for IPC before all
401 * other settings are read in load_settings() */
402 gchar *configfile = g_build_filename(app->configdir, "geany.conf", NULL);
403 GKeyFile *config = g_key_file_new();
404 gint port_number;
406 g_key_file_load_from_file(config, configfile, G_KEY_FILE_NONE, NULL);
407 port_number = utils_get_setting_integer(config, PACKAGE, "socket_remote_cmd_port",
408 SOCKET_WINDOWS_REMOTE_CMD_PORT);
409 geany_debug("Using TCP port number %d for IPC", port_number);
410 g_free(configfile);
411 g_key_file_free(config);
412 g_return_val_if_fail(port_number >= 1024 && port_number <= (gint)G_MAXUINT16,
413 SOCKET_WINDOWS_REMOTE_CMD_PORT);
414 return port_number;
418 static void change_working_directory_on_windows(void)
420 gchar *install_dir = win32_get_installation_dir();
422 /* remember original working directory for use with opening files from the command line */
423 original_cwd = g_get_current_dir();
425 /* On Windows, change the working directory to the Geany installation path to not lock
426 * the directory of a file passed as command line argument (see bug #2626124).
427 * This also helps if plugins or other code uses relative paths to load
428 * any additional resources (e.g. share/geany-plugins/...). */
429 win32_set_working_directory(install_dir);
431 g_free(install_dir);
433 #endif
436 static void setup_paths(void)
438 /* convert path names to locale encoding */
439 app->datadir = utils_get_locale_from_utf8(utils_resource_dir(RESOURCE_DIR_DATA));
440 app->docdir = utils_get_locale_from_utf8(utils_resource_dir(RESOURCE_DIR_DOC));
445 * Checks whether the main window has been realized.
446 * This is an easy indicator whether Geany is right now starting up (main window is not
447 * yet realized) or whether it has finished the startup process (main window is realized).
448 * This is because the main window is realized (i.e. actually drawn on the screen) at the
449 * end of the startup process.
451 * @note Maybe you want to use the @link pluginsignals.c @c "geany-startup-complete" signal @endlink
452 * to get notified about the completed startup process.
454 * @return @c TRUE if the Geany main window has been realized or @c FALSE otherwise.
456 * @since 0.19
458 GEANY_API_SYMBOL
459 gboolean main_is_realized(void)
461 return main_status.main_window_realized;
466 * Checks whether Geany is 'closing all' documents right now.
468 * @return @c TRUE if the Geany is 'closing all' documents right now or @c FALSE otherwise.
470 GEANY_API_SYMBOL
471 gboolean geany_is_closing_all_documents(void)
473 return main_status.closing_all;
478 * Initialises the gettext translation system.
479 * This is a convenience function to set up gettext for internationalisation support
480 * in external plugins. You should call this function early in @ref plugin_init().
481 * If the macro HAVE_LOCALE_H is defined, @c setlocale(LC_ALL, "") is called.
482 * The codeset for the message translations is set to UTF-8.
484 * Note that this function only setups the gettext textdomain for you. You still have
485 * to adjust the build system of your plugin to get internationalisation support
486 * working properly.
488 * If you have already used @ref PLUGIN_SET_TRANSLATABLE_INFO() you
489 * don't need to call main_locale_init() again as it has already been done.
491 * @param locale_dir The location where the translation files should be searched. This is
492 * usually the @c LOCALEDIR macro, defined by the build system.
493 * E.g. @c $prefix/share/locale.
494 * Only used on non-Windows systems. On Windows, the directory is determined
495 * by @c g_win32_get_package_installation_directory().
496 * @param package The package name, usually this is the @c GETTEXT_PACKAGE macro,
497 * defined by the build system.
499 * @since 0.16
501 GEANY_API_SYMBOL
502 void main_locale_init(const gchar *locale_dir, const gchar *package)
504 #ifdef HAVE_LOCALE_H
505 setlocale(LC_ALL, "");
506 #endif
508 #ifdef G_OS_WIN32
509 locale_dir = utils_resource_dir(RESOURCE_DIR_LOCALE);
510 #endif
511 (void) bindtextdomain(package, locale_dir);
512 (void) bind_textdomain_codeset(package, "UTF-8");
516 static void print_filetypes(void)
518 const GSList *list, *node;
520 filetypes_init_types();
521 printf("Geany's filetype names:\n");
523 list = filetypes_get_sorted_by_name();
524 foreach_slist(node, list)
526 GeanyFiletype *ft = node->data;
528 printf("%s\n", ft->name);
530 filetypes_free_types();
534 static void wait_for_input_on_windows(void)
536 #ifdef G_OS_WIN32
537 if (verbose_mode)
539 geany_debug("Press any key to continue");
540 getchar();
542 #endif
546 static void parse_command_line_options(gint *argc, gchar ***argv)
548 GError *error = NULL;
549 GOptionContext *context;
550 gint i;
551 CommandLineOptions def_clo = {FALSE, NULL, TRUE, -1, -1, FALSE, FALSE, FALSE};
553 /* first initialise cl_options fields with default values */
554 cl_options = def_clo;
556 /* the GLib option parser can't handle the +NNN (line number) option,
557 * so we grab that here and replace it with a no-op */
558 for (i = 1; i < (*argc); i++)
560 if ((*argv)[i][0] != '+')
561 continue;
563 cl_options.goto_line = atoi((*argv)[i] + 1);
564 (*argv)[i] = (gchar *) "--dummy";
567 context = g_option_context_new(_("[FILES...]"));
569 g_option_context_set_summary(context, _("A fast and lightweight IDE."));
570 g_option_context_set_description(context, _("Report bugs to https://github.com/geany/geany/issues."));
571 g_option_context_add_main_entries(context, entries, GETTEXT_PACKAGE);
572 g_option_group_set_translation_domain(g_option_context_get_main_group(context), GETTEXT_PACKAGE);
573 g_option_context_add_group(context, gtk_get_option_group(FALSE));
574 g_option_context_parse(context, argc, argv, &error);
575 g_option_context_free(context);
577 if (error != NULL)
579 g_printerr("Geany: %s\n", error->message);
580 g_error_free(error);
581 exit(1);
584 app->debug_mode = verbose_mode;
585 if (app->debug_mode)
587 /* Since GLib 2.32 messages logged with levels INFO and DEBUG aren't output by the
588 * default log handler unless the G_MESSAGES_DEBUG environment variable contains the
589 * domain of the message or is set to the special value "all" */
590 g_setenv("G_MESSAGES_DEBUG", "all", FALSE);
593 #ifdef G_OS_WIN32
594 win32_init_debug_code();
595 #endif
597 if (show_version)
599 gchar *build_date = utils_parse_and_format_build_date(__DATE__);
601 printf(PACKAGE " %s (", main_get_version_string());
602 /* note for translators: library versions are printed after this */
603 printf(_("built on %s with "), build_date);
604 printf(geany_lib_versions,
605 GTK_MAJOR_VERSION, GTK_MINOR_VERSION, GTK_MICRO_VERSION,
606 GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION, GLIB_MICRO_VERSION);
607 printf(")\n");
608 g_free(build_date);
609 wait_for_input_on_windows();
610 exit(0);
613 if (print_prefix)
615 printf("%s\n", GEANY_PREFIX);
616 printf("%s\n", GEANY_DATADIR);
617 printf("%s\n", GEANY_LIBDIR);
618 printf("%s\n", GEANY_LOCALEDIR);
619 wait_for_input_on_windows();
620 exit(0);
623 if (alternate_config)
625 geany_debug("Using alternate configuration directory");
626 app->configdir = alternate_config;
628 else
630 app->configdir = utils_get_user_config_dir();
633 if (generate_tags)
635 gboolean ret;
637 filetypes_init_types();
638 ret = symbols_generate_global_tags(*argc, *argv, ! no_preprocessing);
639 filetypes_free_types();
640 wait_for_input_on_windows();
641 exit(ret);
644 if (ft_names)
646 print_filetypes();
647 wait_for_input_on_windows();
648 exit(0);
651 #ifdef HAVE_SOCKET
652 socket_info.ignore_socket = cl_options.new_instance;
653 if (cl_options.socket_filename)
655 socket_info.file_name = cl_options.socket_filename;
657 #endif
659 #ifdef HAVE_VTE
660 vte_info.lib_vte = lib_vte;
661 #endif
662 cl_options.ignore_global_tags = ignore_global_tags;
664 if (! gtk_init_check(NULL, NULL))
665 { /* check whether we have a valid X display and exit if not */
666 g_printerr("Geany: cannot open display\n");
667 exit(1);
670 #ifdef MAC_INTEGRATION
671 /* Create GtkosxApplication singleton - should be created shortly after gtk_init() */
672 gtkosx_application_get();
673 #endif
677 static gint create_config_dir(void)
679 gint saved_errno = 0;
680 gchar *conf_file = NULL;
681 gchar *filedefs_dir = NULL;
682 gchar *templates_dir = NULL;
684 if (! g_file_test(app->configdir, G_FILE_TEST_EXISTS))
686 #ifndef G_OS_WIN32
687 /* if we are *not* using an alternate config directory, we check whether the old one
688 * in ~/.geany still exists and try to move it */
689 if (alternate_config == NULL)
691 gchar *old_dir = g_build_filename(g_get_home_dir(), ".geany", NULL);
692 /* move the old config dir if it exists */
693 if (g_file_test(old_dir, G_FILE_TEST_EXISTS))
695 if (! dialogs_show_question_full(main_widgets.window,
696 GTK_STOCK_YES, GTK_STOCK_QUIT, _("Move it now?"),
697 "%s",
698 _("Geany needs to move your old configuration directory before starting.")))
699 exit(0);
701 if (! g_file_test(app->configdir, G_FILE_TEST_IS_DIR))
702 utils_mkdir(app->configdir, TRUE);
704 if (g_rename(old_dir, app->configdir) == 0)
706 dialogs_show_msgbox(GTK_MESSAGE_INFO,
707 _("Your configuration directory has been successfully moved from \"%s\" to \"%s\"."),
708 old_dir, app->configdir);
709 g_free(old_dir);
710 return 0;
712 else
714 dialogs_show_msgbox(GTK_MESSAGE_WARNING,
715 /* for translators: the third %s in brackets is the error message which
716 * describes why moving the dir didn't work */
717 _("Your old configuration directory \"%s\" could not be moved to \"%s\" (%s). "
718 "Please move manually the directory to the new location."),
719 old_dir, app->configdir, g_strerror(errno));
722 g_free(old_dir);
724 #endif
725 geany_debug("Creating configuration directory");
726 saved_errno = utils_mkdir(app->configdir, TRUE);
729 conf_file = g_build_filename(app->configdir, "geany.conf", NULL);
730 filedefs_dir = g_build_filename(app->configdir, GEANY_FILEDEFS_SUBDIR, NULL);
731 templates_dir = g_build_filename(app->configdir, GEANY_TEMPLATES_SUBDIR, NULL);
733 if (saved_errno == 0 && ! g_file_test(conf_file, G_FILE_TEST_EXISTS))
734 { /* check whether geany.conf can be written */
735 saved_errno = utils_is_file_writable(app->configdir);
738 /* make subdir for filetype definitions */
739 if (saved_errno == 0)
741 gchar *filedefs_readme = g_build_filename(app->configdir,
742 GEANY_FILEDEFS_SUBDIR, "filetypes.README", NULL);
744 if (! g_file_test(filedefs_dir, G_FILE_TEST_EXISTS))
746 saved_errno = utils_mkdir(filedefs_dir, FALSE);
748 if (saved_errno == 0 && ! g_file_test(filedefs_readme, G_FILE_TEST_EXISTS))
750 gchar *text = g_strconcat(
751 "Copy files from ", app->datadir, "/filedefs to this directory to overwrite "
752 "them. To use the defaults, just delete the file in this directory.\nFor more information read "
753 "the documentation (in ", app->docdir, G_DIR_SEPARATOR_S "index.html or visit " GEANY_HOMEPAGE ").", NULL);
754 utils_write_file(filedefs_readme, text);
755 g_free(text);
757 g_free(filedefs_readme);
760 /* make subdir for template files */
761 if (saved_errno == 0)
763 gchar *templates_readme = g_build_filename(app->configdir, GEANY_TEMPLATES_SUBDIR,
764 "templates.README", NULL);
766 if (! g_file_test(templates_dir, G_FILE_TEST_EXISTS))
768 saved_errno = utils_mkdir(templates_dir, FALSE);
770 if (saved_errno == 0 && ! g_file_test(templates_readme, G_FILE_TEST_EXISTS))
772 gchar *text = g_strconcat(
773 "There are several template files in this directory. For these templates you can use wildcards.\n\
774 For more information read the documentation (in ", app->docdir, G_DIR_SEPARATOR_S "index.html or visit " GEANY_HOMEPAGE ").",
775 NULL);
776 utils_write_file(templates_readme, text);
777 g_free(text);
779 g_free(templates_readme);
782 g_free(filedefs_dir);
783 g_free(templates_dir);
784 g_free(conf_file);
786 return saved_errno;
790 /* Returns 0 if config dir is OK. */
791 static gint setup_config_dir(void)
793 gint mkdir_result = 0;
795 mkdir_result = create_config_dir();
796 if (mkdir_result != 0)
798 if (! dialogs_show_question(
799 _("Configuration directory could not be created (%s).\nThere could be some problems "
800 "using Geany without a configuration directory.\nStart Geany anyway?"),
801 g_strerror(mkdir_result)))
803 exit(0);
806 /* make configdir a real path */
807 if (g_file_test(app->configdir, G_FILE_TEST_EXISTS))
808 SETPTR(app->configdir, utils_get_real_path(app->configdir));
810 return mkdir_result;
814 #ifdef G_OS_UNIX
815 static gboolean signal_cb(gpointer user_data)
817 gint sig = GPOINTER_TO_INT(user_data);
818 if (sig == SIGTERM)
820 geany_debug("Received SIGTERM signal");
821 main_quit();
823 return G_SOURCE_REMOVE;
825 #endif
828 /* Used for command-line arguments at startup or from socket.
829 * this will strip any :line:col filename suffix from locale_filename */
830 gboolean main_handle_filename(const gchar *locale_filename)
832 GeanyDocument *doc;
833 gint line = -1, column = -1;
834 gchar *filename;
836 g_return_val_if_fail(locale_filename, FALSE);
838 /* check whether the passed filename is an URI */
839 filename = utils_get_path_from_uri(locale_filename);
840 if (filename == NULL)
841 return FALSE;
843 get_line_and_column_from_filename(filename, &line, &column);
844 if (line >= 0)
845 cl_options.goto_line = line;
846 if (column >= 0)
847 cl_options.goto_column = column;
849 if (g_file_test(filename, G_FILE_TEST_IS_REGULAR))
851 doc = document_open_file(filename, cl_options.readonly, NULL, NULL);
852 /* add recent file manually if opening_session_files is set */
853 if (doc != NULL && main_status.opening_session_files)
854 ui_add_recent_document(doc);
855 g_free(filename);
856 return TRUE;
858 else if (file_prefs.cmdline_new_files)
859 { /* create new file with the given filename */
860 gchar *utf8_filename = utils_get_utf8_from_locale(filename);
862 doc = document_find_by_filename(utf8_filename);
863 if (doc)
864 document_show_tab(doc);
865 else
866 doc = document_new_file(utf8_filename, NULL, NULL);
867 g_free(utf8_filename);
868 g_free(filename);
869 return TRUE;
871 g_free(filename);
872 return FALSE;
876 /* open files from command line */
877 static void open_cl_files(gint argc, gchar **argv)
879 gint i;
881 for (i = 1; i < argc; i++)
883 gchar *filename = main_get_argv_filename(argv[i]);
885 if (g_file_test(filename, G_FILE_TEST_IS_DIR))
887 g_free(filename);
888 continue;
891 #ifdef G_OS_WIN32
892 /* It seems argv elements are encoded in CP1252 on a German Windows */
893 SETPTR(filename, g_locale_to_utf8(filename, -1, NULL, NULL, NULL));
894 #endif
895 if (filename && ! main_handle_filename(filename))
897 gchar *msg = g_strdup_printf(_("Could not find file '%s'."), filename);
899 g_printerr("%s\n", msg); /* also print to the terminal */
900 ui_set_statusbar(TRUE, "%s", msg);
901 g_free(msg);
903 g_free(filename);
908 static void load_session_project_file(void)
910 gchar *locale_filename;
912 g_return_if_fail(project_prefs.session_file != NULL);
914 locale_filename = utils_get_locale_from_utf8(project_prefs.session_file);
916 if (G_LIKELY(!EMPTY(locale_filename)))
917 project_load_file(locale_filename);
919 g_free(locale_filename);
920 g_free(project_prefs.session_file); /* no longer needed */
924 static void load_settings(void)
926 #ifdef HAVE_VTE
927 vte_info.load_vte_cmdline = !no_vte;
928 #endif
929 configuration_load();
930 /* let cmdline options overwrite configuration settings */
931 #ifdef HAVE_VTE
932 vte_info.have_vte = vte_info.load_vte && vte_info.load_vte_cmdline;
933 #endif
934 if (no_msgwin)
935 ui_prefs.msgwindow_visible = FALSE;
937 #ifdef HAVE_PLUGINS
938 want_plugins = prefs.load_plugins && !no_plugins;
939 #endif
943 void main_load_project_from_command_line(const gchar *locale_filename, gboolean use_session)
945 gchar *pfile;
947 pfile = utils_get_path_from_uri(locale_filename);
948 if (pfile != NULL)
950 if (use_session)
951 project_load_file_with_session(pfile);
952 else
953 project_load_file(pfile);
955 g_free(pfile);
959 static void load_startup_files(gint argc, gchar **argv)
961 gboolean load_session = FALSE;
963 if (argc > 1 && g_str_has_suffix(argv[1], ".geany"))
965 gchar *filename = main_get_argv_filename(argv[1]);
967 /* project file specified: load it, but decide the session later */
968 main_load_project_from_command_line(filename, FALSE);
969 argc--, argv++;
970 /* force session load if using project-based session files */
971 load_session = TRUE;
972 g_free(filename);
975 /* Load the default session if:
976 * 1. "Load files from the last session" is active.
977 * 2. --no-session is not specified.
978 * 3. We are a primary instance.
979 * Has no effect if a CL project is loaded and using project-based session files. */
980 if (prefs.load_session && cl_options.load_session && !cl_options.new_instance)
982 if (app->project == NULL)
983 load_session_project_file();
984 if (app->project == NULL)
985 configuration_load_default_session();
986 load_session = TRUE;
989 if (load_session)
991 /* load session files into tabs, as they are found in the session_files variable */
992 if (app->project != NULL)
994 configuration_open_files(app->project->priv->session_files);
995 app->project->priv->session_files = NULL;
997 else
999 configuration_open_default_session();
1002 if (gtk_notebook_get_n_pages(GTK_NOTEBOOK(main_widgets.notebook)) == 0)
1004 ui_update_popup_copy_items(NULL);
1005 ui_update_popup_reundo_items(NULL);
1009 open_cl_files(argc, argv);
1013 static gboolean send_startup_complete(gpointer data)
1015 g_signal_emit_by_name(geany_object, "geany-startup-complete");
1016 return FALSE;
1020 static const gchar *get_locale(void)
1022 const gchar *locale = "unknown";
1023 #ifdef HAVE_LOCALE_H
1024 locale = setlocale(LC_CTYPE, NULL);
1025 #endif
1026 return locale;
1030 GEANY_EXPORT_SYMBOL
1031 void main_init_headless(void)
1033 #if ! GLIB_CHECK_VERSION(2, 36, 0)
1034 g_type_init();
1035 #endif
1037 app = g_new0(GeanyApp, 1);
1038 memset(&main_status, 0, sizeof(GeanyStatus));
1039 memset(&prefs, 0, sizeof(GeanyPrefs));
1040 memset(&interface_prefs, 0, sizeof(GeanyInterfacePrefs));
1041 memset(&toolbar_prefs, 0, sizeof(GeanyToolbarPrefs));
1042 memset(&file_prefs, 0, sizeof(GeanyFilePrefs));
1043 memset(&search_prefs, 0, sizeof(GeanySearchPrefs));
1044 memset(&tool_prefs, 0, sizeof(GeanyToolPrefs));
1045 memset(&template_prefs, 0, sizeof(GeanyTemplatePrefs));
1046 memset(&ui_prefs, 0, sizeof(UIPrefs));
1047 memset(&ui_widgets, 0, sizeof(UIWidgets));
1049 encodings_init_headless();
1053 GEANY_EXPORT_SYMBOL
1054 gint main_lib(gint argc, gchar **argv)
1056 GeanyDocument *doc;
1057 gint config_dir_result;
1058 const gchar *locale;
1059 gchar *utf8_configdir;
1060 gchar *os_info;
1062 main_init_headless();
1064 log_handlers_init();
1066 setup_paths();
1068 #ifdef ENABLE_NLS
1069 main_locale_init(utils_resource_dir(RESOURCE_DIR_LOCALE), GETTEXT_PACKAGE);
1070 #endif
1071 /* initialize TM before parsing command-line - needed for tag file generation */
1072 app->tm_workspace = tm_get_workspace();
1073 parse_command_line_options(&argc, &argv);
1075 #if ! GLIB_CHECK_VERSION(2, 32, 0)
1076 /* Initialize GLib's thread system in case any plugins want to use it or their
1077 * dependencies (e.g. WebKit, Soup, ...). Deprecated since GLIB 2.32. */
1078 if (!g_thread_supported())
1079 g_thread_init(NULL);
1080 #endif
1082 #ifdef G_OS_UNIX
1083 g_unix_signal_add(SIGTERM, signal_cb, GINT_TO_POINTER(SIGTERM));
1085 /* ignore SIGPIPE signal for preventing sudden death of program */
1086 signal(SIGPIPE, SIG_IGN);
1087 #endif
1089 config_dir_result = setup_config_dir();
1090 #ifdef HAVE_SOCKET
1091 /* check and create (unix domain) socket for remote operation */
1092 if (! socket_info.ignore_socket)
1094 gushort socket_port = 0;
1095 #ifdef G_OS_WIN32
1096 socket_port = (gushort) get_windows_socket_port();
1097 #endif
1098 socket_info.lock_socket = -1;
1099 socket_info.lock_socket_tag = 0;
1100 socket_info.lock_socket = socket_init(argc, argv, socket_port);
1101 /* Quit if filenames were sent to first instance or the list of open
1102 * documents has been printed */
1103 if ((socket_info.lock_socket == -2 /* socket exists */ && argc > 1) ||
1104 cl_options.list_documents)
1106 socket_finalize();
1107 gdk_notify_startup_complete();
1108 g_free(app->configdir);
1109 g_free(app->datadir);
1110 g_free(app->docdir);
1111 g_free(app);
1112 return 0;
1114 /* Start a new instance if no command line strings were passed,
1115 * even if the socket already exists */
1116 else if (socket_info.lock_socket == -2 /* socket already exists */)
1118 socket_info.ignore_socket = TRUE;
1119 cl_options.new_instance = TRUE;
1122 #endif
1124 #ifdef G_OS_WIN32
1125 /* after we initialized the socket code and handled command line args,
1126 * let's change the working directory on Windows to not lock it */
1127 change_working_directory_on_windows();
1128 #endif
1130 locale = get_locale();
1131 geany_debug("Geany %s, %s",
1132 main_get_version_string(),
1133 locale);
1134 geany_debug(geany_lib_versions,
1135 gtk_major_version, gtk_minor_version, gtk_micro_version,
1136 glib_major_version, glib_minor_version, glib_micro_version);
1138 os_info = utils_get_os_info_string();
1139 if (os_info != NULL)
1141 geany_debug("OS: %s", os_info);
1142 g_free(os_info);
1145 geany_debug("System data dir: %s", app->datadir);
1146 utf8_configdir = utils_get_utf8_from_locale(app->configdir);
1147 geany_debug("User config dir: %s", utf8_configdir);
1148 g_free(utf8_configdir);
1150 /* create the object so Geany signals can be connected in init() functions */
1151 geany_object = geany_object_new();
1153 /* inits */
1154 main_init();
1156 encodings_init();
1157 editor_init();
1159 /* init stash groups before loading keyfile */
1160 configuration_init();
1161 ui_init_prefs();
1162 search_init();
1163 project_init();
1164 #ifdef HAVE_PLUGINS
1165 plugins_init();
1166 #endif
1167 sidebar_init();
1168 load_settings(); /* load keyfile */
1170 msgwin_init();
1171 build_init();
1172 ui_create_insert_menu_items();
1173 ui_create_insert_date_menu_items();
1174 keybindings_init();
1175 notebook_init();
1176 filetypes_init();
1177 templates_init();
1178 navqueue_init();
1179 document_init_doclist();
1180 symbols_init();
1181 editor_snippets_init();
1183 #ifdef HAVE_VTE
1184 vte_init();
1185 #endif
1186 ui_create_recent_menus();
1188 ui_set_statusbar(TRUE, _("This is Geany %s."), main_get_version_string());
1189 if (config_dir_result != 0)
1191 gchar *message = g_strdup_printf(_("Configuration directory could not be created (%s)."),
1192 g_strerror(config_dir_result));
1193 ui_set_statusbar(TRUE, "%s", message);
1194 g_warning("%s", message);
1195 g_free(message);
1197 #ifdef HAVE_SOCKET
1198 if (socket_info.lock_socket == -1)
1200 const gchar *message =
1201 _("IPC socket could not be created, see Help->Debug Messages for details.");
1202 ui_set_statusbar(TRUE, "%s", message);
1203 g_warning("%s", message);
1205 #endif
1207 /* apply all configuration options */
1208 apply_settings();
1210 #ifdef HAVE_PLUGINS
1211 /* load any enabled plugins before we open any documents */
1212 if (want_plugins)
1213 plugins_load_active();
1214 #endif
1216 ui_sidebar_show_hide();
1218 /* set the active sidebar page after plugins have been loaded */
1219 gtk_notebook_set_current_page(GTK_NOTEBOOK(main_widgets.sidebar_notebook), ui_prefs.sidebar_page);
1221 /* load keybinding settings after plugins have added their groups */
1222 keybindings_load_keyfile();
1224 /* create the custom command menu after the keybindings have been loaded to have the proper
1225 * accelerator shown for the menu items */
1226 tools_create_insert_custom_command_menu_items();
1228 /* load any command line files or session files */
1229 main_status.opening_session_files++;
1230 load_startup_files(argc, argv);
1231 main_status.opening_session_files--;
1233 /* open a new file if no other file was opened */
1234 document_new_file_if_non_open();
1236 ui_document_buttons_update();
1237 ui_save_buttons_toggle(FALSE);
1239 doc = document_get_current();
1240 sidebar_select_openfiles_item(doc);
1241 build_menu_update(doc);
1242 sidebar_update_tag_list(doc, FALSE);
1244 setup_window_position();
1246 /* finally show the window */
1247 document_grab_focus(doc);
1248 gtk_widget_show(main_widgets.window);
1249 main_status.main_window_realized = TRUE;
1251 configuration_apply_settings();
1253 #ifdef HAVE_SOCKET
1254 /* register the callback of socket input */
1255 if (! socket_info.ignore_socket && socket_info.lock_socket > 0)
1257 socket_info.read_ioc = g_io_channel_unix_new(socket_info.lock_socket);
1258 socket_info.lock_socket_tag = g_io_add_watch(socket_info.read_ioc,
1259 G_IO_IN | G_IO_PRI | G_IO_ERR, socket_lock_input_cb, main_widgets.window);
1261 #endif
1263 /* when we are really done with setting everything up and the main event loop is running,
1264 * tell other components, mainly plugins, that startup is complete */
1265 g_idle_add_full(G_PRIORITY_LOW, send_startup_complete, NULL, NULL);
1267 #ifdef MAC_INTEGRATION
1268 /* OS X application ready - has to be called before entering main loop */
1269 gtkosx_application_ready(gtkosx_application_get());
1270 #endif
1272 gtk_main();
1273 return 0;
1277 static void queue_free(GQueue *queue)
1279 while (! g_queue_is_empty(queue))
1281 g_free(g_queue_pop_tail(queue));
1283 g_queue_free(queue);
1287 static gboolean do_main_quit(void)
1289 configuration_save();
1291 if (app->project != NULL)
1293 if (!project_close(FALSE)) /* save project session files */
1294 return FALSE;
1297 if (!document_close_all())
1298 return FALSE;
1300 geany_debug("Quitting...");
1302 main_status.quitting = TRUE;
1304 #ifdef HAVE_SOCKET
1305 socket_finalize();
1306 #endif
1308 #ifdef HAVE_PLUGINS
1309 plugins_finalize();
1310 #endif
1312 navqueue_free();
1313 keybindings_free();
1314 notebook_free();
1315 highlighting_free_styles();
1316 templates_free_templates();
1317 msgwin_finalize();
1318 search_finalize();
1319 build_finalize();
1320 document_finalize();
1321 symbols_finalize();
1322 project_finalize();
1323 editor_finalize();
1324 editor_snippets_free();
1325 encodings_finalize();
1326 toolbar_finalize();
1327 sidebar_finalize();
1328 configuration_finalize();
1329 filetypes_free_types();
1330 log_finalize();
1332 tm_workspace_free();
1333 g_free(app->configdir);
1334 g_free(app->datadir);
1335 g_free(app->docdir);
1336 g_free(prefs.default_open_path);
1337 g_free(prefs.custom_plugin_path);
1338 g_free(ui_prefs.custom_date_format);
1339 g_free(ui_prefs.color_picker_palette);
1340 g_free(interface_prefs.editor_font);
1341 g_free(interface_prefs.tagbar_font);
1342 g_free(interface_prefs.msgwin_font);
1343 g_free(editor_prefs.long_line_color);
1344 g_free(editor_prefs.comment_toggle_mark);
1345 g_free(editor_prefs.color_scheme);
1346 g_free(tool_prefs.context_action_cmd);
1347 g_free(template_prefs.developer);
1348 g_free(template_prefs.company);
1349 g_free(template_prefs.mail);
1350 g_free(template_prefs.initials);
1351 g_free(template_prefs.version);
1352 g_free(tool_prefs.term_cmd);
1353 g_free(tool_prefs.browser_cmd);
1354 g_free(tool_prefs.grep_cmd);
1355 g_free(printing_prefs.external_print_cmd);
1356 g_free(printing_prefs.page_header_datefmt);
1357 g_strfreev(ui_prefs.custom_commands);
1358 g_strfreev(ui_prefs.custom_commands_labels);
1360 queue_free(ui_prefs.recent_queue);
1361 queue_free(ui_prefs.recent_projects_queue);
1363 if (ui_widgets.prefs_dialog && GTK_IS_WIDGET(ui_widgets.prefs_dialog)) gtk_widget_destroy(ui_widgets.prefs_dialog);
1364 if (ui_widgets.open_fontsel && GTK_IS_WIDGET(ui_widgets.open_fontsel)) gtk_widget_destroy(ui_widgets.open_fontsel);
1365 if (ui_widgets.open_colorsel && GTK_IS_WIDGET(ui_widgets.open_colorsel)) gtk_widget_destroy(ui_widgets.open_colorsel);
1366 #ifdef HAVE_VTE
1367 if (vte_info.have_vte) vte_close();
1368 g_free(vte_info.lib_vte);
1369 g_free(vte_info.dir);
1370 #endif
1371 gtk_widget_destroy(main_widgets.window);
1373 /* destroy popup menus */
1374 if (main_widgets.editor_menu && GTK_IS_WIDGET(main_widgets.editor_menu))
1375 gtk_widget_destroy(main_widgets.editor_menu);
1376 if (ui_widgets.toolbar_menu && GTK_IS_WIDGET(ui_widgets.toolbar_menu))
1377 gtk_widget_destroy(ui_widgets.toolbar_menu);
1378 if (msgwindow.popup_status_menu && GTK_IS_WIDGET(msgwindow.popup_status_menu))
1379 gtk_widget_destroy(msgwindow.popup_status_menu);
1380 if (msgwindow.popup_msg_menu && GTK_IS_WIDGET(msgwindow.popup_msg_menu))
1381 gtk_widget_destroy(msgwindow.popup_msg_menu);
1382 if (msgwindow.popup_compiler_menu && GTK_IS_WIDGET(msgwindow.popup_compiler_menu))
1383 gtk_widget_destroy(msgwindow.popup_compiler_menu);
1385 g_object_unref(geany_object);
1386 geany_object = NULL;
1388 g_free(original_cwd);
1389 g_free(app);
1391 ui_finalize_builder();
1393 gtk_main_quit();
1395 return TRUE;
1399 static gboolean check_no_unsaved(void)
1401 guint i;
1403 for (i = 0; i < documents_array->len; i++)
1405 if (documents[i]->is_valid && documents[i]->changed)
1407 return FALSE;
1410 return TRUE; /* no unsaved edits */
1414 /* Returns false when quitting is aborted due to user cancellation */
1415 gboolean main_quit(void)
1417 main_status.quitting = TRUE;
1419 if (! check_no_unsaved())
1421 if (do_main_quit())
1422 return TRUE;
1424 else if (! prefs.confirm_exit ||
1425 dialogs_show_question_full(NULL, GTK_STOCK_QUIT, GTK_STOCK_CANCEL, NULL,
1426 _("Do you really want to quit?")))
1428 if (do_main_quit())
1429 return TRUE;
1432 main_status.quitting = FALSE;
1433 return FALSE;
1437 * Reloads most of Geany's configuration files without restarting. Currently the following
1438 * files are reloaded: all template files, also new file templates and the 'New (with template)'
1439 * menus will be updated, Snippets (snippets.conf), filetype extensions (filetype_extensions.conf),
1440 * and 'settings' and 'build_settings' sections of the filetype definition files.
1442 * Plugins may call this function if they changed any of these files (e.g. a configuration file
1443 * editor plugin).
1445 * @since 0.15
1447 GEANY_API_SYMBOL
1448 void main_reload_configuration(void)
1450 /* reload templates */
1451 templates_free_templates();
1452 templates_init();
1454 /* reload snippets */
1455 editor_snippets_free();
1456 editor_snippets_init();
1458 filetypes_reload_extensions();
1459 filetypes_reload();
1461 /* C tag names to ignore */
1462 symbols_reload_config_files();
1464 ui_set_statusbar(TRUE, _("Configuration files reloaded."));