summaryrefslogtreecommitdiff
path: root/src/gtkext/gtkviewpanel.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2012-01-16 01:29:18 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2012-01-16 01:29:18 (GMT)
commitd487ea54850c85ea22df22af3b21b57d9ad0fd2f (patch)
treee84eefa64d8845cb97ca98c95cc9acf713ccfcf8 /src/gtkext/gtkviewpanel.h
parent725304423eccf57b8e829542670b5abe7b00eeb4 (diff)
Updated menus on view change.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@227 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/gtkext/gtkviewpanel.h')
-rw-r--r--src/gtkext/gtkviewpanel.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/gtkext/gtkviewpanel.h b/src/gtkext/gtkviewpanel.h
index d2b69af..6edee69 100644
--- a/src/gtkext/gtkviewpanel.h
+++ b/src/gtkext/gtkviewpanel.h
@@ -53,6 +53,18 @@ GType gtk_view_panel_get_type(void);
/* Associe à un panneau d'affichage un binaire chargé. */
void gtk_view_panel_attach_binary(GtkViewPanel *, GOpenidaBinary *, bool *, bool *);
+/* Indique si les adresses doivent apparaître dans le rendu. */
+bool gtk_view_panel_get_addresses_display(const GtkViewPanel *);
+
+/* Définit si les adresses doivent apparaître dans le rendu. */
+void gtk_view_panel_set_addresses_display(const GtkViewPanel *, bool);
+
+/* Indique si le code doit apparaître dans le rendu. */
+bool gtk_view_panel_get_code_display(const GtkViewPanel *);
+
+/* Définit si le code doit apparaître dans le rendu. */
+void gtk_view_panel_set_code_display(const GtkViewPanel *, bool);
+
/* Fournit le binaire associé à la représentation. */
GOpenidaBinary *gtk_view_panel_get_binary(const GtkViewPanel *);