summaryrefslogtreecommitdiff
path: root/plugins/pychrysa/gui/editem.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/pychrysa/gui/editem.c')
-rw-r--r--plugins/pychrysa/gui/editem.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/plugins/pychrysa/gui/editem.c b/plugins/pychrysa/gui/editem.c
index ee0664d..b9cb6ff 100644
--- a/plugins/pychrysa/gui/editem.c
+++ b/plugins/pychrysa/gui/editem.c
@@ -36,7 +36,7 @@
#include "../analysis/binary.h"
-#include "../gtkext/viewpanel.h"
+#include "../gtkext/displaypanel.h"
@@ -44,10 +44,10 @@
static void _update_editor_item_for_binary_python_wrapper(GEditorItem *, GLoadedBinary *);
/* Réagit à un changement de vue. */
-static void _update_editor_item_for_view_python_wrapper(GEditorItem *, GtkViewPanel *);
+static void _update_editor_item_for_view_python_wrapper(GEditorItem *, GtkDisplayPanel *);
/* Réagit à un changement de contenu. */
-static void _update_editor_item_for_view_content_python_wrapper(GEditorItem *, GtkViewPanel *);
+static void _update_editor_item_for_view_content_python_wrapper(GEditorItem *, GtkDisplayPanel *);
/* Réagit à un changement du binaire courant. */
static PyObject *py_editor_item_update_for_binary(PyObject *, PyObject *);
@@ -110,8 +110,8 @@ static void _update_editor_item_for_binary_python_wrapper(GEditorItem *item, GLo
/******************************************************************************
* *
-* Paramètres : item = élément à actualiser. *
-* view = nouveau panneau d'affichage actif. *
+* Paramètres : item = élément à actualiser. *
+* panel = nouveau panneau d'affichage actif. *
* *
* Description : Réagit à un changement de vue. *
* *
@@ -121,7 +121,7 @@ static void _update_editor_item_for_binary_python_wrapper(GEditorItem *item, GLo
* *
******************************************************************************/
-static void _update_editor_item_for_view_python_wrapper(GEditorItem *item, GtkViewPanel *view)
+static void _update_editor_item_for_view_python_wrapper(GEditorItem *item, GtkDisplayPanel *panel)
{
PyObject *target; /* Version Python de l'élément */
PyObject *args; /* Arguments pour l'appel */
@@ -139,7 +139,7 @@ static void _update_editor_item_for_view_python_wrapper(GEditorItem *item, GtkVi
target = pygobject_new(G_OBJECT(item));
args = PyTuple_New(1);
- PyTuple_SetItem(args, 0, pygobject_new(G_OBJECT(view)));
+ PyTuple_SetItem(args, 0, pygobject_new(G_OBJECT(panel)));
value = run_python_method(target, "update_for_view", args);
@@ -152,8 +152,8 @@ static void _update_editor_item_for_view_python_wrapper(GEditorItem *item, GtkVi
/******************************************************************************
* *
-* Paramètres : item = élément à actualiser. *
-* view = nouveau panneau d'affichage actif. *
+* Paramètres : item = élément à actualiser. *
+* panel = nouveau panneau d'affichage actif. *
* *
* Description : Réagit à un changement de contenu. *
* *
@@ -163,7 +163,7 @@ static void _update_editor_item_for_view_python_wrapper(GEditorItem *item, GtkVi
* *
******************************************************************************/
-static void _update_editor_item_for_view_content_python_wrapper(GEditorItem *item, GtkViewPanel *view)
+static void _update_editor_item_for_view_content_python_wrapper(GEditorItem *item, GtkDisplayPanel *panel)
{
PyObject *target; /* Version Python de l'élément */
PyObject *args; /* Arguments pour l'appel */
@@ -181,7 +181,7 @@ static void _update_editor_item_for_view_content_python_wrapper(GEditorItem *ite
target = pygobject_new(G_OBJECT(item));
args = PyTuple_New(1);
- PyTuple_SetItem(args, 0, pygobject_new(G_OBJECT(view)));
+ PyTuple_SetItem(args, 0, pygobject_new(G_OBJECT(panel)));
value = run_python_method(target, "update_for_content", args);
@@ -304,7 +304,7 @@ static PyObject *py_editor_item_get_current_view(PyObject *self, PyObject *args)
{
PyObject *result; /* Résultat à retourner */
GEditorItem *item; /* Elément à manipuler */
- GtkViewPanel *panel; /* Instance à convertir */
+ GtkDisplayPanel *panel; /* Instance à convertir */
item = G_EDITOR_ITEM(pygobject_get(self));
panel = g_editor_item_get_current_view(item);