diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2025-05-22 02:05:40 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2025-05-22 02:05:40 (GMT) |
commit | 7ca9cee6632d1122984d8095115756877ee70f5f (patch) | |
tree | 045a4043265fd2de2b1e13195ee2b33fcdbcb871 /src/gtkext/hexview.h | |
parent | 0df6ab6d81a9f8de884aa8283d5c060ab1f7067e (diff) |
Introduce properties for the GtkHexView widget.
Diffstat (limited to 'src/gtkext/hexview.h')
-rw-r--r-- | src/gtkext/hexview.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gtkext/hexview.h b/src/gtkext/hexview.h index 2199786..0d2cd5a 100644 --- a/src/gtkext/hexview.h +++ b/src/gtkext/hexview.h @@ -41,6 +41,12 @@ DECLARE_GTYPE(GtkHexView, gtk_hex_view, GTK, HEX_VIEW); /* Crée un composant d'affichage d'octets bruts et imprimables. */ GtkHexView *gtk_hex_view_new(GBinContent *); +/* Fournit le contenu associé au composant d'affichage. */ +GBinContent *gtk_hex_view_get_content(const GtkHexView *); + +/* Définit le contenu associé au composant d'affichage. */ +void gtk_hex_view_set_content(GtkHexView *, GBinContent *); + #endif /* _GTKEXT_HEXVIEW_H */ |