Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/boards/py-gcompris-boardconfig.c
blob: 03c926a57ad3ae5c84020d79d26f1177cadba2d0 (plain)
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
#include "py-gcompris-boardconfig.h"
#define NO_IMPORT_PYGOBJECT 1
#include <pygobject.h>
#include "py-gcompris-profile.h"
#include "py-gcompris-board.h"

staticforward PyTypeObject pyGcomprisBoardConfigType;

/* Special function created for the python plugin to be able to create
 * a pyGcomprisBoardObject form the existing GcomprisBoard structure
 */
PyObject*
gcompris_new_pyGcomprisBoardConfigObject(GcomprisBoardConf* boardconfig)
{
  pyGcomprisBoardConfigObject* theboardconf = NULL;

  theboardconf = PyObject_New(pyGcomprisBoardConfigObject, &pyGcomprisBoardConfigType);
  if (theboardconf!=NULL)
    theboardconf->cdata = boardconfig ;

  return (PyObject*)theboardconf;
}


/* Free the python gcompris board config */
static void
pyGcomprisBoardConfigType_dealloc(pyGcomprisBoardConfigObject *self)
{
  self->cdata = NULL;
  PyObject_DEL(self);
}


/* Methods defined in the pyGcomprisBoardConfig class */
static PyMethodDef pyGcomprisBoardConfigType_methods[] = {
        {NULL,          NULL}           /* sentinel */
};


/* Return the value of the members contained in the GcomprisBoardConfig structure */
static PyObject *
pyGcomprisBoardConfigType_getattr(pyGcomprisBoardConfigObject *self, char *name)
{
  return Py_FindMethod(pyGcomprisBoardConfigType_methods, (PyObject *)self, name);

}

/* Set the value of a GcomprisBoardConfig structure member */
static int
pyGcomprisBoardConfigType_setattr(pyGcomprisBoardConfigObject *self, char *name, PyObject *v)
{
  /* members are supposed to be read only */

  return -1;
}

static PyTypeObject pyGcomprisBoardConfigType = {
#if defined(WIN32)
  PyObject_HEAD_INIT(NULL)
#else /* ! WIN32 */
  PyObject_HEAD_INIT(&PyType_Type)
#endif
  0,                                        /*ob_size*/
  "pyGcomprisBoardConfig",                        /*tp_name*/
  sizeof(pyGcomprisBoardConfigObject),            /*tp_basicsize*/
  0,                                        /*tp_itemsize*/
  /* methods */
  (destructor)pyGcomprisBoardConfigType_dealloc,  /*tp_dealloc*/
  0,                                        /*tp_print*/
  (getattrfunc)pyGcomprisBoardConfigType_getattr, /*tp_getattr*/
  (setattrfunc)pyGcomprisBoardConfigType_setattr, /*tp_setattr*/
  0,                                        /*tp_compare*/
  0,                                        /*tp_repr*/
  0,                                        /*tp_as_number*/
  0,                                        /*tp_as_sequence*/
  0,                                        /*tp_as_mapping*/
  0,                                        /*tp_hash*/
};