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
|
/* File : fl_draw.i */
//%module fl_draw
%include "typemaps.i"
%{
#include "FL/fl_draw.H"
%}
%typemap(in) const uchar * {
/* Check if the input support the buffer protocol */
int size_buffer;
const void * buffer;
int failure = PyObject_AsReadBuffer($input,&buffer,&size_buffer);
if (!failure) {
// work with array object
$1 = (uchar *) buffer;
} else {
// work with list object
// clear the error from PyObject_AsReadBuffer
PyErr_Clear();
size_buffer=0;
buffer=0;
/* Check if is a list */
if (PyList_Check($input)) {
int size = PyList_Size($input);
int i = 0;
$1 = (uchar *) malloc((size+1)*sizeof(char));
for (i = 0; i < size; i++) {
PyObject *o = PyList_GetItem($input,i);
if (PyInt_Check(o))
$1[i] = (char)PyInt_AsLong(o);
else {
PyErr_SetString(PyExc_TypeError,"list must contain ints");
free($1);
return NULL;
}
}
$1[i] = 0;
} else {
PyErr_SetString(PyExc_TypeError,"not a list or does not support single-segment readable buffer interface");
return NULL;
}
}
}
%ignore fl_color(int c);
%ignore fl_draw_pixmap(const char* const* data, int x,int y,Fl_Color=FL_GRAY);
%ignore fl_measure_pixmap(const char* const* data, int &w, int &h);
%ignore fl_chord(int x, int y, int w, int h, double a1, double a2);
%ignore fl_read_image(uchar *p, int x,int y, int w, int h, int alpha=0);
%ignore fl_draw_image(Fl_Draw_Image_Cb, void*, int,int,int,int, int delta=3);
%ignore fl_draw_image_mono(Fl_Draw_Image_Cb, void*, int,int,int,int, int delta=1);
%apply int* OUTPUT { int& };
%include "FL/fl_draw.H"
|