Update HACKING for changed doc generation instructions
[geany-mirror.git] / src / main.h
blobc0719d23933a2ada0fe8a8c31fdf1899afb4921e
1 /*
2 * main.h - this file is part of Geany, a fast and lightweight IDE
4 * Copyright 2006-2012 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
5 * Copyright 2006-2012 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 along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 #ifndef GEANY_MAIN_H
24 #define GEANY_MAIN_H 1
26 #include <glib.h>
28 G_BEGIN_DECLS
30 typedef struct
32 gboolean new_instance;
33 gchar *socket_filename;
34 gboolean load_session;
35 gint goto_line;
36 gint goto_column;
37 gboolean ignore_global_tags;
38 gboolean list_documents;
39 gboolean readonly;
41 CommandLineOptions;
43 extern CommandLineOptions cl_options;
46 typedef struct GeanyStatus
48 gboolean opening_session_files; /* state at startup while opening session files */
49 gboolean closing_all; /* the state while closing all tabs
50 * (used to prevent notebook switch page signals) */
51 gboolean quitting; /* state when Geany is quitting completely */
52 gboolean main_window_realized;
54 GeanyStatus;
56 extern GeanyStatus main_status;
59 const gchar *main_get_version_string(void);
61 gchar *main_get_argv_filename(const gchar *filename);
63 gboolean main_quit(void);
65 gboolean main_handle_filename(const gchar *locale_filename);
67 void main_reload_configuration(void);
69 void main_locale_init(const gchar *locale_dir, const gchar *gettext_package);
71 gboolean main_is_realized(void);
73 void main_load_project_from_command_line(const gchar *locale_filename, gboolean use_session);
75 G_END_DECLS
77 #endif /* GEANY_MAIN_H */