summaryrefslogtreecommitdiff
path: root/plugins/pychrysalide/gtkext
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-07-16 22:18:03 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-07-16 22:18:25 (GMT)
commitacac24dbaae205b389c81132939280295b6a5d34 (patch)
tree3bc91706e0d455ebadb19e1d25efb1bc554a9788 /plugins/pychrysalide/gtkext
parentf6e56cebfa878dd32a2405fd0c916a40140a1ff0 (diff)
Cleaned code.
Diffstat (limited to 'plugins/pychrysalide/gtkext')
-rw-r--r--plugins/pychrysalide/gtkext/displaypanel.c83
1 files changed, 0 insertions, 83 deletions
diff --git a/plugins/pychrysalide/gtkext/displaypanel.c b/plugins/pychrysalide/gtkext/displaypanel.c
index b75d173..16bd1d9 100644
--- a/plugins/pychrysalide/gtkext/displaypanel.c
+++ b/plugins/pychrysalide/gtkext/displaypanel.c
@@ -42,12 +42,6 @@
static PyObject *py_display_panel_new(PyTypeObject *, PyObject *, PyObject *);
#endif
-/* S'assure qu'une adresse donnée est visible à l'écran. */
-static PyObject *py_display_panel_scroll_to_address(PyObject *, PyObject *);
-
-/* Définit les constantes pour les panneaux de vue. */
-static bool py_display_panel_define_constants(PyTypeObject *);
-
/******************************************************************************
@@ -98,73 +92,6 @@ static PyObject *py_display_panel_new(PyTypeObject *type, PyObject *args, PyObje
/******************************************************************************
* *
-* Paramètres : self = classe représentant un tampon de code. *
-* args = arguments fournis à l'appel. *
-* *
-* Description : S'assure qu'une adresse donnée est visible à l'écran. *
-* *
-* Retour : - *
-* *
-* Remarques : - *
-* *
-******************************************************************************/
-
-static PyObject *py_display_panel_scroll_to_address(PyObject *self, PyObject *args)
-{
- GtkDisplayPanel *panel; /* Panneau à manipuler */
- PyObject *py_vmpa; /* Localisation version Python */
- int ret; /* Bilan de lecture des args. */
- vmpa2t *addr; /* Adresse visée par l'opérat° */
-
- ret = PyArg_ParseTuple(args, "O", &py_vmpa);
- if (!ret) return NULL;
-
- ret = PyObject_IsInstance(py_vmpa, (PyObject *)get_python_vmpa_type());
- if (!ret) return NULL;
-
- addr = get_internal_vmpa(py_vmpa);
- if (addr == NULL) return NULL;
-
- panel = GTK_DISPLAY_PANEL(pygobject_get(self));
-
- // FIXME
- //gtk_display_panel_scroll_to_address(panel, addr, SPT_RAW);
-
- Py_RETURN_NONE;
-
-}
-
-
-/******************************************************************************
-* *
-* Paramètres : obj_type = type dont le dictionnaire est à compléter. *
-* *
-* Description : Définit les constantes pour les panneaux de vue. *
-* *
-* Retour : true en cas de succès de l'opération, false sinon. *
-* *
-* Remarques : - *
-* *
-******************************************************************************/
-
-static bool py_display_panel_define_constants(PyTypeObject *obj_type)
-{
- bool result; /* Bilan à retourner */
-
- result = true;
-
- result &= PyDict_AddIntMacro(obj_type, SPT_RAW);
- result &= PyDict_AddIntMacro(obj_type, SPT_TOP);
- result &= PyDict_AddIntMacro(obj_type, SPT_CENTER);
- result &= PyDict_AddIntMacro(obj_type, SPT_BOTTOM);
-
- return result;
-
-}
-
-
-/******************************************************************************
-* *
* Paramètres : - *
* *
* Description : Fournit un accès à une définition de type à diffuser. *
@@ -178,11 +105,6 @@ static bool py_display_panel_define_constants(PyTypeObject *obj_type)
PyTypeObject *get_python_display_panel_type(void)
{
static PyMethodDef py_display_panel_methods[] = {
- {
- "scroll_to_address", (PyCFunction)py_display_panel_scroll_to_address,
- METH_VARARGS,
- "scroll_to_address($self, addr, tweak, /)\n--\n\nEnsure a given address is displayed in the view panel."
- },
{ NULL }
};
@@ -257,11 +179,6 @@ bool register_python_display_panel(PyObject *module)
py_display_panel_type, (PyTypeObject *)fixed);
Py_DECREF(fixed);
- if (!result)
- goto rpdp_exit;
-
- result = py_display_panel_define_constants(py_display_panel_type);
-
rpdp_exit:
return result;