summaryrefslogtreecommitdiff
path: root/src/core/params.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/params.h')
-rw-r--r--src/core/params.h58
1 files changed, 58 insertions, 0 deletions
diff --git a/src/core/params.h b/src/core/params.h
new file mode 100644
index 0000000..b79cc3a
--- /dev/null
+++ b/src/core/params.h
@@ -0,0 +1,58 @@
+
+/* Chrysalide - Outil d'analyse de fichiers binaires
+ * params.h - prototypes pour les éléments de la configuration principale
+ *
+ * Copyright (C) 2009-2012 Cyrille Bagard
+ *
+ * This file is part of Chrysalide.
+ *
+ * OpenIDA is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * OpenIDA is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Foobar. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+
+#ifndef _CORE_PARAMS_H
+#define _CORE_PARAMS_H
+
+
+#include "../glibext/configuration.h"
+
+
+
+/**
+ * Clefs de paramètres de configuration principale.
+ */
+
+#define MPK_LAST_PROJECT "gui.editor.last_project"
+#define MPK_ELLIPSIS_HEADER "gui.editor.panels.ellipsis_header"
+#define MPK_ELLIPSIS_TAB "gui.editor.panels.ellipsis_tab"
+#define MPK_KEYBINDINGS_EDIT "gui.key_bindings.global.edit"
+#define MPK_AUTO_SAVE "project.autosave"
+
+
+
+/* Procède au chargement de la configuration principale. */
+bool load_main_config_parameters(void);
+
+/* Procède au déchargement de la configuration principale. */
+void unload_main_config_parameters(void);
+
+#define set_main_configuration(cfg) _get_main_configuration(cfg)
+#define get_main_configuration() _get_main_configuration(NULL)
+
+/* Fournit un lien vers la configuration principale. */
+GGenConfig *_get_main_configuration(GGenConfig *);
+
+
+
+#endif /* _CORE_PARAMS_H */