Bump API version for new plugin entry points (oops)
[geany-mirror.git] / src / main.h
blobf2babac34464e2a61173fbca20795c408cd7e1a7
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 void main_reload_configuration(void);
32 void main_locale_init(const gchar *locale_dir, const gchar *gettext_package);
34 gboolean main_is_realized(void);
37 #ifdef GEANY_PRIVATE
39 typedef struct
41 gboolean new_instance;
42 gchar *socket_filename;
43 gboolean load_session;
44 gint goto_line;
45 gint goto_column;
46 gboolean ignore_global_tags;
47 gboolean list_documents;
48 gboolean readonly;
50 CommandLineOptions;
52 extern CommandLineOptions cl_options;
55 typedef struct GeanyStatus
57 gboolean opening_session_files; /* state at startup while opening session files */
58 gboolean closing_all; /* the state while closing all tabs
59 * (used to prevent notebook switch page signals) */
60 gboolean quitting; /* state when Geany is quitting completely */
61 gboolean main_window_realized;
63 GeanyStatus;
65 extern GeanyStatus main_status;
68 const gchar *main_get_version_string(void);
70 gchar *main_get_argv_filename(const gchar *filename);
72 gboolean main_quit(void);
74 gboolean main_handle_filename(const gchar *locale_filename);
76 void main_load_project_from_command_line(const gchar *locale_filename, gboolean use_session);
78 gint main_lib(gint argc, gchar **argv);
80 #endif /* GEANY_PRIVATE */
82 G_END_DECLS
84 #endif /* GEANY_MAIN_H */