summaryrefslogtreecommitdiff
path: root/src/gtkext/gtkviewpanel-int.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2014-06-04 22:44:21 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2014-06-04 22:44:21 (GMT)
commit11395d684736467fb010b93b0eaeefcc06bf0f5e (patch)
treed9f9e06d27f5b8721f308b6b4636cd043e4f7d20 /src/gtkext/gtkviewpanel-int.h
parent83ba2204e700501023cb78dfd84978c611fe61b0 (diff)
Fixed bugs when dealing with views and updated the code for GTK3.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@378 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/gtkext/gtkviewpanel-int.h')
-rw-r--r--src/gtkext/gtkviewpanel-int.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/gtkext/gtkviewpanel-int.h b/src/gtkext/gtkviewpanel-int.h
index 36d5050..63a6a5b 100644
--- a/src/gtkext/gtkviewpanel-int.h
+++ b/src/gtkext/gtkviewpanel-int.h
@@ -45,9 +45,6 @@ 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 *);
-/* Réagit à un défilement quelconque. */
-typedef void (* scroll_fc) (GtkViewPanel *);
-
/* Place en cache un rendu destiné à l'aperçu graphique rapide. */
typedef void (* cache_glance_fc) (GtkViewPanel *, cairo_t *, const GtkAllocation *, double);
@@ -69,7 +66,6 @@ struct _GtkViewPanel
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 */
bool *display_addr; /* Affichage des adresses ? */
@@ -82,10 +78,6 @@ struct _GtkViewPanelClass
{
GtkFixedClass parent; /* A laisser en premier */
- /* Signaux */
-
- void (* set_scroll_adjustments) (GtkViewPanel *, GtkAdjustment *, GtkAdjustment *);
-
};