diff options
Diffstat (limited to 'plugins/pychrysa/gui/editem.c')
-rw-r--r-- | plugins/pychrysa/gui/editem.c | 83 |
1 files changed, 0 insertions, 83 deletions
diff --git a/plugins/pychrysa/gui/editem.c b/plugins/pychrysa/gui/editem.c index 69b135d..a7e9206 100644 --- a/plugins/pychrysa/gui/editem.c +++ b/plugins/pychrysa/gui/editem.c @@ -58,9 +58,6 @@ static PyObject *py_editor_item_update_for_view(PyObject *, PyObject *); /* Réagit à un changement d'affichage principal de contenu. */ static PyObject *py_editor_item_update_for_content(PyObject *, PyObject *); -/* Fournit l'affichage de binaire courant. */ -static PyObject *py_editor_item_get_current_view(PyObject *, PyObject *); - /* Procède à l'enregistrement d'un élément reactif de l'éditeur. */ static PyObject *py_editor_item_register(PyObject *, PyObject *); @@ -257,76 +254,6 @@ static PyObject *py_editor_item_update_for_content(PyObject *self, PyObject *arg * Paramètres : self = classe représentant un binaire. * * args = arguments fournis à l'appel. * * * -* Description : Fournit le gestionnaire du binaire courant. * -* * -* Retour : Instance en place ou Py_None si aucune. * -* * -* Remarques : - * -* * -******************************************************************************/ - -static PyObject *py_editor_item_get_current_binary(PyObject *self, PyObject *args) -{ - PyObject *result; /* Résultat à retourner */ - GEditorItem *item; /* Elément à manipuler */ - GLoadedBinary *binary; /* Instance à convertir */ - - item = G_EDITOR_ITEM(pygobject_get(self)); - binary = g_editor_item_get_current_binary(item); - - if (binary == NULL) - { - Py_INCREF(Py_None); - result = Py_None; - } - else - result = pygobject_new(G_OBJECT(binary)); - - return result; - -} - - -/****************************************************************************** -* * -* Paramètres : self = classe représentant un binaire. * -* args = arguments fournis à l'appel. * -* * -* Description : Fournit l'affichage de binaire courant. * -* * -* Retour : Instance en place ou Py_None si aucune. * -* * -* Remarques : - * -* * -******************************************************************************/ - -static PyObject *py_editor_item_get_current_view(PyObject *self, PyObject *args) -{ - PyObject *result; /* Résultat à retourner */ - GEditorItem *item; /* Elément à manipuler */ - GtkDisplayPanel *panel; /* Instance à convertir */ - - item = G_EDITOR_ITEM(pygobject_get(self)); - panel = g_editor_item_get_current_view(item); - - if (panel == NULL) - { - Py_INCREF(Py_None); - result = Py_None; - } - else - result = pygobject_new(G_OBJECT(panel)); - - return result; - -} - - -/****************************************************************************** -* * -* Paramètres : self = classe représentant un binaire. * -* args = arguments fournis à l'appel. * -* * * Description : Procède à l'enregistrement d'un élément reactif de l'éditeur.* * * * Retour : - * @@ -384,16 +311,6 @@ PyTypeObject *get_python_editor_item_type(void) "Called by Chrysalide on each view content change, if the item is registered." }, { - "get_current_binary()", (PyCFunction)py_editor_item_get_current_binary, - METH_NOARGS, - "get_current_binary($self, /)\n--\n\nProvide the current binary." - }, - { - "get_current_view", (PyCFunction)py_editor_item_get_current_view, - METH_NOARGS, - "get_current_view($self, /)\n--\n\nProvide the current binary view." - }, - { "register", (PyCFunction)py_editor_item_register, METH_NOARGS, "register($self, /)\n--\n\nRegister the item as editor item." |