summaryrefslogtreecommitdiff
path: root/src/gtkcodeview.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2008-11-10 01:28:23 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2008-11-10 01:28:23 (GMT)
commit12b4201890b4b2eefffaa6615b4b3076253dff6f (patch)
tree3756393810dc392658de2e05fc2589cbd119b2a8 /src/gtkcodeview.h
parent7c7109c1a8aaedea40af4b96d4b81d6ba4496226 (diff)
Shown/hidden virtual addresses / binary code.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@41 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/gtkcodeview.h')
-rw-r--r--src/gtkcodeview.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/gtkcodeview.h b/src/gtkcodeview.h
index 18bec6e..d1dd308 100644
--- a/src/gtkcodeview.h
+++ b/src/gtkcodeview.h
@@ -52,6 +52,15 @@ GType gtk_codeview_get_type(void);
GtkWidget* gtk_codeview_new(void);
+
+/* Choisit d'afficher les adresses virtuelles ou non. */
+void gtk_codeview_show_vaddress(GtkCodeview *, gboolean);
+
+/* Choisit d'afficher le code brut ou non. */
+void gtk_codeview_show_code(GtkCodeview *, gboolean);
+
+
+
/* S'assure qu'une adresse donnée est visible à l'écran. */
void gtk_codeview_scroll_to_address(GtkCodeview *, uint64_t);