diff options
| author | Cyrille Bagard <nocbos@gmail.com> | 2018-07-14 15:03:49 (GMT) | 
|---|---|---|
| committer | Cyrille Bagard <nocbos@gmail.com> | 2018-07-14 15:03:49 (GMT) | 
| commit | 7a009c76657478c9270acec0c2b236523bfd68eb (patch) | |
| tree | 6ee3e3f3c9482aebcdabaed1a15adbe6eee9a3ce /src/gtkext/gtkdisplaypanel-int.h | |
| parent | 9441aee9dfb31332ffbfa64204b5e4466249d563 (diff) | |
Used abstract locations to scroll into displays.
Diffstat (limited to 'src/gtkext/gtkdisplaypanel-int.h')
| -rw-r--r-- | src/gtkext/gtkdisplaypanel-int.h | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gtkext/gtkdisplaypanel-int.h b/src/gtkext/gtkdisplaypanel-int.h index 7a60152..f940212 100644 --- a/src/gtkext/gtkdisplaypanel-int.h +++ b/src/gtkext/gtkdisplaypanel-int.h @@ -55,7 +55,7 @@ typedef void (* define_address_fc) (GtkDisplayPanel *, const vmpa2t *);  typedef const vmpa2t * (* get_caret_location_fc) (const GtkDisplayPanel *);  /* Indique la position d'affichage d'une adresse donnée. */ -typedef bool (* get_addr_coordinates_fc) (const GtkDisplayPanel *, const vmpa2t *, gint *, gint *, ScrollPositionTweak); +typedef bool (* get_coordinates_fc) (const GtkDisplayPanel *, const GLineCursor *, gint *, gint *, ScrollPositionTweak);  /* Fournit l'élément actif lié à la position courante. */  typedef GObject * (* get_active_object_fc) (const GtkDisplayPanel *); @@ -106,7 +106,7 @@ struct _GtkDisplayPanelClass      adjust_scroll_value_fc adjust;          /* Réaction à un défilement    */      define_address_fc define;               /* Centrage sur une partie     */      get_caret_location_fc get_caret_loc;    /* Adresse du curseur          */ -    get_addr_coordinates_fc get_coordinates;/* Conversion adresse <-> pos. */ +    get_coordinates_fc get_coordinates;     /* Conversion adresse <-> pos. */      get_active_object_fc get_active;        /* Infos sur l'objet actif     */      move_caret_to_fc move_caret_to;         /* Déplacement du curseur      */  | 
