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
|
/* -*- Mode: C; c-basic-offset: 4 -*-
*
* mateweather.override: overrides for mateweather
*/
%%
headers
#define NO_IMPORT_PYGOBJECT
#include "pygobject.h"
#define MATEWEATHER_I_KNOW_THIS_IS_UNSTABLE
#include <libmateweather/mateweather-location.h>
#include <libmateweather/mateweather-timezone.h>
#include <libmateweather/location-entry.h>
#include <libmateweather/timezone-menu.h>
#include <libmateweather/mateweather-enum-types.h>
%%
modulename mateweather
%%
import gtk.Entry as PyGtkEntry_Type
import gtk.ComboBox as PyGtkComboBox_Type
%%
ignore
mateweather_location_get_weather
mateweather_location_free_children
mateweather_location_free_timezones
%%
ignore-glob
*_get_type
*_ref
*_unref
%%
override mateweather_location_get_children
static PyObject *
_wrap_mateweather_location_get_children (PyGObject *self, PyObject *args)
{
MateWeatherLocation *loc, **children;
int i;
PyObject *pychildren, *pychild;
loc = pyg_boxed_get (self, MateWeatherLocation);
children = mateweather_location_get_children (loc);
for (i = 0; children[i]; i++)
;
pychildren = PyList_New (i);
for (i = 0; children[i]; i++) {
pychild = pyg_boxed_new (MATEWEATHER_TYPE_LOCATION, children[i], TRUE, TRUE);
PyList_SetItem (pychildren, i, pychild);
}
mateweather_location_free_children (loc, children);
return pychildren;
}
%%
override mateweather_location_get_timezones
static PyObject *
_wrap_mateweather_location_get_timezones (PyGObject *self, PyObject *args)
{
MateWeatherLocation *loc;
MateWeatherTimezone **zones;
int i;
PyObject *pyzones, *pyzone;
loc = pyg_boxed_get (self, MateWeatherLocation);
zones = mateweather_location_get_timezones (loc);
for (i = 0; zones[i]; i++)
;
pyzones = PyList_New (i);
for (i = 0; zones[i]; i++) {
pyzone = pyg_boxed_new (MATEWEATHER_TYPE_TIMEZONE, zones[i], TRUE, TRUE);
PyList_SetItem (pyzones, i, pyzone);
}
mateweather_location_free_timezones (loc, zones);
return pyzones;
}
%%
override mateweather_location_get_coords
static PyObject *
_wrap_mateweather_location_get_coords (PyGObject *self, PyObject *args)
{
MateWeatherLocation *loc;
double latitude, longitude;
PyObject *ret;
loc = pyg_boxed_get (self, MateWeatherLocation);
if (!mateweather_location_has_coords (loc)) {
Py_INCREF (Py_None);
return Py_None;
}
mateweather_location_get_coords (loc, &latitude, &longitude);
ret = PyTuple_New (2);
PyTuple_SetItem (ret, 0, PyFloat_FromDouble (latitude));
PyTuple_SetItem (ret, 1, PyFloat_FromDouble (longitude));
return ret;
}
%%
new-constructor MATEWEATHER_TYPE_LOCATION_ENTRY
%%
new-constructor MATEWEATHER_TYPE_TIMEZONE_MENU
%%
|