summaryrefslogtreecommitdiff
path: root/src/gui/editem-int.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/editem-int.h')
-rw-r--r--src/gui/editem-int.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gui/editem-int.h b/src/gui/editem-int.h
index 594b6fd..80fe699 100644
--- a/src/gui/editem-int.h
+++ b/src/gui/editem-int.h
@@ -42,6 +42,9 @@ typedef void (* update_item_binary_fc) (GEditorItem *, GLoadedBinary *);
/* Réagit à un changement d'affichage principal de contenu. */
typedef void (* update_item_view_fc) (GEditorItem *, GtkViewPanel *);
+/* Concentre l'attention de l'ensemble sur une adresse donnée. */
+typedef void (* focus_addr_fc) (GEditorItem *, vmpa_t, GtkWidget *);
+
/* Lance une actualisation relative à l'étendue du projet. */
typedef void (* update_project_fc) (GEditorItem *, GStudyProject *);
@@ -61,6 +64,7 @@ struct _GEditorItem
update_item_binary_fc update_binary; /* Changement de binaire */
update_item_view_fc update_view; /* Rechargement dû à une vue */
update_item_view_fc update_content; /* Rechargement dû à un contenu*/
+ focus_addr_fc focus_addr; /* Prête attention à une addr. */
update_project_fc update_project; /* Actualisation des binaires */
};