summaryrefslogtreecommitdiff
path: root/src/gui/editem.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2017-08-26 22:15:05 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2017-08-26 22:15:05 (GMT)
commit8ca477e012b11a19363542d171b8e973d637641c (patch)
tree94a4fcde1779f031946eff7a36075f41a17cd73b /src/gui/editem.h
parent4fb2ac107092671fe27fc3ebf9fc86dff7c3ec19 (diff)
Removed most of the functions using the editor items as global access to active items.
Diffstat (limited to 'src/gui/editem.h')
-rw-r--r--src/gui/editem.h38
1 files changed, 1 insertions, 37 deletions
diff --git a/src/gui/editem.h b/src/gui/editem.h
index 21de088..476299b 100644
--- a/src/gui/editem.h
+++ b/src/gui/editem.h
@@ -27,16 +27,9 @@
#include <glib-object.h>
+#include <gtk/gtk.h>
-#include "../analysis/binary.h"
-#include "../analysis/project.h"
-#include "../gtkext/gtkdisplaypanel.h"
-
-
-
-/* ------------------------- ELEMENT INDIVIDUEL D'INTERFACE ------------------------- */
-
#define G_TYPE_EDITOR_ITEM g_editor_item_get_type()
#define G_EDITOR_ITEM(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), g_editor_item_get_type(), GEditorItem))
@@ -65,35 +58,6 @@ const char *g_editor_item_get_name(const GEditorItem *);
/* Fournit le composant GTK associé à l'élément réactif. */
GtkWidget *g_editor_item_get_widget(const GEditorItem *);
-/* Fournit le gestionnaire du binaire courant. */
-GLoadedBinary *g_editor_item_get_current_binary(const GEditorItem *);
-
-/* Fournit l'affichage de binaire courant. */
-GtkDisplayPanel *g_editor_item_get_current_view(const GEditorItem *);
-
-
-
-/* ---------------------------- MANIPULATION D'ENSEMBLES ---------------------------- */
-
-
-/* Procède à l'enregistrement d'un élément reactif de l'éditeur. */
-void register_editor_item(GEditorItem *);
-
-/* Lance une actualisation du fait d'un changement de binaire. */
-void change_editor_items_current_binary(GObject *, GLoadedBinary *);
-
-/* Lance une actualisation du fait d'un changement de vue. */
-void change_editor_items_current_view(GObject *, GtkDisplayPanel *);
-
-/* Lance une actualisation du fait d'un changement de contenu. */
-void change_editor_items_current_view_content(GtkDisplayPanel *);
-
-/* Concentre l'attention de l'ensemble sur une adresse donnée. */
-void focus_address_in_editor_items(GLoadedBinary *, const vmpa2t *, GEditorItem *);
-
-/* Lance une actualisation relative à l'étendue du projet. */
-void update_project_area(GStudyProject *);
-
#endif /* _GUI_EDITEM_H */