summaryrefslogtreecommitdiff
path: root/src/glibext
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/glibext
parent6a444b273cf812c080c57d36a43436bf4aa4d55e (diff)
Updated the graph view when updating the current location.
Diffstat (limited to 'src/glibext')
-rw-r--r--src/glibext/gloadedpanel-int.h4
-rw-r--r--src/glibext/gloadedpanel.c24
-rw-r--r--src/glibext/gloadedpanel.h3
3 files changed, 0 insertions, 31 deletions
diff --git a/src/glibext/gloadedpanel-int.h b/src/glibext/gloadedpanel-int.h
index 36a1437..f9c451c 100644
--- a/src/glibext/gloadedpanel-int.h
+++ b/src/glibext/gloadedpanel-int.h
@@ -38,9 +38,6 @@ typedef GLoadedContent * (* get_loaded_panel_content_fc) (const GLoadedPanel *);
/* Fournit le position courante dans un panneau de chargement. */
typedef GLineCursor * (* get_loaded_cursor_fc) (const GLoadedPanel *);
-/* Définit le position courante dans un panneau de chargement. */
-typedef void (* set_loaded_cursor_fc) (GLoadedPanel *, const GLineCursor *);
-
/* S'assure qu'un emplacement donné est visible à l'écran. */
typedef void (* scroll_loaded_to_cursor_fc) (GLoadedPanel *, const GLineCursor *, ScrollPositionTweak, bool);
@@ -59,7 +56,6 @@ struct _GLoadedPanelIface
get_loaded_panel_content_fc get_content;/* Récupération du contenu */
get_loaded_cursor_fc get_cursor; /* Fourniture d'une position */
- set_loaded_cursor_fc set_cursor; /* Application d'une position */
scroll_loaded_to_cursor_fc scroll; /* Défilement de la vue */
cache_loaded_glance_fc cache_glance; /* Cache de la mignature */
diff --git a/src/glibext/gloadedpanel.c b/src/glibext/gloadedpanel.c
index ead34b7..76af0d6 100644
--- a/src/glibext/gloadedpanel.c
+++ b/src/glibext/gloadedpanel.c
@@ -151,30 +151,6 @@ GLineCursor *g_loaded_panel_get_cursor(const GLoadedPanel *panel)
/******************************************************************************
* *
-* Paramètres : panel = composant GTK à mettre à jour. *
-* cursor = informations relatives à la position du curseur. *
-* *
-* Description : Définit le position courante dans un panneau de chargement. *
-* *
-* Retour : - *
-* *
-* Remarques : - *
-* *
-******************************************************************************/
-
-void g_loaded_panel_set_cursor(GLoadedPanel *panel, const GLineCursor *cursor)
-{
- GLoadedPanelIface *iface; /* Interface utilisée */
-
- iface = G_LOADED_PANEL_GET_IFACE(panel);
-
- iface->set_cursor(panel, cursor);
-
-}
-
-
-/******************************************************************************
-* *
* Paramètres : panel = composant GTK à manipuler. *
* cursor = emplacement à cibler pour un déplacement. *
* save = le changement est-il majeur ? *
diff --git a/src/glibext/gloadedpanel.h b/src/glibext/gloadedpanel.h
index 50ea058..9d460c7 100644
--- a/src/glibext/gloadedpanel.h
+++ b/src/glibext/gloadedpanel.h
@@ -62,9 +62,6 @@ GLoadedContent *g_loaded_panel_get_content(const GLoadedPanel *);
/* Fournit le position courante dans un panneau de chargement. */
GLineCursor *g_loaded_panel_get_cursor(const GLoadedPanel *);
-/* Définit le position courante dans un panneau de chargement. */
-void g_loaded_panel_set_cursor(GLoadedPanel *, const GLineCursor *);
-
/* Demande à qui veut répondre un déplacement du curseur. */
void g_loaded_panel_request_move(GLoadedPanel *, const GLineCursor *, gboolean);