Constify some more string pointers in the API (patch by
[geany-mirror.git] / src / main.h
blob1792ed1557822924a3a820be34f424c9181b758a
1 /*
2 * main.h - this file is part of Geany, a fast and lightweight IDE
4 * Copyright 2006-2010 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
5 * Copyright 2006-2010 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * $Id$
25 #ifndef GEANY_MAIN_H
26 #define GEANY_MAIN_H
28 typedef struct
30 gboolean new_instance;
31 gchar *socket_filename;
32 gboolean load_session;
33 gint goto_line;
34 gint goto_column;
35 gboolean ignore_global_tags;
36 gboolean list_documents;
38 CommandLineOptions;
40 extern CommandLineOptions cl_options;
43 typedef struct GeanyStatus
45 gboolean opening_session_files; /* state at startup while opening session files */
46 gboolean closing_all; /* the state while closing all tabs
47 * (used to prevent notebook switch page signals) */
48 gboolean quitting; /* state when Geany is quitting completely */
49 gboolean main_window_realized;
51 GeanyStatus;
53 extern GeanyStatus main_status;
56 const gchar *main_get_version_string(void);
58 gchar *main_get_argv_filename(const gchar *filename);
60 void main_quit(void);
62 gboolean main_handle_filename(const gchar *locale_filename);
64 void main_reload_configuration(void);
66 void main_locale_init(const gchar *locale_dir, const gchar *gettext_package);
68 gboolean main_is_realized(void);
70 void main_load_project_from_command_line(const gchar *locale_filename, gboolean use_session);
72 #endif