]> git.saurik.com Git - wxWidgets.git/blame - wxPython/src/my_typemaps.i
Don't set mac.textcontrol-use-mlte any longer
[wxWidgets.git] / wxPython / src / my_typemaps.i
CommitLineData
7bf85405
RD
1/////////////////////////////////////////////////////////////////////////////
2// Name: my_typemaps.i
3// Purpose: Special typemaps specifically for wxPython.
4//
5// Author: Robin Dunn
6//
7// Created: 7/3/97
8// RCS-ID: $Id$
9// Copyright: (c) 1998 by Total Control Software
10// Licence: wxWindows license
11/////////////////////////////////////////////////////////////////////////////
12
13
d14a1e28
RD
14//----------------------------------------------------------------------
15// Typemaps to convert a list of items to an int (size) and an array
16
9f8a9f54
RD
17%define MAKE_INT_ARRAY_TYPEMAPS(NAME, ARR_NAME)
18 %typemap(in) (int NAME, int* ARR_NAME) {
19 $1 = PyList_Size($input);
20 $2 = int_LIST_helper($input);
21 if ($2 == NULL) SWIG_fail;
22 }
23
24 %typemap(freearg) (int NAME, int* ARR_NAME) {
25 if ($2) delete [] $2;
26 }
27%enddef
28
29MAKE_INT_ARRAY_TYPEMAPS(widths, widths_field)
30MAKE_INT_ARRAY_TYPEMAPS(styles, styles_field)
31
32
33
34// Same things for a wxString
d14a1e28
RD
35%typemap(in) (int choices, wxString* choices_array ) {
36 $1 = PyList_Size($input);
37 $2 = wxString_LIST_helper($input);
38 if ($2 == NULL) SWIG_fail;
39}
40%typemap(freearg) (int choices, wxString* choices_array ) {
41 if ($2) delete [] $2;
42}
43
44
9f8a9f54 45
d14a1e28 46//---------------------------------------------------------------------------
dd9f7fea 47// wxString typemaps
7bf85405
RD
48
49
a72f4631 50%typemap(in) wxString& (bool temp=false) {
d14a1e28
RD
51 $1 = wxString_in_helper($input);
52 if ($1 == NULL) SWIG_fail;
a72f4631 53 temp = true;
7bf85405 54}
d14a1e28
RD
55%typemap(freearg) wxString& {
56 if (temp$argnum)
57 delete $1;
7bf85405
RD
58}
59
54b29c1f 60%typemap(out) wxString& {
d14a1e28
RD
61%#if wxUSE_UNICODE
62 $result = PyUnicode_FromWideChar($1->c_str(), $1->Len());
63%#else
64 $result = PyString_FromStringAndSize($1->c_str(), $1->Len());
65%#endif
7bf85405
RD
66}
67
87c2245b 68
54b29c1f
RD
69%apply wxString& { wxString* }
70
71
72
73%typemap(out) wxString {
87c2245b 74%#if wxUSE_UNICODE
54b29c1f 75 $result = PyUnicode_FromWideChar($1.c_str(), $1.Len());
87c2245b 76%#else
54b29c1f 77 $result = PyString_FromStringAndSize($1.c_str(), $1.Len());
87c2245b
RD
78%#endif
79}
80
dd9f7fea 81%typemap(varout) wxString {
d14a1e28
RD
82%#if wxUSE_UNICODE
83 $result = PyUnicode_FromWideChar($1.c_str(), $1.Len());
84%#else
85 $result = PyString_FromStringAndSize($1.c_str(), $1.Len());
86%#endif
7bf85405
RD
87}
88
eec92d76 89
dd9f7fea
RD
90%typemap(in) wxString {
91 wxString* sptr = wxString_in_helper($input);
92 if (sptr == NULL) SWIG_fail;
93 $1 = *sptr;
94 delete sptr;
95}
ba933fa5
RD
96
97%typemap(typecheck, precedence=SWIG_TYPECHECK_POINTER) wxString& {
98 $1 = PyString_Check($input) || PyUnicode_Check($input);
99}
100
6fa9e461
RD
101//---------------------------------------------------------------------------
102// wxMemoryBuffer (needed for wxSTC)
103
a72f4631 104%typemap(in) wxMemoryBuffer& (bool temp=false) {
6fa9e461
RD
105 if (!PyString_Check($input)) {
106 PyErr_SetString(PyExc_TypeError, "String buffer expected");
107 SWIG_fail;
108 }
109 char* str = PyString_AS_STRING($input);
110 int len = PyString_GET_SIZE($input);
111 $1 = new wxMemoryBuffer(len);
a72f4631 112 temp = true;
6fa9e461 113 memcpy($1->GetData(), str, len);
97d6a30b 114 $1->SetDataLen(len);
6fa9e461
RD
115}
116
117%typemap(freearg) wxMemoryBuffer& {
118 if (temp$argnum) delete $1;
119}
120
121%typemap(out) wxMemoryBuffer {
122 $result = PyString_FromStringAndSize((char*)$1.GetData(), $1.GetDataLen());
123}
124
125
7bf85405 126
1110f5ce
RD
127%typemap(out) wxCharBuffer {
128 $result = PyString_FromString((char*)$1.data());
129}
130
131
d14a1e28
RD
132//---------------------------------------------------------------------------
133// Typemaps to convert Python sequence objects (tuples, etc.) to
134// wxSize, wxPoint, wxRealPoint, and wxRect.
7bf85405
RD
135
136
d14a1e28
RD
137%typemap(in) wxSize& (wxSize temp) {
138 $1 = &temp;
139 if ( ! wxSize_helper($input, &$1)) SWIG_fail;
7bf85405 140}
d14a1e28
RD
141%typemap(typecheck, precedence=SWIG_TYPECHECK_POINTER) wxSize& {
142 $1 = wxPySimple_typecheck($input, wxT("wxSize"), 2);
7bf85405
RD
143}
144
145
d14a1e28
RD
146%typemap(in) wxPoint& (wxPoint temp) {
147 $1 = &temp;
148 if ( ! wxPoint_helper($input, &$1)) SWIG_fail;
7bf85405 149}
d14a1e28
RD
150%typemap(typecheck, precedence=SWIG_TYPECHECK_POINTER) wxPoint& {
151 $1 = wxPySimple_typecheck($input, wxT("wxPoint"), 2);
10ef30eb
RD
152}
153
10ef30eb 154
d14a1e28
RD
155%typemap(in) wxRealPoint& (wxRealPoint temp) {
156 $1 = &temp;
157 if ( ! wxRealPoint_helper($input, &$1)) SWIG_fail;
10ef30eb 158}
d14a1e28
RD
159%typemap(typecheck, precedence=SWIG_TYPECHECK_POINTER) wxRealPoint& {
160 $1 = wxPySimple_typecheck($input, wxT("wxRealPoint"), 2);
10ef30eb 161}
2f90df85
RD
162
163
d14a1e28
RD
164%typemap(in) wxRect& (wxRect temp) {
165 $1 = &temp;
166 if ( ! wxRect_helper($input, &$1)) SWIG_fail;
2f90df85 167}
d14a1e28
RD
168%typemap(typecheck, precedence=SWIG_TYPECHECK_POINTER) wxRect& {
169 $1 = wxPySimple_typecheck($input, wxT("wxRect"), 4);
2f90df85
RD
170}
171
7bf85405 172
d14a1e28
RD
173%typemap(in) wxPoint2D& (wxPoint2D temp) {
174 $1 = &temp;
175 if ( ! wxPoint2D_helper($input, &$1)) SWIG_fail;
2f90df85 176}
d14a1e28
RD
177%typemap(typecheck, precedence=SWIG_TYPECHECK_POINTER) wxPoint2D& {
178 $1 = wxPySimple_typecheck($input, wxT("wxPoint2D"), 2);
1e4a197e
RD
179}
180
d14a1e28 181
f6bcfd97
BP
182//---------------------------------------------------------------------------
183// Typemap to convert strings to wxColour. Two string formats are accepted,
de20db99 184// either a colour name, or a hex colour spec like "#RRGGBB"
f6bcfd97 185
d14a1e28
RD
186%typemap(in) wxColour& (wxColour temp) {
187 $1 = &temp;
188 if ( ! wxColour_helper($input, &$1)) SWIG_fail;
f6bcfd97 189}
d14a1e28
RD
190%typemap(typecheck, precedence=SWIG_TYPECHECK_POINTER) wxColour& {
191 $1 = wxColour_typecheck($input);
192}
193
194
f6bcfd97 195
b37c7e1d
RD
196//---------------------------------------------------------------------------
197// Typemap for wxArrayString from Python sequence objects
198
a72f4631 199%typemap(in) wxArrayString& (bool temp=false) {
d14a1e28 200 if (! PySequence_Check($input)) {
b37c7e1d 201 PyErr_SetString(PyExc_TypeError, "Sequence of strings expected.");
d14a1e28 202 SWIG_fail;
b37c7e1d 203 }
d14a1e28 204 $1 = new wxArrayString;
a72f4631 205 temp = true;
d14a1e28 206 int i, len=PySequence_Length($input);
b37c7e1d 207 for (i=0; i<len; i++) {
d14a1e28 208 PyObject* item = PySequence_GetItem($input, i);
9899bd5b 209 wxString* s = wxString_in_helper(item);
3eb1aad7 210 if (PyErr_Occurred()) SWIG_fail;
9899bd5b
RD
211 $1->Add(*s);
212 delete s;
b37c7e1d 213 Py_DECREF(item);
b37c7e1d
RD
214 }
215}
216
d14a1e28 217%typemap(freearg) wxArrayString& {
c2e6d970 218 if (temp$argnum) delete $1;
b37c7e1d 219}
7bf85405 220
293a0a86
RD
221//---------------------------------------------------------------------------
222// Typemap for wxArrayInt from Python sequence objects
223
a72f4631 224%typemap(in) wxArrayInt& (bool temp=false) {
d14a1e28 225 if (! PySequence_Check($input)) {
293a0a86 226 PyErr_SetString(PyExc_TypeError, "Sequence of integers expected.");
d14a1e28 227 SWIG_fail;
293a0a86 228 }
d14a1e28 229 $1 = new wxArrayInt;
a72f4631 230 temp = true;
d14a1e28 231 int i, len=PySequence_Length($input);
293a0a86 232 for (i=0; i<len; i++) {
d14a1e28 233 PyObject* item = PySequence_GetItem($input, i);
293a0a86 234 PyObject* number = PyNumber_Int(item);
d14a1e28 235 $1->Add(PyInt_AS_LONG(number));
293a0a86
RD
236 Py_DECREF(item);
237 Py_DECREF(number);
238 }
239}
240
d14a1e28 241%typemap(freearg) wxArrayInt& {
c2e6d970 242 if (temp$argnum) delete $1;
293a0a86
RD
243}
244
245
d14a1e28
RD
246//---------------------------------------------------------------------------
247// Typemaps to convert an array of ints to a list for return values
248%typemap(out) wxArrayInt& {
249 $result = PyList_New(0);
1e4a197e 250 size_t idx;
d14a1e28
RD
251 for (idx = 0; idx < $1->GetCount(); idx += 1) {
252 PyObject* val = PyInt_FromLong( $1->Item(idx) );
253 PyList_Append($result, val);
1e4a197e
RD
254 Py_DECREF(val);
255 }
256}
257
d14a1e28
RD
258%typemap(out) wxArrayInt {
259 $result = PyList_New(0);
1e4a197e 260 size_t idx;
d14a1e28
RD
261 for (idx = 0; idx < $1.GetCount(); idx += 1) {
262 PyObject* val = PyInt_FromLong( $1.Item(idx) );
263 PyList_Append($result, val);
1e4a197e
RD
264 Py_DECREF(val);
265 }
1e4a197e
RD
266}
267
268
7bf85405 269
6d450e1a 270// Typemaps to convert an array of strings to a list for return values
d14a1e28
RD
271%typemap(out) wxArrayString& {
272 $result = wxArrayString2PyList_helper(*$1);
273}
7bf85405 274
d14a1e28
RD
275%typemap(out) wxArrayString {
276 $result = wxArrayString2PyList_helper($1);
7bf85405
RD
277}
278
279
e07fb96d
RD
280//---------------------------------------------------------------------------
281
da32eb53
RD
282%typemap(out) bool {
283 $result = $1 ? Py_True : Py_False; Py_INCREF($result);
284}
1e4a197e 285
d19a83a5 286
56a52e90
RD
287//---------------------------------------------------------------------------
288// wxFileOffset, can be a 32-bit or a 64-bit integer
289
290%typemap(in) wxFileOffset {
291 if (sizeof(wxFileOffset) > sizeof(long))
292 $1 = PyLong_AsLongLong($input);
293 else
294 $1 = PyInt_AsLong($input);
295}
296
297%typemap(out) wxFileOffset {
298 if (sizeof(wxFileOffset) > sizeof(long))
299 $result = PyLong_FromLongLong($1);
300 else
301 $result = PyInt_FromLong($1);
302}
303
304
d19a83a5
RD
305//---------------------------------------------------------------------------
306// Typemap for when GDI objects are returned by reference. This will cause a
307// copy to be made instead of returning a reference to the same instance. The
308// GDI object's internal refcounting scheme will do a copy-on-write of the
309// internal data as needed.
310
311// These too?
312//, wxRegion&, wxPalette&
313
314%typemap(out) wxBrush&, wxPen&, wxFont&, wxBitmap&, wxIcon&, wxCursor& {
315 $*1_ltype* resultptr = new $*1_ltype(*$1);
316 $result = SWIG_NewPointerObj((void*)(resultptr), $1_descriptor, 1);
317}
318
319
9416aa89
RD
320//---------------------------------------------------------------------------
321// Typemaps to convert return values that are base class pointers
322// to the real derived type, if possible. See wxPyMake_wxObject in
323// helpers.cpp
324
b39c3fa0
RD
325// NOTE: For those classes that also call _setOORInfo these typemaps should be
326// disabled for the constructor.
327
6d450e1a
RD
328%typemap(out) wxEvtHandler* { $result = wxPyMake_wxObject($1, $owner); }
329%typemap(out) wxMenu* { $result = wxPyMake_wxObject($1, $owner); }
330%typemap(out) wxValidator* { $result = wxPyMake_wxObject($1, $owner); }
331
332%typemap(out) wxApp* { $result = wxPyMake_wxObject($1, $owner); }
333%typemap(out) wxPyApp* { $result = wxPyMake_wxObject($1, $owner); }
334%typemap(out) wxDC* { $result = wxPyMake_wxObject($1, $owner); }
335%typemap(out) wxFSFile* { $result = wxPyMake_wxObject($1, $owner); }
336%typemap(out) wxFileSystem* { $result = wxPyMake_wxObject($1, $owner); }
6d450e1a 337%typemap(out) wxImageList* { $result = wxPyMake_wxObject($1, $owner); }
1bad23bc 338%typemap(out) wxImage* { $result = wxPyMake_wxObject($1, $owner); }
6d450e1a
RD
339%typemap(out) wxListItem* { $result = wxPyMake_wxObject($1, $owner); }
340%typemap(out) wxMenuItem* { $result = wxPyMake_wxObject($1, $owner); }
341%typemap(out) wxMouseEvent* { $result = wxPyMake_wxObject($1, $owner); }
342%typemap(out) wxObject* { $result = wxPyMake_wxObject($1, $owner); }
343%typemap(out) wxPyPrintout* { $result = wxPyMake_wxObject($1, $owner); }
344%typemap(out) wxToolBarToolBase* { $result = wxPyMake_wxObject($1, $owner); }
345%typemap(out) wxToolTip* { $result = wxPyMake_wxObject($1, $owner); }
346
347
348%typemap(out) wxBitmapButton* { $result = wxPyMake_wxObject($1, $owner); }
349%typemap(out) wxButton* { $result = wxPyMake_wxObject($1, $owner); }
350%typemap(out) wxControl* { $result = wxPyMake_wxObject($1, $owner); }
351%typemap(out) wxFrame* { $result = wxPyMake_wxObject($1, $owner); }
352%typemap(out) wxGrid* { $result = wxPyMake_wxObject($1, $owner); }
b39c3fa0 353//%typemap(out) wxListCtrl* { $result = wxPyMake_wxObject($1, $owner); }
6d450e1a
RD
354%typemap(out) wxMDIChildFrame* { $result = wxPyMake_wxObject($1, $owner); }
355%typemap(out) wxMDIClientWindow* { $result = wxPyMake_wxObject($1, $owner); }
356%typemap(out) wxMenuBar* { $result = wxPyMake_wxObject($1, $owner); }
357%typemap(out) wxNotebook* { $result = wxPyMake_wxObject($1, $owner); }
358%typemap(out) wxStaticBox* { $result = wxPyMake_wxObject($1, $owner); }
359%typemap(out) wxStatusBar* { $result = wxPyMake_wxObject($1, $owner); }
360%typemap(out) wxTextCtrl* { $result = wxPyMake_wxObject($1, $owner); }
361%typemap(out) wxToolBar* { $result = wxPyMake_wxObject($1, $owner); }
362%typemap(out) wxToolBarBase* { $result = wxPyMake_wxObject($1, $owner); }
b39c3fa0 363//%typemap(out) wxTreeCtrl* { $result = wxPyMake_wxObject($1, $owner); }
6d450e1a
RD
364%typemap(out) wxPyTreeCtrl* { $result = wxPyMake_wxObject($1, $owner); }
365%typemap(out) wxWindow* { $result = wxPyMake_wxObject($1, $owner); }
6d450e1a
RD
366%typemap(out) wxPyHtmlWindow* { $result = wxPyMake_wxObject($1, $owner); }
367%typemap(out) wxWizardPage* { $result = wxPyMake_wxObject($1, $owner); }
b39c3fa0 368%typemap(out) wxPyWizardPage* { $result = wxPyMake_wxObject($1, $owner); }
6d450e1a
RD
369%typemap(out) wxPanel* { $result = wxPyMake_wxObject($1, $owner); }
370%typemap(out) wxDialog* { $result = wxPyMake_wxObject($1, $owner); }
371%typemap(out) wxScrolledWindow* { $result = wxPyMake_wxObject($1, $owner); }
372
f3c2a60b 373%typemap(out) wxSizer* { $result = wxPyMake_wxObject($1, $owner); }
6d450e1a 374
9416aa89 375
7bf85405 376//---------------------------------------------------------------------------
2f90df85 377//---------------------------------------------------------------------------
7bf85405 378
9416aa89
RD
379
380
381
382
383