Start to make it easier to compile the core in isolation
[geany-mirror.git] / src / prefs.h
blob14676094f3b45c0e8879fe1d1dff3de13f54f204
1 /*
2 * prefs.h - this file is part of Geany, a fast and lightweight IDE
4 * Copyright 2005-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.
22 #ifndef GEANY_PREFS_H
23 #define GEANY_PREFS_H 1
25 G_BEGIN_DECLS
27 /** General Preferences dialog settings. */
28 typedef struct GeanyPrefs
30 gboolean load_session;
31 gboolean load_plugins;
32 gboolean save_winpos;
33 gboolean confirm_exit;
34 gboolean beep_on_errors; /* use utils_beep() instead */
35 gboolean suppress_status_messages;
36 gboolean switch_to_status;
37 gboolean auto_focus;
38 gchar *default_open_path; /**< Default path to look for files when no other path is appropriate. */
39 gchar *custom_plugin_path;
41 GeanyPrefs;
43 extern GeanyPrefs prefs;
46 /** Tools preferences */
47 typedef struct GeanyToolPrefs
49 gchar *browser_cmd; /**< web browser command */
50 gchar *term_cmd; /**< terminal emulator command */
51 gchar *grep_cmd; /**< grep command */
52 gchar *context_action_cmd; /**< context action command */
54 GeanyToolPrefs;
56 extern GeanyToolPrefs tool_prefs;
59 void prefs_show_dialog(void);
61 void prefs_kb_search_name(const gchar *search);
63 G_END_DECLS
65 #endif