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
|
/* File : Fl_Bitmap.i */
//%module Fl_Bitmap
%feature("docstring") ::Fl_Bitmap
"""
The Fl_Bitmap class supports caching and drawing of mono-color
(bitmap) images. Images are drawn using the current color.
""" ;
%{
#include "FL/Fl_Bitmap.H"
%}
%typemap(in) const uchar *bits {
/* Check if the input support the buffer protocol */
Py_buffer view;
const void * buffer;
int failure = PyObject_GetBuffer($input, &view, PyBUF_CONTIG_RO);
if (!failure) {
// work with array object
buffer = view.buf;
PyBuffer_Release(&view);
$1 = (uchar *) buffer;
} else {
// work with list object
// clear the error from PyObject_GetBuffer
PyErr_Clear();
buffer=0;
/* Check if is a list */
if (PyList_Check($input)) {
Py_ssize_t 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_Bitmap::Fl_Bitmap(const char *bits, int W, int H);
%ignore Fl_Bitmap::id;
//%include "macros.i"
//CHANGE_OWNERSHIP(Fl_Bitmap)
%include "FL/Fl_Bitmap.H"
|