1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
/*-
* Copyright (c) 2005-2006 os-cillation e.K.
*
* Written by Benedikt Meurer <benny@xfce.org>.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "pyexo.h"
G_MODULE_EXPORT void init_exo (void);
/* mark internal symbols with G_GNUC_INTERNAL */
G_GNUC_INTERNAL void exo_add_constants (PyObject *module,
const gchar *strip_prefix);
G_GNUC_INTERNAL void exo_register_classes (PyObject *d);
extern PyMethodDef exo_functions[];
/* Unfortunately pygtk doesn't export the following functions,
* that are required for the IconView, so we have to duplicate
* them here.
*/
#if !defined(pygtk_tree_path_from_pyobject)
GtkTreePath*
pygtk_tree_path_from_pyobject (PyObject *object)
{
if (PyString_Check(object))
{
GtkTreePath *path;
path = gtk_tree_path_new_from_string (PyString_AsString (object));
return path;
}
else if (PyInt_Check(object))
{
GtkTreePath *path;
path = gtk_tree_path_new();
gtk_tree_path_append_index(path, PyInt_AsLong(object));
return path;
}
else if (PyTuple_Check(object))
{
GtkTreePath *path;
guint len, i;
len = PyTuple_Size(object);
if (len < 1)
return NULL;
path = gtk_tree_path_new();
for (i = 0; i < len; i++)
{
PyObject *item = PyTuple_GetItem(object, i);
gint index = PyInt_AsLong(item);
if (PyErr_Occurred())
{
gtk_tree_path_free(path);
PyErr_Clear();
return NULL;
}
gtk_tree_path_append_index(path, index);
}
return path;
}
return NULL;
}
#endif
#if !defined(pygtk_tree_path_to_pyobject)
PyObject*
pygtk_tree_path_to_pyobject (GtkTreePath *path)
{
gint len, i, *indices;
PyObject *ret;
len = gtk_tree_path_get_depth (path);
indices = gtk_tree_path_get_indices (path);
ret = PyTuple_New (len);
for (i = 0; i < len; i++)
PyTuple_SetItem (ret, i, PyInt_FromLong (indices[i]));
return ret;
}
#endif
G_MODULE_EXPORT void
init_exo (void)
{
PyObject *d;
PyObject *m;
init_pygobject ();
m = Py_InitModule ("_exo", exo_functions);
d = PyModule_GetDict (m);
exo_register_classes (d);
exo_add_constants (m, "EXO_");
if (PyErr_Occurred ())
{
Py_FatalError ("cannot initialize module _exo");
return;
}
/* register additional types */
#define REGISTER_TYPE(type, name) \
type.ob_type = &PyType_Type; \
type.tp_alloc = PyType_GenericAlloc; \
type.tp_new = PyType_GenericNew; \
if (PyType_Ready (&type)) \
return; \
PyDict_SetItemString (d, name, (PyObject *) &type);
REGISTER_TYPE (PyExoBinding_Type, "Binding");
REGISTER_TYPE (PyExoMutualBinding_Type, "MutualBinding");
#undef REGISTER_TYPE
#if GTK_CHECK_VERSION (2, 18, 0)
/* use exo about dialog hook by default */
gtk_about_dialog_set_email_hook (exo_gtk_url_about_dialog_hook, NULL, NULL);
gtk_about_dialog_set_url_hook (exo_gtk_url_about_dialog_hook, NULL, NULL);
#endif
}
|