summaryrefslogtreecommitdiff
path: root/src/gtkext/gtkviewpanel.h
diff options
context:
space:
mode:
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 *);