summaryrefslogtreecommitdiff
path: root/src/gui/editem-int.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2012-01-30 02:19:38 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2012-01-30 02:19:38 (GMT)
commiteacb69625d51707ac0a158815a53f71fb70968ce (patch)
tree8d14e34639f80a0955529604d9c0d3ccae4d7dde /src/gui/editem-int.h
parent7bcec72d69c5350678ed6350636687c3c29bbc61 (diff)
Provided a new working Project menu.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@230 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/gui/editem-int.h')
-rw-r--r--src/gui/editem-int.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gui/editem-int.h b/src/gui/editem-int.h
index cdc53ea..0f25147 100644
--- a/src/gui/editem-int.h
+++ b/src/gui/editem-int.h
@@ -2,7 +2,7 @@
/* OpenIDA - Outil d'analyse de fichiers binaires
* editem-int.h - prototypes pour les définitions internes liées aux éléments réactifs de l'éditeur
*
- * Copyright (C) 2010 Cyrille Bagard
+ * Copyright (C) 2010-2012 Cyrille Bagard
*
* This file is part of OpenIDA.
*
@@ -42,6 +42,9 @@ typedef void (* update_item_binary_fc) (GEditorItem *, GOpenidaBinary *);
/* Réagit à un changement d'affichage principal de contenu. */
typedef void (* update_item_view_fc) (GEditorItem *, GtkViewPanel *);
+/* Lance une actualisation relative à l'étendue du projet. */
+typedef void (* update_project_fc) (GEditorItem *, GStudyProject *);
+
/* Elément réactif quelconque de l'éditeur (instance) */
struct _GEditorItem
@@ -57,6 +60,7 @@ struct _GEditorItem
update_item_binary_fc update_binary; /* Changement de binaire */
update_item_view_fc update_view; /* Rechargement dû à une vue */
+ update_project_fc update_project; /* Actualisation des binaires */
};