Support {ob} and {cb} wildcards for snippets too (fixes #2937008).
[geany-mirror.git] / src / prefs.h
blob161ee212d7be804bd04ba9e21712d31e0ed20fc8
1 /*
2 * prefs.h - this file is part of Geany, a fast and lightweight IDE
4 * Copyright 2005-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., 675 Mass Ave, Cambridge, MA 02139, USA.
23 #ifndef GEANY_PREFS_H
24 #define GEANY_PREFS_H 1
26 /** General Preferences dialog settings. */
27 typedef struct GeanyPrefs
29 gboolean load_session;
30 gboolean load_plugins;
31 gboolean save_winpos;
32 gboolean confirm_exit;
33 gboolean beep_on_errors; /* use utils_beep() instead */
34 gboolean suppress_status_messages;
35 gboolean switch_to_status;
36 gboolean auto_focus;
37 gchar *default_open_path; /**< Default path to look for files when no other path is appropriate. */
38 gchar *custom_plugin_path;
40 GeanyPrefs;
42 extern GeanyPrefs prefs;
45 typedef struct GeanyToolPrefs
47 gchar *browser_cmd;
48 gchar *term_cmd;
49 gchar *grep_cmd;
50 gchar *context_action_cmd;
52 GeanyToolPrefs;
54 extern GeanyToolPrefs tool_prefs;
57 void prefs_show_dialog(void);
59 #endif