summaryrefslogtreecommitdiff
path: root/src/gui/menus/options.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2019-02-18 17:45:39 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2019-02-18 17:45:39 (GMT)
commit55184eaa3682f704ddb9e2da63cd14bc0a62b7a3 (patch)
treeb3e22bf071f647ba418ef7dc83e9d7bf2749c2ca /src/gui/menus/options.h
parent899291f3cbf9b90ccda7af0bee9c3ce3928df0be (diff)
Prepared room for an incoming preferences dialog box.
Diffstat (limited to 'src/gui/menus/options.h')
-rw-r--r--src/gui/menus/options.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/gui/menus/options.h b/src/gui/menus/options.h
new file mode 100644
index 0000000..f73d659
--- /dev/null
+++ b/src/gui/menus/options.h
@@ -0,0 +1,41 @@
+
+/* Chrysalide - Outil d'analyse de fichiers binaires
+ * options.h - prototypes pour la gestion du menu 'Options'
+ *
+ * Copyright (C) 2019 Cyrille Bagard
+ *
+ * This binary is part of Chrysalide.
+ *
+ * Chrysalide 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.
+ *
+ * Chrysalide 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 this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+
+#ifndef _GUI_MENUS_OPTIONS_H
+#define _GUI_MENUS_OPTIONS_H
+
+
+#include <gtk/gtk.h>
+
+
+#include "menubar.h"
+
+
+
+/* Construit le menu "Options". */
+GtkWidget *build_menu_options(GObject *, GMenuBar *);
+
+
+
+#endif /* _GUI_MENUS_OPTIONS_H */