summaryrefslogtreecommitdiff
path: root/src/gtkext/gtkblockdisplay.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-12-21 14:58:27 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-12-21 14:58:27 (GMT)
commit223c2d906ccdb1ae680a474884448c799878a06f (patch)
tree7da08923299dfd950e34f4041e6967d1000c8f99 /src/gtkext/gtkblockdisplay.c
parent6a444b273cf812c080c57d36a43436bf4aa4d55e (diff)
Updated the graph view when updating the current location.
Diffstat (limited to 'src/gtkext/gtkblockdisplay.c')
-rw-r--r--src/gtkext/gtkblockdisplay.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/gtkext/gtkblockdisplay.c b/src/gtkext/gtkblockdisplay.c
index c8d12ea..97136c9 100644
--- a/src/gtkext/gtkblockdisplay.c
+++ b/src/gtkext/gtkblockdisplay.c
@@ -72,9 +72,6 @@ static gboolean gtk_block_display_query_tooltip(GtkWidget *, gint, gint, gboolea
/* Redessine l'affichage suite à un changement visuel. */
static gboolean gtk_block_display_need_redraw(GtkBlockDisplay *, GBufferView *);
-/* Définit le position courante dans un panneau de chargement. */
-static void gtk_block_display_set_cursor(GtkBlockDisplay *, const GLineCursor *);
-
/* Réagit à un déplacement de curseur. */
static bool gtk_block_display_notify_caret_relocation(GtkBlockDisplay *, const GdkRectangle *);
@@ -100,7 +97,6 @@ static void gtk_block_display_class_init(GtkBlockDisplayClass *class)
{
GObjectClass *object; /* Autre version de la classe */
GtkWidgetClass *widget_class; /* Classe version Widget */
- GtkDisplayPanelClass *panel_class; /* Classe parente */
GtkBufferDisplayClass *buffer_class; /* Classe supérieure */
object = G_OBJECT_CLASS(class);
@@ -113,10 +109,6 @@ static void gtk_block_display_class_init(GtkBlockDisplayClass *class)
widget_class->button_press_event = gtk_block_display_button_press;
widget_class->query_tooltip = gtk_block_display_query_tooltip;
- panel_class = GTK_DISPLAY_PANEL_CLASS(class);
-
- panel_class->set_cursor = (set_cursor_fc)gtk_block_display_set_cursor;
-
buffer_class = GTK_BUFFER_DISPLAY_CLASS(class);
buffer_class->notify_caret = (notify_caret_relocation_fc)gtk_block_display_notify_caret_relocation;
@@ -381,26 +373,6 @@ static gboolean gtk_block_display_need_redraw(GtkBlockDisplay *display, GBufferV
/******************************************************************************
* *
-* Paramètres : display = composant GTK à mettre à jour. *
-* cursor = informations relatives à la position du curseur. *
-* *
-* Description : Définit le position courante dans un panneau de chargement. *
-* *
-* Retour : - *
-* *
-* Remarques : - *
-* *
-******************************************************************************/
-
-static void gtk_block_display_set_cursor(GtkBlockDisplay *display, const GLineCursor *cursor)
-{
-
-
-}
-
-
-/******************************************************************************
-* *
* Paramètres : display = composant GTK à manipuler. *
* area = emplacement pour le dessin d'un curseur. *
* *