summaryrefslogtreecommitdiff
path: root/src/gtkext/gtkviewpanel-int.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2012-12-12 21:25:32 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2012-12-12 21:25:32 (GMT)
commitdae8c208e24d03c7bf5314a86cb366a4e84a53c2 (patch)
treeed0544d501d6ad8819e4abc18c7382199666bba3 /src/gtkext/gtkviewpanel-int.h
parente86f211252a66d6c1b4abec350217f5241b6ef66 (diff)
Updated display of graphical views on option change and fixed size bugs.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@301 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/gtkext/gtkviewpanel-int.h')
-rw-r--r--src/gtkext/gtkviewpanel-int.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gtkext/gtkviewpanel-int.h b/src/gtkext/gtkviewpanel-int.h
index ee14067..b859f99 100644
--- a/src/gtkext/gtkviewpanel-int.h
+++ b/src/gtkext/gtkviewpanel-int.h
@@ -39,6 +39,9 @@ typedef void (* attach_binary_fc) (GtkViewPanel *, GLoadedBinary *, bool *, bool
/* Réagit à la sélection externe d'une adresse. */
typedef void (* define_address_fc) (GtkViewPanel *, vmpa_t);
+/* Actualise les besoins internes avant un redimensionnement. */
+typedef void (* prepare_resize_fc) (GtkViewPanel *);
+
/* Indique la position d'affichage d'une adresse donnée. */
typedef bool (* get_addr_coordinates_fc) (const GtkViewPanel *, vmpa_t, gint *, gint *);
@@ -65,6 +68,7 @@ struct _GtkViewPanel
attach_binary_fc attach; /* Association avec un binaire */
define_address_fc define; /* Centrage sur une partie */
+ prepare_resize_fc resize; /* Prépare une nouvelle taille */
get_addr_coordinates_fc get_coordinates;/* Conversion adresse <-> pos. */
scroll_fc scroll; /* Défilement du contenu */
cache_glance_fc cache_glance; /* Cache de la mignature */