summaryrefslogtreecommitdiff
path: root/src/gtkext/gtkgraphdisplay.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-12-21 09:36:52 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-12-21 09:36:52 (GMT)
commit3c183ee3be9cd5756bbefe688936fbab370e3840 (patch)
tree8968b218e532b439de3a5e7059194cee2818a884 /src/gtkext/gtkgraphdisplay.c
parentcffbe4839da452af215f05dfb7cc6c9304c1285e (diff)
Used only abstract cursors in views high API.
Diffstat (limited to 'src/gtkext/gtkgraphdisplay.c')
-rw-r--r--src/gtkext/gtkgraphdisplay.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/gtkext/gtkgraphdisplay.c b/src/gtkext/gtkgraphdisplay.c
index 6187677..fdd48ce 100644
--- a/src/gtkext/gtkgraphdisplay.c
+++ b/src/gtkext/gtkgraphdisplay.c
@@ -117,9 +117,6 @@ static gboolean gtk_graph_display_motion_notify(GtkWidget *, GdkEventMotion *, G
/* Réagit à la sélection externe d'une adresse. */
static void gtk_graph_display_define_main_address(GtkGraphDisplay *, const vmpa2t *);
-/* Indique la position courante du curseur. */
-static const vmpa2t *gtk_graph_display_get_caret_location(const GtkGraphDisplay *);
-
/* Indique la position d'affichage d'un emplacement donné. */
static bool gtk_graph_display_get_cursor_coordinates(const GtkGraphDisplay *, const GLineCursor *, gint *, gint *, ScrollPositionTweak);
@@ -183,7 +180,6 @@ static void gtk_graph_display_class_init(GtkGraphDisplayClass *class)
panel_class->adjust = (adjust_scroll_value_fc)gtk_graph_display_adjust_scroll_value;
panel_class->define = (define_address_fc)gtk_graph_display_define_main_address;
- panel_class->get_caret_loc = (get_caret_location_fc)gtk_graph_display_get_caret_location;
panel_class->get_coordinates = (get_coordinates_fc)gtk_graph_display_get_cursor_coordinates;
panel_class->move_caret_to = (move_caret_to_fc)gtk_graph_display_move_caret_to;
panel_class->get_cursor = (get_cursor_fc)gtk_graph_display_get_cursor;
@@ -722,25 +718,6 @@ static void gtk_graph_display_define_main_address(GtkGraphDisplay *display, cons
/******************************************************************************
* *
-* Paramètres : display = composant GTK à manipuler. *
-* *
-* Description : Indique la position courante du curseur. *
-* *
-* Retour : Emplacement courant du curseur ou NULL si aucun. *
-* *
-* Remarques : - *
-* *
-******************************************************************************/
-
-static const vmpa2t *gtk_graph_display_get_caret_location(const GtkGraphDisplay *display)
-{
- return NULL; /* FIXME */
-
-}
-
-
-/******************************************************************************
-* *
* Paramètres : display = composant GTK à consulter. *
* cursor = emplacement à présenter à l'écran. *
* x = position horizontale au sein du composant. [OUT] *