]>
Commit | Line | Data |
---|---|---|
d24a34bb RD |
1 | /* |
2 | * FILE : gtk/printfw.cpp | |
3 | * | |
4 | * This file was automatically generated by : | |
5 | * Simplified Wrapper and Interface Generator (SWIG) | |
9cce9de1 | 6 | * Version 1.1 (Build 810) |
d24a34bb RD |
7 | * |
8 | * Portions Copyright (c) 1995-1998 | |
9 | * The University of Utah and The Regents of the University of California. | |
10 | * Permission is granted to distribute this file in any manner provided | |
11 | * this notice remains intact. | |
12 | * | |
13 | * Do not make changes to this file--changes will be lost! | |
14 | * | |
15 | */ | |
16 | ||
17 | ||
18 | #define SWIGCODE | |
19 | /* Implementation : PYTHON */ | |
20 | ||
21 | #define SWIGPYTHON | |
22 | #include <string.h> | |
23 | #include <stdlib.h> | |
24 | /* Definitions for Windows/Unix exporting */ | |
25 | #if defined(__WIN32__) | |
26 | # if defined(_MSC_VER) | |
2d091820 | 27 | # define SWIGEXPORT(a) __declspec(dllexport) a |
d24a34bb RD |
28 | # else |
29 | # if defined(__BORLANDC__) | |
2d091820 | 30 | # define SWIGEXPORT(a) a _export |
d24a34bb | 31 | # else |
2d091820 | 32 | # define SWIGEXPORT(a) a |
d24a34bb RD |
33 | # endif |
34 | # endif | |
35 | #else | |
2d091820 | 36 | # define SWIGEXPORT(a) a |
d24a34bb RD |
37 | #endif |
38 | ||
39 | #ifdef __cplusplus | |
40 | extern "C" { | |
41 | #endif | |
42 | #include "Python.h" | |
43 | extern void SWIG_MakePtr(char *, void *, char *); | |
44 | extern void SWIG_RegisterMapping(char *, char *, void *(*)(void *)); | |
45 | extern char *SWIG_GetPtr(char *, void **, char *); | |
2d091820 | 46 | extern char *SWIG_GetPtrObj(PyObject *, void **, char *); |
d24a34bb RD |
47 | extern void SWIG_addvarlink(PyObject *, char *, PyObject *(*)(void), int (*)(PyObject *)); |
48 | extern PyObject *SWIG_newvarlink(void); | |
49 | #ifdef __cplusplus | |
50 | } | |
51 | #endif | |
d24a34bb RD |
52 | #define SWIG_init initprintfwc |
53 | ||
54 | #define SWIG_name "printfwc" | |
55 | ||
56 | #include "helpers.h" | |
57 | #include <wx/print.h> | |
58 | #include <wx/printdlg.h> | |
59 | ||
4120ef2b RD |
60 | #include "printfw.h" |
61 | ||
d24a34bb RD |
62 | static PyObject* l_output_helper(PyObject* target, PyObject* o) { |
63 | PyObject* o2; | |
64 | PyObject* o3; | |
65 | if (!target) { | |
66 | target = o; | |
67 | } else if (target == Py_None) { | |
68 | Py_DECREF(Py_None); | |
69 | target = o; | |
70 | } else { | |
71 | if (!PyList_Check(target)) { | |
72 | o2 = target; | |
73 | target = PyList_New(0); | |
74 | PyList_Append(target, o2); | |
75 | Py_XDECREF(o2); | |
76 | } | |
77 | PyList_Append(target,o); | |
78 | Py_XDECREF(o); | |
79 | } | |
80 | return target; | |
81 | } | |
82 | ||
83 | static PyObject* t_output_helper(PyObject* target, PyObject* o) { | |
84 | PyObject* o2; | |
85 | PyObject* o3; | |
86 | ||
87 | if (!target) { | |
88 | target = o; | |
89 | } else if (target == Py_None) { | |
90 | Py_DECREF(Py_None); | |
91 | target = o; | |
92 | } else { | |
93 | if (!PyTuple_Check(target)) { | |
94 | o2 = target; | |
95 | target = PyTuple_New(1); | |
96 | PyTuple_SetItem(target, 0, o2); | |
97 | } | |
98 | o3 = PyTuple_New(1); | |
99 | PyTuple_SetItem(o3, 0, o); | |
100 | ||
101 | o2 = target; | |
102 | target = PySequence_Concat(o2, o3); | |
103 | Py_DECREF(o2); | |
104 | Py_DECREF(o3); | |
105 | } | |
106 | return target; | |
107 | } | |
108 | ||
d24a34bb RD |
109 | static char* wxStringErrorMsg = "string type is required for parameter"; |
110 | ||
4120ef2b RD |
111 | |
112 | ||
113 | // Since this one would be tough and ugly to do with the Macros... | |
114 | void wxPyPrintout::GetPageInfo(int *minPage, int *maxPage, int *pageFrom, int *pageTo) { | |
54b96882 | 115 | bool hadErr = FALSE; |
4120ef2b RD |
116 | |
117 | bool doSave = wxPyRestoreThread(); | |
118 | if (m_myInst.findCallback("GetPageInfo")) { | |
119 | PyObject* result = m_myInst.callCallbackObj(Py_BuildValue("()")); | |
120 | if (result && PyTuple_Check(result) && PyTuple_Size(result) == 4) { | |
121 | PyObject* val; | |
122 | ||
123 | val = PyTuple_GetItem(result, 0); | |
124 | if (PyInt_Check(val)) *minPage = PyInt_AsLong(val); | |
54b96882 | 125 | else hadErr = TRUE; |
4120ef2b RD |
126 | |
127 | val = PyTuple_GetItem(result, 1); | |
128 | if (PyInt_Check(val)) *maxPage = PyInt_AsLong(val); | |
54b96882 | 129 | else hadErr = TRUE; |
4120ef2b RD |
130 | |
131 | val = PyTuple_GetItem(result, 2); | |
132 | if (PyInt_Check(val)) *pageFrom = PyInt_AsLong(val); | |
54b96882 | 133 | else hadErr = TRUE; |
4120ef2b RD |
134 | |
135 | val = PyTuple_GetItem(result, 3); | |
136 | if (PyInt_Check(val)) *pageTo = PyInt_AsLong(val); | |
54b96882 | 137 | else hadErr = TRUE; |
d24a34bb RD |
138 | } |
139 | else | |
54b96882 | 140 | hadErr = TRUE; |
9cce9de1 | 141 | |
4120ef2b RD |
142 | if (hadErr) { |
143 | PyErr_SetString(PyExc_TypeError, "GetPageInfo should return a tuple of 4 integers."); | |
144 | PyErr_Print(); | |
145 | } | |
146 | Py_DECREF(result); | |
d24a34bb | 147 | } |
4120ef2b | 148 | else |
d24a34bb | 149 | wxPrintout::GetPageInfo(minPage, maxPage, pageFrom, pageTo); |
d24a34bb | 150 | |
4120ef2b RD |
151 | wxPySaveThread(doSave); |
152 | } | |
153 | ||
154 | void wxPyPrintout::base_GetPageInfo(int *minPage, int *maxPage, int *pageFrom, int *pageTo) { | |
155 | wxPrintout::GetPageInfo(minPage, maxPage, pageFrom, pageTo); | |
156 | } | |
157 | ||
9cce9de1 RD |
158 | |
159 | IMP_PYCALLBACK_BOOL_INTINT(wxPyPrintout, wxPrintout, OnBeginDocument); | |
160 | IMP_PYCALLBACK__(wxPyPrintout, wxPrintout, OnEndDocument); | |
161 | IMP_PYCALLBACK__(wxPyPrintout, wxPrintout, OnBeginPrinting); | |
162 | IMP_PYCALLBACK__(wxPyPrintout, wxPrintout, OnEndPrinting); | |
163 | IMP_PYCALLBACK__(wxPyPrintout, wxPrintout, OnPreparePrinting); | |
164 | IMP_PYCALLBACK_BOOL_INT_pure(wxPyPrintout, wxPrintout, OnPrintPage); | |
165 | IMP_PYCALLBACK_BOOL_INT(wxPyPrintout, wxPrintout, HasPage); | |
166 | ||
167 | ||
2d091820 RD |
168 | #ifdef __cplusplus |
169 | extern "C" { | |
170 | #endif | |
d24a34bb | 171 | #define new_wxPrintData() (new wxPrintData()) |
107e4716 | 172 | static PyObject *_wrap_new_wxPrintData(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
173 | PyObject * _resultobj; |
174 | wxPrintData * _result; | |
107e4716 | 175 | char *_kwnames[] = { NULL }; |
d24a34bb RD |
176 | char _ptemp[128]; |
177 | ||
178 | self = self; | |
107e4716 | 179 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxPrintData",_kwnames)) |
d24a34bb RD |
180 | return NULL; |
181 | { | |
182 | wxPy_BEGIN_ALLOW_THREADS; | |
183 | _result = (wxPrintData *)new_wxPrintData(); | |
184 | ||
185 | wxPy_END_ALLOW_THREADS; | |
2d091820 RD |
186 | } if (_result) { |
187 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPrintData_p"); | |
188 | _resultobj = Py_BuildValue("s",_ptemp); | |
189 | } else { | |
190 | Py_INCREF(Py_None); | |
191 | _resultobj = Py_None; | |
192 | } | |
d24a34bb RD |
193 | return _resultobj; |
194 | } | |
195 | ||
196 | #define delete_wxPrintData(_swigobj) (delete _swigobj) | |
107e4716 | 197 | static PyObject *_wrap_delete_wxPrintData(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
198 | PyObject * _resultobj; |
199 | wxPrintData * _arg0; | |
2d091820 | 200 | PyObject * _argo0 = 0; |
107e4716 | 201 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
202 | |
203 | self = self; | |
107e4716 | 204 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:delete_wxPrintData",_kwnames,&_argo0)) |
d24a34bb | 205 | return NULL; |
2d091820 RD |
206 | if (_argo0) { |
207 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
208 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintData_p")) { | |
d24a34bb RD |
209 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of delete_wxPrintData. Expected _wxPrintData_p."); |
210 | return NULL; | |
211 | } | |
212 | } | |
213 | { | |
214 | wxPy_BEGIN_ALLOW_THREADS; | |
215 | delete_wxPrintData(_arg0); | |
216 | ||
217 | wxPy_END_ALLOW_THREADS; | |
218 | } Py_INCREF(Py_None); | |
219 | _resultobj = Py_None; | |
220 | return _resultobj; | |
221 | } | |
222 | ||
223 | #define wxPrintData_GetNoCopies(_swigobj) (_swigobj->GetNoCopies()) | |
107e4716 | 224 | static PyObject *_wrap_wxPrintData_GetNoCopies(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
225 | PyObject * _resultobj; |
226 | int _result; | |
227 | wxPrintData * _arg0; | |
2d091820 | 228 | PyObject * _argo0 = 0; |
107e4716 | 229 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
230 | |
231 | self = self; | |
107e4716 | 232 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintData_GetNoCopies",_kwnames,&_argo0)) |
d24a34bb | 233 | return NULL; |
2d091820 RD |
234 | if (_argo0) { |
235 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
236 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintData_p")) { | |
d24a34bb RD |
237 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintData_GetNoCopies. Expected _wxPrintData_p."); |
238 | return NULL; | |
239 | } | |
240 | } | |
241 | { | |
242 | wxPy_BEGIN_ALLOW_THREADS; | |
243 | _result = (int )wxPrintData_GetNoCopies(_arg0); | |
244 | ||
245 | wxPy_END_ALLOW_THREADS; | |
246 | } _resultobj = Py_BuildValue("i",_result); | |
247 | return _resultobj; | |
248 | } | |
249 | ||
250 | #define wxPrintData_GetCollate(_swigobj) (_swigobj->GetCollate()) | |
107e4716 | 251 | static PyObject *_wrap_wxPrintData_GetCollate(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
252 | PyObject * _resultobj; |
253 | bool _result; | |
254 | wxPrintData * _arg0; | |
2d091820 | 255 | PyObject * _argo0 = 0; |
107e4716 | 256 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
257 | |
258 | self = self; | |
107e4716 | 259 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintData_GetCollate",_kwnames,&_argo0)) |
d24a34bb | 260 | return NULL; |
2d091820 RD |
261 | if (_argo0) { |
262 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
263 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintData_p")) { | |
d24a34bb RD |
264 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintData_GetCollate. Expected _wxPrintData_p."); |
265 | return NULL; | |
266 | } | |
267 | } | |
268 | { | |
269 | wxPy_BEGIN_ALLOW_THREADS; | |
270 | _result = (bool )wxPrintData_GetCollate(_arg0); | |
271 | ||
272 | wxPy_END_ALLOW_THREADS; | |
273 | } _resultobj = Py_BuildValue("i",_result); | |
274 | return _resultobj; | |
275 | } | |
276 | ||
277 | #define wxPrintData_GetOrientation(_swigobj) (_swigobj->GetOrientation()) | |
107e4716 | 278 | static PyObject *_wrap_wxPrintData_GetOrientation(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
279 | PyObject * _resultobj; |
280 | int _result; | |
281 | wxPrintData * _arg0; | |
2d091820 | 282 | PyObject * _argo0 = 0; |
107e4716 | 283 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
284 | |
285 | self = self; | |
107e4716 | 286 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintData_GetOrientation",_kwnames,&_argo0)) |
d24a34bb | 287 | return NULL; |
2d091820 RD |
288 | if (_argo0) { |
289 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
290 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintData_p")) { | |
d24a34bb RD |
291 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintData_GetOrientation. Expected _wxPrintData_p."); |
292 | return NULL; | |
293 | } | |
294 | } | |
295 | { | |
296 | wxPy_BEGIN_ALLOW_THREADS; | |
297 | _result = (int )wxPrintData_GetOrientation(_arg0); | |
298 | ||
299 | wxPy_END_ALLOW_THREADS; | |
300 | } _resultobj = Py_BuildValue("i",_result); | |
301 | return _resultobj; | |
302 | } | |
303 | ||
304 | #define wxPrintData_GetPrinterName(_swigobj) (_swigobj->GetPrinterName()) | |
107e4716 | 305 | static PyObject *_wrap_wxPrintData_GetPrinterName(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
306 | PyObject * _resultobj; |
307 | wxString * _result; | |
308 | wxPrintData * _arg0; | |
2d091820 | 309 | PyObject * _argo0 = 0; |
107e4716 | 310 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
311 | |
312 | self = self; | |
107e4716 | 313 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintData_GetPrinterName",_kwnames,&_argo0)) |
d24a34bb | 314 | return NULL; |
2d091820 RD |
315 | if (_argo0) { |
316 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
317 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintData_p")) { | |
d24a34bb RD |
318 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintData_GetPrinterName. Expected _wxPrintData_p."); |
319 | return NULL; | |
320 | } | |
321 | } | |
322 | { | |
323 | wxPy_BEGIN_ALLOW_THREADS; | |
324 | const wxString & _result_ref = wxPrintData_GetPrinterName(_arg0); | |
325 | _result = (wxString *) &_result_ref; | |
326 | ||
327 | wxPy_END_ALLOW_THREADS; | |
328 | }{ | |
e02c03a4 | 329 | _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len()); |
d24a34bb RD |
330 | } |
331 | return _resultobj; | |
332 | } | |
333 | ||
334 | #define wxPrintData_GetColour(_swigobj) (_swigobj->GetColour()) | |
107e4716 | 335 | static PyObject *_wrap_wxPrintData_GetColour(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
336 | PyObject * _resultobj; |
337 | bool _result; | |
338 | wxPrintData * _arg0; | |
2d091820 | 339 | PyObject * _argo0 = 0; |
107e4716 | 340 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
341 | |
342 | self = self; | |
107e4716 | 343 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintData_GetColour",_kwnames,&_argo0)) |
d24a34bb | 344 | return NULL; |
2d091820 RD |
345 | if (_argo0) { |
346 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
347 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintData_p")) { | |
d24a34bb RD |
348 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintData_GetColour. Expected _wxPrintData_p."); |
349 | return NULL; | |
350 | } | |
351 | } | |
352 | { | |
353 | wxPy_BEGIN_ALLOW_THREADS; | |
354 | _result = (bool )wxPrintData_GetColour(_arg0); | |
355 | ||
356 | wxPy_END_ALLOW_THREADS; | |
357 | } _resultobj = Py_BuildValue("i",_result); | |
358 | return _resultobj; | |
359 | } | |
360 | ||
361 | #define wxPrintData_GetDuplex(_swigobj) (_swigobj->GetDuplex()) | |
107e4716 | 362 | static PyObject *_wrap_wxPrintData_GetDuplex(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
363 | PyObject * _resultobj; |
364 | wxDuplexMode _result; | |
365 | wxPrintData * _arg0; | |
2d091820 | 366 | PyObject * _argo0 = 0; |
107e4716 | 367 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
368 | |
369 | self = self; | |
107e4716 | 370 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintData_GetDuplex",_kwnames,&_argo0)) |
d24a34bb | 371 | return NULL; |
2d091820 RD |
372 | if (_argo0) { |
373 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
374 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintData_p")) { | |
d24a34bb RD |
375 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintData_GetDuplex. Expected _wxPrintData_p."); |
376 | return NULL; | |
377 | } | |
378 | } | |
379 | { | |
380 | wxPy_BEGIN_ALLOW_THREADS; | |
381 | _result = (wxDuplexMode )wxPrintData_GetDuplex(_arg0); | |
382 | ||
383 | wxPy_END_ALLOW_THREADS; | |
384 | } _resultobj = Py_BuildValue("i",_result); | |
385 | return _resultobj; | |
386 | } | |
387 | ||
388 | #define wxPrintData_GetPaperId(_swigobj) (_swigobj->GetPaperId()) | |
107e4716 | 389 | static PyObject *_wrap_wxPrintData_GetPaperId(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
390 | PyObject * _resultobj; |
391 | wxPaperSize _result; | |
392 | wxPrintData * _arg0; | |
2d091820 | 393 | PyObject * _argo0 = 0; |
107e4716 | 394 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
395 | |
396 | self = self; | |
107e4716 | 397 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintData_GetPaperId",_kwnames,&_argo0)) |
d24a34bb | 398 | return NULL; |
2d091820 RD |
399 | if (_argo0) { |
400 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
401 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintData_p")) { | |
d24a34bb RD |
402 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintData_GetPaperId. Expected _wxPrintData_p."); |
403 | return NULL; | |
404 | } | |
405 | } | |
406 | { | |
407 | wxPy_BEGIN_ALLOW_THREADS; | |
408 | _result = (wxPaperSize )wxPrintData_GetPaperId(_arg0); | |
409 | ||
410 | wxPy_END_ALLOW_THREADS; | |
411 | } _resultobj = Py_BuildValue("i",_result); | |
412 | return _resultobj; | |
413 | } | |
414 | ||
415 | #define wxPrintData_GetPaperSize(_swigobj) (_swigobj->GetPaperSize()) | |
107e4716 | 416 | static PyObject *_wrap_wxPrintData_GetPaperSize(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
417 | PyObject * _resultobj; |
418 | wxSize * _result; | |
419 | wxPrintData * _arg0; | |
2d091820 | 420 | PyObject * _argo0 = 0; |
107e4716 | 421 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
422 | char _ptemp[128]; |
423 | ||
424 | self = self; | |
107e4716 | 425 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintData_GetPaperSize",_kwnames,&_argo0)) |
d24a34bb | 426 | return NULL; |
2d091820 RD |
427 | if (_argo0) { |
428 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
429 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintData_p")) { | |
d24a34bb RD |
430 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintData_GetPaperSize. Expected _wxPrintData_p."); |
431 | return NULL; | |
432 | } | |
433 | } | |
434 | { | |
435 | wxPy_BEGIN_ALLOW_THREADS; | |
436 | const wxSize & _result_ref = wxPrintData_GetPaperSize(_arg0); | |
437 | _result = (wxSize *) &_result_ref; | |
438 | ||
439 | wxPy_END_ALLOW_THREADS; | |
2d091820 RD |
440 | } if (_result) { |
441 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxSize_p"); | |
442 | _resultobj = Py_BuildValue("s",_ptemp); | |
443 | } else { | |
444 | Py_INCREF(Py_None); | |
445 | _resultobj = Py_None; | |
446 | } | |
d24a34bb RD |
447 | return _resultobj; |
448 | } | |
449 | ||
450 | #define wxPrintData_GetQuality(_swigobj) (_swigobj->GetQuality()) | |
107e4716 | 451 | static PyObject *_wrap_wxPrintData_GetQuality(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
452 | PyObject * _resultobj; |
453 | wxPrintQuality _result; | |
454 | wxPrintData * _arg0; | |
2d091820 | 455 | PyObject * _argo0 = 0; |
107e4716 | 456 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
457 | |
458 | self = self; | |
107e4716 | 459 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintData_GetQuality",_kwnames,&_argo0)) |
d24a34bb | 460 | return NULL; |
2d091820 RD |
461 | if (_argo0) { |
462 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
463 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintData_p")) { | |
d24a34bb RD |
464 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintData_GetQuality. Expected _wxPrintData_p."); |
465 | return NULL; | |
466 | } | |
467 | } | |
468 | { | |
469 | wxPy_BEGIN_ALLOW_THREADS; | |
470 | _result = (wxPrintQuality )wxPrintData_GetQuality(_arg0); | |
471 | ||
472 | wxPy_END_ALLOW_THREADS; | |
473 | } _resultobj = Py_BuildValue("i",_result); | |
474 | return _resultobj; | |
475 | } | |
476 | ||
477 | #define wxPrintData_SetNoCopies(_swigobj,_swigarg0) (_swigobj->SetNoCopies(_swigarg0)) | |
107e4716 | 478 | static PyObject *_wrap_wxPrintData_SetNoCopies(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
479 | PyObject * _resultobj; |
480 | wxPrintData * _arg0; | |
481 | int _arg1; | |
2d091820 | 482 | PyObject * _argo0 = 0; |
107e4716 | 483 | char *_kwnames[] = { "self","v", NULL }; |
d24a34bb RD |
484 | |
485 | self = self; | |
107e4716 | 486 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPrintData_SetNoCopies",_kwnames,&_argo0,&_arg1)) |
d24a34bb | 487 | return NULL; |
2d091820 RD |
488 | if (_argo0) { |
489 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
490 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintData_p")) { | |
d24a34bb RD |
491 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintData_SetNoCopies. Expected _wxPrintData_p."); |
492 | return NULL; | |
493 | } | |
494 | } | |
495 | { | |
496 | wxPy_BEGIN_ALLOW_THREADS; | |
497 | wxPrintData_SetNoCopies(_arg0,_arg1); | |
498 | ||
499 | wxPy_END_ALLOW_THREADS; | |
500 | } Py_INCREF(Py_None); | |
501 | _resultobj = Py_None; | |
502 | return _resultobj; | |
503 | } | |
504 | ||
505 | #define wxPrintData_SetCollate(_swigobj,_swigarg0) (_swigobj->SetCollate(_swigarg0)) | |
107e4716 | 506 | static PyObject *_wrap_wxPrintData_SetCollate(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
507 | PyObject * _resultobj; |
508 | wxPrintData * _arg0; | |
509 | bool _arg1; | |
2d091820 | 510 | PyObject * _argo0 = 0; |
d24a34bb | 511 | int tempbool1; |
107e4716 | 512 | char *_kwnames[] = { "self","flag", NULL }; |
d24a34bb RD |
513 | |
514 | self = self; | |
107e4716 | 515 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPrintData_SetCollate",_kwnames,&_argo0,&tempbool1)) |
d24a34bb | 516 | return NULL; |
2d091820 RD |
517 | if (_argo0) { |
518 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
519 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintData_p")) { | |
d24a34bb RD |
520 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintData_SetCollate. Expected _wxPrintData_p."); |
521 | return NULL; | |
522 | } | |
523 | } | |
524 | _arg1 = (bool ) tempbool1; | |
525 | { | |
526 | wxPy_BEGIN_ALLOW_THREADS; | |
527 | wxPrintData_SetCollate(_arg0,_arg1); | |
528 | ||
529 | wxPy_END_ALLOW_THREADS; | |
530 | } Py_INCREF(Py_None); | |
531 | _resultobj = Py_None; | |
532 | return _resultobj; | |
533 | } | |
534 | ||
535 | #define wxPrintData_SetOrientation(_swigobj,_swigarg0) (_swigobj->SetOrientation(_swigarg0)) | |
107e4716 | 536 | static PyObject *_wrap_wxPrintData_SetOrientation(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
537 | PyObject * _resultobj; |
538 | wxPrintData * _arg0; | |
539 | int _arg1; | |
2d091820 | 540 | PyObject * _argo0 = 0; |
107e4716 | 541 | char *_kwnames[] = { "self","orient", NULL }; |
d24a34bb RD |
542 | |
543 | self = self; | |
107e4716 | 544 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPrintData_SetOrientation",_kwnames,&_argo0,&_arg1)) |
d24a34bb | 545 | return NULL; |
2d091820 RD |
546 | if (_argo0) { |
547 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
548 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintData_p")) { | |
d24a34bb RD |
549 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintData_SetOrientation. Expected _wxPrintData_p."); |
550 | return NULL; | |
551 | } | |
552 | } | |
553 | { | |
554 | wxPy_BEGIN_ALLOW_THREADS; | |
555 | wxPrintData_SetOrientation(_arg0,_arg1); | |
556 | ||
557 | wxPy_END_ALLOW_THREADS; | |
558 | } Py_INCREF(Py_None); | |
559 | _resultobj = Py_None; | |
560 | return _resultobj; | |
561 | } | |
562 | ||
563 | #define wxPrintData_SetPrinterName(_swigobj,_swigarg0) (_swigobj->SetPrinterName(_swigarg0)) | |
107e4716 | 564 | static PyObject *_wrap_wxPrintData_SetPrinterName(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
565 | PyObject * _resultobj; |
566 | wxPrintData * _arg0; | |
567 | wxString * _arg1; | |
2d091820 | 568 | PyObject * _argo0 = 0; |
d24a34bb | 569 | PyObject * _obj1 = 0; |
107e4716 | 570 | char *_kwnames[] = { "self","name", NULL }; |
d24a34bb RD |
571 | |
572 | self = self; | |
107e4716 | 573 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxPrintData_SetPrinterName",_kwnames,&_argo0,&_obj1)) |
d24a34bb | 574 | return NULL; |
2d091820 RD |
575 | if (_argo0) { |
576 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
577 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintData_p")) { | |
d24a34bb RD |
578 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintData_SetPrinterName. Expected _wxPrintData_p."); |
579 | return NULL; | |
580 | } | |
581 | } | |
582 | { | |
583 | if (!PyString_Check(_obj1)) { | |
584 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
585 | return NULL; | |
586 | } | |
587 | _arg1 = new wxString(PyString_AsString(_obj1), PyString_Size(_obj1)); | |
588 | } | |
589 | { | |
590 | wxPy_BEGIN_ALLOW_THREADS; | |
591 | wxPrintData_SetPrinterName(_arg0,*_arg1); | |
592 | ||
593 | wxPy_END_ALLOW_THREADS; | |
594 | } Py_INCREF(Py_None); | |
595 | _resultobj = Py_None; | |
596 | { | |
597 | if (_obj1) | |
598 | delete _arg1; | |
599 | } | |
600 | return _resultobj; | |
601 | } | |
602 | ||
603 | #define wxPrintData_SetColour(_swigobj,_swigarg0) (_swigobj->SetColour(_swigarg0)) | |
107e4716 | 604 | static PyObject *_wrap_wxPrintData_SetColour(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
605 | PyObject * _resultobj; |
606 | wxPrintData * _arg0; | |
607 | bool _arg1; | |
2d091820 | 608 | PyObject * _argo0 = 0; |
d24a34bb | 609 | int tempbool1; |
107e4716 | 610 | char *_kwnames[] = { "self","colour", NULL }; |
d24a34bb RD |
611 | |
612 | self = self; | |
107e4716 | 613 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPrintData_SetColour",_kwnames,&_argo0,&tempbool1)) |
d24a34bb | 614 | return NULL; |
2d091820 RD |
615 | if (_argo0) { |
616 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
617 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintData_p")) { | |
d24a34bb RD |
618 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintData_SetColour. Expected _wxPrintData_p."); |
619 | return NULL; | |
620 | } | |
621 | } | |
622 | _arg1 = (bool ) tempbool1; | |
623 | { | |
624 | wxPy_BEGIN_ALLOW_THREADS; | |
625 | wxPrintData_SetColour(_arg0,_arg1); | |
626 | ||
627 | wxPy_END_ALLOW_THREADS; | |
628 | } Py_INCREF(Py_None); | |
629 | _resultobj = Py_None; | |
630 | return _resultobj; | |
631 | } | |
632 | ||
633 | #define wxPrintData_SetDuplex(_swigobj,_swigarg0) (_swigobj->SetDuplex(_swigarg0)) | |
107e4716 | 634 | static PyObject *_wrap_wxPrintData_SetDuplex(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
635 | PyObject * _resultobj; |
636 | wxPrintData * _arg0; | |
637 | wxDuplexMode _arg1; | |
2d091820 | 638 | PyObject * _argo0 = 0; |
107e4716 | 639 | char *_kwnames[] = { "self","duplex", NULL }; |
d24a34bb RD |
640 | |
641 | self = self; | |
107e4716 | 642 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPrintData_SetDuplex",_kwnames,&_argo0,&_arg1)) |
d24a34bb | 643 | return NULL; |
2d091820 RD |
644 | if (_argo0) { |
645 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
646 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintData_p")) { | |
d24a34bb RD |
647 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintData_SetDuplex. Expected _wxPrintData_p."); |
648 | return NULL; | |
649 | } | |
650 | } | |
651 | { | |
652 | wxPy_BEGIN_ALLOW_THREADS; | |
653 | wxPrintData_SetDuplex(_arg0,_arg1); | |
654 | ||
655 | wxPy_END_ALLOW_THREADS; | |
656 | } Py_INCREF(Py_None); | |
657 | _resultobj = Py_None; | |
658 | return _resultobj; | |
659 | } | |
660 | ||
661 | #define wxPrintData_SetPaperId(_swigobj,_swigarg0) (_swigobj->SetPaperId(_swigarg0)) | |
107e4716 | 662 | static PyObject *_wrap_wxPrintData_SetPaperId(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
663 | PyObject * _resultobj; |
664 | wxPrintData * _arg0; | |
665 | wxPaperSize _arg1; | |
2d091820 | 666 | PyObject * _argo0 = 0; |
107e4716 | 667 | char *_kwnames[] = { "self","sizeId", NULL }; |
d24a34bb RD |
668 | |
669 | self = self; | |
107e4716 | 670 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPrintData_SetPaperId",_kwnames,&_argo0,&_arg1)) |
d24a34bb | 671 | return NULL; |
2d091820 RD |
672 | if (_argo0) { |
673 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
674 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintData_p")) { | |
d24a34bb RD |
675 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintData_SetPaperId. Expected _wxPrintData_p."); |
676 | return NULL; | |
677 | } | |
678 | } | |
679 | { | |
680 | wxPy_BEGIN_ALLOW_THREADS; | |
681 | wxPrintData_SetPaperId(_arg0,_arg1); | |
682 | ||
683 | wxPy_END_ALLOW_THREADS; | |
684 | } Py_INCREF(Py_None); | |
685 | _resultobj = Py_None; | |
686 | return _resultobj; | |
687 | } | |
688 | ||
689 | #define wxPrintData_SetPaperSize(_swigobj,_swigarg0) (_swigobj->SetPaperSize(_swigarg0)) | |
107e4716 | 690 | static PyObject *_wrap_wxPrintData_SetPaperSize(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
691 | PyObject * _resultobj; |
692 | wxPrintData * _arg0; | |
693 | wxSize * _arg1; | |
2d091820 | 694 | PyObject * _argo0 = 0; |
37f6a977 RD |
695 | wxSize temp; |
696 | PyObject * _obj1 = 0; | |
107e4716 | 697 | char *_kwnames[] = { "self","sz", NULL }; |
d24a34bb RD |
698 | |
699 | self = self; | |
37f6a977 | 700 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxPrintData_SetPaperSize",_kwnames,&_argo0,&_obj1)) |
d24a34bb | 701 | return NULL; |
2d091820 RD |
702 | if (_argo0) { |
703 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
704 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintData_p")) { | |
d24a34bb RD |
705 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintData_SetPaperSize. Expected _wxPrintData_p."); |
706 | return NULL; | |
707 | } | |
708 | } | |
37f6a977 RD |
709 | { |
710 | _arg1 = &temp; | |
711 | if (! wxSize_helper(_obj1, &_arg1)) | |
d24a34bb | 712 | return NULL; |
37f6a977 | 713 | } |
d24a34bb RD |
714 | { |
715 | wxPy_BEGIN_ALLOW_THREADS; | |
716 | wxPrintData_SetPaperSize(_arg0,*_arg1); | |
717 | ||
718 | wxPy_END_ALLOW_THREADS; | |
719 | } Py_INCREF(Py_None); | |
720 | _resultobj = Py_None; | |
721 | return _resultobj; | |
722 | } | |
723 | ||
724 | #define wxPrintData_SetQuality(_swigobj,_swigarg0) (_swigobj->SetQuality(_swigarg0)) | |
107e4716 | 725 | static PyObject *_wrap_wxPrintData_SetQuality(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
726 | PyObject * _resultobj; |
727 | wxPrintData * _arg0; | |
728 | wxPrintQuality _arg1; | |
2d091820 | 729 | PyObject * _argo0 = 0; |
107e4716 | 730 | char *_kwnames[] = { "self","quality", NULL }; |
d24a34bb RD |
731 | |
732 | self = self; | |
107e4716 | 733 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPrintData_SetQuality",_kwnames,&_argo0,&_arg1)) |
d24a34bb | 734 | return NULL; |
2d091820 RD |
735 | if (_argo0) { |
736 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
737 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintData_p")) { | |
d24a34bb RD |
738 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintData_SetQuality. Expected _wxPrintData_p."); |
739 | return NULL; | |
740 | } | |
741 | } | |
742 | { | |
743 | wxPy_BEGIN_ALLOW_THREADS; | |
744 | wxPrintData_SetQuality(_arg0,_arg1); | |
745 | ||
746 | wxPy_END_ALLOW_THREADS; | |
747 | } Py_INCREF(Py_None); | |
748 | _resultobj = Py_None; | |
749 | return _resultobj; | |
750 | } | |
751 | ||
752 | #define new_wxPageSetupDialogData() (new wxPageSetupDialogData()) | |
107e4716 | 753 | static PyObject *_wrap_new_wxPageSetupDialogData(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
754 | PyObject * _resultobj; |
755 | wxPageSetupDialogData * _result; | |
107e4716 | 756 | char *_kwnames[] = { NULL }; |
d24a34bb RD |
757 | char _ptemp[128]; |
758 | ||
759 | self = self; | |
107e4716 | 760 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxPageSetupDialogData",_kwnames)) |
d24a34bb RD |
761 | return NULL; |
762 | { | |
763 | wxPy_BEGIN_ALLOW_THREADS; | |
764 | _result = (wxPageSetupDialogData *)new_wxPageSetupDialogData(); | |
765 | ||
766 | wxPy_END_ALLOW_THREADS; | |
2d091820 RD |
767 | } if (_result) { |
768 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPageSetupDialogData_p"); | |
769 | _resultobj = Py_BuildValue("s",_ptemp); | |
770 | } else { | |
771 | Py_INCREF(Py_None); | |
772 | _resultobj = Py_None; | |
773 | } | |
d24a34bb RD |
774 | return _resultobj; |
775 | } | |
776 | ||
777 | #define delete_wxPageSetupDialogData(_swigobj) (delete _swigobj) | |
107e4716 | 778 | static PyObject *_wrap_delete_wxPageSetupDialogData(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
779 | PyObject * _resultobj; |
780 | wxPageSetupDialogData * _arg0; | |
2d091820 | 781 | PyObject * _argo0 = 0; |
107e4716 | 782 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
783 | |
784 | self = self; | |
107e4716 | 785 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:delete_wxPageSetupDialogData",_kwnames,&_argo0)) |
d24a34bb | 786 | return NULL; |
2d091820 RD |
787 | if (_argo0) { |
788 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
789 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPageSetupDialogData_p")) { | |
d24a34bb RD |
790 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of delete_wxPageSetupDialogData. Expected _wxPageSetupDialogData_p."); |
791 | return NULL; | |
792 | } | |
793 | } | |
794 | { | |
795 | wxPy_BEGIN_ALLOW_THREADS; | |
796 | delete_wxPageSetupDialogData(_arg0); | |
797 | ||
798 | wxPy_END_ALLOW_THREADS; | |
799 | } Py_INCREF(Py_None); | |
800 | _resultobj = Py_None; | |
801 | return _resultobj; | |
802 | } | |
803 | ||
804 | #define wxPageSetupDialogData_EnableHelp(_swigobj,_swigarg0) (_swigobj->EnableHelp(_swigarg0)) | |
107e4716 | 805 | static PyObject *_wrap_wxPageSetupDialogData_EnableHelp(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
806 | PyObject * _resultobj; |
807 | wxPageSetupDialogData * _arg0; | |
808 | bool _arg1; | |
2d091820 | 809 | PyObject * _argo0 = 0; |
d24a34bb | 810 | int tempbool1; |
107e4716 | 811 | char *_kwnames[] = { "self","flag", NULL }; |
d24a34bb RD |
812 | |
813 | self = self; | |
107e4716 | 814 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPageSetupDialogData_EnableHelp",_kwnames,&_argo0,&tempbool1)) |
d24a34bb | 815 | return NULL; |
2d091820 RD |
816 | if (_argo0) { |
817 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
818 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPageSetupDialogData_p")) { | |
d24a34bb RD |
819 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPageSetupDialogData_EnableHelp. Expected _wxPageSetupDialogData_p."); |
820 | return NULL; | |
821 | } | |
822 | } | |
823 | _arg1 = (bool ) tempbool1; | |
824 | { | |
825 | wxPy_BEGIN_ALLOW_THREADS; | |
826 | wxPageSetupDialogData_EnableHelp(_arg0,_arg1); | |
827 | ||
828 | wxPy_END_ALLOW_THREADS; | |
829 | } Py_INCREF(Py_None); | |
830 | _resultobj = Py_None; | |
831 | return _resultobj; | |
832 | } | |
833 | ||
834 | #define wxPageSetupDialogData_EnableMargins(_swigobj,_swigarg0) (_swigobj->EnableMargins(_swigarg0)) | |
107e4716 | 835 | static PyObject *_wrap_wxPageSetupDialogData_EnableMargins(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
836 | PyObject * _resultobj; |
837 | wxPageSetupDialogData * _arg0; | |
838 | bool _arg1; | |
2d091820 | 839 | PyObject * _argo0 = 0; |
d24a34bb | 840 | int tempbool1; |
107e4716 | 841 | char *_kwnames[] = { "self","flag", NULL }; |
d24a34bb RD |
842 | |
843 | self = self; | |
107e4716 | 844 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPageSetupDialogData_EnableMargins",_kwnames,&_argo0,&tempbool1)) |
d24a34bb | 845 | return NULL; |
2d091820 RD |
846 | if (_argo0) { |
847 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
848 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPageSetupDialogData_p")) { | |
d24a34bb RD |
849 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPageSetupDialogData_EnableMargins. Expected _wxPageSetupDialogData_p."); |
850 | return NULL; | |
851 | } | |
852 | } | |
853 | _arg1 = (bool ) tempbool1; | |
854 | { | |
855 | wxPy_BEGIN_ALLOW_THREADS; | |
856 | wxPageSetupDialogData_EnableMargins(_arg0,_arg1); | |
857 | ||
858 | wxPy_END_ALLOW_THREADS; | |
859 | } Py_INCREF(Py_None); | |
860 | _resultobj = Py_None; | |
861 | return _resultobj; | |
862 | } | |
863 | ||
864 | #define wxPageSetupDialogData_EnableOrientation(_swigobj,_swigarg0) (_swigobj->EnableOrientation(_swigarg0)) | |
107e4716 | 865 | static PyObject *_wrap_wxPageSetupDialogData_EnableOrientation(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
866 | PyObject * _resultobj; |
867 | wxPageSetupDialogData * _arg0; | |
868 | bool _arg1; | |
2d091820 | 869 | PyObject * _argo0 = 0; |
d24a34bb | 870 | int tempbool1; |
107e4716 | 871 | char *_kwnames[] = { "self","flag", NULL }; |
d24a34bb RD |
872 | |
873 | self = self; | |
107e4716 | 874 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPageSetupDialogData_EnableOrientation",_kwnames,&_argo0,&tempbool1)) |
d24a34bb | 875 | return NULL; |
2d091820 RD |
876 | if (_argo0) { |
877 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
878 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPageSetupDialogData_p")) { | |
d24a34bb RD |
879 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPageSetupDialogData_EnableOrientation. Expected _wxPageSetupDialogData_p."); |
880 | return NULL; | |
881 | } | |
882 | } | |
883 | _arg1 = (bool ) tempbool1; | |
884 | { | |
885 | wxPy_BEGIN_ALLOW_THREADS; | |
886 | wxPageSetupDialogData_EnableOrientation(_arg0,_arg1); | |
887 | ||
888 | wxPy_END_ALLOW_THREADS; | |
889 | } Py_INCREF(Py_None); | |
890 | _resultobj = Py_None; | |
891 | return _resultobj; | |
892 | } | |
893 | ||
894 | #define wxPageSetupDialogData_EnablePaper(_swigobj,_swigarg0) (_swigobj->EnablePaper(_swigarg0)) | |
107e4716 | 895 | static PyObject *_wrap_wxPageSetupDialogData_EnablePaper(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
896 | PyObject * _resultobj; |
897 | wxPageSetupDialogData * _arg0; | |
898 | bool _arg1; | |
2d091820 | 899 | PyObject * _argo0 = 0; |
d24a34bb | 900 | int tempbool1; |
107e4716 | 901 | char *_kwnames[] = { "self","flag", NULL }; |
d24a34bb RD |
902 | |
903 | self = self; | |
107e4716 | 904 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPageSetupDialogData_EnablePaper",_kwnames,&_argo0,&tempbool1)) |
d24a34bb | 905 | return NULL; |
2d091820 RD |
906 | if (_argo0) { |
907 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
908 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPageSetupDialogData_p")) { | |
d24a34bb RD |
909 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPageSetupDialogData_EnablePaper. Expected _wxPageSetupDialogData_p."); |
910 | return NULL; | |
911 | } | |
912 | } | |
913 | _arg1 = (bool ) tempbool1; | |
914 | { | |
915 | wxPy_BEGIN_ALLOW_THREADS; | |
916 | wxPageSetupDialogData_EnablePaper(_arg0,_arg1); | |
917 | ||
918 | wxPy_END_ALLOW_THREADS; | |
919 | } Py_INCREF(Py_None); | |
920 | _resultobj = Py_None; | |
921 | return _resultobj; | |
922 | } | |
923 | ||
924 | #define wxPageSetupDialogData_EnablePrinter(_swigobj,_swigarg0) (_swigobj->EnablePrinter(_swigarg0)) | |
107e4716 | 925 | static PyObject *_wrap_wxPageSetupDialogData_EnablePrinter(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
926 | PyObject * _resultobj; |
927 | wxPageSetupDialogData * _arg0; | |
928 | bool _arg1; | |
2d091820 | 929 | PyObject * _argo0 = 0; |
d24a34bb | 930 | int tempbool1; |
107e4716 | 931 | char *_kwnames[] = { "self","flag", NULL }; |
d24a34bb RD |
932 | |
933 | self = self; | |
107e4716 | 934 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPageSetupDialogData_EnablePrinter",_kwnames,&_argo0,&tempbool1)) |
d24a34bb | 935 | return NULL; |
2d091820 RD |
936 | if (_argo0) { |
937 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
938 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPageSetupDialogData_p")) { | |
d24a34bb RD |
939 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPageSetupDialogData_EnablePrinter. Expected _wxPageSetupDialogData_p."); |
940 | return NULL; | |
941 | } | |
942 | } | |
943 | _arg1 = (bool ) tempbool1; | |
944 | { | |
945 | wxPy_BEGIN_ALLOW_THREADS; | |
946 | wxPageSetupDialogData_EnablePrinter(_arg0,_arg1); | |
947 | ||
948 | wxPy_END_ALLOW_THREADS; | |
949 | } Py_INCREF(Py_None); | |
950 | _resultobj = Py_None; | |
951 | return _resultobj; | |
952 | } | |
953 | ||
954 | #define wxPageSetupDialogData_GetDefaultMinMargins(_swigobj) (_swigobj->GetDefaultMinMargins()) | |
107e4716 | 955 | static PyObject *_wrap_wxPageSetupDialogData_GetDefaultMinMargins(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
956 | PyObject * _resultobj; |
957 | bool _result; | |
958 | wxPageSetupDialogData * _arg0; | |
2d091820 | 959 | PyObject * _argo0 = 0; |
107e4716 | 960 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
961 | |
962 | self = self; | |
107e4716 | 963 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPageSetupDialogData_GetDefaultMinMargins",_kwnames,&_argo0)) |
d24a34bb | 964 | return NULL; |
2d091820 RD |
965 | if (_argo0) { |
966 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
967 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPageSetupDialogData_p")) { | |
d24a34bb RD |
968 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPageSetupDialogData_GetDefaultMinMargins. Expected _wxPageSetupDialogData_p."); |
969 | return NULL; | |
970 | } | |
971 | } | |
972 | { | |
973 | wxPy_BEGIN_ALLOW_THREADS; | |
974 | _result = (bool )wxPageSetupDialogData_GetDefaultMinMargins(_arg0); | |
975 | ||
976 | wxPy_END_ALLOW_THREADS; | |
977 | } _resultobj = Py_BuildValue("i",_result); | |
978 | return _resultobj; | |
979 | } | |
980 | ||
981 | #define wxPageSetupDialogData_GetEnableMargins(_swigobj) (_swigobj->GetEnableMargins()) | |
107e4716 | 982 | static PyObject *_wrap_wxPageSetupDialogData_GetEnableMargins(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
983 | PyObject * _resultobj; |
984 | bool _result; | |
985 | wxPageSetupDialogData * _arg0; | |
2d091820 | 986 | PyObject * _argo0 = 0; |
107e4716 | 987 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
988 | |
989 | self = self; | |
107e4716 | 990 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPageSetupDialogData_GetEnableMargins",_kwnames,&_argo0)) |
d24a34bb | 991 | return NULL; |
2d091820 RD |
992 | if (_argo0) { |
993 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
994 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPageSetupDialogData_p")) { | |
d24a34bb RD |
995 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPageSetupDialogData_GetEnableMargins. Expected _wxPageSetupDialogData_p."); |
996 | return NULL; | |
997 | } | |
998 | } | |
999 | { | |
1000 | wxPy_BEGIN_ALLOW_THREADS; | |
1001 | _result = (bool )wxPageSetupDialogData_GetEnableMargins(_arg0); | |
1002 | ||
1003 | wxPy_END_ALLOW_THREADS; | |
1004 | } _resultobj = Py_BuildValue("i",_result); | |
1005 | return _resultobj; | |
1006 | } | |
1007 | ||
1008 | #define wxPageSetupDialogData_GetEnableOrientation(_swigobj) (_swigobj->GetEnableOrientation()) | |
107e4716 | 1009 | static PyObject *_wrap_wxPageSetupDialogData_GetEnableOrientation(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
1010 | PyObject * _resultobj; |
1011 | bool _result; | |
1012 | wxPageSetupDialogData * _arg0; | |
2d091820 | 1013 | PyObject * _argo0 = 0; |
107e4716 | 1014 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
1015 | |
1016 | self = self; | |
107e4716 | 1017 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPageSetupDialogData_GetEnableOrientation",_kwnames,&_argo0)) |
d24a34bb | 1018 | return NULL; |
2d091820 RD |
1019 | if (_argo0) { |
1020 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1021 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPageSetupDialogData_p")) { | |
d24a34bb RD |
1022 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPageSetupDialogData_GetEnableOrientation. Expected _wxPageSetupDialogData_p."); |
1023 | return NULL; | |
1024 | } | |
1025 | } | |
1026 | { | |
1027 | wxPy_BEGIN_ALLOW_THREADS; | |
1028 | _result = (bool )wxPageSetupDialogData_GetEnableOrientation(_arg0); | |
1029 | ||
1030 | wxPy_END_ALLOW_THREADS; | |
1031 | } _resultobj = Py_BuildValue("i",_result); | |
1032 | return _resultobj; | |
1033 | } | |
1034 | ||
1035 | #define wxPageSetupDialogData_GetEnablePaper(_swigobj) (_swigobj->GetEnablePaper()) | |
107e4716 | 1036 | static PyObject *_wrap_wxPageSetupDialogData_GetEnablePaper(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
1037 | PyObject * _resultobj; |
1038 | bool _result; | |
1039 | wxPageSetupDialogData * _arg0; | |
2d091820 | 1040 | PyObject * _argo0 = 0; |
107e4716 | 1041 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
1042 | |
1043 | self = self; | |
107e4716 | 1044 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPageSetupDialogData_GetEnablePaper",_kwnames,&_argo0)) |
d24a34bb | 1045 | return NULL; |
2d091820 RD |
1046 | if (_argo0) { |
1047 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1048 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPageSetupDialogData_p")) { | |
d24a34bb RD |
1049 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPageSetupDialogData_GetEnablePaper. Expected _wxPageSetupDialogData_p."); |
1050 | return NULL; | |
1051 | } | |
1052 | } | |
1053 | { | |
1054 | wxPy_BEGIN_ALLOW_THREADS; | |
1055 | _result = (bool )wxPageSetupDialogData_GetEnablePaper(_arg0); | |
1056 | ||
1057 | wxPy_END_ALLOW_THREADS; | |
1058 | } _resultobj = Py_BuildValue("i",_result); | |
1059 | return _resultobj; | |
1060 | } | |
1061 | ||
1062 | #define wxPageSetupDialogData_GetEnablePrinter(_swigobj) (_swigobj->GetEnablePrinter()) | |
107e4716 | 1063 | static PyObject *_wrap_wxPageSetupDialogData_GetEnablePrinter(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
1064 | PyObject * _resultobj; |
1065 | bool _result; | |
1066 | wxPageSetupDialogData * _arg0; | |
2d091820 | 1067 | PyObject * _argo0 = 0; |
107e4716 | 1068 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
1069 | |
1070 | self = self; | |
107e4716 | 1071 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPageSetupDialogData_GetEnablePrinter",_kwnames,&_argo0)) |
d24a34bb | 1072 | return NULL; |
2d091820 RD |
1073 | if (_argo0) { |
1074 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1075 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPageSetupDialogData_p")) { | |
d24a34bb RD |
1076 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPageSetupDialogData_GetEnablePrinter. Expected _wxPageSetupDialogData_p."); |
1077 | return NULL; | |
1078 | } | |
1079 | } | |
1080 | { | |
1081 | wxPy_BEGIN_ALLOW_THREADS; | |
1082 | _result = (bool )wxPageSetupDialogData_GetEnablePrinter(_arg0); | |
1083 | ||
1084 | wxPy_END_ALLOW_THREADS; | |
1085 | } _resultobj = Py_BuildValue("i",_result); | |
1086 | return _resultobj; | |
1087 | } | |
1088 | ||
1089 | #define wxPageSetupDialogData_GetEnableHelp(_swigobj) (_swigobj->GetEnableHelp()) | |
107e4716 | 1090 | static PyObject *_wrap_wxPageSetupDialogData_GetEnableHelp(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
1091 | PyObject * _resultobj; |
1092 | bool _result; | |
1093 | wxPageSetupDialogData * _arg0; | |
2d091820 | 1094 | PyObject * _argo0 = 0; |
107e4716 | 1095 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
1096 | |
1097 | self = self; | |
107e4716 | 1098 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPageSetupDialogData_GetEnableHelp",_kwnames,&_argo0)) |
d24a34bb | 1099 | return NULL; |
2d091820 RD |
1100 | if (_argo0) { |
1101 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1102 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPageSetupDialogData_p")) { | |
d24a34bb RD |
1103 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPageSetupDialogData_GetEnableHelp. Expected _wxPageSetupDialogData_p."); |
1104 | return NULL; | |
1105 | } | |
1106 | } | |
1107 | { | |
1108 | wxPy_BEGIN_ALLOW_THREADS; | |
1109 | _result = (bool )wxPageSetupDialogData_GetEnableHelp(_arg0); | |
1110 | ||
1111 | wxPy_END_ALLOW_THREADS; | |
1112 | } _resultobj = Py_BuildValue("i",_result); | |
1113 | return _resultobj; | |
1114 | } | |
1115 | ||
1116 | #define wxPageSetupDialogData_GetDefaultInfo(_swigobj) (_swigobj->GetDefaultInfo()) | |
107e4716 | 1117 | static PyObject *_wrap_wxPageSetupDialogData_GetDefaultInfo(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
1118 | PyObject * _resultobj; |
1119 | bool _result; | |
1120 | wxPageSetupDialogData * _arg0; | |
2d091820 | 1121 | PyObject * _argo0 = 0; |
107e4716 | 1122 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
1123 | |
1124 | self = self; | |
107e4716 | 1125 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPageSetupDialogData_GetDefaultInfo",_kwnames,&_argo0)) |
d24a34bb | 1126 | return NULL; |
2d091820 RD |
1127 | if (_argo0) { |
1128 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1129 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPageSetupDialogData_p")) { | |
d24a34bb RD |
1130 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPageSetupDialogData_GetDefaultInfo. Expected _wxPageSetupDialogData_p."); |
1131 | return NULL; | |
1132 | } | |
1133 | } | |
1134 | { | |
1135 | wxPy_BEGIN_ALLOW_THREADS; | |
1136 | _result = (bool )wxPageSetupDialogData_GetDefaultInfo(_arg0); | |
1137 | ||
1138 | wxPy_END_ALLOW_THREADS; | |
1139 | } _resultobj = Py_BuildValue("i",_result); | |
1140 | return _resultobj; | |
1141 | } | |
1142 | ||
1143 | #define wxPageSetupDialogData_GetMarginTopLeft(_swigobj) (_swigobj->GetMarginTopLeft()) | |
107e4716 | 1144 | static PyObject *_wrap_wxPageSetupDialogData_GetMarginTopLeft(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
1145 | PyObject * _resultobj; |
1146 | wxPoint * _result; | |
1147 | wxPageSetupDialogData * _arg0; | |
2d091820 | 1148 | PyObject * _argo0 = 0; |
107e4716 | 1149 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
1150 | char _ptemp[128]; |
1151 | ||
1152 | self = self; | |
107e4716 | 1153 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPageSetupDialogData_GetMarginTopLeft",_kwnames,&_argo0)) |
d24a34bb | 1154 | return NULL; |
2d091820 RD |
1155 | if (_argo0) { |
1156 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1157 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPageSetupDialogData_p")) { | |
d24a34bb RD |
1158 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPageSetupDialogData_GetMarginTopLeft. Expected _wxPageSetupDialogData_p."); |
1159 | return NULL; | |
1160 | } | |
1161 | } | |
1162 | { | |
1163 | wxPy_BEGIN_ALLOW_THREADS; | |
1164 | _result = new wxPoint (wxPageSetupDialogData_GetMarginTopLeft(_arg0)); | |
1165 | ||
1166 | wxPy_END_ALLOW_THREADS; | |
1167 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxPoint_p"); | |
1168 | _resultobj = Py_BuildValue("s",_ptemp); | |
1169 | return _resultobj; | |
1170 | } | |
1171 | ||
1172 | #define wxPageSetupDialogData_GetMarginBottomRight(_swigobj) (_swigobj->GetMarginBottomRight()) | |
107e4716 | 1173 | static PyObject *_wrap_wxPageSetupDialogData_GetMarginBottomRight(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
1174 | PyObject * _resultobj; |
1175 | wxPoint * _result; | |
1176 | wxPageSetupDialogData * _arg0; | |
2d091820 | 1177 | PyObject * _argo0 = 0; |
107e4716 | 1178 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
1179 | char _ptemp[128]; |
1180 | ||
1181 | self = self; | |
107e4716 | 1182 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPageSetupDialogData_GetMarginBottomRight",_kwnames,&_argo0)) |
d24a34bb | 1183 | return NULL; |
2d091820 RD |
1184 | if (_argo0) { |
1185 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1186 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPageSetupDialogData_p")) { | |
d24a34bb RD |
1187 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPageSetupDialogData_GetMarginBottomRight. Expected _wxPageSetupDialogData_p."); |
1188 | return NULL; | |
1189 | } | |
1190 | } | |
1191 | { | |
1192 | wxPy_BEGIN_ALLOW_THREADS; | |
1193 | _result = new wxPoint (wxPageSetupDialogData_GetMarginBottomRight(_arg0)); | |
1194 | ||
1195 | wxPy_END_ALLOW_THREADS; | |
1196 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxPoint_p"); | |
1197 | _resultobj = Py_BuildValue("s",_ptemp); | |
1198 | return _resultobj; | |
1199 | } | |
1200 | ||
1201 | #define wxPageSetupDialogData_GetMinMarginTopLeft(_swigobj) (_swigobj->GetMinMarginTopLeft()) | |
107e4716 | 1202 | static PyObject *_wrap_wxPageSetupDialogData_GetMinMarginTopLeft(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
1203 | PyObject * _resultobj; |
1204 | wxPoint * _result; | |
1205 | wxPageSetupDialogData * _arg0; | |
2d091820 | 1206 | PyObject * _argo0 = 0; |
107e4716 | 1207 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
1208 | char _ptemp[128]; |
1209 | ||
1210 | self = self; | |
107e4716 | 1211 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPageSetupDialogData_GetMinMarginTopLeft",_kwnames,&_argo0)) |
d24a34bb | 1212 | return NULL; |
2d091820 RD |
1213 | if (_argo0) { |
1214 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1215 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPageSetupDialogData_p")) { | |
d24a34bb RD |
1216 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPageSetupDialogData_GetMinMarginTopLeft. Expected _wxPageSetupDialogData_p."); |
1217 | return NULL; | |
1218 | } | |
1219 | } | |
1220 | { | |
1221 | wxPy_BEGIN_ALLOW_THREADS; | |
1222 | _result = new wxPoint (wxPageSetupDialogData_GetMinMarginTopLeft(_arg0)); | |
1223 | ||
1224 | wxPy_END_ALLOW_THREADS; | |
1225 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxPoint_p"); | |
1226 | _resultobj = Py_BuildValue("s",_ptemp); | |
1227 | return _resultobj; | |
1228 | } | |
1229 | ||
1230 | #define wxPageSetupDialogData_GetMinMarginBottomRight(_swigobj) (_swigobj->GetMinMarginBottomRight()) | |
107e4716 | 1231 | static PyObject *_wrap_wxPageSetupDialogData_GetMinMarginBottomRight(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
1232 | PyObject * _resultobj; |
1233 | wxPoint * _result; | |
1234 | wxPageSetupDialogData * _arg0; | |
2d091820 | 1235 | PyObject * _argo0 = 0; |
107e4716 | 1236 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
1237 | char _ptemp[128]; |
1238 | ||
1239 | self = self; | |
107e4716 | 1240 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPageSetupDialogData_GetMinMarginBottomRight",_kwnames,&_argo0)) |
d24a34bb | 1241 | return NULL; |
2d091820 RD |
1242 | if (_argo0) { |
1243 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1244 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPageSetupDialogData_p")) { | |
d24a34bb RD |
1245 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPageSetupDialogData_GetMinMarginBottomRight. Expected _wxPageSetupDialogData_p."); |
1246 | return NULL; | |
1247 | } | |
1248 | } | |
1249 | { | |
1250 | wxPy_BEGIN_ALLOW_THREADS; | |
1251 | _result = new wxPoint (wxPageSetupDialogData_GetMinMarginBottomRight(_arg0)); | |
1252 | ||
1253 | wxPy_END_ALLOW_THREADS; | |
1254 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxPoint_p"); | |
1255 | _resultobj = Py_BuildValue("s",_ptemp); | |
1256 | return _resultobj; | |
1257 | } | |
1258 | ||
1259 | #define wxPageSetupDialogData_GetPaperId(_swigobj) (_swigobj->GetPaperId()) | |
107e4716 | 1260 | static PyObject *_wrap_wxPageSetupDialogData_GetPaperId(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
1261 | PyObject * _resultobj; |
1262 | wxPaperSize _result; | |
1263 | wxPageSetupDialogData * _arg0; | |
2d091820 | 1264 | PyObject * _argo0 = 0; |
107e4716 | 1265 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
1266 | |
1267 | self = self; | |
107e4716 | 1268 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPageSetupDialogData_GetPaperId",_kwnames,&_argo0)) |
d24a34bb | 1269 | return NULL; |
2d091820 RD |
1270 | if (_argo0) { |
1271 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1272 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPageSetupDialogData_p")) { | |
d24a34bb RD |
1273 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPageSetupDialogData_GetPaperId. Expected _wxPageSetupDialogData_p."); |
1274 | return NULL; | |
1275 | } | |
1276 | } | |
1277 | { | |
1278 | wxPy_BEGIN_ALLOW_THREADS; | |
1279 | _result = (wxPaperSize )wxPageSetupDialogData_GetPaperId(_arg0); | |
1280 | ||
1281 | wxPy_END_ALLOW_THREADS; | |
1282 | } _resultobj = Py_BuildValue("i",_result); | |
1283 | return _resultobj; | |
1284 | } | |
1285 | ||
1286 | #define wxPageSetupDialogData_GetPaperSize(_swigobj) (_swigobj->GetPaperSize()) | |
107e4716 | 1287 | static PyObject *_wrap_wxPageSetupDialogData_GetPaperSize(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
1288 | PyObject * _resultobj; |
1289 | wxSize * _result; | |
1290 | wxPageSetupDialogData * _arg0; | |
2d091820 | 1291 | PyObject * _argo0 = 0; |
107e4716 | 1292 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
1293 | char _ptemp[128]; |
1294 | ||
1295 | self = self; | |
107e4716 | 1296 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPageSetupDialogData_GetPaperSize",_kwnames,&_argo0)) |
d24a34bb | 1297 | return NULL; |
2d091820 RD |
1298 | if (_argo0) { |
1299 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1300 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPageSetupDialogData_p")) { | |
d24a34bb RD |
1301 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPageSetupDialogData_GetPaperSize. Expected _wxPageSetupDialogData_p."); |
1302 | return NULL; | |
1303 | } | |
1304 | } | |
1305 | { | |
1306 | wxPy_BEGIN_ALLOW_THREADS; | |
1307 | _result = new wxSize (wxPageSetupDialogData_GetPaperSize(_arg0)); | |
1308 | ||
1309 | wxPy_END_ALLOW_THREADS; | |
1310 | } SWIG_MakePtr(_ptemp, (void *) _result,"_wxSize_p"); | |
1311 | _resultobj = Py_BuildValue("s",_ptemp); | |
1312 | return _resultobj; | |
1313 | } | |
1314 | ||
1315 | static wxPrintData * wxPageSetupDialogData_GetPrintData(wxPageSetupDialogData *self) { | |
1316 | return new wxPrintData(self->GetPrintData()); // force a copy | |
1317 | } | |
107e4716 | 1318 | static PyObject *_wrap_wxPageSetupDialogData_GetPrintData(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
1319 | PyObject * _resultobj; |
1320 | wxPrintData * _result; | |
1321 | wxPageSetupDialogData * _arg0; | |
2d091820 | 1322 | PyObject * _argo0 = 0; |
107e4716 | 1323 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
1324 | char _ptemp[128]; |
1325 | ||
1326 | self = self; | |
107e4716 | 1327 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPageSetupDialogData_GetPrintData",_kwnames,&_argo0)) |
d24a34bb | 1328 | return NULL; |
2d091820 RD |
1329 | if (_argo0) { |
1330 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1331 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPageSetupDialogData_p")) { | |
d24a34bb RD |
1332 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPageSetupDialogData_GetPrintData. Expected _wxPageSetupDialogData_p."); |
1333 | return NULL; | |
1334 | } | |
1335 | } | |
1336 | { | |
1337 | wxPy_BEGIN_ALLOW_THREADS; | |
1338 | _result = (wxPrintData *)wxPageSetupDialogData_GetPrintData(_arg0); | |
1339 | ||
1340 | wxPy_END_ALLOW_THREADS; | |
2d091820 RD |
1341 | } if (_result) { |
1342 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPrintData_p"); | |
1343 | _resultobj = Py_BuildValue("s",_ptemp); | |
1344 | } else { | |
1345 | Py_INCREF(Py_None); | |
1346 | _resultobj = Py_None; | |
1347 | } | |
d24a34bb RD |
1348 | return _resultobj; |
1349 | } | |
1350 | ||
1351 | #define wxPageSetupDialogData_SetDefaultInfo(_swigobj,_swigarg0) (_swigobj->SetDefaultInfo(_swigarg0)) | |
107e4716 | 1352 | static PyObject *_wrap_wxPageSetupDialogData_SetDefaultInfo(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
1353 | PyObject * _resultobj; |
1354 | wxPageSetupDialogData * _arg0; | |
1355 | bool _arg1; | |
2d091820 | 1356 | PyObject * _argo0 = 0; |
d24a34bb | 1357 | int tempbool1; |
107e4716 | 1358 | char *_kwnames[] = { "self","flag", NULL }; |
d24a34bb RD |
1359 | |
1360 | self = self; | |
107e4716 | 1361 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPageSetupDialogData_SetDefaultInfo",_kwnames,&_argo0,&tempbool1)) |
d24a34bb | 1362 | return NULL; |
2d091820 RD |
1363 | if (_argo0) { |
1364 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1365 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPageSetupDialogData_p")) { | |
d24a34bb RD |
1366 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPageSetupDialogData_SetDefaultInfo. Expected _wxPageSetupDialogData_p."); |
1367 | return NULL; | |
1368 | } | |
1369 | } | |
1370 | _arg1 = (bool ) tempbool1; | |
1371 | { | |
1372 | wxPy_BEGIN_ALLOW_THREADS; | |
1373 | wxPageSetupDialogData_SetDefaultInfo(_arg0,_arg1); | |
1374 | ||
1375 | wxPy_END_ALLOW_THREADS; | |
1376 | } Py_INCREF(Py_None); | |
1377 | _resultobj = Py_None; | |
1378 | return _resultobj; | |
1379 | } | |
1380 | ||
1381 | #define wxPageSetupDialogData_SetDefaultMinMargins(_swigobj,_swigarg0) (_swigobj->SetDefaultMinMargins(_swigarg0)) | |
107e4716 | 1382 | static PyObject *_wrap_wxPageSetupDialogData_SetDefaultMinMargins(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
1383 | PyObject * _resultobj; |
1384 | wxPageSetupDialogData * _arg0; | |
1385 | bool _arg1; | |
2d091820 | 1386 | PyObject * _argo0 = 0; |
d24a34bb | 1387 | int tempbool1; |
107e4716 | 1388 | char *_kwnames[] = { "self","flag", NULL }; |
d24a34bb RD |
1389 | |
1390 | self = self; | |
107e4716 | 1391 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPageSetupDialogData_SetDefaultMinMargins",_kwnames,&_argo0,&tempbool1)) |
d24a34bb | 1392 | return NULL; |
2d091820 RD |
1393 | if (_argo0) { |
1394 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1395 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPageSetupDialogData_p")) { | |
d24a34bb RD |
1396 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPageSetupDialogData_SetDefaultMinMargins. Expected _wxPageSetupDialogData_p."); |
1397 | return NULL; | |
1398 | } | |
1399 | } | |
1400 | _arg1 = (bool ) tempbool1; | |
1401 | { | |
1402 | wxPy_BEGIN_ALLOW_THREADS; | |
1403 | wxPageSetupDialogData_SetDefaultMinMargins(_arg0,_arg1); | |
1404 | ||
1405 | wxPy_END_ALLOW_THREADS; | |
1406 | } Py_INCREF(Py_None); | |
1407 | _resultobj = Py_None; | |
1408 | return _resultobj; | |
1409 | } | |
1410 | ||
1411 | #define wxPageSetupDialogData_SetMarginTopLeft(_swigobj,_swigarg0) (_swigobj->SetMarginTopLeft(_swigarg0)) | |
107e4716 | 1412 | static PyObject *_wrap_wxPageSetupDialogData_SetMarginTopLeft(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
1413 | PyObject * _resultobj; |
1414 | wxPageSetupDialogData * _arg0; | |
1415 | wxPoint * _arg1; | |
2d091820 | 1416 | PyObject * _argo0 = 0; |
37f6a977 RD |
1417 | wxPoint temp; |
1418 | PyObject * _obj1 = 0; | |
107e4716 | 1419 | char *_kwnames[] = { "self","pt", NULL }; |
d24a34bb RD |
1420 | |
1421 | self = self; | |
37f6a977 | 1422 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxPageSetupDialogData_SetMarginTopLeft",_kwnames,&_argo0,&_obj1)) |
d24a34bb | 1423 | return NULL; |
2d091820 RD |
1424 | if (_argo0) { |
1425 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1426 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPageSetupDialogData_p")) { | |
d24a34bb RD |
1427 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPageSetupDialogData_SetMarginTopLeft. Expected _wxPageSetupDialogData_p."); |
1428 | return NULL; | |
1429 | } | |
1430 | } | |
37f6a977 RD |
1431 | { |
1432 | _arg1 = &temp; | |
1433 | if (! wxPoint_helper(_obj1, &_arg1)) | |
d24a34bb | 1434 | return NULL; |
37f6a977 | 1435 | } |
d24a34bb RD |
1436 | { |
1437 | wxPy_BEGIN_ALLOW_THREADS; | |
1438 | wxPageSetupDialogData_SetMarginTopLeft(_arg0,*_arg1); | |
1439 | ||
1440 | wxPy_END_ALLOW_THREADS; | |
1441 | } Py_INCREF(Py_None); | |
1442 | _resultobj = Py_None; | |
1443 | return _resultobj; | |
1444 | } | |
1445 | ||
1446 | #define wxPageSetupDialogData_SetMarginBottomRight(_swigobj,_swigarg0) (_swigobj->SetMarginBottomRight(_swigarg0)) | |
107e4716 | 1447 | static PyObject *_wrap_wxPageSetupDialogData_SetMarginBottomRight(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
1448 | PyObject * _resultobj; |
1449 | wxPageSetupDialogData * _arg0; | |
1450 | wxPoint * _arg1; | |
2d091820 | 1451 | PyObject * _argo0 = 0; |
37f6a977 RD |
1452 | wxPoint temp; |
1453 | PyObject * _obj1 = 0; | |
107e4716 | 1454 | char *_kwnames[] = { "self","pt", NULL }; |
d24a34bb RD |
1455 | |
1456 | self = self; | |
37f6a977 | 1457 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxPageSetupDialogData_SetMarginBottomRight",_kwnames,&_argo0,&_obj1)) |
d24a34bb | 1458 | return NULL; |
2d091820 RD |
1459 | if (_argo0) { |
1460 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1461 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPageSetupDialogData_p")) { | |
d24a34bb RD |
1462 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPageSetupDialogData_SetMarginBottomRight. Expected _wxPageSetupDialogData_p."); |
1463 | return NULL; | |
1464 | } | |
1465 | } | |
37f6a977 RD |
1466 | { |
1467 | _arg1 = &temp; | |
1468 | if (! wxPoint_helper(_obj1, &_arg1)) | |
d24a34bb | 1469 | return NULL; |
37f6a977 | 1470 | } |
d24a34bb RD |
1471 | { |
1472 | wxPy_BEGIN_ALLOW_THREADS; | |
1473 | wxPageSetupDialogData_SetMarginBottomRight(_arg0,*_arg1); | |
1474 | ||
1475 | wxPy_END_ALLOW_THREADS; | |
1476 | } Py_INCREF(Py_None); | |
1477 | _resultobj = Py_None; | |
1478 | return _resultobj; | |
1479 | } | |
1480 | ||
1481 | #define wxPageSetupDialogData_SetMinMarginTopLeft(_swigobj,_swigarg0) (_swigobj->SetMinMarginTopLeft(_swigarg0)) | |
107e4716 | 1482 | static PyObject *_wrap_wxPageSetupDialogData_SetMinMarginTopLeft(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
1483 | PyObject * _resultobj; |
1484 | wxPageSetupDialogData * _arg0; | |
1485 | wxPoint * _arg1; | |
2d091820 | 1486 | PyObject * _argo0 = 0; |
37f6a977 RD |
1487 | wxPoint temp; |
1488 | PyObject * _obj1 = 0; | |
107e4716 | 1489 | char *_kwnames[] = { "self","pt", NULL }; |
d24a34bb RD |
1490 | |
1491 | self = self; | |
37f6a977 | 1492 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxPageSetupDialogData_SetMinMarginTopLeft",_kwnames,&_argo0,&_obj1)) |
d24a34bb | 1493 | return NULL; |
2d091820 RD |
1494 | if (_argo0) { |
1495 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1496 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPageSetupDialogData_p")) { | |
d24a34bb RD |
1497 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPageSetupDialogData_SetMinMarginTopLeft. Expected _wxPageSetupDialogData_p."); |
1498 | return NULL; | |
1499 | } | |
1500 | } | |
37f6a977 RD |
1501 | { |
1502 | _arg1 = &temp; | |
1503 | if (! wxPoint_helper(_obj1, &_arg1)) | |
d24a34bb | 1504 | return NULL; |
37f6a977 | 1505 | } |
d24a34bb RD |
1506 | { |
1507 | wxPy_BEGIN_ALLOW_THREADS; | |
1508 | wxPageSetupDialogData_SetMinMarginTopLeft(_arg0,*_arg1); | |
1509 | ||
1510 | wxPy_END_ALLOW_THREADS; | |
1511 | } Py_INCREF(Py_None); | |
1512 | _resultobj = Py_None; | |
1513 | return _resultobj; | |
1514 | } | |
1515 | ||
1516 | #define wxPageSetupDialogData_SetMinMarginBottomRight(_swigobj,_swigarg0) (_swigobj->SetMinMarginBottomRight(_swigarg0)) | |
107e4716 | 1517 | static PyObject *_wrap_wxPageSetupDialogData_SetMinMarginBottomRight(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
1518 | PyObject * _resultobj; |
1519 | wxPageSetupDialogData * _arg0; | |
1520 | wxPoint * _arg1; | |
2d091820 | 1521 | PyObject * _argo0 = 0; |
37f6a977 RD |
1522 | wxPoint temp; |
1523 | PyObject * _obj1 = 0; | |
107e4716 | 1524 | char *_kwnames[] = { "self","pt", NULL }; |
d24a34bb RD |
1525 | |
1526 | self = self; | |
37f6a977 | 1527 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxPageSetupDialogData_SetMinMarginBottomRight",_kwnames,&_argo0,&_obj1)) |
d24a34bb | 1528 | return NULL; |
2d091820 RD |
1529 | if (_argo0) { |
1530 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1531 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPageSetupDialogData_p")) { | |
d24a34bb RD |
1532 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPageSetupDialogData_SetMinMarginBottomRight. Expected _wxPageSetupDialogData_p."); |
1533 | return NULL; | |
1534 | } | |
1535 | } | |
37f6a977 RD |
1536 | { |
1537 | _arg1 = &temp; | |
1538 | if (! wxPoint_helper(_obj1, &_arg1)) | |
d24a34bb | 1539 | return NULL; |
37f6a977 | 1540 | } |
d24a34bb RD |
1541 | { |
1542 | wxPy_BEGIN_ALLOW_THREADS; | |
1543 | wxPageSetupDialogData_SetMinMarginBottomRight(_arg0,*_arg1); | |
1544 | ||
1545 | wxPy_END_ALLOW_THREADS; | |
1546 | } Py_INCREF(Py_None); | |
1547 | _resultobj = Py_None; | |
1548 | return _resultobj; | |
1549 | } | |
1550 | ||
1551 | #define wxPageSetupDialogData_SetPaperId(_swigobj,_swigarg0) (_swigobj->SetPaperId(_swigarg0)) | |
107e4716 | 1552 | static PyObject *_wrap_wxPageSetupDialogData_SetPaperId(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
1553 | PyObject * _resultobj; |
1554 | wxPageSetupDialogData * _arg0; | |
1555 | wxPaperSize * _arg1; | |
2d091820 RD |
1556 | PyObject * _argo0 = 0; |
1557 | PyObject * _argo1 = 0; | |
107e4716 | 1558 | char *_kwnames[] = { "self","id", NULL }; |
d24a34bb RD |
1559 | |
1560 | self = self; | |
107e4716 | 1561 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxPageSetupDialogData_SetPaperId",_kwnames,&_argo0,&_argo1)) |
d24a34bb | 1562 | return NULL; |
2d091820 RD |
1563 | if (_argo0) { |
1564 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1565 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPageSetupDialogData_p")) { | |
d24a34bb RD |
1566 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPageSetupDialogData_SetPaperId. Expected _wxPageSetupDialogData_p."); |
1567 | return NULL; | |
1568 | } | |
1569 | } | |
2d091820 RD |
1570 | if (_argo1) { |
1571 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
1572 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxPaperSize_p")) { | |
d24a34bb RD |
1573 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxPageSetupDialogData_SetPaperId. Expected _wxPaperSize_p."); |
1574 | return NULL; | |
1575 | } | |
1576 | } | |
1577 | { | |
1578 | wxPy_BEGIN_ALLOW_THREADS; | |
1579 | wxPageSetupDialogData_SetPaperId(_arg0,*_arg1); | |
1580 | ||
1581 | wxPy_END_ALLOW_THREADS; | |
1582 | } Py_INCREF(Py_None); | |
1583 | _resultobj = Py_None; | |
1584 | return _resultobj; | |
1585 | } | |
1586 | ||
1587 | #define wxPageSetupDialogData_SetPaperSize(_swigobj,_swigarg0) (_swigobj->SetPaperSize(_swigarg0)) | |
107e4716 | 1588 | static PyObject *_wrap_wxPageSetupDialogData_SetPaperSize(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
1589 | PyObject * _resultobj; |
1590 | wxPageSetupDialogData * _arg0; | |
1591 | wxSize * _arg1; | |
2d091820 | 1592 | PyObject * _argo0 = 0; |
37f6a977 RD |
1593 | wxSize temp; |
1594 | PyObject * _obj1 = 0; | |
107e4716 | 1595 | char *_kwnames[] = { "self","size", NULL }; |
d24a34bb RD |
1596 | |
1597 | self = self; | |
37f6a977 | 1598 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxPageSetupDialogData_SetPaperSize",_kwnames,&_argo0,&_obj1)) |
d24a34bb | 1599 | return NULL; |
2d091820 RD |
1600 | if (_argo0) { |
1601 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1602 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPageSetupDialogData_p")) { | |
d24a34bb RD |
1603 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPageSetupDialogData_SetPaperSize. Expected _wxPageSetupDialogData_p."); |
1604 | return NULL; | |
1605 | } | |
1606 | } | |
37f6a977 RD |
1607 | { |
1608 | _arg1 = &temp; | |
1609 | if (! wxSize_helper(_obj1, &_arg1)) | |
d24a34bb | 1610 | return NULL; |
37f6a977 | 1611 | } |
d24a34bb RD |
1612 | { |
1613 | wxPy_BEGIN_ALLOW_THREADS; | |
1614 | wxPageSetupDialogData_SetPaperSize(_arg0,*_arg1); | |
1615 | ||
1616 | wxPy_END_ALLOW_THREADS; | |
1617 | } Py_INCREF(Py_None); | |
1618 | _resultobj = Py_None; | |
1619 | return _resultobj; | |
1620 | } | |
1621 | ||
1622 | #define wxPageSetupDialogData_SetPrintData(_swigobj,_swigarg0) (_swigobj->SetPrintData(_swigarg0)) | |
107e4716 | 1623 | static PyObject *_wrap_wxPageSetupDialogData_SetPrintData(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
1624 | PyObject * _resultobj; |
1625 | wxPageSetupDialogData * _arg0; | |
1626 | wxPrintData * _arg1; | |
2d091820 RD |
1627 | PyObject * _argo0 = 0; |
1628 | PyObject * _argo1 = 0; | |
107e4716 | 1629 | char *_kwnames[] = { "self","printData", NULL }; |
d24a34bb RD |
1630 | |
1631 | self = self; | |
107e4716 | 1632 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxPageSetupDialogData_SetPrintData",_kwnames,&_argo0,&_argo1)) |
d24a34bb | 1633 | return NULL; |
2d091820 RD |
1634 | if (_argo0) { |
1635 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1636 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPageSetupDialogData_p")) { | |
d24a34bb RD |
1637 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPageSetupDialogData_SetPrintData. Expected _wxPageSetupDialogData_p."); |
1638 | return NULL; | |
1639 | } | |
1640 | } | |
2d091820 RD |
1641 | if (_argo1) { |
1642 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
1643 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxPrintData_p")) { | |
d24a34bb RD |
1644 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxPageSetupDialogData_SetPrintData. Expected _wxPrintData_p."); |
1645 | return NULL; | |
1646 | } | |
1647 | } | |
1648 | { | |
1649 | wxPy_BEGIN_ALLOW_THREADS; | |
1650 | wxPageSetupDialogData_SetPrintData(_arg0,*_arg1); | |
1651 | ||
1652 | wxPy_END_ALLOW_THREADS; | |
1653 | } Py_INCREF(Py_None); | |
1654 | _resultobj = Py_None; | |
1655 | return _resultobj; | |
1656 | } | |
1657 | ||
1658 | static void *SwigwxPageSetupDialogTowxDialog(void *ptr) { | |
1659 | wxPageSetupDialog *src; | |
1660 | wxDialog *dest; | |
1661 | src = (wxPageSetupDialog *) ptr; | |
1662 | dest = (wxDialog *) src; | |
1663 | return (void *) dest; | |
1664 | } | |
1665 | ||
1666 | static void *SwigwxPageSetupDialogTowxPanel(void *ptr) { | |
1667 | wxPageSetupDialog *src; | |
1668 | wxPanel *dest; | |
1669 | src = (wxPageSetupDialog *) ptr; | |
1670 | dest = (wxPanel *) src; | |
1671 | return (void *) dest; | |
1672 | } | |
1673 | ||
1674 | static void *SwigwxPageSetupDialogTowxWindow(void *ptr) { | |
1675 | wxPageSetupDialog *src; | |
1676 | wxWindow *dest; | |
1677 | src = (wxPageSetupDialog *) ptr; | |
1678 | dest = (wxWindow *) src; | |
1679 | return (void *) dest; | |
1680 | } | |
1681 | ||
1682 | static void *SwigwxPageSetupDialogTowxEvtHandler(void *ptr) { | |
1683 | wxPageSetupDialog *src; | |
1684 | wxEvtHandler *dest; | |
1685 | src = (wxPageSetupDialog *) ptr; | |
1686 | dest = (wxEvtHandler *) src; | |
1687 | return (void *) dest; | |
1688 | } | |
1689 | ||
1690 | #define new_wxPageSetupDialog(_swigarg0,_swigarg1) (new wxPageSetupDialog(_swigarg0,_swigarg1)) | |
107e4716 | 1691 | static PyObject *_wrap_new_wxPageSetupDialog(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
1692 | PyObject * _resultobj; |
1693 | wxPageSetupDialog * _result; | |
1694 | wxWindow * _arg0; | |
2d091820 RD |
1695 | wxPageSetupDialogData * _arg1 = (wxPageSetupDialogData *) NULL; |
1696 | PyObject * _argo0 = 0; | |
1697 | PyObject * _argo1 = 0; | |
107e4716 | 1698 | char *_kwnames[] = { "parent","data", NULL }; |
d24a34bb RD |
1699 | char _ptemp[128]; |
1700 | ||
1701 | self = self; | |
107e4716 | 1702 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|O:new_wxPageSetupDialog",_kwnames,&_argo0,&_argo1)) |
d24a34bb | 1703 | return NULL; |
2d091820 RD |
1704 | if (_argo0) { |
1705 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1706 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
d24a34bb RD |
1707 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of new_wxPageSetupDialog. Expected _wxWindow_p."); |
1708 | return NULL; | |
1709 | } | |
1710 | } | |
2d091820 RD |
1711 | if (_argo1) { |
1712 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
1713 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxPageSetupDialogData_p")) { | |
d24a34bb RD |
1714 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of new_wxPageSetupDialog. Expected _wxPageSetupDialogData_p."); |
1715 | return NULL; | |
1716 | } | |
1717 | } | |
1718 | { | |
1719 | wxPy_BEGIN_ALLOW_THREADS; | |
1720 | _result = (wxPageSetupDialog *)new_wxPageSetupDialog(_arg0,_arg1); | |
1721 | ||
1722 | wxPy_END_ALLOW_THREADS; | |
2d091820 RD |
1723 | } if (_result) { |
1724 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPageSetupDialog_p"); | |
1725 | _resultobj = Py_BuildValue("s",_ptemp); | |
1726 | } else { | |
1727 | Py_INCREF(Py_None); | |
1728 | _resultobj = Py_None; | |
1729 | } | |
d24a34bb RD |
1730 | return _resultobj; |
1731 | } | |
1732 | ||
1733 | #define wxPageSetupDialog_GetPageSetupData(_swigobj) (_swigobj->GetPageSetupData()) | |
107e4716 | 1734 | static PyObject *_wrap_wxPageSetupDialog_GetPageSetupData(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
1735 | PyObject * _resultobj; |
1736 | wxPageSetupDialogData * _result; | |
1737 | wxPageSetupDialog * _arg0; | |
2d091820 | 1738 | PyObject * _argo0 = 0; |
107e4716 | 1739 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
1740 | char _ptemp[128]; |
1741 | ||
1742 | self = self; | |
107e4716 | 1743 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPageSetupDialog_GetPageSetupData",_kwnames,&_argo0)) |
d24a34bb | 1744 | return NULL; |
2d091820 RD |
1745 | if (_argo0) { |
1746 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1747 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPageSetupDialog_p")) { | |
d24a34bb RD |
1748 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPageSetupDialog_GetPageSetupData. Expected _wxPageSetupDialog_p."); |
1749 | return NULL; | |
1750 | } | |
1751 | } | |
1752 | { | |
1753 | wxPy_BEGIN_ALLOW_THREADS; | |
1754 | wxPageSetupDialogData & _result_ref = wxPageSetupDialog_GetPageSetupData(_arg0); | |
1755 | _result = (wxPageSetupDialogData *) &_result_ref; | |
1756 | ||
1757 | wxPy_END_ALLOW_THREADS; | |
2d091820 RD |
1758 | } if (_result) { |
1759 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPageSetupDialogData_p"); | |
1760 | _resultobj = Py_BuildValue("s",_ptemp); | |
1761 | } else { | |
1762 | Py_INCREF(Py_None); | |
1763 | _resultobj = Py_None; | |
1764 | } | |
d24a34bb RD |
1765 | return _resultobj; |
1766 | } | |
1767 | ||
1768 | #define wxPageSetupDialog_ShowModal(_swigobj) (_swigobj->ShowModal()) | |
107e4716 | 1769 | static PyObject *_wrap_wxPageSetupDialog_ShowModal(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
1770 | PyObject * _resultobj; |
1771 | int _result; | |
1772 | wxPageSetupDialog * _arg0; | |
2d091820 | 1773 | PyObject * _argo0 = 0; |
107e4716 | 1774 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
1775 | |
1776 | self = self; | |
107e4716 | 1777 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPageSetupDialog_ShowModal",_kwnames,&_argo0)) |
d24a34bb | 1778 | return NULL; |
2d091820 RD |
1779 | if (_argo0) { |
1780 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1781 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPageSetupDialog_p")) { | |
d24a34bb RD |
1782 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPageSetupDialog_ShowModal. Expected _wxPageSetupDialog_p."); |
1783 | return NULL; | |
1784 | } | |
1785 | } | |
1786 | { | |
1787 | wxPy_BEGIN_ALLOW_THREADS; | |
1788 | _result = (int )wxPageSetupDialog_ShowModal(_arg0); | |
1789 | ||
1790 | wxPy_END_ALLOW_THREADS; | |
1791 | } _resultobj = Py_BuildValue("i",_result); | |
1792 | return _resultobj; | |
1793 | } | |
1794 | ||
1795 | #define new_wxPrintDialogData() (new wxPrintDialogData()) | |
107e4716 | 1796 | static PyObject *_wrap_new_wxPrintDialogData(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
1797 | PyObject * _resultobj; |
1798 | wxPrintDialogData * _result; | |
107e4716 | 1799 | char *_kwnames[] = { NULL }; |
d24a34bb RD |
1800 | char _ptemp[128]; |
1801 | ||
1802 | self = self; | |
107e4716 | 1803 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxPrintDialogData",_kwnames)) |
d24a34bb RD |
1804 | return NULL; |
1805 | { | |
1806 | wxPy_BEGIN_ALLOW_THREADS; | |
1807 | _result = (wxPrintDialogData *)new_wxPrintDialogData(); | |
1808 | ||
1809 | wxPy_END_ALLOW_THREADS; | |
2d091820 RD |
1810 | } if (_result) { |
1811 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPrintDialogData_p"); | |
1812 | _resultobj = Py_BuildValue("s",_ptemp); | |
1813 | } else { | |
1814 | Py_INCREF(Py_None); | |
1815 | _resultobj = Py_None; | |
1816 | } | |
d24a34bb RD |
1817 | return _resultobj; |
1818 | } | |
1819 | ||
1820 | #define delete_wxPrintDialogData(_swigobj) (delete _swigobj) | |
107e4716 | 1821 | static PyObject *_wrap_delete_wxPrintDialogData(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
1822 | PyObject * _resultobj; |
1823 | wxPrintDialogData * _arg0; | |
2d091820 | 1824 | PyObject * _argo0 = 0; |
107e4716 | 1825 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
1826 | |
1827 | self = self; | |
107e4716 | 1828 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:delete_wxPrintDialogData",_kwnames,&_argo0)) |
d24a34bb | 1829 | return NULL; |
2d091820 RD |
1830 | if (_argo0) { |
1831 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1832 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintDialogData_p")) { | |
d24a34bb RD |
1833 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of delete_wxPrintDialogData. Expected _wxPrintDialogData_p."); |
1834 | return NULL; | |
1835 | } | |
1836 | } | |
1837 | { | |
1838 | wxPy_BEGIN_ALLOW_THREADS; | |
1839 | delete_wxPrintDialogData(_arg0); | |
1840 | ||
1841 | wxPy_END_ALLOW_THREADS; | |
1842 | } Py_INCREF(Py_None); | |
1843 | _resultobj = Py_None; | |
1844 | return _resultobj; | |
1845 | } | |
1846 | ||
1847 | #define wxPrintDialogData_EnableHelp(_swigobj,_swigarg0) (_swigobj->EnableHelp(_swigarg0)) | |
107e4716 | 1848 | static PyObject *_wrap_wxPrintDialogData_EnableHelp(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
1849 | PyObject * _resultobj; |
1850 | wxPrintDialogData * _arg0; | |
1851 | bool _arg1; | |
2d091820 | 1852 | PyObject * _argo0 = 0; |
d24a34bb | 1853 | int tempbool1; |
107e4716 | 1854 | char *_kwnames[] = { "self","flag", NULL }; |
d24a34bb RD |
1855 | |
1856 | self = self; | |
107e4716 | 1857 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPrintDialogData_EnableHelp",_kwnames,&_argo0,&tempbool1)) |
d24a34bb | 1858 | return NULL; |
2d091820 RD |
1859 | if (_argo0) { |
1860 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1861 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintDialogData_p")) { | |
d24a34bb RD |
1862 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintDialogData_EnableHelp. Expected _wxPrintDialogData_p."); |
1863 | return NULL; | |
1864 | } | |
1865 | } | |
1866 | _arg1 = (bool ) tempbool1; | |
1867 | { | |
1868 | wxPy_BEGIN_ALLOW_THREADS; | |
1869 | wxPrintDialogData_EnableHelp(_arg0,_arg1); | |
1870 | ||
1871 | wxPy_END_ALLOW_THREADS; | |
1872 | } Py_INCREF(Py_None); | |
1873 | _resultobj = Py_None; | |
1874 | return _resultobj; | |
1875 | } | |
1876 | ||
1877 | #define wxPrintDialogData_EnablePageNumbers(_swigobj,_swigarg0) (_swigobj->EnablePageNumbers(_swigarg0)) | |
107e4716 | 1878 | static PyObject *_wrap_wxPrintDialogData_EnablePageNumbers(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
1879 | PyObject * _resultobj; |
1880 | wxPrintDialogData * _arg0; | |
1881 | bool _arg1; | |
2d091820 | 1882 | PyObject * _argo0 = 0; |
d24a34bb | 1883 | int tempbool1; |
107e4716 | 1884 | char *_kwnames[] = { "self","flag", NULL }; |
d24a34bb RD |
1885 | |
1886 | self = self; | |
107e4716 | 1887 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPrintDialogData_EnablePageNumbers",_kwnames,&_argo0,&tempbool1)) |
d24a34bb | 1888 | return NULL; |
2d091820 RD |
1889 | if (_argo0) { |
1890 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1891 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintDialogData_p")) { | |
d24a34bb RD |
1892 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintDialogData_EnablePageNumbers. Expected _wxPrintDialogData_p."); |
1893 | return NULL; | |
1894 | } | |
1895 | } | |
1896 | _arg1 = (bool ) tempbool1; | |
1897 | { | |
1898 | wxPy_BEGIN_ALLOW_THREADS; | |
1899 | wxPrintDialogData_EnablePageNumbers(_arg0,_arg1); | |
1900 | ||
1901 | wxPy_END_ALLOW_THREADS; | |
1902 | } Py_INCREF(Py_None); | |
1903 | _resultobj = Py_None; | |
1904 | return _resultobj; | |
1905 | } | |
1906 | ||
1907 | #define wxPrintDialogData_EnablePrintToFile(_swigobj,_swigarg0) (_swigobj->EnablePrintToFile(_swigarg0)) | |
107e4716 | 1908 | static PyObject *_wrap_wxPrintDialogData_EnablePrintToFile(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
1909 | PyObject * _resultobj; |
1910 | wxPrintDialogData * _arg0; | |
1911 | bool _arg1; | |
2d091820 | 1912 | PyObject * _argo0 = 0; |
d24a34bb | 1913 | int tempbool1; |
107e4716 | 1914 | char *_kwnames[] = { "self","flag", NULL }; |
d24a34bb RD |
1915 | |
1916 | self = self; | |
107e4716 | 1917 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPrintDialogData_EnablePrintToFile",_kwnames,&_argo0,&tempbool1)) |
d24a34bb | 1918 | return NULL; |
2d091820 RD |
1919 | if (_argo0) { |
1920 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1921 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintDialogData_p")) { | |
d24a34bb RD |
1922 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintDialogData_EnablePrintToFile. Expected _wxPrintDialogData_p."); |
1923 | return NULL; | |
1924 | } | |
1925 | } | |
1926 | _arg1 = (bool ) tempbool1; | |
1927 | { | |
1928 | wxPy_BEGIN_ALLOW_THREADS; | |
1929 | wxPrintDialogData_EnablePrintToFile(_arg0,_arg1); | |
1930 | ||
1931 | wxPy_END_ALLOW_THREADS; | |
1932 | } Py_INCREF(Py_None); | |
1933 | _resultobj = Py_None; | |
1934 | return _resultobj; | |
1935 | } | |
1936 | ||
1937 | #define wxPrintDialogData_EnableSelection(_swigobj,_swigarg0) (_swigobj->EnableSelection(_swigarg0)) | |
107e4716 | 1938 | static PyObject *_wrap_wxPrintDialogData_EnableSelection(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
1939 | PyObject * _resultobj; |
1940 | wxPrintDialogData * _arg0; | |
1941 | bool _arg1; | |
2d091820 | 1942 | PyObject * _argo0 = 0; |
d24a34bb | 1943 | int tempbool1; |
107e4716 | 1944 | char *_kwnames[] = { "self","flag", NULL }; |
d24a34bb RD |
1945 | |
1946 | self = self; | |
107e4716 | 1947 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPrintDialogData_EnableSelection",_kwnames,&_argo0,&tempbool1)) |
d24a34bb | 1948 | return NULL; |
2d091820 RD |
1949 | if (_argo0) { |
1950 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1951 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintDialogData_p")) { | |
d24a34bb RD |
1952 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintDialogData_EnableSelection. Expected _wxPrintDialogData_p."); |
1953 | return NULL; | |
1954 | } | |
1955 | } | |
1956 | _arg1 = (bool ) tempbool1; | |
1957 | { | |
1958 | wxPy_BEGIN_ALLOW_THREADS; | |
1959 | wxPrintDialogData_EnableSelection(_arg0,_arg1); | |
1960 | ||
1961 | wxPy_END_ALLOW_THREADS; | |
1962 | } Py_INCREF(Py_None); | |
1963 | _resultobj = Py_None; | |
1964 | return _resultobj; | |
1965 | } | |
1966 | ||
1967 | #define wxPrintDialogData_GetAllPages(_swigobj) (_swigobj->GetAllPages()) | |
107e4716 | 1968 | static PyObject *_wrap_wxPrintDialogData_GetAllPages(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
1969 | PyObject * _resultobj; |
1970 | bool _result; | |
1971 | wxPrintDialogData * _arg0; | |
2d091820 | 1972 | PyObject * _argo0 = 0; |
107e4716 | 1973 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
1974 | |
1975 | self = self; | |
107e4716 | 1976 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintDialogData_GetAllPages",_kwnames,&_argo0)) |
d24a34bb | 1977 | return NULL; |
2d091820 RD |
1978 | if (_argo0) { |
1979 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
1980 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintDialogData_p")) { | |
d24a34bb RD |
1981 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintDialogData_GetAllPages. Expected _wxPrintDialogData_p."); |
1982 | return NULL; | |
1983 | } | |
1984 | } | |
1985 | { | |
1986 | wxPy_BEGIN_ALLOW_THREADS; | |
1987 | _result = (bool )wxPrintDialogData_GetAllPages(_arg0); | |
1988 | ||
1989 | wxPy_END_ALLOW_THREADS; | |
1990 | } _resultobj = Py_BuildValue("i",_result); | |
1991 | return _resultobj; | |
1992 | } | |
1993 | ||
1994 | #define wxPrintDialogData_GetCollate(_swigobj) (_swigobj->GetCollate()) | |
107e4716 | 1995 | static PyObject *_wrap_wxPrintDialogData_GetCollate(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
1996 | PyObject * _resultobj; |
1997 | bool _result; | |
1998 | wxPrintDialogData * _arg0; | |
2d091820 | 1999 | PyObject * _argo0 = 0; |
107e4716 | 2000 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
2001 | |
2002 | self = self; | |
107e4716 | 2003 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintDialogData_GetCollate",_kwnames,&_argo0)) |
d24a34bb | 2004 | return NULL; |
2d091820 RD |
2005 | if (_argo0) { |
2006 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2007 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintDialogData_p")) { | |
d24a34bb RD |
2008 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintDialogData_GetCollate. Expected _wxPrintDialogData_p."); |
2009 | return NULL; | |
2010 | } | |
2011 | } | |
2012 | { | |
2013 | wxPy_BEGIN_ALLOW_THREADS; | |
2014 | _result = (bool )wxPrintDialogData_GetCollate(_arg0); | |
2015 | ||
2016 | wxPy_END_ALLOW_THREADS; | |
2017 | } _resultobj = Py_BuildValue("i",_result); | |
2018 | return _resultobj; | |
2019 | } | |
2020 | ||
2021 | #define wxPrintDialogData_GetFromPage(_swigobj) (_swigobj->GetFromPage()) | |
107e4716 | 2022 | static PyObject *_wrap_wxPrintDialogData_GetFromPage(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
2023 | PyObject * _resultobj; |
2024 | int _result; | |
2025 | wxPrintDialogData * _arg0; | |
2d091820 | 2026 | PyObject * _argo0 = 0; |
107e4716 | 2027 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
2028 | |
2029 | self = self; | |
107e4716 | 2030 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintDialogData_GetFromPage",_kwnames,&_argo0)) |
d24a34bb | 2031 | return NULL; |
2d091820 RD |
2032 | if (_argo0) { |
2033 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2034 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintDialogData_p")) { | |
d24a34bb RD |
2035 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintDialogData_GetFromPage. Expected _wxPrintDialogData_p."); |
2036 | return NULL; | |
2037 | } | |
2038 | } | |
2039 | { | |
2040 | wxPy_BEGIN_ALLOW_THREADS; | |
2041 | _result = (int )wxPrintDialogData_GetFromPage(_arg0); | |
2042 | ||
2043 | wxPy_END_ALLOW_THREADS; | |
2044 | } _resultobj = Py_BuildValue("i",_result); | |
2045 | return _resultobj; | |
2046 | } | |
2047 | ||
2048 | #define wxPrintDialogData_GetMaxPage(_swigobj) (_swigobj->GetMaxPage()) | |
107e4716 | 2049 | static PyObject *_wrap_wxPrintDialogData_GetMaxPage(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
2050 | PyObject * _resultobj; |
2051 | int _result; | |
2052 | wxPrintDialogData * _arg0; | |
2d091820 | 2053 | PyObject * _argo0 = 0; |
107e4716 | 2054 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
2055 | |
2056 | self = self; | |
107e4716 | 2057 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintDialogData_GetMaxPage",_kwnames,&_argo0)) |
d24a34bb | 2058 | return NULL; |
2d091820 RD |
2059 | if (_argo0) { |
2060 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2061 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintDialogData_p")) { | |
d24a34bb RD |
2062 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintDialogData_GetMaxPage. Expected _wxPrintDialogData_p."); |
2063 | return NULL; | |
2064 | } | |
2065 | } | |
2066 | { | |
2067 | wxPy_BEGIN_ALLOW_THREADS; | |
2068 | _result = (int )wxPrintDialogData_GetMaxPage(_arg0); | |
2069 | ||
2070 | wxPy_END_ALLOW_THREADS; | |
2071 | } _resultobj = Py_BuildValue("i",_result); | |
2072 | return _resultobj; | |
2073 | } | |
2074 | ||
2075 | #define wxPrintDialogData_GetMinPage(_swigobj) (_swigobj->GetMinPage()) | |
107e4716 | 2076 | static PyObject *_wrap_wxPrintDialogData_GetMinPage(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
2077 | PyObject * _resultobj; |
2078 | int _result; | |
2079 | wxPrintDialogData * _arg0; | |
2d091820 | 2080 | PyObject * _argo0 = 0; |
107e4716 | 2081 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
2082 | |
2083 | self = self; | |
107e4716 | 2084 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintDialogData_GetMinPage",_kwnames,&_argo0)) |
d24a34bb | 2085 | return NULL; |
2d091820 RD |
2086 | if (_argo0) { |
2087 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2088 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintDialogData_p")) { | |
d24a34bb RD |
2089 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintDialogData_GetMinPage. Expected _wxPrintDialogData_p."); |
2090 | return NULL; | |
2091 | } | |
2092 | } | |
2093 | { | |
2094 | wxPy_BEGIN_ALLOW_THREADS; | |
2095 | _result = (int )wxPrintDialogData_GetMinPage(_arg0); | |
2096 | ||
2097 | wxPy_END_ALLOW_THREADS; | |
2098 | } _resultobj = Py_BuildValue("i",_result); | |
2099 | return _resultobj; | |
2100 | } | |
2101 | ||
2102 | #define wxPrintDialogData_GetNoCopies(_swigobj) (_swigobj->GetNoCopies()) | |
107e4716 | 2103 | static PyObject *_wrap_wxPrintDialogData_GetNoCopies(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
2104 | PyObject * _resultobj; |
2105 | int _result; | |
2106 | wxPrintDialogData * _arg0; | |
2d091820 | 2107 | PyObject * _argo0 = 0; |
107e4716 | 2108 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
2109 | |
2110 | self = self; | |
107e4716 | 2111 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintDialogData_GetNoCopies",_kwnames,&_argo0)) |
d24a34bb | 2112 | return NULL; |
2d091820 RD |
2113 | if (_argo0) { |
2114 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2115 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintDialogData_p")) { | |
d24a34bb RD |
2116 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintDialogData_GetNoCopies. Expected _wxPrintDialogData_p."); |
2117 | return NULL; | |
2118 | } | |
2119 | } | |
2120 | { | |
2121 | wxPy_BEGIN_ALLOW_THREADS; | |
2122 | _result = (int )wxPrintDialogData_GetNoCopies(_arg0); | |
2123 | ||
2124 | wxPy_END_ALLOW_THREADS; | |
2125 | } _resultobj = Py_BuildValue("i",_result); | |
2126 | return _resultobj; | |
2127 | } | |
2128 | ||
2129 | static wxPrintData * wxPrintDialogData_GetPrintData(wxPrintDialogData *self) { | |
2130 | return new wxPrintData(self->GetPrintData()); // force a copy | |
2131 | } | |
107e4716 | 2132 | static PyObject *_wrap_wxPrintDialogData_GetPrintData(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
2133 | PyObject * _resultobj; |
2134 | wxPrintData * _result; | |
2135 | wxPrintDialogData * _arg0; | |
2d091820 | 2136 | PyObject * _argo0 = 0; |
107e4716 | 2137 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
2138 | char _ptemp[128]; |
2139 | ||
2140 | self = self; | |
107e4716 | 2141 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintDialogData_GetPrintData",_kwnames,&_argo0)) |
d24a34bb | 2142 | return NULL; |
2d091820 RD |
2143 | if (_argo0) { |
2144 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2145 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintDialogData_p")) { | |
d24a34bb RD |
2146 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintDialogData_GetPrintData. Expected _wxPrintDialogData_p."); |
2147 | return NULL; | |
2148 | } | |
2149 | } | |
2150 | { | |
2151 | wxPy_BEGIN_ALLOW_THREADS; | |
2152 | _result = (wxPrintData *)wxPrintDialogData_GetPrintData(_arg0); | |
2153 | ||
2154 | wxPy_END_ALLOW_THREADS; | |
2d091820 RD |
2155 | } if (_result) { |
2156 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPrintData_p"); | |
2157 | _resultobj = Py_BuildValue("s",_ptemp); | |
2158 | } else { | |
2159 | Py_INCREF(Py_None); | |
2160 | _resultobj = Py_None; | |
2161 | } | |
d24a34bb RD |
2162 | return _resultobj; |
2163 | } | |
2164 | ||
2165 | #define wxPrintDialogData_GetPrintToFile(_swigobj) (_swigobj->GetPrintToFile()) | |
107e4716 | 2166 | static PyObject *_wrap_wxPrintDialogData_GetPrintToFile(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
2167 | PyObject * _resultobj; |
2168 | bool _result; | |
2169 | wxPrintDialogData * _arg0; | |
2d091820 | 2170 | PyObject * _argo0 = 0; |
107e4716 | 2171 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
2172 | |
2173 | self = self; | |
107e4716 | 2174 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintDialogData_GetPrintToFile",_kwnames,&_argo0)) |
d24a34bb | 2175 | return NULL; |
2d091820 RD |
2176 | if (_argo0) { |
2177 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2178 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintDialogData_p")) { | |
d24a34bb RD |
2179 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintDialogData_GetPrintToFile. Expected _wxPrintDialogData_p."); |
2180 | return NULL; | |
2181 | } | |
2182 | } | |
2183 | { | |
2184 | wxPy_BEGIN_ALLOW_THREADS; | |
2185 | _result = (bool )wxPrintDialogData_GetPrintToFile(_arg0); | |
2186 | ||
2187 | wxPy_END_ALLOW_THREADS; | |
2188 | } _resultobj = Py_BuildValue("i",_result); | |
2189 | return _resultobj; | |
2190 | } | |
2191 | ||
2192 | #define wxPrintDialogData_GetToPage(_swigobj) (_swigobj->GetToPage()) | |
107e4716 | 2193 | static PyObject *_wrap_wxPrintDialogData_GetToPage(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
2194 | PyObject * _resultobj; |
2195 | int _result; | |
2196 | wxPrintDialogData * _arg0; | |
2d091820 | 2197 | PyObject * _argo0 = 0; |
107e4716 | 2198 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
2199 | |
2200 | self = self; | |
107e4716 | 2201 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintDialogData_GetToPage",_kwnames,&_argo0)) |
d24a34bb | 2202 | return NULL; |
2d091820 RD |
2203 | if (_argo0) { |
2204 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2205 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintDialogData_p")) { | |
d24a34bb RD |
2206 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintDialogData_GetToPage. Expected _wxPrintDialogData_p."); |
2207 | return NULL; | |
2208 | } | |
2209 | } | |
2210 | { | |
2211 | wxPy_BEGIN_ALLOW_THREADS; | |
2212 | _result = (int )wxPrintDialogData_GetToPage(_arg0); | |
2213 | ||
2214 | wxPy_END_ALLOW_THREADS; | |
2215 | } _resultobj = Py_BuildValue("i",_result); | |
2216 | return _resultobj; | |
2217 | } | |
2218 | ||
2219 | #define wxPrintDialogData_SetCollate(_swigobj,_swigarg0) (_swigobj->SetCollate(_swigarg0)) | |
107e4716 | 2220 | static PyObject *_wrap_wxPrintDialogData_SetCollate(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
2221 | PyObject * _resultobj; |
2222 | wxPrintDialogData * _arg0; | |
2223 | bool _arg1; | |
2d091820 | 2224 | PyObject * _argo0 = 0; |
d24a34bb | 2225 | int tempbool1; |
107e4716 | 2226 | char *_kwnames[] = { "self","flag", NULL }; |
d24a34bb RD |
2227 | |
2228 | self = self; | |
107e4716 | 2229 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPrintDialogData_SetCollate",_kwnames,&_argo0,&tempbool1)) |
d24a34bb | 2230 | return NULL; |
2d091820 RD |
2231 | if (_argo0) { |
2232 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2233 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintDialogData_p")) { | |
d24a34bb RD |
2234 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintDialogData_SetCollate. Expected _wxPrintDialogData_p."); |
2235 | return NULL; | |
2236 | } | |
2237 | } | |
2238 | _arg1 = (bool ) tempbool1; | |
2239 | { | |
2240 | wxPy_BEGIN_ALLOW_THREADS; | |
2241 | wxPrintDialogData_SetCollate(_arg0,_arg1); | |
2242 | ||
2243 | wxPy_END_ALLOW_THREADS; | |
2244 | } Py_INCREF(Py_None); | |
2245 | _resultobj = Py_None; | |
2246 | return _resultobj; | |
2247 | } | |
2248 | ||
2249 | #define wxPrintDialogData_SetFromPage(_swigobj,_swigarg0) (_swigobj->SetFromPage(_swigarg0)) | |
107e4716 | 2250 | static PyObject *_wrap_wxPrintDialogData_SetFromPage(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
2251 | PyObject * _resultobj; |
2252 | wxPrintDialogData * _arg0; | |
2253 | int _arg1; | |
2d091820 | 2254 | PyObject * _argo0 = 0; |
107e4716 | 2255 | char *_kwnames[] = { "self","page", NULL }; |
d24a34bb RD |
2256 | |
2257 | self = self; | |
107e4716 | 2258 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPrintDialogData_SetFromPage",_kwnames,&_argo0,&_arg1)) |
d24a34bb | 2259 | return NULL; |
2d091820 RD |
2260 | if (_argo0) { |
2261 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2262 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintDialogData_p")) { | |
d24a34bb RD |
2263 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintDialogData_SetFromPage. Expected _wxPrintDialogData_p."); |
2264 | return NULL; | |
2265 | } | |
2266 | } | |
2267 | { | |
2268 | wxPy_BEGIN_ALLOW_THREADS; | |
2269 | wxPrintDialogData_SetFromPage(_arg0,_arg1); | |
2270 | ||
2271 | wxPy_END_ALLOW_THREADS; | |
2272 | } Py_INCREF(Py_None); | |
2273 | _resultobj = Py_None; | |
2274 | return _resultobj; | |
2275 | } | |
2276 | ||
2277 | #define wxPrintDialogData_SetMaxPage(_swigobj,_swigarg0) (_swigobj->SetMaxPage(_swigarg0)) | |
107e4716 | 2278 | static PyObject *_wrap_wxPrintDialogData_SetMaxPage(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
2279 | PyObject * _resultobj; |
2280 | wxPrintDialogData * _arg0; | |
2281 | int _arg1; | |
2d091820 | 2282 | PyObject * _argo0 = 0; |
107e4716 | 2283 | char *_kwnames[] = { "self","page", NULL }; |
d24a34bb RD |
2284 | |
2285 | self = self; | |
107e4716 | 2286 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPrintDialogData_SetMaxPage",_kwnames,&_argo0,&_arg1)) |
d24a34bb | 2287 | return NULL; |
2d091820 RD |
2288 | if (_argo0) { |
2289 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2290 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintDialogData_p")) { | |
d24a34bb RD |
2291 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintDialogData_SetMaxPage. Expected _wxPrintDialogData_p."); |
2292 | return NULL; | |
2293 | } | |
2294 | } | |
2295 | { | |
2296 | wxPy_BEGIN_ALLOW_THREADS; | |
2297 | wxPrintDialogData_SetMaxPage(_arg0,_arg1); | |
2298 | ||
2299 | wxPy_END_ALLOW_THREADS; | |
2300 | } Py_INCREF(Py_None); | |
2301 | _resultobj = Py_None; | |
2302 | return _resultobj; | |
2303 | } | |
2304 | ||
2305 | #define wxPrintDialogData_SetMinPage(_swigobj,_swigarg0) (_swigobj->SetMinPage(_swigarg0)) | |
107e4716 | 2306 | static PyObject *_wrap_wxPrintDialogData_SetMinPage(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
2307 | PyObject * _resultobj; |
2308 | wxPrintDialogData * _arg0; | |
2309 | int _arg1; | |
2d091820 | 2310 | PyObject * _argo0 = 0; |
107e4716 | 2311 | char *_kwnames[] = { "self","page", NULL }; |
d24a34bb RD |
2312 | |
2313 | self = self; | |
107e4716 | 2314 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPrintDialogData_SetMinPage",_kwnames,&_argo0,&_arg1)) |
d24a34bb | 2315 | return NULL; |
2d091820 RD |
2316 | if (_argo0) { |
2317 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2318 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintDialogData_p")) { | |
d24a34bb RD |
2319 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintDialogData_SetMinPage. Expected _wxPrintDialogData_p."); |
2320 | return NULL; | |
2321 | } | |
2322 | } | |
2323 | { | |
2324 | wxPy_BEGIN_ALLOW_THREADS; | |
2325 | wxPrintDialogData_SetMinPage(_arg0,_arg1); | |
2326 | ||
2327 | wxPy_END_ALLOW_THREADS; | |
2328 | } Py_INCREF(Py_None); | |
2329 | _resultobj = Py_None; | |
2330 | return _resultobj; | |
2331 | } | |
2332 | ||
2333 | #define wxPrintDialogData_SetNoCopies(_swigobj,_swigarg0) (_swigobj->SetNoCopies(_swigarg0)) | |
107e4716 | 2334 | static PyObject *_wrap_wxPrintDialogData_SetNoCopies(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
2335 | PyObject * _resultobj; |
2336 | wxPrintDialogData * _arg0; | |
2337 | int _arg1; | |
2d091820 | 2338 | PyObject * _argo0 = 0; |
107e4716 | 2339 | char *_kwnames[] = { "self","n", NULL }; |
d24a34bb RD |
2340 | |
2341 | self = self; | |
107e4716 | 2342 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPrintDialogData_SetNoCopies",_kwnames,&_argo0,&_arg1)) |
d24a34bb | 2343 | return NULL; |
2d091820 RD |
2344 | if (_argo0) { |
2345 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2346 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintDialogData_p")) { | |
d24a34bb RD |
2347 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintDialogData_SetNoCopies. Expected _wxPrintDialogData_p."); |
2348 | return NULL; | |
2349 | } | |
2350 | } | |
2351 | { | |
2352 | wxPy_BEGIN_ALLOW_THREADS; | |
2353 | wxPrintDialogData_SetNoCopies(_arg0,_arg1); | |
2354 | ||
2355 | wxPy_END_ALLOW_THREADS; | |
2356 | } Py_INCREF(Py_None); | |
2357 | _resultobj = Py_None; | |
2358 | return _resultobj; | |
2359 | } | |
2360 | ||
2361 | #define wxPrintDialogData_SetPrintData(_swigobj,_swigarg0) (_swigobj->SetPrintData(_swigarg0)) | |
107e4716 | 2362 | static PyObject *_wrap_wxPrintDialogData_SetPrintData(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
2363 | PyObject * _resultobj; |
2364 | wxPrintDialogData * _arg0; | |
2365 | wxPrintData * _arg1; | |
2d091820 RD |
2366 | PyObject * _argo0 = 0; |
2367 | PyObject * _argo1 = 0; | |
107e4716 | 2368 | char *_kwnames[] = { "self","printData", NULL }; |
d24a34bb RD |
2369 | |
2370 | self = self; | |
107e4716 | 2371 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxPrintDialogData_SetPrintData",_kwnames,&_argo0,&_argo1)) |
d24a34bb | 2372 | return NULL; |
2d091820 RD |
2373 | if (_argo0) { |
2374 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2375 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintDialogData_p")) { | |
d24a34bb RD |
2376 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintDialogData_SetPrintData. Expected _wxPrintDialogData_p."); |
2377 | return NULL; | |
2378 | } | |
2379 | } | |
2d091820 RD |
2380 | if (_argo1) { |
2381 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
2382 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxPrintData_p")) { | |
d24a34bb RD |
2383 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxPrintDialogData_SetPrintData. Expected _wxPrintData_p."); |
2384 | return NULL; | |
2385 | } | |
2386 | } | |
2387 | { | |
2388 | wxPy_BEGIN_ALLOW_THREADS; | |
2389 | wxPrintDialogData_SetPrintData(_arg0,*_arg1); | |
2390 | ||
2391 | wxPy_END_ALLOW_THREADS; | |
2392 | } Py_INCREF(Py_None); | |
2393 | _resultobj = Py_None; | |
2394 | return _resultobj; | |
2395 | } | |
2396 | ||
2397 | #define wxPrintDialogData_SetPrintToFile(_swigobj,_swigarg0) (_swigobj->SetPrintToFile(_swigarg0)) | |
107e4716 | 2398 | static PyObject *_wrap_wxPrintDialogData_SetPrintToFile(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
2399 | PyObject * _resultobj; |
2400 | wxPrintDialogData * _arg0; | |
2401 | bool _arg1; | |
2d091820 | 2402 | PyObject * _argo0 = 0; |
d24a34bb | 2403 | int tempbool1; |
107e4716 | 2404 | char *_kwnames[] = { "self","flag", NULL }; |
d24a34bb RD |
2405 | |
2406 | self = self; | |
107e4716 | 2407 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPrintDialogData_SetPrintToFile",_kwnames,&_argo0,&tempbool1)) |
d24a34bb | 2408 | return NULL; |
2d091820 RD |
2409 | if (_argo0) { |
2410 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2411 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintDialogData_p")) { | |
d24a34bb RD |
2412 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintDialogData_SetPrintToFile. Expected _wxPrintDialogData_p."); |
2413 | return NULL; | |
2414 | } | |
2415 | } | |
2416 | _arg1 = (bool ) tempbool1; | |
2417 | { | |
2418 | wxPy_BEGIN_ALLOW_THREADS; | |
2419 | wxPrintDialogData_SetPrintToFile(_arg0,_arg1); | |
2420 | ||
2421 | wxPy_END_ALLOW_THREADS; | |
2422 | } Py_INCREF(Py_None); | |
2423 | _resultobj = Py_None; | |
2424 | return _resultobj; | |
2425 | } | |
2426 | ||
2427 | #define wxPrintDialogData_SetSetupDialog(_swigobj,_swigarg0) (_swigobj->SetSetupDialog(_swigarg0)) | |
107e4716 | 2428 | static PyObject *_wrap_wxPrintDialogData_SetSetupDialog(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
2429 | PyObject * _resultobj; |
2430 | wxPrintDialogData * _arg0; | |
2431 | bool _arg1; | |
2d091820 | 2432 | PyObject * _argo0 = 0; |
d24a34bb | 2433 | int tempbool1; |
107e4716 | 2434 | char *_kwnames[] = { "self","flag", NULL }; |
d24a34bb RD |
2435 | |
2436 | self = self; | |
107e4716 | 2437 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPrintDialogData_SetSetupDialog",_kwnames,&_argo0,&tempbool1)) |
d24a34bb | 2438 | return NULL; |
2d091820 RD |
2439 | if (_argo0) { |
2440 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2441 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintDialogData_p")) { | |
d24a34bb RD |
2442 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintDialogData_SetSetupDialog. Expected _wxPrintDialogData_p."); |
2443 | return NULL; | |
2444 | } | |
2445 | } | |
2446 | _arg1 = (bool ) tempbool1; | |
2447 | { | |
2448 | wxPy_BEGIN_ALLOW_THREADS; | |
2449 | wxPrintDialogData_SetSetupDialog(_arg0,_arg1); | |
2450 | ||
2451 | wxPy_END_ALLOW_THREADS; | |
2452 | } Py_INCREF(Py_None); | |
2453 | _resultobj = Py_None; | |
2454 | return _resultobj; | |
2455 | } | |
2456 | ||
2457 | #define wxPrintDialogData_SetToPage(_swigobj,_swigarg0) (_swigobj->SetToPage(_swigarg0)) | |
107e4716 | 2458 | static PyObject *_wrap_wxPrintDialogData_SetToPage(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
2459 | PyObject * _resultobj; |
2460 | wxPrintDialogData * _arg0; | |
2461 | int _arg1; | |
2d091820 | 2462 | PyObject * _argo0 = 0; |
107e4716 | 2463 | char *_kwnames[] = { "self","page", NULL }; |
d24a34bb RD |
2464 | |
2465 | self = self; | |
107e4716 | 2466 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPrintDialogData_SetToPage",_kwnames,&_argo0,&_arg1)) |
d24a34bb | 2467 | return NULL; |
2d091820 RD |
2468 | if (_argo0) { |
2469 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2470 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintDialogData_p")) { | |
d24a34bb RD |
2471 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintDialogData_SetToPage. Expected _wxPrintDialogData_p."); |
2472 | return NULL; | |
2473 | } | |
2474 | } | |
2475 | { | |
2476 | wxPy_BEGIN_ALLOW_THREADS; | |
2477 | wxPrintDialogData_SetToPage(_arg0,_arg1); | |
2478 | ||
2479 | wxPy_END_ALLOW_THREADS; | |
2480 | } Py_INCREF(Py_None); | |
2481 | _resultobj = Py_None; | |
2482 | return _resultobj; | |
2483 | } | |
2484 | ||
2485 | static void *SwigwxPrintDialogTowxDialog(void *ptr) { | |
2486 | wxPrintDialog *src; | |
2487 | wxDialog *dest; | |
2488 | src = (wxPrintDialog *) ptr; | |
2489 | dest = (wxDialog *) src; | |
2490 | return (void *) dest; | |
2491 | } | |
2492 | ||
2493 | static void *SwigwxPrintDialogTowxPanel(void *ptr) { | |
2494 | wxPrintDialog *src; | |
2495 | wxPanel *dest; | |
2496 | src = (wxPrintDialog *) ptr; | |
2497 | dest = (wxPanel *) src; | |
2498 | return (void *) dest; | |
2499 | } | |
2500 | ||
2501 | static void *SwigwxPrintDialogTowxWindow(void *ptr) { | |
2502 | wxPrintDialog *src; | |
2503 | wxWindow *dest; | |
2504 | src = (wxPrintDialog *) ptr; | |
2505 | dest = (wxWindow *) src; | |
2506 | return (void *) dest; | |
2507 | } | |
2508 | ||
2509 | static void *SwigwxPrintDialogTowxEvtHandler(void *ptr) { | |
2510 | wxPrintDialog *src; | |
2511 | wxEvtHandler *dest; | |
2512 | src = (wxPrintDialog *) ptr; | |
2513 | dest = (wxEvtHandler *) src; | |
2514 | return (void *) dest; | |
2515 | } | |
2516 | ||
2517 | #define new_wxPrintDialog(_swigarg0,_swigarg1) (new wxPrintDialog(_swigarg0,_swigarg1)) | |
107e4716 | 2518 | static PyObject *_wrap_new_wxPrintDialog(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
2519 | PyObject * _resultobj; |
2520 | wxPrintDialog * _result; | |
2521 | wxWindow * _arg0; | |
2d091820 RD |
2522 | wxPrintDialogData * _arg1 = (wxPrintDialogData *) NULL; |
2523 | PyObject * _argo0 = 0; | |
2524 | PyObject * _argo1 = 0; | |
107e4716 | 2525 | char *_kwnames[] = { "parent","data", NULL }; |
d24a34bb RD |
2526 | char _ptemp[128]; |
2527 | ||
2528 | self = self; | |
107e4716 | 2529 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|O:new_wxPrintDialog",_kwnames,&_argo0,&_argo1)) |
d24a34bb | 2530 | return NULL; |
2d091820 RD |
2531 | if (_argo0) { |
2532 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2533 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) { | |
d24a34bb RD |
2534 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of new_wxPrintDialog. Expected _wxWindow_p."); |
2535 | return NULL; | |
2536 | } | |
2537 | } | |
2d091820 RD |
2538 | if (_argo1) { |
2539 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
2540 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxPrintDialogData_p")) { | |
d24a34bb RD |
2541 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of new_wxPrintDialog. Expected _wxPrintDialogData_p."); |
2542 | return NULL; | |
2543 | } | |
2544 | } | |
2545 | { | |
2546 | wxPy_BEGIN_ALLOW_THREADS; | |
2547 | _result = (wxPrintDialog *)new_wxPrintDialog(_arg0,_arg1); | |
2548 | ||
2549 | wxPy_END_ALLOW_THREADS; | |
2d091820 RD |
2550 | } if (_result) { |
2551 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPrintDialog_p"); | |
2552 | _resultobj = Py_BuildValue("s",_ptemp); | |
2553 | } else { | |
2554 | Py_INCREF(Py_None); | |
2555 | _resultobj = Py_None; | |
2556 | } | |
d24a34bb RD |
2557 | return _resultobj; |
2558 | } | |
2559 | ||
2560 | #define wxPrintDialog_GetPrintDialogData(_swigobj) (_swigobj->GetPrintDialogData()) | |
107e4716 | 2561 | static PyObject *_wrap_wxPrintDialog_GetPrintDialogData(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
2562 | PyObject * _resultobj; |
2563 | wxPrintDialogData * _result; | |
2564 | wxPrintDialog * _arg0; | |
2d091820 | 2565 | PyObject * _argo0 = 0; |
107e4716 | 2566 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
2567 | char _ptemp[128]; |
2568 | ||
2569 | self = self; | |
107e4716 | 2570 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintDialog_GetPrintDialogData",_kwnames,&_argo0)) |
d24a34bb | 2571 | return NULL; |
2d091820 RD |
2572 | if (_argo0) { |
2573 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2574 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintDialog_p")) { | |
d24a34bb RD |
2575 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintDialog_GetPrintDialogData. Expected _wxPrintDialog_p."); |
2576 | return NULL; | |
2577 | } | |
2578 | } | |
2579 | { | |
2580 | wxPy_BEGIN_ALLOW_THREADS; | |
2581 | wxPrintDialogData & _result_ref = wxPrintDialog_GetPrintDialogData(_arg0); | |
2582 | _result = (wxPrintDialogData *) &_result_ref; | |
2583 | ||
2584 | wxPy_END_ALLOW_THREADS; | |
2d091820 RD |
2585 | } if (_result) { |
2586 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPrintDialogData_p"); | |
2587 | _resultobj = Py_BuildValue("s",_ptemp); | |
2588 | } else { | |
2589 | Py_INCREF(Py_None); | |
2590 | _resultobj = Py_None; | |
2591 | } | |
d24a34bb RD |
2592 | return _resultobj; |
2593 | } | |
2594 | ||
2595 | #define wxPrintDialog_GetPrintDC(_swigobj) (_swigobj->GetPrintDC()) | |
107e4716 | 2596 | static PyObject *_wrap_wxPrintDialog_GetPrintDC(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
2597 | PyObject * _resultobj; |
2598 | wxDC * _result; | |
2599 | wxPrintDialog * _arg0; | |
2d091820 | 2600 | PyObject * _argo0 = 0; |
107e4716 | 2601 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
2602 | char _ptemp[128]; |
2603 | ||
2604 | self = self; | |
107e4716 | 2605 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintDialog_GetPrintDC",_kwnames,&_argo0)) |
d24a34bb | 2606 | return NULL; |
2d091820 RD |
2607 | if (_argo0) { |
2608 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2609 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintDialog_p")) { | |
d24a34bb RD |
2610 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintDialog_GetPrintDC. Expected _wxPrintDialog_p."); |
2611 | return NULL; | |
2612 | } | |
2613 | } | |
2614 | { | |
2615 | wxPy_BEGIN_ALLOW_THREADS; | |
2616 | _result = (wxDC *)wxPrintDialog_GetPrintDC(_arg0); | |
2617 | ||
2618 | wxPy_END_ALLOW_THREADS; | |
2d091820 RD |
2619 | } if (_result) { |
2620 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxDC_p"); | |
2621 | _resultobj = Py_BuildValue("s",_ptemp); | |
2622 | } else { | |
2623 | Py_INCREF(Py_None); | |
2624 | _resultobj = Py_None; | |
2625 | } | |
d24a34bb RD |
2626 | return _resultobj; |
2627 | } | |
2628 | ||
2629 | #define wxPrintDialog_ShowModal(_swigobj) (_swigobj->ShowModal()) | |
107e4716 | 2630 | static PyObject *_wrap_wxPrintDialog_ShowModal(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
2631 | PyObject * _resultobj; |
2632 | int _result; | |
2633 | wxPrintDialog * _arg0; | |
2d091820 | 2634 | PyObject * _argo0 = 0; |
107e4716 | 2635 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
2636 | |
2637 | self = self; | |
107e4716 | 2638 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintDialog_ShowModal",_kwnames,&_argo0)) |
d24a34bb | 2639 | return NULL; |
2d091820 RD |
2640 | if (_argo0) { |
2641 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2642 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintDialog_p")) { | |
d24a34bb RD |
2643 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintDialog_ShowModal. Expected _wxPrintDialog_p."); |
2644 | return NULL; | |
2645 | } | |
2646 | } | |
2647 | { | |
2648 | wxPy_BEGIN_ALLOW_THREADS; | |
2649 | _result = (int )wxPrintDialog_ShowModal(_arg0); | |
2650 | ||
2651 | wxPy_END_ALLOW_THREADS; | |
2652 | } _resultobj = Py_BuildValue("i",_result); | |
2653 | return _resultobj; | |
2654 | } | |
2655 | ||
2656 | #define new_wxPrintout(_swigarg0) (new wxPyPrintout(_swigarg0)) | |
107e4716 | 2657 | static PyObject *_wrap_new_wxPrintout(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
2658 | PyObject * _resultobj; |
2659 | wxPyPrintout * _result; | |
2d091820 | 2660 | char * _arg0 = (char *) "Printout"; |
107e4716 | 2661 | char *_kwnames[] = { "title", NULL }; |
d24a34bb RD |
2662 | char _ptemp[128]; |
2663 | ||
2664 | self = self; | |
107e4716 | 2665 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"|s:new_wxPrintout",_kwnames,&_arg0)) |
d24a34bb RD |
2666 | return NULL; |
2667 | { | |
2668 | wxPy_BEGIN_ALLOW_THREADS; | |
2669 | _result = (wxPyPrintout *)new_wxPrintout(_arg0); | |
2670 | ||
2671 | wxPy_END_ALLOW_THREADS; | |
2d091820 RD |
2672 | } if (_result) { |
2673 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPyPrintout_p"); | |
2674 | _resultobj = Py_BuildValue("s",_ptemp); | |
2675 | } else { | |
2676 | Py_INCREF(Py_None); | |
2677 | _resultobj = Py_None; | |
2678 | } | |
d24a34bb RD |
2679 | return _resultobj; |
2680 | } | |
2681 | ||
f6bcfd97 | 2682 | #define wxPrintout__setSelf(_swigobj,_swigarg0,_swigarg1) (_swigobj->_setSelf(_swigarg0,_swigarg1)) |
107e4716 | 2683 | static PyObject *_wrap_wxPrintout__setSelf(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
2684 | PyObject * _resultobj; |
2685 | wxPyPrintout * _arg0; | |
2686 | PyObject * _arg1; | |
f6bcfd97 | 2687 | PyObject * _arg2; |
2d091820 | 2688 | PyObject * _argo0 = 0; |
d24a34bb | 2689 | PyObject * _obj1 = 0; |
f6bcfd97 BP |
2690 | PyObject * _obj2 = 0; |
2691 | char *_kwnames[] = { "self","self","_class", NULL }; | |
d24a34bb RD |
2692 | |
2693 | self = self; | |
f6bcfd97 | 2694 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO:wxPrintout__setSelf",_kwnames,&_argo0,&_obj1,&_obj2)) |
d24a34bb | 2695 | return NULL; |
2d091820 RD |
2696 | if (_argo0) { |
2697 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2698 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyPrintout_p")) { | |
d24a34bb RD |
2699 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintout__setSelf. Expected _wxPyPrintout_p."); |
2700 | return NULL; | |
2701 | } | |
2702 | } | |
2703 | { | |
2704 | _arg1 = _obj1; | |
2705 | } | |
f6bcfd97 BP |
2706 | { |
2707 | _arg2 = _obj2; | |
2708 | } | |
d24a34bb RD |
2709 | { |
2710 | wxPy_BEGIN_ALLOW_THREADS; | |
f6bcfd97 | 2711 | wxPrintout__setSelf(_arg0,_arg1,_arg2); |
d24a34bb RD |
2712 | |
2713 | wxPy_END_ALLOW_THREADS; | |
2714 | } Py_INCREF(Py_None); | |
2715 | _resultobj = Py_None; | |
2716 | return _resultobj; | |
2717 | } | |
2718 | ||
107e4716 RD |
2719 | static void wxPyPrintout_Destroy(wxPyPrintout *self) { delete self; } |
2720 | static PyObject *_wrap_wxPrintout_Destroy(PyObject *self, PyObject *args, PyObject *kwargs) { | |
d24a34bb RD |
2721 | PyObject * _resultobj; |
2722 | wxPyPrintout * _arg0; | |
2d091820 | 2723 | PyObject * _argo0 = 0; |
107e4716 | 2724 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
2725 | |
2726 | self = self; | |
107e4716 | 2727 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintout_Destroy",_kwnames,&_argo0)) |
d24a34bb | 2728 | return NULL; |
2d091820 RD |
2729 | if (_argo0) { |
2730 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2731 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyPrintout_p")) { | |
d24a34bb RD |
2732 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintout_Destroy. Expected _wxPyPrintout_p."); |
2733 | return NULL; | |
2734 | } | |
2735 | } | |
2736 | { | |
2737 | wxPy_BEGIN_ALLOW_THREADS; | |
2738 | wxPyPrintout_Destroy(_arg0); | |
2739 | ||
2740 | wxPy_END_ALLOW_THREADS; | |
2741 | } Py_INCREF(Py_None); | |
2742 | _resultobj = Py_None; | |
2743 | return _resultobj; | |
2744 | } | |
2745 | ||
2746 | #define wxPrintout_GetDC(_swigobj) (_swigobj->GetDC()) | |
107e4716 | 2747 | static PyObject *_wrap_wxPrintout_GetDC(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
2748 | PyObject * _resultobj; |
2749 | wxDC * _result; | |
2750 | wxPyPrintout * _arg0; | |
2d091820 | 2751 | PyObject * _argo0 = 0; |
107e4716 | 2752 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
2753 | char _ptemp[128]; |
2754 | ||
2755 | self = self; | |
107e4716 | 2756 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintout_GetDC",_kwnames,&_argo0)) |
d24a34bb | 2757 | return NULL; |
2d091820 RD |
2758 | if (_argo0) { |
2759 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2760 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyPrintout_p")) { | |
d24a34bb RD |
2761 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintout_GetDC. Expected _wxPyPrintout_p."); |
2762 | return NULL; | |
2763 | } | |
2764 | } | |
2765 | { | |
2766 | wxPy_BEGIN_ALLOW_THREADS; | |
2767 | _result = (wxDC *)wxPrintout_GetDC(_arg0); | |
2768 | ||
2769 | wxPy_END_ALLOW_THREADS; | |
2d091820 RD |
2770 | } if (_result) { |
2771 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxDC_p"); | |
2772 | _resultobj = Py_BuildValue("s",_ptemp); | |
2773 | } else { | |
2774 | Py_INCREF(Py_None); | |
2775 | _resultobj = Py_None; | |
2776 | } | |
d24a34bb RD |
2777 | return _resultobj; |
2778 | } | |
2779 | ||
2780 | #define wxPrintout_GetPageSizeMM(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetPageSizeMM(_swigarg0,_swigarg1)) | |
107e4716 | 2781 | static PyObject *_wrap_wxPrintout_GetPageSizeMM(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
2782 | PyObject * _resultobj; |
2783 | wxPyPrintout * _arg0; | |
2784 | int * _arg1; | |
2785 | int temp; | |
2786 | int * _arg2; | |
2787 | int temp0; | |
2d091820 | 2788 | PyObject * _argo0 = 0; |
107e4716 | 2789 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
2790 | |
2791 | self = self; | |
2792 | { | |
2793 | _arg1 = &temp; | |
2794 | } | |
2795 | { | |
2796 | _arg2 = &temp0; | |
2797 | } | |
107e4716 | 2798 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintout_GetPageSizeMM",_kwnames,&_argo0)) |
d24a34bb | 2799 | return NULL; |
2d091820 RD |
2800 | if (_argo0) { |
2801 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2802 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyPrintout_p")) { | |
d24a34bb RD |
2803 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintout_GetPageSizeMM. Expected _wxPyPrintout_p."); |
2804 | return NULL; | |
2805 | } | |
2806 | } | |
2807 | { | |
2808 | wxPy_BEGIN_ALLOW_THREADS; | |
2809 | wxPrintout_GetPageSizeMM(_arg0,_arg1,_arg2); | |
2810 | ||
2811 | wxPy_END_ALLOW_THREADS; | |
2812 | } Py_INCREF(Py_None); | |
2813 | _resultobj = Py_None; | |
2814 | { | |
2815 | PyObject *o; | |
2816 | o = PyInt_FromLong((long) (*_arg1)); | |
2817 | _resultobj = t_output_helper(_resultobj, o); | |
2818 | } | |
2819 | { | |
2820 | PyObject *o; | |
2821 | o = PyInt_FromLong((long) (*_arg2)); | |
2822 | _resultobj = t_output_helper(_resultobj, o); | |
2823 | } | |
2824 | return _resultobj; | |
2825 | } | |
2826 | ||
2827 | #define wxPrintout_GetPageSizePixels(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetPageSizePixels(_swigarg0,_swigarg1)) | |
107e4716 | 2828 | static PyObject *_wrap_wxPrintout_GetPageSizePixels(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
2829 | PyObject * _resultobj; |
2830 | wxPyPrintout * _arg0; | |
2831 | int * _arg1; | |
2832 | int temp; | |
2833 | int * _arg2; | |
2834 | int temp0; | |
2d091820 | 2835 | PyObject * _argo0 = 0; |
107e4716 | 2836 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
2837 | |
2838 | self = self; | |
2839 | { | |
2840 | _arg1 = &temp; | |
2841 | } | |
2842 | { | |
2843 | _arg2 = &temp0; | |
2844 | } | |
107e4716 | 2845 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintout_GetPageSizePixels",_kwnames,&_argo0)) |
d24a34bb | 2846 | return NULL; |
2d091820 RD |
2847 | if (_argo0) { |
2848 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2849 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyPrintout_p")) { | |
d24a34bb RD |
2850 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintout_GetPageSizePixels. Expected _wxPyPrintout_p."); |
2851 | return NULL; | |
2852 | } | |
2853 | } | |
2854 | { | |
2855 | wxPy_BEGIN_ALLOW_THREADS; | |
2856 | wxPrintout_GetPageSizePixels(_arg0,_arg1,_arg2); | |
2857 | ||
2858 | wxPy_END_ALLOW_THREADS; | |
2859 | } Py_INCREF(Py_None); | |
2860 | _resultobj = Py_None; | |
2861 | { | |
2862 | PyObject *o; | |
2863 | o = PyInt_FromLong((long) (*_arg1)); | |
2864 | _resultobj = t_output_helper(_resultobj, o); | |
2865 | } | |
2866 | { | |
2867 | PyObject *o; | |
2868 | o = PyInt_FromLong((long) (*_arg2)); | |
2869 | _resultobj = t_output_helper(_resultobj, o); | |
2870 | } | |
2871 | return _resultobj; | |
2872 | } | |
2873 | ||
2874 | #define wxPrintout_GetPPIPrinter(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetPPIPrinter(_swigarg0,_swigarg1)) | |
107e4716 | 2875 | static PyObject *_wrap_wxPrintout_GetPPIPrinter(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
2876 | PyObject * _resultobj; |
2877 | wxPyPrintout * _arg0; | |
2878 | int * _arg1; | |
2879 | int temp; | |
2880 | int * _arg2; | |
2881 | int temp0; | |
2d091820 | 2882 | PyObject * _argo0 = 0; |
107e4716 | 2883 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
2884 | |
2885 | self = self; | |
2886 | { | |
2887 | _arg1 = &temp; | |
2888 | } | |
2889 | { | |
2890 | _arg2 = &temp0; | |
2891 | } | |
107e4716 | 2892 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintout_GetPPIPrinter",_kwnames,&_argo0)) |
d24a34bb | 2893 | return NULL; |
2d091820 RD |
2894 | if (_argo0) { |
2895 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2896 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyPrintout_p")) { | |
d24a34bb RD |
2897 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintout_GetPPIPrinter. Expected _wxPyPrintout_p."); |
2898 | return NULL; | |
2899 | } | |
2900 | } | |
2901 | { | |
2902 | wxPy_BEGIN_ALLOW_THREADS; | |
2903 | wxPrintout_GetPPIPrinter(_arg0,_arg1,_arg2); | |
2904 | ||
2905 | wxPy_END_ALLOW_THREADS; | |
2906 | } Py_INCREF(Py_None); | |
2907 | _resultobj = Py_None; | |
2908 | { | |
2909 | PyObject *o; | |
2910 | o = PyInt_FromLong((long) (*_arg1)); | |
2911 | _resultobj = t_output_helper(_resultobj, o); | |
2912 | } | |
2913 | { | |
2914 | PyObject *o; | |
2915 | o = PyInt_FromLong((long) (*_arg2)); | |
2916 | _resultobj = t_output_helper(_resultobj, o); | |
2917 | } | |
2918 | return _resultobj; | |
2919 | } | |
2920 | ||
2921 | #define wxPrintout_GetPPIScreen(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetPPIScreen(_swigarg0,_swigarg1)) | |
107e4716 | 2922 | static PyObject *_wrap_wxPrintout_GetPPIScreen(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
2923 | PyObject * _resultobj; |
2924 | wxPyPrintout * _arg0; | |
2925 | int * _arg1; | |
2926 | int temp; | |
2927 | int * _arg2; | |
2928 | int temp0; | |
2d091820 | 2929 | PyObject * _argo0 = 0; |
107e4716 | 2930 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
2931 | |
2932 | self = self; | |
2933 | { | |
2934 | _arg1 = &temp; | |
2935 | } | |
2936 | { | |
2937 | _arg2 = &temp0; | |
2938 | } | |
107e4716 | 2939 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintout_GetPPIScreen",_kwnames,&_argo0)) |
d24a34bb | 2940 | return NULL; |
2d091820 RD |
2941 | if (_argo0) { |
2942 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2943 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyPrintout_p")) { | |
d24a34bb RD |
2944 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintout_GetPPIScreen. Expected _wxPyPrintout_p."); |
2945 | return NULL; | |
2946 | } | |
2947 | } | |
2948 | { | |
2949 | wxPy_BEGIN_ALLOW_THREADS; | |
2950 | wxPrintout_GetPPIScreen(_arg0,_arg1,_arg2); | |
2951 | ||
2952 | wxPy_END_ALLOW_THREADS; | |
2953 | } Py_INCREF(Py_None); | |
2954 | _resultobj = Py_None; | |
2955 | { | |
2956 | PyObject *o; | |
2957 | o = PyInt_FromLong((long) (*_arg1)); | |
2958 | _resultobj = t_output_helper(_resultobj, o); | |
2959 | } | |
2960 | { | |
2961 | PyObject *o; | |
2962 | o = PyInt_FromLong((long) (*_arg2)); | |
2963 | _resultobj = t_output_helper(_resultobj, o); | |
2964 | } | |
2965 | return _resultobj; | |
2966 | } | |
2967 | ||
2968 | #define wxPrintout_IsPreview(_swigobj) (_swigobj->IsPreview()) | |
107e4716 | 2969 | static PyObject *_wrap_wxPrintout_IsPreview(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
2970 | PyObject * _resultobj; |
2971 | bool _result; | |
2972 | wxPyPrintout * _arg0; | |
2d091820 | 2973 | PyObject * _argo0 = 0; |
107e4716 | 2974 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
2975 | |
2976 | self = self; | |
107e4716 | 2977 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintout_IsPreview",_kwnames,&_argo0)) |
d24a34bb | 2978 | return NULL; |
2d091820 RD |
2979 | if (_argo0) { |
2980 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
2981 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyPrintout_p")) { | |
d24a34bb RD |
2982 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintout_IsPreview. Expected _wxPyPrintout_p."); |
2983 | return NULL; | |
2984 | } | |
2985 | } | |
2986 | { | |
2987 | wxPy_BEGIN_ALLOW_THREADS; | |
2988 | _result = (bool )wxPrintout_IsPreview(_arg0); | |
2989 | ||
2990 | wxPy_END_ALLOW_THREADS; | |
2991 | } _resultobj = Py_BuildValue("i",_result); | |
2992 | return _resultobj; | |
2993 | } | |
2994 | ||
2995 | #define wxPrintout_base_OnBeginDocument(_swigobj,_swigarg0,_swigarg1) (_swigobj->base_OnBeginDocument(_swigarg0,_swigarg1)) | |
107e4716 | 2996 | static PyObject *_wrap_wxPrintout_base_OnBeginDocument(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
2997 | PyObject * _resultobj; |
2998 | bool _result; | |
2999 | wxPyPrintout * _arg0; | |
3000 | int _arg1; | |
3001 | int _arg2; | |
2d091820 | 3002 | PyObject * _argo0 = 0; |
107e4716 | 3003 | char *_kwnames[] = { "self","startPage","endPage", NULL }; |
d24a34bb RD |
3004 | |
3005 | self = self; | |
107e4716 | 3006 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxPrintout_base_OnBeginDocument",_kwnames,&_argo0,&_arg1,&_arg2)) |
d24a34bb | 3007 | return NULL; |
2d091820 RD |
3008 | if (_argo0) { |
3009 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3010 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyPrintout_p")) { | |
d24a34bb RD |
3011 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintout_base_OnBeginDocument. Expected _wxPyPrintout_p."); |
3012 | return NULL; | |
3013 | } | |
3014 | } | |
3015 | { | |
3016 | wxPy_BEGIN_ALLOW_THREADS; | |
3017 | _result = (bool )wxPrintout_base_OnBeginDocument(_arg0,_arg1,_arg2); | |
3018 | ||
3019 | wxPy_END_ALLOW_THREADS; | |
3020 | } _resultobj = Py_BuildValue("i",_result); | |
3021 | return _resultobj; | |
3022 | } | |
3023 | ||
3024 | #define wxPrintout_base_OnEndDocument(_swigobj) (_swigobj->base_OnEndDocument()) | |
107e4716 | 3025 | static PyObject *_wrap_wxPrintout_base_OnEndDocument(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
3026 | PyObject * _resultobj; |
3027 | wxPyPrintout * _arg0; | |
2d091820 | 3028 | PyObject * _argo0 = 0; |
107e4716 | 3029 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
3030 | |
3031 | self = self; | |
107e4716 | 3032 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintout_base_OnEndDocument",_kwnames,&_argo0)) |
d24a34bb | 3033 | return NULL; |
2d091820 RD |
3034 | if (_argo0) { |
3035 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3036 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyPrintout_p")) { | |
d24a34bb RD |
3037 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintout_base_OnEndDocument. Expected _wxPyPrintout_p."); |
3038 | return NULL; | |
3039 | } | |
3040 | } | |
3041 | { | |
3042 | wxPy_BEGIN_ALLOW_THREADS; | |
3043 | wxPrintout_base_OnEndDocument(_arg0); | |
3044 | ||
3045 | wxPy_END_ALLOW_THREADS; | |
3046 | } Py_INCREF(Py_None); | |
3047 | _resultobj = Py_None; | |
3048 | return _resultobj; | |
3049 | } | |
3050 | ||
3051 | #define wxPrintout_base_OnBeginPrinting(_swigobj) (_swigobj->base_OnBeginPrinting()) | |
107e4716 | 3052 | static PyObject *_wrap_wxPrintout_base_OnBeginPrinting(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
3053 | PyObject * _resultobj; |
3054 | wxPyPrintout * _arg0; | |
2d091820 | 3055 | PyObject * _argo0 = 0; |
107e4716 | 3056 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
3057 | |
3058 | self = self; | |
107e4716 | 3059 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintout_base_OnBeginPrinting",_kwnames,&_argo0)) |
d24a34bb | 3060 | return NULL; |
2d091820 RD |
3061 | if (_argo0) { |
3062 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3063 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyPrintout_p")) { | |
d24a34bb RD |
3064 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintout_base_OnBeginPrinting. Expected _wxPyPrintout_p."); |
3065 | return NULL; | |
3066 | } | |
3067 | } | |
3068 | { | |
3069 | wxPy_BEGIN_ALLOW_THREADS; | |
3070 | wxPrintout_base_OnBeginPrinting(_arg0); | |
3071 | ||
3072 | wxPy_END_ALLOW_THREADS; | |
3073 | } Py_INCREF(Py_None); | |
3074 | _resultobj = Py_None; | |
3075 | return _resultobj; | |
3076 | } | |
3077 | ||
3078 | #define wxPrintout_base_OnEndPrinting(_swigobj) (_swigobj->base_OnEndPrinting()) | |
107e4716 | 3079 | static PyObject *_wrap_wxPrintout_base_OnEndPrinting(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
3080 | PyObject * _resultobj; |
3081 | wxPyPrintout * _arg0; | |
2d091820 | 3082 | PyObject * _argo0 = 0; |
107e4716 | 3083 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
3084 | |
3085 | self = self; | |
107e4716 | 3086 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintout_base_OnEndPrinting",_kwnames,&_argo0)) |
d24a34bb | 3087 | return NULL; |
2d091820 RD |
3088 | if (_argo0) { |
3089 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3090 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyPrintout_p")) { | |
d24a34bb RD |
3091 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintout_base_OnEndPrinting. Expected _wxPyPrintout_p."); |
3092 | return NULL; | |
3093 | } | |
3094 | } | |
3095 | { | |
3096 | wxPy_BEGIN_ALLOW_THREADS; | |
3097 | wxPrintout_base_OnEndPrinting(_arg0); | |
3098 | ||
3099 | wxPy_END_ALLOW_THREADS; | |
3100 | } Py_INCREF(Py_None); | |
3101 | _resultobj = Py_None; | |
3102 | return _resultobj; | |
3103 | } | |
3104 | ||
3105 | #define wxPrintout_base_OnPreparePrinting(_swigobj) (_swigobj->base_OnPreparePrinting()) | |
107e4716 | 3106 | static PyObject *_wrap_wxPrintout_base_OnPreparePrinting(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
3107 | PyObject * _resultobj; |
3108 | wxPyPrintout * _arg0; | |
2d091820 | 3109 | PyObject * _argo0 = 0; |
107e4716 | 3110 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
3111 | |
3112 | self = self; | |
107e4716 | 3113 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintout_base_OnPreparePrinting",_kwnames,&_argo0)) |
d24a34bb | 3114 | return NULL; |
2d091820 RD |
3115 | if (_argo0) { |
3116 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3117 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyPrintout_p")) { | |
d24a34bb RD |
3118 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintout_base_OnPreparePrinting. Expected _wxPyPrintout_p."); |
3119 | return NULL; | |
3120 | } | |
3121 | } | |
3122 | { | |
3123 | wxPy_BEGIN_ALLOW_THREADS; | |
3124 | wxPrintout_base_OnPreparePrinting(_arg0); | |
3125 | ||
3126 | wxPy_END_ALLOW_THREADS; | |
3127 | } Py_INCREF(Py_None); | |
3128 | _resultobj = Py_None; | |
3129 | return _resultobj; | |
3130 | } | |
3131 | ||
3132 | #define wxPrintout_base_GetPageInfo(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3) (_swigobj->base_GetPageInfo(_swigarg0,_swigarg1,_swigarg2,_swigarg3)) | |
107e4716 | 3133 | static PyObject *_wrap_wxPrintout_base_GetPageInfo(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
3134 | PyObject * _resultobj; |
3135 | wxPyPrintout * _arg0; | |
3136 | int * _arg1; | |
3137 | int temp; | |
3138 | int * _arg2; | |
3139 | int temp0; | |
3140 | int * _arg3; | |
3141 | int temp1; | |
3142 | int * _arg4; | |
3143 | int temp2; | |
2d091820 | 3144 | PyObject * _argo0 = 0; |
107e4716 | 3145 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
3146 | |
3147 | self = self; | |
3148 | { | |
3149 | _arg1 = &temp; | |
3150 | } | |
3151 | { | |
3152 | _arg2 = &temp0; | |
3153 | } | |
3154 | { | |
3155 | _arg3 = &temp1; | |
3156 | } | |
3157 | { | |
3158 | _arg4 = &temp2; | |
3159 | } | |
107e4716 | 3160 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintout_base_GetPageInfo",_kwnames,&_argo0)) |
d24a34bb | 3161 | return NULL; |
2d091820 RD |
3162 | if (_argo0) { |
3163 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3164 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyPrintout_p")) { | |
d24a34bb RD |
3165 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintout_base_GetPageInfo. Expected _wxPyPrintout_p."); |
3166 | return NULL; | |
3167 | } | |
3168 | } | |
3169 | { | |
3170 | wxPy_BEGIN_ALLOW_THREADS; | |
3171 | wxPrintout_base_GetPageInfo(_arg0,_arg1,_arg2,_arg3,_arg4); | |
3172 | ||
3173 | wxPy_END_ALLOW_THREADS; | |
3174 | } Py_INCREF(Py_None); | |
3175 | _resultobj = Py_None; | |
3176 | { | |
3177 | PyObject *o; | |
3178 | o = PyInt_FromLong((long) (*_arg1)); | |
3179 | _resultobj = t_output_helper(_resultobj, o); | |
3180 | } | |
3181 | { | |
3182 | PyObject *o; | |
3183 | o = PyInt_FromLong((long) (*_arg2)); | |
3184 | _resultobj = t_output_helper(_resultobj, o); | |
3185 | } | |
3186 | { | |
3187 | PyObject *o; | |
3188 | o = PyInt_FromLong((long) (*_arg3)); | |
3189 | _resultobj = t_output_helper(_resultobj, o); | |
3190 | } | |
3191 | { | |
3192 | PyObject *o; | |
3193 | o = PyInt_FromLong((long) (*_arg4)); | |
3194 | _resultobj = t_output_helper(_resultobj, o); | |
3195 | } | |
3196 | return _resultobj; | |
3197 | } | |
3198 | ||
3199 | #define wxPrintout_base_HasPage(_swigobj,_swigarg0) (_swigobj->base_HasPage(_swigarg0)) | |
107e4716 | 3200 | static PyObject *_wrap_wxPrintout_base_HasPage(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
3201 | PyObject * _resultobj; |
3202 | bool _result; | |
3203 | wxPyPrintout * _arg0; | |
3204 | int _arg1; | |
2d091820 | 3205 | PyObject * _argo0 = 0; |
107e4716 | 3206 | char *_kwnames[] = { "self","page", NULL }; |
d24a34bb RD |
3207 | |
3208 | self = self; | |
107e4716 | 3209 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPrintout_base_HasPage",_kwnames,&_argo0,&_arg1)) |
d24a34bb | 3210 | return NULL; |
2d091820 RD |
3211 | if (_argo0) { |
3212 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3213 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyPrintout_p")) { | |
d24a34bb RD |
3214 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintout_base_HasPage. Expected _wxPyPrintout_p."); |
3215 | return NULL; | |
3216 | } | |
3217 | } | |
3218 | { | |
3219 | wxPy_BEGIN_ALLOW_THREADS; | |
3220 | _result = (bool )wxPrintout_base_HasPage(_arg0,_arg1); | |
3221 | ||
3222 | wxPy_END_ALLOW_THREADS; | |
3223 | } _resultobj = Py_BuildValue("i",_result); | |
3224 | return _resultobj; | |
3225 | } | |
3226 | ||
3227 | #define new_wxPrinter(_swigarg0) (new wxPrinter(_swigarg0)) | |
107e4716 | 3228 | static PyObject *_wrap_new_wxPrinter(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
3229 | PyObject * _resultobj; |
3230 | wxPrinter * _result; | |
2d091820 RD |
3231 | wxPrintDialogData * _arg0 = (wxPrintDialogData *) NULL; |
3232 | PyObject * _argo0 = 0; | |
107e4716 | 3233 | char *_kwnames[] = { "data", NULL }; |
d24a34bb RD |
3234 | char _ptemp[128]; |
3235 | ||
3236 | self = self; | |
107e4716 | 3237 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"|O:new_wxPrinter",_kwnames,&_argo0)) |
d24a34bb | 3238 | return NULL; |
2d091820 RD |
3239 | if (_argo0) { |
3240 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3241 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintDialogData_p")) { | |
d24a34bb RD |
3242 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of new_wxPrinter. Expected _wxPrintDialogData_p."); |
3243 | return NULL; | |
3244 | } | |
3245 | } | |
3246 | { | |
3247 | wxPy_BEGIN_ALLOW_THREADS; | |
3248 | _result = (wxPrinter *)new_wxPrinter(_arg0); | |
3249 | ||
3250 | wxPy_END_ALLOW_THREADS; | |
2d091820 RD |
3251 | } if (_result) { |
3252 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPrinter_p"); | |
3253 | _resultobj = Py_BuildValue("s",_ptemp); | |
3254 | } else { | |
3255 | Py_INCREF(Py_None); | |
3256 | _resultobj = Py_None; | |
3257 | } | |
d24a34bb RD |
3258 | return _resultobj; |
3259 | } | |
3260 | ||
3261 | #define delete_wxPrinter(_swigobj) (delete _swigobj) | |
107e4716 | 3262 | static PyObject *_wrap_delete_wxPrinter(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
3263 | PyObject * _resultobj; |
3264 | wxPrinter * _arg0; | |
2d091820 | 3265 | PyObject * _argo0 = 0; |
107e4716 | 3266 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
3267 | |
3268 | self = self; | |
107e4716 | 3269 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:delete_wxPrinter",_kwnames,&_argo0)) |
d24a34bb | 3270 | return NULL; |
2d091820 RD |
3271 | if (_argo0) { |
3272 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3273 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrinter_p")) { | |
d24a34bb RD |
3274 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of delete_wxPrinter. Expected _wxPrinter_p."); |
3275 | return NULL; | |
3276 | } | |
3277 | } | |
3278 | { | |
3279 | wxPy_BEGIN_ALLOW_THREADS; | |
3280 | delete_wxPrinter(_arg0); | |
3281 | ||
3282 | wxPy_END_ALLOW_THREADS; | |
3283 | } Py_INCREF(Py_None); | |
3284 | _resultobj = Py_None; | |
3285 | return _resultobj; | |
3286 | } | |
3287 | ||
3288 | #define wxPrinter_CreateAbortWindow(_swigobj,_swigarg0,_swigarg1) (_swigobj->CreateAbortWindow(_swigarg0,_swigarg1)) | |
107e4716 | 3289 | static PyObject *_wrap_wxPrinter_CreateAbortWindow(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
3290 | PyObject * _resultobj; |
3291 | wxPrinter * _arg0; | |
3292 | wxWindow * _arg1; | |
3293 | wxPyPrintout * _arg2; | |
2d091820 RD |
3294 | PyObject * _argo0 = 0; |
3295 | PyObject * _argo1 = 0; | |
3296 | PyObject * _argo2 = 0; | |
107e4716 | 3297 | char *_kwnames[] = { "self","parent","printout", NULL }; |
d24a34bb RD |
3298 | |
3299 | self = self; | |
107e4716 | 3300 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO:wxPrinter_CreateAbortWindow",_kwnames,&_argo0,&_argo1,&_argo2)) |
d24a34bb | 3301 | return NULL; |
2d091820 RD |
3302 | if (_argo0) { |
3303 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3304 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrinter_p")) { | |
d24a34bb RD |
3305 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrinter_CreateAbortWindow. Expected _wxPrinter_p."); |
3306 | return NULL; | |
3307 | } | |
3308 | } | |
2d091820 RD |
3309 | if (_argo1) { |
3310 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3311 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) { | |
d24a34bb RD |
3312 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxPrinter_CreateAbortWindow. Expected _wxWindow_p."); |
3313 | return NULL; | |
3314 | } | |
3315 | } | |
2d091820 RD |
3316 | if (_argo2) { |
3317 | if (_argo2 == Py_None) { _arg2 = NULL; } | |
3318 | else if (SWIG_GetPtrObj(_argo2,(void **) &_arg2,"_wxPyPrintout_p")) { | |
d24a34bb RD |
3319 | PyErr_SetString(PyExc_TypeError,"Type error in argument 3 of wxPrinter_CreateAbortWindow. Expected _wxPyPrintout_p."); |
3320 | return NULL; | |
3321 | } | |
3322 | } | |
3323 | { | |
3324 | wxPy_BEGIN_ALLOW_THREADS; | |
3325 | wxPrinter_CreateAbortWindow(_arg0,_arg1,_arg2); | |
3326 | ||
3327 | wxPy_END_ALLOW_THREADS; | |
3328 | } Py_INCREF(Py_None); | |
3329 | _resultobj = Py_None; | |
3330 | return _resultobj; | |
3331 | } | |
3332 | ||
3333 | #define wxPrinter_GetPrintDialogData(_swigobj) (_swigobj->GetPrintDialogData()) | |
107e4716 | 3334 | static PyObject *_wrap_wxPrinter_GetPrintDialogData(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
3335 | PyObject * _resultobj; |
3336 | wxPrintDialogData * _result; | |
3337 | wxPrinter * _arg0; | |
2d091820 | 3338 | PyObject * _argo0 = 0; |
107e4716 | 3339 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
3340 | char _ptemp[128]; |
3341 | ||
3342 | self = self; | |
107e4716 | 3343 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrinter_GetPrintDialogData",_kwnames,&_argo0)) |
d24a34bb | 3344 | return NULL; |
2d091820 RD |
3345 | if (_argo0) { |
3346 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3347 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrinter_p")) { | |
d24a34bb RD |
3348 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrinter_GetPrintDialogData. Expected _wxPrinter_p."); |
3349 | return NULL; | |
3350 | } | |
3351 | } | |
3352 | { | |
3353 | wxPy_BEGIN_ALLOW_THREADS; | |
3354 | wxPrintDialogData & _result_ref = wxPrinter_GetPrintDialogData(_arg0); | |
3355 | _result = (wxPrintDialogData *) &_result_ref; | |
3356 | ||
3357 | wxPy_END_ALLOW_THREADS; | |
2d091820 RD |
3358 | } if (_result) { |
3359 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPrintDialogData_p"); | |
3360 | _resultobj = Py_BuildValue("s",_ptemp); | |
3361 | } else { | |
3362 | Py_INCREF(Py_None); | |
3363 | _resultobj = Py_None; | |
3364 | } | |
d24a34bb RD |
3365 | return _resultobj; |
3366 | } | |
3367 | ||
3368 | #define wxPrinter_Print(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->Print(_swigarg0,_swigarg1,_swigarg2)) | |
107e4716 | 3369 | static PyObject *_wrap_wxPrinter_Print(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
3370 | PyObject * _resultobj; |
3371 | bool _result; | |
3372 | wxPrinter * _arg0; | |
3373 | wxWindow * _arg1; | |
3374 | wxPyPrintout * _arg2; | |
2d091820 RD |
3375 | int _arg3 = (int ) TRUE; |
3376 | PyObject * _argo0 = 0; | |
3377 | PyObject * _argo1 = 0; | |
3378 | PyObject * _argo2 = 0; | |
107e4716 | 3379 | char *_kwnames[] = { "self","parent","printout","prompt", NULL }; |
d24a34bb RD |
3380 | |
3381 | self = self; | |
107e4716 | 3382 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO|i:wxPrinter_Print",_kwnames,&_argo0,&_argo1,&_argo2,&_arg3)) |
d24a34bb | 3383 | return NULL; |
2d091820 RD |
3384 | if (_argo0) { |
3385 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3386 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrinter_p")) { | |
d24a34bb RD |
3387 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrinter_Print. Expected _wxPrinter_p."); |
3388 | return NULL; | |
3389 | } | |
3390 | } | |
2d091820 RD |
3391 | if (_argo1) { |
3392 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3393 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) { | |
d24a34bb RD |
3394 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxPrinter_Print. Expected _wxWindow_p."); |
3395 | return NULL; | |
3396 | } | |
3397 | } | |
2d091820 RD |
3398 | if (_argo2) { |
3399 | if (_argo2 == Py_None) { _arg2 = NULL; } | |
3400 | else if (SWIG_GetPtrObj(_argo2,(void **) &_arg2,"_wxPyPrintout_p")) { | |
d24a34bb RD |
3401 | PyErr_SetString(PyExc_TypeError,"Type error in argument 3 of wxPrinter_Print. Expected _wxPyPrintout_p."); |
3402 | return NULL; | |
3403 | } | |
3404 | } | |
3405 | { | |
3406 | wxPy_BEGIN_ALLOW_THREADS; | |
3407 | _result = (bool )wxPrinter_Print(_arg0,_arg1,_arg2,_arg3); | |
3408 | ||
3409 | wxPy_END_ALLOW_THREADS; | |
3410 | } _resultobj = Py_BuildValue("i",_result); | |
3411 | return _resultobj; | |
3412 | } | |
3413 | ||
3414 | #define wxPrinter_PrintDialog(_swigobj,_swigarg0) (_swigobj->PrintDialog(_swigarg0)) | |
107e4716 | 3415 | static PyObject *_wrap_wxPrinter_PrintDialog(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
3416 | PyObject * _resultobj; |
3417 | wxDC * _result; | |
3418 | wxPrinter * _arg0; | |
3419 | wxWindow * _arg1; | |
2d091820 RD |
3420 | PyObject * _argo0 = 0; |
3421 | PyObject * _argo1 = 0; | |
107e4716 | 3422 | char *_kwnames[] = { "self","parent", NULL }; |
d24a34bb RD |
3423 | char _ptemp[128]; |
3424 | ||
3425 | self = self; | |
107e4716 | 3426 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxPrinter_PrintDialog",_kwnames,&_argo0,&_argo1)) |
d24a34bb | 3427 | return NULL; |
2d091820 RD |
3428 | if (_argo0) { |
3429 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3430 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrinter_p")) { | |
d24a34bb RD |
3431 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrinter_PrintDialog. Expected _wxPrinter_p."); |
3432 | return NULL; | |
3433 | } | |
3434 | } | |
2d091820 RD |
3435 | if (_argo1) { |
3436 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3437 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) { | |
d24a34bb RD |
3438 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxPrinter_PrintDialog. Expected _wxWindow_p."); |
3439 | return NULL; | |
3440 | } | |
3441 | } | |
3442 | { | |
3443 | wxPy_BEGIN_ALLOW_THREADS; | |
3444 | _result = (wxDC *)wxPrinter_PrintDialog(_arg0,_arg1); | |
3445 | ||
3446 | wxPy_END_ALLOW_THREADS; | |
2d091820 RD |
3447 | } if (_result) { |
3448 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxDC_p"); | |
3449 | _resultobj = Py_BuildValue("s",_ptemp); | |
3450 | } else { | |
3451 | Py_INCREF(Py_None); | |
3452 | _resultobj = Py_None; | |
3453 | } | |
d24a34bb RD |
3454 | return _resultobj; |
3455 | } | |
3456 | ||
3457 | #define wxPrinter_ReportError(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->ReportError(_swigarg0,_swigarg1,_swigarg2)) | |
107e4716 | 3458 | static PyObject *_wrap_wxPrinter_ReportError(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
3459 | PyObject * _resultobj; |
3460 | wxPrinter * _arg0; | |
3461 | wxWindow * _arg1; | |
3462 | wxPyPrintout * _arg2; | |
3463 | char * _arg3; | |
2d091820 RD |
3464 | PyObject * _argo0 = 0; |
3465 | PyObject * _argo1 = 0; | |
3466 | PyObject * _argo2 = 0; | |
107e4716 | 3467 | char *_kwnames[] = { "self","parent","printout","message", NULL }; |
d24a34bb RD |
3468 | |
3469 | self = self; | |
107e4716 | 3470 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOOs:wxPrinter_ReportError",_kwnames,&_argo0,&_argo1,&_argo2,&_arg3)) |
d24a34bb | 3471 | return NULL; |
2d091820 RD |
3472 | if (_argo0) { |
3473 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3474 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrinter_p")) { | |
d24a34bb RD |
3475 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrinter_ReportError. Expected _wxPrinter_p."); |
3476 | return NULL; | |
3477 | } | |
3478 | } | |
2d091820 RD |
3479 | if (_argo1) { |
3480 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3481 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) { | |
d24a34bb RD |
3482 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxPrinter_ReportError. Expected _wxWindow_p."); |
3483 | return NULL; | |
3484 | } | |
3485 | } | |
2d091820 RD |
3486 | if (_argo2) { |
3487 | if (_argo2 == Py_None) { _arg2 = NULL; } | |
3488 | else if (SWIG_GetPtrObj(_argo2,(void **) &_arg2,"_wxPyPrintout_p")) { | |
d24a34bb RD |
3489 | PyErr_SetString(PyExc_TypeError,"Type error in argument 3 of wxPrinter_ReportError. Expected _wxPyPrintout_p."); |
3490 | return NULL; | |
3491 | } | |
3492 | } | |
3493 | { | |
3494 | wxPy_BEGIN_ALLOW_THREADS; | |
3495 | wxPrinter_ReportError(_arg0,_arg1,_arg2,_arg3); | |
3496 | ||
3497 | wxPy_END_ALLOW_THREADS; | |
3498 | } Py_INCREF(Py_None); | |
3499 | _resultobj = Py_None; | |
3500 | return _resultobj; | |
3501 | } | |
3502 | ||
3503 | #define wxPrinter_Setup(_swigobj,_swigarg0) (_swigobj->Setup(_swigarg0)) | |
107e4716 | 3504 | static PyObject *_wrap_wxPrinter_Setup(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
3505 | PyObject * _resultobj; |
3506 | bool _result; | |
3507 | wxPrinter * _arg0; | |
3508 | wxWindow * _arg1; | |
2d091820 RD |
3509 | PyObject * _argo0 = 0; |
3510 | PyObject * _argo1 = 0; | |
107e4716 | 3511 | char *_kwnames[] = { "self","parent", NULL }; |
d24a34bb RD |
3512 | |
3513 | self = self; | |
107e4716 | 3514 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxPrinter_Setup",_kwnames,&_argo0,&_argo1)) |
d24a34bb | 3515 | return NULL; |
2d091820 RD |
3516 | if (_argo0) { |
3517 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3518 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrinter_p")) { | |
d24a34bb RD |
3519 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrinter_Setup. Expected _wxPrinter_p."); |
3520 | return NULL; | |
3521 | } | |
3522 | } | |
2d091820 RD |
3523 | if (_argo1) { |
3524 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3525 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) { | |
d24a34bb RD |
3526 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxPrinter_Setup. Expected _wxWindow_p."); |
3527 | return NULL; | |
3528 | } | |
3529 | } | |
3530 | { | |
3531 | wxPy_BEGIN_ALLOW_THREADS; | |
3532 | _result = (bool )wxPrinter_Setup(_arg0,_arg1); | |
3533 | ||
3534 | wxPy_END_ALLOW_THREADS; | |
3535 | } _resultobj = Py_BuildValue("i",_result); | |
3536 | return _resultobj; | |
3537 | } | |
3538 | ||
3539 | #define new_wxPrintPreview(_swigarg0,_swigarg1,_swigarg2) (new wxPrintPreview(_swigarg0,_swigarg1,_swigarg2)) | |
107e4716 | 3540 | static PyObject *_wrap_new_wxPrintPreview(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
3541 | PyObject * _resultobj; |
3542 | wxPrintPreview * _result; | |
3543 | wxPyPrintout * _arg0; | |
3544 | wxPyPrintout * _arg1; | |
2d091820 RD |
3545 | wxPrintData * _arg2 = (wxPrintData *) NULL; |
3546 | PyObject * _argo0 = 0; | |
3547 | PyObject * _argo1 = 0; | |
3548 | PyObject * _argo2 = 0; | |
107e4716 | 3549 | char *_kwnames[] = { "printout","printoutForPrinting","data", NULL }; |
d24a34bb RD |
3550 | char _ptemp[128]; |
3551 | ||
3552 | self = self; | |
107e4716 | 3553 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|O:new_wxPrintPreview",_kwnames,&_argo0,&_argo1,&_argo2)) |
d24a34bb | 3554 | return NULL; |
2d091820 RD |
3555 | if (_argo0) { |
3556 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3557 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyPrintout_p")) { | |
d24a34bb RD |
3558 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of new_wxPrintPreview. Expected _wxPyPrintout_p."); |
3559 | return NULL; | |
3560 | } | |
3561 | } | |
2d091820 RD |
3562 | if (_argo1) { |
3563 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3564 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxPyPrintout_p")) { | |
d24a34bb RD |
3565 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of new_wxPrintPreview. Expected _wxPyPrintout_p."); |
3566 | return NULL; | |
3567 | } | |
3568 | } | |
2d091820 RD |
3569 | if (_argo2) { |
3570 | if (_argo2 == Py_None) { _arg2 = NULL; } | |
3571 | else if (SWIG_GetPtrObj(_argo2,(void **) &_arg2,"_wxPrintData_p")) { | |
d24a34bb RD |
3572 | PyErr_SetString(PyExc_TypeError,"Type error in argument 3 of new_wxPrintPreview. Expected _wxPrintData_p."); |
3573 | return NULL; | |
3574 | } | |
3575 | } | |
3576 | { | |
3577 | wxPy_BEGIN_ALLOW_THREADS; | |
3578 | _result = (wxPrintPreview *)new_wxPrintPreview(_arg0,_arg1,_arg2); | |
3579 | ||
3580 | wxPy_END_ALLOW_THREADS; | |
2d091820 RD |
3581 | } if (_result) { |
3582 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPrintPreview_p"); | |
3583 | _resultobj = Py_BuildValue("s",_ptemp); | |
3584 | } else { | |
3585 | Py_INCREF(Py_None); | |
3586 | _resultobj = Py_None; | |
3587 | } | |
d24a34bb RD |
3588 | return _resultobj; |
3589 | } | |
3590 | ||
3591 | #define wxPrintPreview_GetCanvas(_swigobj) (_swigobj->GetCanvas()) | |
107e4716 | 3592 | static PyObject *_wrap_wxPrintPreview_GetCanvas(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
3593 | PyObject * _resultobj; |
3594 | wxWindow * _result; | |
3595 | wxPrintPreview * _arg0; | |
2d091820 | 3596 | PyObject * _argo0 = 0; |
107e4716 | 3597 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
3598 | char _ptemp[128]; |
3599 | ||
3600 | self = self; | |
107e4716 | 3601 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintPreview_GetCanvas",_kwnames,&_argo0)) |
d24a34bb | 3602 | return NULL; |
2d091820 RD |
3603 | if (_argo0) { |
3604 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3605 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintPreview_p")) { | |
d24a34bb RD |
3606 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintPreview_GetCanvas. Expected _wxPrintPreview_p."); |
3607 | return NULL; | |
3608 | } | |
3609 | } | |
3610 | { | |
3611 | wxPy_BEGIN_ALLOW_THREADS; | |
3612 | _result = (wxWindow *)wxPrintPreview_GetCanvas(_arg0); | |
3613 | ||
3614 | wxPy_END_ALLOW_THREADS; | |
2d091820 RD |
3615 | } if (_result) { |
3616 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxWindow_p"); | |
3617 | _resultobj = Py_BuildValue("s",_ptemp); | |
3618 | } else { | |
3619 | Py_INCREF(Py_None); | |
3620 | _resultobj = Py_None; | |
3621 | } | |
d24a34bb RD |
3622 | return _resultobj; |
3623 | } | |
3624 | ||
3625 | #define wxPrintPreview_GetCurrentPage(_swigobj) (_swigobj->GetCurrentPage()) | |
107e4716 | 3626 | static PyObject *_wrap_wxPrintPreview_GetCurrentPage(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
3627 | PyObject * _resultobj; |
3628 | int _result; | |
3629 | wxPrintPreview * _arg0; | |
2d091820 | 3630 | PyObject * _argo0 = 0; |
107e4716 | 3631 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
3632 | |
3633 | self = self; | |
107e4716 | 3634 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintPreview_GetCurrentPage",_kwnames,&_argo0)) |
d24a34bb | 3635 | return NULL; |
2d091820 RD |
3636 | if (_argo0) { |
3637 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3638 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintPreview_p")) { | |
d24a34bb RD |
3639 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintPreview_GetCurrentPage. Expected _wxPrintPreview_p."); |
3640 | return NULL; | |
3641 | } | |
3642 | } | |
3643 | { | |
3644 | wxPy_BEGIN_ALLOW_THREADS; | |
3645 | _result = (int )wxPrintPreview_GetCurrentPage(_arg0); | |
3646 | ||
3647 | wxPy_END_ALLOW_THREADS; | |
3648 | } _resultobj = Py_BuildValue("i",_result); | |
3649 | return _resultobj; | |
3650 | } | |
3651 | ||
3652 | #define wxPrintPreview_GetFrame(_swigobj) (_swigobj->GetFrame()) | |
107e4716 | 3653 | static PyObject *_wrap_wxPrintPreview_GetFrame(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
3654 | PyObject * _resultobj; |
3655 | wxFrame * _result; | |
3656 | wxPrintPreview * _arg0; | |
2d091820 | 3657 | PyObject * _argo0 = 0; |
107e4716 | 3658 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
3659 | char _ptemp[128]; |
3660 | ||
3661 | self = self; | |
107e4716 | 3662 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintPreview_GetFrame",_kwnames,&_argo0)) |
d24a34bb | 3663 | return NULL; |
2d091820 RD |
3664 | if (_argo0) { |
3665 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3666 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintPreview_p")) { | |
d24a34bb RD |
3667 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintPreview_GetFrame. Expected _wxPrintPreview_p."); |
3668 | return NULL; | |
3669 | } | |
3670 | } | |
3671 | { | |
3672 | wxPy_BEGIN_ALLOW_THREADS; | |
3673 | _result = (wxFrame *)wxPrintPreview_GetFrame(_arg0); | |
3674 | ||
3675 | wxPy_END_ALLOW_THREADS; | |
2d091820 RD |
3676 | } if (_result) { |
3677 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxFrame_p"); | |
3678 | _resultobj = Py_BuildValue("s",_ptemp); | |
3679 | } else { | |
3680 | Py_INCREF(Py_None); | |
3681 | _resultobj = Py_None; | |
3682 | } | |
d24a34bb RD |
3683 | return _resultobj; |
3684 | } | |
3685 | ||
3686 | #define wxPrintPreview_GetMaxPage(_swigobj) (_swigobj->GetMaxPage()) | |
107e4716 | 3687 | static PyObject *_wrap_wxPrintPreview_GetMaxPage(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
3688 | PyObject * _resultobj; |
3689 | int _result; | |
3690 | wxPrintPreview * _arg0; | |
2d091820 | 3691 | PyObject * _argo0 = 0; |
107e4716 | 3692 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
3693 | |
3694 | self = self; | |
107e4716 | 3695 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintPreview_GetMaxPage",_kwnames,&_argo0)) |
d24a34bb | 3696 | return NULL; |
2d091820 RD |
3697 | if (_argo0) { |
3698 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3699 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintPreview_p")) { | |
d24a34bb RD |
3700 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintPreview_GetMaxPage. Expected _wxPrintPreview_p."); |
3701 | return NULL; | |
3702 | } | |
3703 | } | |
3704 | { | |
3705 | wxPy_BEGIN_ALLOW_THREADS; | |
3706 | _result = (int )wxPrintPreview_GetMaxPage(_arg0); | |
3707 | ||
3708 | wxPy_END_ALLOW_THREADS; | |
3709 | } _resultobj = Py_BuildValue("i",_result); | |
3710 | return _resultobj; | |
3711 | } | |
3712 | ||
3713 | #define wxPrintPreview_GetMinPage(_swigobj) (_swigobj->GetMinPage()) | |
107e4716 | 3714 | static PyObject *_wrap_wxPrintPreview_GetMinPage(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
3715 | PyObject * _resultobj; |
3716 | int _result; | |
3717 | wxPrintPreview * _arg0; | |
2d091820 | 3718 | PyObject * _argo0 = 0; |
107e4716 | 3719 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
3720 | |
3721 | self = self; | |
107e4716 | 3722 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintPreview_GetMinPage",_kwnames,&_argo0)) |
d24a34bb | 3723 | return NULL; |
2d091820 RD |
3724 | if (_argo0) { |
3725 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3726 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintPreview_p")) { | |
d24a34bb RD |
3727 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintPreview_GetMinPage. Expected _wxPrintPreview_p."); |
3728 | return NULL; | |
3729 | } | |
3730 | } | |
3731 | { | |
3732 | wxPy_BEGIN_ALLOW_THREADS; | |
3733 | _result = (int )wxPrintPreview_GetMinPage(_arg0); | |
3734 | ||
3735 | wxPy_END_ALLOW_THREADS; | |
3736 | } _resultobj = Py_BuildValue("i",_result); | |
3737 | return _resultobj; | |
3738 | } | |
3739 | ||
3740 | #define wxPrintPreview_GetPrintDialogData(_swigobj) (_swigobj->GetPrintDialogData()) | |
107e4716 | 3741 | static PyObject *_wrap_wxPrintPreview_GetPrintDialogData(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
3742 | PyObject * _resultobj; |
3743 | wxPrintDialogData * _result; | |
3744 | wxPrintPreview * _arg0; | |
2d091820 | 3745 | PyObject * _argo0 = 0; |
107e4716 | 3746 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
3747 | char _ptemp[128]; |
3748 | ||
3749 | self = self; | |
107e4716 | 3750 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintPreview_GetPrintDialogData",_kwnames,&_argo0)) |
d24a34bb | 3751 | return NULL; |
2d091820 RD |
3752 | if (_argo0) { |
3753 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3754 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintPreview_p")) { | |
d24a34bb RD |
3755 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintPreview_GetPrintDialogData. Expected _wxPrintPreview_p."); |
3756 | return NULL; | |
3757 | } | |
3758 | } | |
3759 | { | |
3760 | wxPy_BEGIN_ALLOW_THREADS; | |
3761 | wxPrintDialogData & _result_ref = wxPrintPreview_GetPrintDialogData(_arg0); | |
3762 | _result = (wxPrintDialogData *) &_result_ref; | |
3763 | ||
3764 | wxPy_END_ALLOW_THREADS; | |
2d091820 RD |
3765 | } if (_result) { |
3766 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPrintDialogData_p"); | |
3767 | _resultobj = Py_BuildValue("s",_ptemp); | |
3768 | } else { | |
3769 | Py_INCREF(Py_None); | |
3770 | _resultobj = Py_None; | |
3771 | } | |
d24a34bb RD |
3772 | return _resultobj; |
3773 | } | |
3774 | ||
3775 | #define wxPrintPreview_GetPrintout(_swigobj) (_swigobj->GetPrintout()) | |
107e4716 | 3776 | static PyObject *_wrap_wxPrintPreview_GetPrintout(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
3777 | PyObject * _resultobj; |
3778 | wxPyPrintout * _result; | |
3779 | wxPrintPreview * _arg0; | |
2d091820 | 3780 | PyObject * _argo0 = 0; |
107e4716 | 3781 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
3782 | char _ptemp[128]; |
3783 | ||
3784 | self = self; | |
107e4716 | 3785 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintPreview_GetPrintout",_kwnames,&_argo0)) |
d24a34bb | 3786 | return NULL; |
2d091820 RD |
3787 | if (_argo0) { |
3788 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3789 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintPreview_p")) { | |
d24a34bb RD |
3790 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintPreview_GetPrintout. Expected _wxPrintPreview_p."); |
3791 | return NULL; | |
3792 | } | |
3793 | } | |
3794 | { | |
3795 | wxPy_BEGIN_ALLOW_THREADS; | |
3796 | _result = (wxPyPrintout *)wxPrintPreview_GetPrintout(_arg0); | |
3797 | ||
3798 | wxPy_END_ALLOW_THREADS; | |
2d091820 RD |
3799 | } if (_result) { |
3800 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPyPrintout_p"); | |
3801 | _resultobj = Py_BuildValue("s",_ptemp); | |
3802 | } else { | |
3803 | Py_INCREF(Py_None); | |
3804 | _resultobj = Py_None; | |
3805 | } | |
d24a34bb RD |
3806 | return _resultobj; |
3807 | } | |
3808 | ||
3809 | #define wxPrintPreview_GetPrintoutForPrinting(_swigobj) (_swigobj->GetPrintoutForPrinting()) | |
107e4716 | 3810 | static PyObject *_wrap_wxPrintPreview_GetPrintoutForPrinting(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
3811 | PyObject * _resultobj; |
3812 | wxPyPrintout * _result; | |
3813 | wxPrintPreview * _arg0; | |
2d091820 | 3814 | PyObject * _argo0 = 0; |
107e4716 | 3815 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
3816 | char _ptemp[128]; |
3817 | ||
3818 | self = self; | |
107e4716 | 3819 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintPreview_GetPrintoutForPrinting",_kwnames,&_argo0)) |
d24a34bb | 3820 | return NULL; |
2d091820 RD |
3821 | if (_argo0) { |
3822 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3823 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintPreview_p")) { | |
d24a34bb RD |
3824 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintPreview_GetPrintoutForPrinting. Expected _wxPrintPreview_p."); |
3825 | return NULL; | |
3826 | } | |
3827 | } | |
3828 | { | |
3829 | wxPy_BEGIN_ALLOW_THREADS; | |
3830 | _result = (wxPyPrintout *)wxPrintPreview_GetPrintoutForPrinting(_arg0); | |
3831 | ||
3832 | wxPy_END_ALLOW_THREADS; | |
2d091820 RD |
3833 | } if (_result) { |
3834 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPyPrintout_p"); | |
3835 | _resultobj = Py_BuildValue("s",_ptemp); | |
3836 | } else { | |
3837 | Py_INCREF(Py_None); | |
3838 | _resultobj = Py_None; | |
3839 | } | |
d24a34bb RD |
3840 | return _resultobj; |
3841 | } | |
3842 | ||
3843 | #define wxPrintPreview_GetZoom(_swigobj) (_swigobj->GetZoom()) | |
107e4716 | 3844 | static PyObject *_wrap_wxPrintPreview_GetZoom(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
3845 | PyObject * _resultobj; |
3846 | int _result; | |
3847 | wxPrintPreview * _arg0; | |
2d091820 | 3848 | PyObject * _argo0 = 0; |
107e4716 | 3849 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
3850 | |
3851 | self = self; | |
107e4716 | 3852 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintPreview_GetZoom",_kwnames,&_argo0)) |
d24a34bb | 3853 | return NULL; |
2d091820 RD |
3854 | if (_argo0) { |
3855 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3856 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintPreview_p")) { | |
d24a34bb RD |
3857 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintPreview_GetZoom. Expected _wxPrintPreview_p."); |
3858 | return NULL; | |
3859 | } | |
3860 | } | |
3861 | { | |
3862 | wxPy_BEGIN_ALLOW_THREADS; | |
3863 | _result = (int )wxPrintPreview_GetZoom(_arg0); | |
3864 | ||
3865 | wxPy_END_ALLOW_THREADS; | |
3866 | } _resultobj = Py_BuildValue("i",_result); | |
3867 | return _resultobj; | |
3868 | } | |
3869 | ||
3870 | #define wxPrintPreview_Ok(_swigobj) (_swigobj->Ok()) | |
107e4716 | 3871 | static PyObject *_wrap_wxPrintPreview_Ok(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
3872 | PyObject * _resultobj; |
3873 | bool _result; | |
3874 | wxPrintPreview * _arg0; | |
2d091820 | 3875 | PyObject * _argo0 = 0; |
107e4716 | 3876 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
3877 | |
3878 | self = self; | |
107e4716 | 3879 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPrintPreview_Ok",_kwnames,&_argo0)) |
d24a34bb | 3880 | return NULL; |
2d091820 RD |
3881 | if (_argo0) { |
3882 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3883 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintPreview_p")) { | |
d24a34bb RD |
3884 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintPreview_Ok. Expected _wxPrintPreview_p."); |
3885 | return NULL; | |
3886 | } | |
3887 | } | |
3888 | { | |
3889 | wxPy_BEGIN_ALLOW_THREADS; | |
3890 | _result = (bool )wxPrintPreview_Ok(_arg0); | |
3891 | ||
3892 | wxPy_END_ALLOW_THREADS; | |
3893 | } _resultobj = Py_BuildValue("i",_result); | |
3894 | return _resultobj; | |
3895 | } | |
3896 | ||
3897 | #define wxPrintPreview_Print(_swigobj,_swigarg0) (_swigobj->Print(_swigarg0)) | |
107e4716 | 3898 | static PyObject *_wrap_wxPrintPreview_Print(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
3899 | PyObject * _resultobj; |
3900 | bool _result; | |
3901 | wxPrintPreview * _arg0; | |
3902 | bool _arg1; | |
2d091820 | 3903 | PyObject * _argo0 = 0; |
d24a34bb | 3904 | int tempbool1; |
107e4716 | 3905 | char *_kwnames[] = { "self","prompt", NULL }; |
d24a34bb RD |
3906 | |
3907 | self = self; | |
107e4716 | 3908 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPrintPreview_Print",_kwnames,&_argo0,&tempbool1)) |
d24a34bb | 3909 | return NULL; |
2d091820 RD |
3910 | if (_argo0) { |
3911 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3912 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintPreview_p")) { | |
d24a34bb RD |
3913 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintPreview_Print. Expected _wxPrintPreview_p."); |
3914 | return NULL; | |
3915 | } | |
3916 | } | |
3917 | _arg1 = (bool ) tempbool1; | |
3918 | { | |
3919 | wxPy_BEGIN_ALLOW_THREADS; | |
3920 | _result = (bool )wxPrintPreview_Print(_arg0,_arg1); | |
3921 | ||
3922 | wxPy_END_ALLOW_THREADS; | |
3923 | } _resultobj = Py_BuildValue("i",_result); | |
3924 | return _resultobj; | |
3925 | } | |
3926 | ||
3927 | #define wxPrintPreview_SetCanvas(_swigobj,_swigarg0) (_swigobj->SetCanvas(_swigarg0)) | |
107e4716 | 3928 | static PyObject *_wrap_wxPrintPreview_SetCanvas(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
3929 | PyObject * _resultobj; |
3930 | wxPrintPreview * _arg0; | |
3931 | wxWindow * _arg1; | |
2d091820 RD |
3932 | PyObject * _argo0 = 0; |
3933 | PyObject * _argo1 = 0; | |
107e4716 | 3934 | char *_kwnames[] = { "self","window", NULL }; |
d24a34bb RD |
3935 | |
3936 | self = self; | |
107e4716 | 3937 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxPrintPreview_SetCanvas",_kwnames,&_argo0,&_argo1)) |
d24a34bb | 3938 | return NULL; |
2d091820 RD |
3939 | if (_argo0) { |
3940 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3941 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintPreview_p")) { | |
d24a34bb RD |
3942 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintPreview_SetCanvas. Expected _wxPrintPreview_p."); |
3943 | return NULL; | |
3944 | } | |
3945 | } | |
2d091820 RD |
3946 | if (_argo1) { |
3947 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
3948 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) { | |
d24a34bb RD |
3949 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxPrintPreview_SetCanvas. Expected _wxWindow_p."); |
3950 | return NULL; | |
3951 | } | |
3952 | } | |
3953 | { | |
3954 | wxPy_BEGIN_ALLOW_THREADS; | |
3955 | wxPrintPreview_SetCanvas(_arg0,_arg1); | |
3956 | ||
3957 | wxPy_END_ALLOW_THREADS; | |
3958 | } Py_INCREF(Py_None); | |
3959 | _resultobj = Py_None; | |
3960 | return _resultobj; | |
3961 | } | |
3962 | ||
3963 | #define wxPrintPreview_SetCurrentPage(_swigobj,_swigarg0) (_swigobj->SetCurrentPage(_swigarg0)) | |
107e4716 | 3964 | static PyObject *_wrap_wxPrintPreview_SetCurrentPage(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
3965 | PyObject * _resultobj; |
3966 | wxPrintPreview * _arg0; | |
3967 | int _arg1; | |
2d091820 | 3968 | PyObject * _argo0 = 0; |
107e4716 | 3969 | char *_kwnames[] = { "self","pageNum", NULL }; |
d24a34bb RD |
3970 | |
3971 | self = self; | |
107e4716 | 3972 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPrintPreview_SetCurrentPage",_kwnames,&_argo0,&_arg1)) |
d24a34bb | 3973 | return NULL; |
2d091820 RD |
3974 | if (_argo0) { |
3975 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
3976 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintPreview_p")) { | |
d24a34bb RD |
3977 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintPreview_SetCurrentPage. Expected _wxPrintPreview_p."); |
3978 | return NULL; | |
3979 | } | |
3980 | } | |
3981 | { | |
3982 | wxPy_BEGIN_ALLOW_THREADS; | |
3983 | wxPrintPreview_SetCurrentPage(_arg0,_arg1); | |
3984 | ||
3985 | wxPy_END_ALLOW_THREADS; | |
3986 | } Py_INCREF(Py_None); | |
3987 | _resultobj = Py_None; | |
3988 | return _resultobj; | |
3989 | } | |
3990 | ||
3991 | #define wxPrintPreview_SetFrame(_swigobj,_swigarg0) (_swigobj->SetFrame(_swigarg0)) | |
107e4716 | 3992 | static PyObject *_wrap_wxPrintPreview_SetFrame(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
3993 | PyObject * _resultobj; |
3994 | wxPrintPreview * _arg0; | |
3995 | wxFrame * _arg1; | |
2d091820 RD |
3996 | PyObject * _argo0 = 0; |
3997 | PyObject * _argo1 = 0; | |
107e4716 | 3998 | char *_kwnames[] = { "self","frame", NULL }; |
d24a34bb RD |
3999 | |
4000 | self = self; | |
107e4716 | 4001 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxPrintPreview_SetFrame",_kwnames,&_argo0,&_argo1)) |
d24a34bb | 4002 | return NULL; |
2d091820 RD |
4003 | if (_argo0) { |
4004 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4005 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintPreview_p")) { | |
d24a34bb RD |
4006 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintPreview_SetFrame. Expected _wxPrintPreview_p."); |
4007 | return NULL; | |
4008 | } | |
4009 | } | |
2d091820 RD |
4010 | if (_argo1) { |
4011 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
4012 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxFrame_p")) { | |
d24a34bb RD |
4013 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxPrintPreview_SetFrame. Expected _wxFrame_p."); |
4014 | return NULL; | |
4015 | } | |
4016 | } | |
4017 | { | |
4018 | wxPy_BEGIN_ALLOW_THREADS; | |
4019 | wxPrintPreview_SetFrame(_arg0,_arg1); | |
4020 | ||
4021 | wxPy_END_ALLOW_THREADS; | |
4022 | } Py_INCREF(Py_None); | |
4023 | _resultobj = Py_None; | |
4024 | return _resultobj; | |
4025 | } | |
4026 | ||
4027 | #define wxPrintPreview_SetPrintout(_swigobj,_swigarg0) (_swigobj->SetPrintout(_swigarg0)) | |
107e4716 | 4028 | static PyObject *_wrap_wxPrintPreview_SetPrintout(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
4029 | PyObject * _resultobj; |
4030 | wxPrintPreview * _arg0; | |
4031 | wxPyPrintout * _arg1; | |
2d091820 RD |
4032 | PyObject * _argo0 = 0; |
4033 | PyObject * _argo1 = 0; | |
107e4716 | 4034 | char *_kwnames[] = { "self","printout", NULL }; |
d24a34bb RD |
4035 | |
4036 | self = self; | |
107e4716 | 4037 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxPrintPreview_SetPrintout",_kwnames,&_argo0,&_argo1)) |
d24a34bb | 4038 | return NULL; |
2d091820 RD |
4039 | if (_argo0) { |
4040 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4041 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintPreview_p")) { | |
d24a34bb RD |
4042 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintPreview_SetPrintout. Expected _wxPrintPreview_p."); |
4043 | return NULL; | |
4044 | } | |
4045 | } | |
2d091820 RD |
4046 | if (_argo1) { |
4047 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
4048 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxPyPrintout_p")) { | |
d24a34bb RD |
4049 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxPrintPreview_SetPrintout. Expected _wxPyPrintout_p."); |
4050 | return NULL; | |
4051 | } | |
4052 | } | |
4053 | { | |
4054 | wxPy_BEGIN_ALLOW_THREADS; | |
4055 | wxPrintPreview_SetPrintout(_arg0,_arg1); | |
4056 | ||
4057 | wxPy_END_ALLOW_THREADS; | |
4058 | } Py_INCREF(Py_None); | |
4059 | _resultobj = Py_None; | |
4060 | return _resultobj; | |
4061 | } | |
4062 | ||
4063 | #define wxPrintPreview_SetZoom(_swigobj,_swigarg0) (_swigobj->SetZoom(_swigarg0)) | |
107e4716 | 4064 | static PyObject *_wrap_wxPrintPreview_SetZoom(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
4065 | PyObject * _resultobj; |
4066 | wxPrintPreview * _arg0; | |
4067 | int _arg1; | |
2d091820 | 4068 | PyObject * _argo0 = 0; |
107e4716 | 4069 | char *_kwnames[] = { "self","percent", NULL }; |
d24a34bb RD |
4070 | |
4071 | self = self; | |
107e4716 | 4072 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxPrintPreview_SetZoom",_kwnames,&_argo0,&_arg1)) |
d24a34bb | 4073 | return NULL; |
2d091820 RD |
4074 | if (_argo0) { |
4075 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4076 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintPreview_p")) { | |
d24a34bb RD |
4077 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPrintPreview_SetZoom. Expected _wxPrintPreview_p."); |
4078 | return NULL; | |
4079 | } | |
4080 | } | |
4081 | { | |
4082 | wxPy_BEGIN_ALLOW_THREADS; | |
4083 | wxPrintPreview_SetZoom(_arg0,_arg1); | |
4084 | ||
4085 | wxPy_END_ALLOW_THREADS; | |
4086 | } Py_INCREF(Py_None); | |
4087 | _resultobj = Py_None; | |
4088 | return _resultobj; | |
4089 | } | |
4090 | ||
4091 | static void *SwigwxPreviewFrameTowxFrame(void *ptr) { | |
4092 | wxPreviewFrame *src; | |
4093 | wxFrame *dest; | |
4094 | src = (wxPreviewFrame *) ptr; | |
4095 | dest = (wxFrame *) src; | |
4096 | return (void *) dest; | |
4097 | } | |
4098 | ||
4099 | static void *SwigwxPreviewFrameTowxWindow(void *ptr) { | |
4100 | wxPreviewFrame *src; | |
4101 | wxWindow *dest; | |
4102 | src = (wxPreviewFrame *) ptr; | |
4103 | dest = (wxWindow *) src; | |
4104 | return (void *) dest; | |
4105 | } | |
4106 | ||
4107 | static void *SwigwxPreviewFrameTowxEvtHandler(void *ptr) { | |
4108 | wxPreviewFrame *src; | |
4109 | wxEvtHandler *dest; | |
4110 | src = (wxPreviewFrame *) ptr; | |
4111 | dest = (wxEvtHandler *) src; | |
4112 | return (void *) dest; | |
4113 | } | |
4114 | ||
4115 | #define new_wxPreviewFrame(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5,_swigarg6) (new wxPreviewFrame(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5,_swigarg6)) | |
107e4716 | 4116 | static PyObject *_wrap_new_wxPreviewFrame(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
4117 | PyObject * _resultobj; |
4118 | wxPreviewFrame * _result; | |
4119 | wxPrintPreview * _arg0; | |
4120 | wxFrame * _arg1; | |
4121 | wxString * _arg2; | |
2d091820 RD |
4122 | wxPoint * _arg3 = (wxPoint *) &wxPyDefaultPosition; |
4123 | wxSize * _arg4 = (wxSize *) &wxPyDefaultSize; | |
4124 | long _arg5 = (long ) wxDEFAULT_FRAME_STYLE; | |
4125 | char * _arg6 = (char *) "frame"; | |
4126 | PyObject * _argo0 = 0; | |
4127 | PyObject * _argo1 = 0; | |
d24a34bb | 4128 | PyObject * _obj2 = 0; |
37f6a977 RD |
4129 | wxPoint temp; |
4130 | PyObject * _obj3 = 0; | |
4131 | wxSize temp0; | |
4132 | PyObject * _obj4 = 0; | |
107e4716 | 4133 | char *_kwnames[] = { "preview","parent","title","pos","size","style","name", NULL }; |
d24a34bb RD |
4134 | char _ptemp[128]; |
4135 | ||
4136 | self = self; | |
37f6a977 | 4137 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO|OOls:new_wxPreviewFrame",_kwnames,&_argo0,&_argo1,&_obj2,&_obj3,&_obj4,&_arg5,&_arg6)) |
d24a34bb | 4138 | return NULL; |
2d091820 RD |
4139 | if (_argo0) { |
4140 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4141 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPrintPreview_p")) { | |
d24a34bb RD |
4142 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of new_wxPreviewFrame. Expected _wxPrintPreview_p."); |
4143 | return NULL; | |
4144 | } | |
4145 | } | |
2d091820 RD |
4146 | if (_argo1) { |
4147 | if (_argo1 == Py_None) { _arg1 = NULL; } | |
4148 | else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxFrame_p")) { | |
d24a34bb RD |
4149 | PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of new_wxPreviewFrame. Expected _wxFrame_p."); |
4150 | return NULL; | |
4151 | } | |
4152 | } | |
4153 | { | |
4154 | if (!PyString_Check(_obj2)) { | |
4155 | PyErr_SetString(PyExc_TypeError, wxStringErrorMsg); | |
4156 | return NULL; | |
4157 | } | |
4158 | _arg2 = new wxString(PyString_AsString(_obj2), PyString_Size(_obj2)); | |
4159 | } | |
37f6a977 RD |
4160 | if (_obj3) |
4161 | { | |
4162 | _arg3 = &temp; | |
4163 | if (! wxPoint_helper(_obj3, &_arg3)) | |
d24a34bb | 4164 | return NULL; |
37f6a977 RD |
4165 | } |
4166 | if (_obj4) | |
4167 | { | |
4168 | _arg4 = &temp0; | |
4169 | if (! wxSize_helper(_obj4, &_arg4)) | |
d24a34bb | 4170 | return NULL; |
37f6a977 | 4171 | } |
d24a34bb RD |
4172 | { |
4173 | wxPy_BEGIN_ALLOW_THREADS; | |
4174 | _result = (wxPreviewFrame *)new_wxPreviewFrame(_arg0,_arg1,*_arg2,*_arg3,*_arg4,_arg5,_arg6); | |
4175 | ||
4176 | wxPy_END_ALLOW_THREADS; | |
2d091820 RD |
4177 | } if (_result) { |
4178 | SWIG_MakePtr(_ptemp, (char *) _result,"_wxPreviewFrame_p"); | |
4179 | _resultobj = Py_BuildValue("s",_ptemp); | |
4180 | } else { | |
4181 | Py_INCREF(Py_None); | |
4182 | _resultobj = Py_None; | |
4183 | } | |
d24a34bb RD |
4184 | { |
4185 | if (_obj2) | |
4186 | delete _arg2; | |
4187 | } | |
4188 | return _resultobj; | |
4189 | } | |
4190 | ||
4191 | #define wxPreviewFrame_Initialize(_swigobj) (_swigobj->Initialize()) | |
107e4716 | 4192 | static PyObject *_wrap_wxPreviewFrame_Initialize(PyObject *self, PyObject *args, PyObject *kwargs) { |
d24a34bb RD |
4193 | PyObject * _resultobj; |
4194 | wxPreviewFrame * _arg0; | |
2d091820 | 4195 | PyObject * _argo0 = 0; |
107e4716 | 4196 | char *_kwnames[] = { "self", NULL }; |
d24a34bb RD |
4197 | |
4198 | self = self; | |
107e4716 | 4199 | if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPreviewFrame_Initialize",_kwnames,&_argo0)) |
d24a34bb | 4200 | return NULL; |
2d091820 RD |
4201 | if (_argo0) { |
4202 | if (_argo0 == Py_None) { _arg0 = NULL; } | |
4203 | else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPreviewFrame_p")) { | |
d24a34bb RD |
4204 | PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPreviewFrame_Initialize. Expected _wxPreviewFrame_p."); |
4205 | return NULL; | |
4206 | } | |
4207 | } | |
4208 | { | |
4209 | wxPy_BEGIN_ALLOW_THREADS; | |
4210 | wxPreviewFrame_Initialize(_arg0); | |
4211 | ||
4212 | wxPy_END_ALLOW_THREADS; | |
4213 | } Py_INCREF(Py_None); | |
4214 | _resultobj = Py_None; | |
4215 | return _resultobj; | |
4216 | } | |
4217 | ||
4218 | static PyMethodDef printfwcMethods[] = { | |
107e4716 RD |
4219 | { "wxPreviewFrame_Initialize", (PyCFunction) _wrap_wxPreviewFrame_Initialize, METH_VARARGS | METH_KEYWORDS }, |
4220 | { "new_wxPreviewFrame", (PyCFunction) _wrap_new_wxPreviewFrame, METH_VARARGS | METH_KEYWORDS }, | |
4221 | { "wxPrintPreview_SetZoom", (PyCFunction) _wrap_wxPrintPreview_SetZoom, METH_VARARGS | METH_KEYWORDS }, | |
4222 | { "wxPrintPreview_SetPrintout", (PyCFunction) _wrap_wxPrintPreview_SetPrintout, METH_VARARGS | METH_KEYWORDS }, | |
4223 | { "wxPrintPreview_SetFrame", (PyCFunction) _wrap_wxPrintPreview_SetFrame, METH_VARARGS | METH_KEYWORDS }, | |
4224 | { "wxPrintPreview_SetCurrentPage", (PyCFunction) _wrap_wxPrintPreview_SetCurrentPage, METH_VARARGS | METH_KEYWORDS }, | |
4225 | { "wxPrintPreview_SetCanvas", (PyCFunction) _wrap_wxPrintPreview_SetCanvas, METH_VARARGS | METH_KEYWORDS }, | |
4226 | { "wxPrintPreview_Print", (PyCFunction) _wrap_wxPrintPreview_Print, METH_VARARGS | METH_KEYWORDS }, | |
4227 | { "wxPrintPreview_Ok", (PyCFunction) _wrap_wxPrintPreview_Ok, METH_VARARGS | METH_KEYWORDS }, | |
4228 | { "wxPrintPreview_GetZoom", (PyCFunction) _wrap_wxPrintPreview_GetZoom, METH_VARARGS | METH_KEYWORDS }, | |
4229 | { "wxPrintPreview_GetPrintoutForPrinting", (PyCFunction) _wrap_wxPrintPreview_GetPrintoutForPrinting, METH_VARARGS | METH_KEYWORDS }, | |
4230 | { "wxPrintPreview_GetPrintout", (PyCFunction) _wrap_wxPrintPreview_GetPrintout, METH_VARARGS | METH_KEYWORDS }, | |
4231 | { "wxPrintPreview_GetPrintDialogData", (PyCFunction) _wrap_wxPrintPreview_GetPrintDialogData, METH_VARARGS | METH_KEYWORDS }, | |
4232 | { "wxPrintPreview_GetMinPage", (PyCFunction) _wrap_wxPrintPreview_GetMinPage, METH_VARARGS | METH_KEYWORDS }, | |
4233 | { "wxPrintPreview_GetMaxPage", (PyCFunction) _wrap_wxPrintPreview_GetMaxPage, METH_VARARGS | METH_KEYWORDS }, | |
4234 | { "wxPrintPreview_GetFrame", (PyCFunction) _wrap_wxPrintPreview_GetFrame, METH_VARARGS | METH_KEYWORDS }, | |
4235 | { "wxPrintPreview_GetCurrentPage", (PyCFunction) _wrap_wxPrintPreview_GetCurrentPage, METH_VARARGS | METH_KEYWORDS }, | |
4236 | { "wxPrintPreview_GetCanvas", (PyCFunction) _wrap_wxPrintPreview_GetCanvas, METH_VARARGS | METH_KEYWORDS }, | |
4237 | { "new_wxPrintPreview", (PyCFunction) _wrap_new_wxPrintPreview, METH_VARARGS | METH_KEYWORDS }, | |
4238 | { "wxPrinter_Setup", (PyCFunction) _wrap_wxPrinter_Setup, METH_VARARGS | METH_KEYWORDS }, | |
4239 | { "wxPrinter_ReportError", (PyCFunction) _wrap_wxPrinter_ReportError, METH_VARARGS | METH_KEYWORDS }, | |
4240 | { "wxPrinter_PrintDialog", (PyCFunction) _wrap_wxPrinter_PrintDialog, METH_VARARGS | METH_KEYWORDS }, | |
4241 | { "wxPrinter_Print", (PyCFunction) _wrap_wxPrinter_Print, METH_VARARGS | METH_KEYWORDS }, | |
4242 | { "wxPrinter_GetPrintDialogData", (PyCFunction) _wrap_wxPrinter_GetPrintDialogData, METH_VARARGS | METH_KEYWORDS }, | |
4243 | { "wxPrinter_CreateAbortWindow", (PyCFunction) _wrap_wxPrinter_CreateAbortWindow, METH_VARARGS | METH_KEYWORDS }, | |
4244 | { "delete_wxPrinter", (PyCFunction) _wrap_delete_wxPrinter, METH_VARARGS | METH_KEYWORDS }, | |
4245 | { "new_wxPrinter", (PyCFunction) _wrap_new_wxPrinter, METH_VARARGS | METH_KEYWORDS }, | |
4246 | { "wxPrintout_base_HasPage", (PyCFunction) _wrap_wxPrintout_base_HasPage, METH_VARARGS | METH_KEYWORDS }, | |
4247 | { "wxPrintout_base_GetPageInfo", (PyCFunction) _wrap_wxPrintout_base_GetPageInfo, METH_VARARGS | METH_KEYWORDS }, | |
4248 | { "wxPrintout_base_OnPreparePrinting", (PyCFunction) _wrap_wxPrintout_base_OnPreparePrinting, METH_VARARGS | METH_KEYWORDS }, | |
4249 | { "wxPrintout_base_OnEndPrinting", (PyCFunction) _wrap_wxPrintout_base_OnEndPrinting, METH_VARARGS | METH_KEYWORDS }, | |
4250 | { "wxPrintout_base_OnBeginPrinting", (PyCFunction) _wrap_wxPrintout_base_OnBeginPrinting, METH_VARARGS | METH_KEYWORDS }, | |
4251 | { "wxPrintout_base_OnEndDocument", (PyCFunction) _wrap_wxPrintout_base_OnEndDocument, METH_VARARGS | METH_KEYWORDS }, | |
4252 | { "wxPrintout_base_OnBeginDocument", (PyCFunction) _wrap_wxPrintout_base_OnBeginDocument, METH_VARARGS | METH_KEYWORDS }, | |
4253 | { "wxPrintout_IsPreview", (PyCFunction) _wrap_wxPrintout_IsPreview, METH_VARARGS | METH_KEYWORDS }, | |
4254 | { "wxPrintout_GetPPIScreen", (PyCFunction) _wrap_wxPrintout_GetPPIScreen, METH_VARARGS | METH_KEYWORDS }, | |
4255 | { "wxPrintout_GetPPIPrinter", (PyCFunction) _wrap_wxPrintout_GetPPIPrinter, METH_VARARGS | METH_KEYWORDS }, | |
4256 | { "wxPrintout_GetPageSizePixels", (PyCFunction) _wrap_wxPrintout_GetPageSizePixels, METH_VARARGS | METH_KEYWORDS }, | |
4257 | { "wxPrintout_GetPageSizeMM", (PyCFunction) _wrap_wxPrintout_GetPageSizeMM, METH_VARARGS | METH_KEYWORDS }, | |
4258 | { "wxPrintout_GetDC", (PyCFunction) _wrap_wxPrintout_GetDC, METH_VARARGS | METH_KEYWORDS }, | |
4259 | { "wxPrintout_Destroy", (PyCFunction) _wrap_wxPrintout_Destroy, METH_VARARGS | METH_KEYWORDS }, | |
4260 | { "wxPrintout__setSelf", (PyCFunction) _wrap_wxPrintout__setSelf, METH_VARARGS | METH_KEYWORDS }, | |
4261 | { "new_wxPrintout", (PyCFunction) _wrap_new_wxPrintout, METH_VARARGS | METH_KEYWORDS }, | |
4262 | { "wxPrintDialog_ShowModal", (PyCFunction) _wrap_wxPrintDialog_ShowModal, METH_VARARGS | METH_KEYWORDS }, | |
4263 | { "wxPrintDialog_GetPrintDC", (PyCFunction) _wrap_wxPrintDialog_GetPrintDC, METH_VARARGS | METH_KEYWORDS }, | |
4264 | { "wxPrintDialog_GetPrintDialogData", (PyCFunction) _wrap_wxPrintDialog_GetPrintDialogData, METH_VARARGS | METH_KEYWORDS }, | |
4265 | { "new_wxPrintDialog", (PyCFunction) _wrap_new_wxPrintDialog, METH_VARARGS | METH_KEYWORDS }, | |
4266 | { "wxPrintDialogData_SetToPage", (PyCFunction) _wrap_wxPrintDialogData_SetToPage, METH_VARARGS | METH_KEYWORDS }, | |
4267 | { "wxPrintDialogData_SetSetupDialog", (PyCFunction) _wrap_wxPrintDialogData_SetSetupDialog, METH_VARARGS | METH_KEYWORDS }, | |
4268 | { "wxPrintDialogData_SetPrintToFile", (PyCFunction) _wrap_wxPrintDialogData_SetPrintToFile, METH_VARARGS | METH_KEYWORDS }, | |
4269 | { "wxPrintDialogData_SetPrintData", (PyCFunction) _wrap_wxPrintDialogData_SetPrintData, METH_VARARGS | METH_KEYWORDS }, | |
4270 | { "wxPrintDialogData_SetNoCopies", (PyCFunction) _wrap_wxPrintDialogData_SetNoCopies, METH_VARARGS | METH_KEYWORDS }, | |
4271 | { "wxPrintDialogData_SetMinPage", (PyCFunction) _wrap_wxPrintDialogData_SetMinPage, METH_VARARGS | METH_KEYWORDS }, | |
4272 | { "wxPrintDialogData_SetMaxPage", (PyCFunction) _wrap_wxPrintDialogData_SetMaxPage, METH_VARARGS | METH_KEYWORDS }, | |
4273 | { "wxPrintDialogData_SetFromPage", (PyCFunction) _wrap_wxPrintDialogData_SetFromPage, METH_VARARGS | METH_KEYWORDS }, | |
4274 | { "wxPrintDialogData_SetCollate", (PyCFunction) _wrap_wxPrintDialogData_SetCollate, METH_VARARGS | METH_KEYWORDS }, | |
4275 | { "wxPrintDialogData_GetToPage", (PyCFunction) _wrap_wxPrintDialogData_GetToPage, METH_VARARGS | METH_KEYWORDS }, | |
4276 | { "wxPrintDialogData_GetPrintToFile", (PyCFunction) _wrap_wxPrintDialogData_GetPrintToFile, METH_VARARGS | METH_KEYWORDS }, | |
4277 | { "wxPrintDialogData_GetPrintData", (PyCFunction) _wrap_wxPrintDialogData_GetPrintData, METH_VARARGS | METH_KEYWORDS }, | |
4278 | { "wxPrintDialogData_GetNoCopies", (PyCFunction) _wrap_wxPrintDialogData_GetNoCopies, METH_VARARGS | METH_KEYWORDS }, | |
4279 | { "wxPrintDialogData_GetMinPage", (PyCFunction) _wrap_wxPrintDialogData_GetMinPage, METH_VARARGS | METH_KEYWORDS }, | |
4280 | { "wxPrintDialogData_GetMaxPage", (PyCFunction) _wrap_wxPrintDialogData_GetMaxPage, METH_VARARGS | METH_KEYWORDS }, | |
4281 | { "wxPrintDialogData_GetFromPage", (PyCFunction) _wrap_wxPrintDialogData_GetFromPage, METH_VARARGS | METH_KEYWORDS }, | |
4282 | { "wxPrintDialogData_GetCollate", (PyCFunction) _wrap_wxPrintDialogData_GetCollate, METH_VARARGS | METH_KEYWORDS }, | |
4283 | { "wxPrintDialogData_GetAllPages", (PyCFunction) _wrap_wxPrintDialogData_GetAllPages, METH_VARARGS | METH_KEYWORDS }, | |
4284 | { "wxPrintDialogData_EnableSelection", (PyCFunction) _wrap_wxPrintDialogData_EnableSelection, METH_VARARGS | METH_KEYWORDS }, | |
4285 | { "wxPrintDialogData_EnablePrintToFile", (PyCFunction) _wrap_wxPrintDialogData_EnablePrintToFile, METH_VARARGS | METH_KEYWORDS }, | |
4286 | { "wxPrintDialogData_EnablePageNumbers", (PyCFunction) _wrap_wxPrintDialogData_EnablePageNumbers, METH_VARARGS | METH_KEYWORDS }, | |
4287 | { "wxPrintDialogData_EnableHelp", (PyCFunction) _wrap_wxPrintDialogData_EnableHelp, METH_VARARGS | METH_KEYWORDS }, | |
4288 | { "delete_wxPrintDialogData", (PyCFunction) _wrap_delete_wxPrintDialogData, METH_VARARGS | METH_KEYWORDS }, | |
4289 | { "new_wxPrintDialogData", (PyCFunction) _wrap_new_wxPrintDialogData, METH_VARARGS | METH_KEYWORDS }, | |
4290 | { "wxPageSetupDialog_ShowModal", (PyCFunction) _wrap_wxPageSetupDialog_ShowModal, METH_VARARGS | METH_KEYWORDS }, | |
4291 | { "wxPageSetupDialog_GetPageSetupData", (PyCFunction) _wrap_wxPageSetupDialog_GetPageSetupData, METH_VARARGS | METH_KEYWORDS }, | |
4292 | { "new_wxPageSetupDialog", (PyCFunction) _wrap_new_wxPageSetupDialog, METH_VARARGS | METH_KEYWORDS }, | |
4293 | { "wxPageSetupDialogData_SetPrintData", (PyCFunction) _wrap_wxPageSetupDialogData_SetPrintData, METH_VARARGS | METH_KEYWORDS }, | |
4294 | { "wxPageSetupDialogData_SetPaperSize", (PyCFunction) _wrap_wxPageSetupDialogData_SetPaperSize, METH_VARARGS | METH_KEYWORDS }, | |
4295 | { "wxPageSetupDialogData_SetPaperId", (PyCFunction) _wrap_wxPageSetupDialogData_SetPaperId, METH_VARARGS | METH_KEYWORDS }, | |
4296 | { "wxPageSetupDialogData_SetMinMarginBottomRight", (PyCFunction) _wrap_wxPageSetupDialogData_SetMinMarginBottomRight, METH_VARARGS | METH_KEYWORDS }, | |
4297 | { "wxPageSetupDialogData_SetMinMarginTopLeft", (PyCFunction) _wrap_wxPageSetupDialogData_SetMinMarginTopLeft, METH_VARARGS | METH_KEYWORDS }, | |
4298 | { "wxPageSetupDialogData_SetMarginBottomRight", (PyCFunction) _wrap_wxPageSetupDialogData_SetMarginBottomRight, METH_VARARGS | METH_KEYWORDS }, | |
4299 | { "wxPageSetupDialogData_SetMarginTopLeft", (PyCFunction) _wrap_wxPageSetupDialogData_SetMarginTopLeft, METH_VARARGS | METH_KEYWORDS }, | |
4300 | { "wxPageSetupDialogData_SetDefaultMinMargins", (PyCFunction) _wrap_wxPageSetupDialogData_SetDefaultMinMargins, METH_VARARGS | METH_KEYWORDS }, | |
4301 | { "wxPageSetupDialogData_SetDefaultInfo", (PyCFunction) _wrap_wxPageSetupDialogData_SetDefaultInfo, METH_VARARGS | METH_KEYWORDS }, | |
4302 | { "wxPageSetupDialogData_GetPrintData", (PyCFunction) _wrap_wxPageSetupDialogData_GetPrintData, METH_VARARGS | METH_KEYWORDS }, | |
4303 | { "wxPageSetupDialogData_GetPaperSize", (PyCFunction) _wrap_wxPageSetupDialogData_GetPaperSize, METH_VARARGS | METH_KEYWORDS }, | |
4304 | { "wxPageSetupDialogData_GetPaperId", (PyCFunction) _wrap_wxPageSetupDialogData_GetPaperId, METH_VARARGS | METH_KEYWORDS }, | |
4305 | { "wxPageSetupDialogData_GetMinMarginBottomRight", (PyCFunction) _wrap_wxPageSetupDialogData_GetMinMarginBottomRight, METH_VARARGS | METH_KEYWORDS }, | |
4306 | { "wxPageSetupDialogData_GetMinMarginTopLeft", (PyCFunction) _wrap_wxPageSetupDialogData_GetMinMarginTopLeft, METH_VARARGS | METH_KEYWORDS }, | |
4307 | { "wxPageSetupDialogData_GetMarginBottomRight", (PyCFunction) _wrap_wxPageSetupDialogData_GetMarginBottomRight, METH_VARARGS | METH_KEYWORDS }, | |
4308 | { "wxPageSetupDialogData_GetMarginTopLeft", (PyCFunction) _wrap_wxPageSetupDialogData_GetMarginTopLeft, METH_VARARGS | METH_KEYWORDS }, | |
4309 | { "wxPageSetupDialogData_GetDefaultInfo", (PyCFunction) _wrap_wxPageSetupDialogData_GetDefaultInfo, METH_VARARGS | METH_KEYWORDS }, | |
4310 | { "wxPageSetupDialogData_GetEnableHelp", (PyCFunction) _wrap_wxPageSetupDialogData_GetEnableHelp, METH_VARARGS | METH_KEYWORDS }, | |
4311 | { "wxPageSetupDialogData_GetEnablePrinter", (PyCFunction) _wrap_wxPageSetupDialogData_GetEnablePrinter, METH_VARARGS | METH_KEYWORDS }, | |
4312 | { "wxPageSetupDialogData_GetEnablePaper", (PyCFunction) _wrap_wxPageSetupDialogData_GetEnablePaper, METH_VARARGS | METH_KEYWORDS }, | |
4313 | { "wxPageSetupDialogData_GetEnableOrientation", (PyCFunction) _wrap_wxPageSetupDialogData_GetEnableOrientation, METH_VARARGS | METH_KEYWORDS }, | |
4314 | { "wxPageSetupDialogData_GetEnableMargins", (PyCFunction) _wrap_wxPageSetupDialogData_GetEnableMargins, METH_VARARGS | METH_KEYWORDS }, | |
4315 | { "wxPageSetupDialogData_GetDefaultMinMargins", (PyCFunction) _wrap_wxPageSetupDialogData_GetDefaultMinMargins, METH_VARARGS | METH_KEYWORDS }, | |
4316 | { "wxPageSetupDialogData_EnablePrinter", (PyCFunction) _wrap_wxPageSetupDialogData_EnablePrinter, METH_VARARGS | METH_KEYWORDS }, | |
4317 | { "wxPageSetupDialogData_EnablePaper", (PyCFunction) _wrap_wxPageSetupDialogData_EnablePaper, METH_VARARGS | METH_KEYWORDS }, | |
4318 | { "wxPageSetupDialogData_EnableOrientation", (PyCFunction) _wrap_wxPageSetupDialogData_EnableOrientation, METH_VARARGS | METH_KEYWORDS }, | |
4319 | { "wxPageSetupDialogData_EnableMargins", (PyCFunction) _wrap_wxPageSetupDialogData_EnableMargins, METH_VARARGS | METH_KEYWORDS }, | |
4320 | { "wxPageSetupDialogData_EnableHelp", (PyCFunction) _wrap_wxPageSetupDialogData_EnableHelp, METH_VARARGS | METH_KEYWORDS }, | |
4321 | { "delete_wxPageSetupDialogData", (PyCFunction) _wrap_delete_wxPageSetupDialogData, METH_VARARGS | METH_KEYWORDS }, | |
4322 | { "new_wxPageSetupDialogData", (PyCFunction) _wrap_new_wxPageSetupDialogData, METH_VARARGS | METH_KEYWORDS }, | |
4323 | { "wxPrintData_SetQuality", (PyCFunction) _wrap_wxPrintData_SetQuality, METH_VARARGS | METH_KEYWORDS }, | |
4324 | { "wxPrintData_SetPaperSize", (PyCFunction) _wrap_wxPrintData_SetPaperSize, METH_VARARGS | METH_KEYWORDS }, | |
4325 | { "wxPrintData_SetPaperId", (PyCFunction) _wrap_wxPrintData_SetPaperId, METH_VARARGS | METH_KEYWORDS }, | |
4326 | { "wxPrintData_SetDuplex", (PyCFunction) _wrap_wxPrintData_SetDuplex, METH_VARARGS | METH_KEYWORDS }, | |
4327 | { "wxPrintData_SetColour", (PyCFunction) _wrap_wxPrintData_SetColour, METH_VARARGS | METH_KEYWORDS }, | |
4328 | { "wxPrintData_SetPrinterName", (PyCFunction) _wrap_wxPrintData_SetPrinterName, METH_VARARGS | METH_KEYWORDS }, | |
4329 | { "wxPrintData_SetOrientation", (PyCFunction) _wrap_wxPrintData_SetOrientation, METH_VARARGS | METH_KEYWORDS }, | |
4330 | { "wxPrintData_SetCollate", (PyCFunction) _wrap_wxPrintData_SetCollate, METH_VARARGS | METH_KEYWORDS }, | |
4331 | { "wxPrintData_SetNoCopies", (PyCFunction) _wrap_wxPrintData_SetNoCopies, METH_VARARGS | METH_KEYWORDS }, | |
4332 | { "wxPrintData_GetQuality", (PyCFunction) _wrap_wxPrintData_GetQuality, METH_VARARGS | METH_KEYWORDS }, | |
4333 | { "wxPrintData_GetPaperSize", (PyCFunction) _wrap_wxPrintData_GetPaperSize, METH_VARARGS | METH_KEYWORDS }, | |
4334 | { "wxPrintData_GetPaperId", (PyCFunction) _wrap_wxPrintData_GetPaperId, METH_VARARGS | METH_KEYWORDS }, | |
4335 | { "wxPrintData_GetDuplex", (PyCFunction) _wrap_wxPrintData_GetDuplex, METH_VARARGS | METH_KEYWORDS }, | |
4336 | { "wxPrintData_GetColour", (PyCFunction) _wrap_wxPrintData_GetColour, METH_VARARGS | METH_KEYWORDS }, | |
4337 | { "wxPrintData_GetPrinterName", (PyCFunction) _wrap_wxPrintData_GetPrinterName, METH_VARARGS | METH_KEYWORDS }, | |
4338 | { "wxPrintData_GetOrientation", (PyCFunction) _wrap_wxPrintData_GetOrientation, METH_VARARGS | METH_KEYWORDS }, | |
4339 | { "wxPrintData_GetCollate", (PyCFunction) _wrap_wxPrintData_GetCollate, METH_VARARGS | METH_KEYWORDS }, | |
4340 | { "wxPrintData_GetNoCopies", (PyCFunction) _wrap_wxPrintData_GetNoCopies, METH_VARARGS | METH_KEYWORDS }, | |
4341 | { "delete_wxPrintData", (PyCFunction) _wrap_delete_wxPrintData, METH_VARARGS | METH_KEYWORDS }, | |
4342 | { "new_wxPrintData", (PyCFunction) _wrap_new_wxPrintData, METH_VARARGS | METH_KEYWORDS }, | |
d24a34bb RD |
4343 | { NULL, NULL } |
4344 | }; | |
2d091820 RD |
4345 | #ifdef __cplusplus |
4346 | } | |
4347 | #endif | |
4348 | /* | |
4349 | * This table is used by the pointer type-checker | |
4350 | */ | |
4351 | static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = { | |
4352 | { "_wxAcceleratorTable","_class_wxAcceleratorTable",0}, | |
4353 | { "_wxEvent","_class_wxEvent",0}, | |
4354 | { "_class_wxActivateEvent","_wxActivateEvent",0}, | |
4355 | { "_signed_long","_long",0}, | |
4356 | { "_wxMenuEvent","_class_wxMenuEvent",0}, | |
4120ef2b RD |
4357 | { "_wxPyBitmapDataObject","_class_wxPyBitmapDataObject",0}, |
4358 | { "_wxBitmapDataObject","_class_wxBitmapDataObject",0}, | |
37f6a977 | 4359 | { "_class_wxPyCommandEvent","_wxPyCommandEvent",0}, |
4120ef2b | 4360 | { "_wxPrintQuality","_wxCoord",0}, |
2d091820 RD |
4361 | { "_wxPrintQuality","_int",0}, |
4362 | { "_wxPrintQuality","_signed_int",0}, | |
4363 | { "_wxPrintQuality","_unsigned_int",0}, | |
4364 | { "_wxPrintQuality","_wxWindowID",0}, | |
4365 | { "_wxPrintQuality","_uint",0}, | |
4366 | { "_wxPrintQuality","_EBool",0}, | |
4367 | { "_wxPrintQuality","_size_t",0}, | |
4120ef2b | 4368 | { "_class_wxCustomDataObject","_wxCustomDataObject",0}, |
2d091820 RD |
4369 | { "_wxFontData","_class_wxFontData",0}, |
4370 | { "_class_wxRegionIterator","_wxRegionIterator",0}, | |
4120ef2b | 4371 | { "_class_wxPyTextDropTarget","_wxPyTextDropTarget",0}, |
2d091820 RD |
4372 | { "_class_wxMenuBar","_wxMenuBar",0}, |
4373 | { "_class_wxEvtHandler","_class_wxPreviewFrame",SwigwxPreviewFrameTowxEvtHandler}, | |
4374 | { "_class_wxEvtHandler","_wxPreviewFrame",SwigwxPreviewFrameTowxEvtHandler}, | |
4375 | { "_class_wxEvtHandler","_class_wxPrintDialog",SwigwxPrintDialogTowxEvtHandler}, | |
4376 | { "_class_wxEvtHandler","_wxPrintDialog",SwigwxPrintDialogTowxEvtHandler}, | |
4377 | { "_class_wxEvtHandler","_class_wxPageSetupDialog",SwigwxPageSetupDialogTowxEvtHandler}, | |
4378 | { "_class_wxEvtHandler","_wxPageSetupDialog",SwigwxPageSetupDialogTowxEvtHandler}, | |
4379 | { "_class_wxEvtHandler","_wxEvtHandler",0}, | |
4380 | { "_wxPaintEvent","_class_wxPaintEvent",0}, | |
4381 | { "_wxIndividualLayoutConstraint","_class_wxIndividualLayoutConstraint",0}, | |
4382 | { "_wxCursor","_class_wxCursor",0}, | |
4383 | { "_wxNotifyEvent","_class_wxNotifyEvent",0}, | |
ab2208b5 | 4384 | { "_class_wxToolBarBase","_wxToolBarBase",0}, |
2d091820 RD |
4385 | { "_wxMask","_class_wxMask",0}, |
4386 | { "_class_wxColourData","_wxColourData",0}, | |
4387 | { "_class_wxPageSetupDialogData","_wxPageSetupDialogData",0}, | |
4388 | { "_wxPrinter","_class_wxPrinter",0}, | |
4389 | { "_wxPen","_class_wxPen",0}, | |
4390 | { "_wxUpdateUIEvent","_class_wxUpdateUIEvent",0}, | |
4391 | { "_byte","_unsigned_char",0}, | |
4120ef2b | 4392 | { "_wxDataObject","_class_wxDataObject",0}, |
2d091820 | 4393 | { "_wxStaticBox","_class_wxStaticBox",0}, |
4120ef2b RD |
4394 | { "_wxPyDataObjectSimple","_class_wxPyDataObjectSimple",0}, |
4395 | { "_wxPyDropSource","_class_wxPyDropSource",0}, | |
2d091820 RD |
4396 | { "_wxChoice","_class_wxChoice",0}, |
4397 | { "_wxSlider","_class_wxSlider",0}, | |
4398 | { "_wxPyPrintout","_class_wxPyPrintout",0}, | |
2d091820 RD |
4399 | { "_long","_unsigned_long",0}, |
4400 | { "_long","_signed_long",0}, | |
4401 | { "_wxImageList","_class_wxImageList",0}, | |
4120ef2b | 4402 | { "_wxDataObjectSimple","_class_wxDataObjectSimple",0}, |
2d091820 RD |
4403 | { "_wxDropFilesEvent","_class_wxDropFilesEvent",0}, |
4404 | { "_wxBitmapButton","_class_wxBitmapButton",0}, | |
4405 | { "_class_wxPrintDialogData","_wxPrintDialogData",0}, | |
4406 | { "_class_wxAcceleratorTable","_wxAcceleratorTable",0}, | |
4120ef2b | 4407 | { "_class_wxClipboard","_wxClipboard",0}, |
2d091820 RD |
4408 | { "_class_wxGauge","_wxGauge",0}, |
4409 | { "_wxDC","_class_wxDC",0}, | |
4120ef2b | 4410 | { "_class_wxBitmapDataObject","_wxBitmapDataObject",0}, |
2d091820 RD |
4411 | { "_class_wxSingleChoiceDialog","_wxSingleChoiceDialog",0}, |
4412 | { "_wxProgressDialog","_class_wxProgressDialog",0}, | |
4413 | { "_wxPrintPreview","_class_wxPrintPreview",0}, | |
4414 | { "_wxSpinEvent","_class_wxSpinEvent",0}, | |
4120ef2b | 4415 | { "_size_t","_wxCoord",0}, |
2d091820 RD |
4416 | { "_size_t","_wxPrintQuality",0}, |
4417 | { "_size_t","_unsigned_int",0}, | |
4418 | { "_size_t","_int",0}, | |
4419 | { "_size_t","_wxWindowID",0}, | |
4420 | { "_size_t","_uint",0}, | |
4421 | { "_class_wxRealPoint","_wxRealPoint",0}, | |
167b96c2 RD |
4422 | { "_wxNavigationKeyEvent","_class_wxNavigationKeyEvent",0}, |
4423 | { "_wxWindowCreateEvent","_class_wxWindowCreateEvent",0}, | |
2d091820 RD |
4424 | { "_class_wxMenuItem","_wxMenuItem",0}, |
4425 | { "_class_wxPaintEvent","_wxPaintEvent",0}, | |
4426 | { "_wxSysColourChangedEvent","_class_wxSysColourChangedEvent",0}, | |
4427 | { "_class_wxStatusBar","_wxStatusBar",0}, | |
4428 | { "_class_wxPostScriptDC","_wxPostScriptDC",0}, | |
4429 | { "_wxPanel","_class_wxPrintDialog",SwigwxPrintDialogTowxPanel}, | |
4430 | { "_wxPanel","_wxPrintDialog",SwigwxPrintDialogTowxPanel}, | |
4431 | { "_wxPanel","_class_wxPageSetupDialog",SwigwxPageSetupDialogTowxPanel}, | |
4432 | { "_wxPanel","_wxPageSetupDialog",SwigwxPageSetupDialogTowxPanel}, | |
4433 | { "_wxPanel","_class_wxPanel",0}, | |
4434 | { "_wxInitDialogEvent","_class_wxInitDialogEvent",0}, | |
4435 | { "_wxCheckBox","_class_wxCheckBox",0}, | |
4436 | { "_wxPyEvent","_class_wxPyEvent",0}, | |
4437 | { "_wxTextCtrl","_class_wxTextCtrl",0}, | |
4438 | { "_class_wxMask","_wxMask",0}, | |
4120ef2b | 4439 | { "_wxTextDataObject","_class_wxTextDataObject",0}, |
2d091820 RD |
4440 | { "_class_wxKeyEvent","_wxKeyEvent",0}, |
4441 | { "_wxColour","_class_wxColour",0}, | |
4442 | { "_class_wxDialog","_class_wxPrintDialog",SwigwxPrintDialogTowxDialog}, | |
4443 | { "_class_wxDialog","_wxPrintDialog",SwigwxPrintDialogTowxDialog}, | |
4444 | { "_class_wxDialog","_class_wxPageSetupDialog",SwigwxPageSetupDialogTowxDialog}, | |
4445 | { "_class_wxDialog","_wxPageSetupDialog",SwigwxPageSetupDialogTowxDialog}, | |
4446 | { "_class_wxDialog","_wxDialog",0}, | |
4447 | { "_wxPageSetupDialog","_class_wxPageSetupDialog",0}, | |
4448 | { "_class_wxPrinter","_wxPrinter",0}, | |
4120ef2b | 4449 | { "_class_wxFileDataObject","_wxFileDataObject",0}, |
2d091820 RD |
4450 | { "_wxIdleEvent","_class_wxIdleEvent",0}, |
4451 | { "_class_wxUpdateUIEvent","_wxUpdateUIEvent",0}, | |
4452 | { "_wxToolBar","_class_wxToolBar",0}, | |
4120ef2b | 4453 | { "_class_wxDataObject","_wxDataObject",0}, |
2d091820 RD |
4454 | { "_wxStaticLine","_class_wxStaticLine",0}, |
4455 | { "_wxBrush","_class_wxBrush",0}, | |
4456 | { "_wxMiniFrame","_class_wxMiniFrame",0}, | |
4457 | { "_class_wxPyPrintout","_wxPyPrintout",0}, | |
4120ef2b RD |
4458 | { "_wxDataFormat","_class_wxDataFormat",0}, |
4459 | { "_class_wxDataObjectSimple","_wxDataObjectSimple",0}, | |
2d091820 | 4460 | { "_wxShowEvent","_class_wxShowEvent",0}, |
4120ef2b | 4461 | { "_uint","_wxCoord",0}, |
2d091820 RD |
4462 | { "_uint","_wxPrintQuality",0}, |
4463 | { "_uint","_size_t",0}, | |
4464 | { "_uint","_unsigned_int",0}, | |
4465 | { "_uint","_int",0}, | |
4466 | { "_uint","_wxWindowID",0}, | |
f6bcfd97 | 4467 | { "_wxChar","_char",0}, |
37f6a977 | 4468 | { "_wxPyValidator","_class_wxPyValidator",0}, |
2d091820 RD |
4469 | { "_class_wxEvent","_wxEvent",0}, |
4470 | { "_wxCheckListBox","_class_wxCheckListBox",0}, | |
4471 | { "_wxRect","_class_wxRect",0}, | |
4472 | { "_wxCommandEvent","_class_wxCommandEvent",0}, | |
4473 | { "_wxSizeEvent","_class_wxSizeEvent",0}, | |
4474 | { "_wxPoint","_class_wxPoint",0}, | |
4475 | { "_class_wxButton","_wxButton",0}, | |
4476 | { "_wxRadioBox","_class_wxRadioBox",0}, | |
4477 | { "_class_wxFontData","_wxFontData",0}, | |
f6bcfd97 | 4478 | { "_char","_wxChar",0}, |
2d091820 RD |
4479 | { "_wxBitmap","_class_wxBitmap",0}, |
4480 | { "_wxPrintDialog","_class_wxPrintDialog",0}, | |
2d091820 | 4481 | { "_wxWindowDC","_class_wxWindowDC",0}, |
f6bcfd97 | 4482 | { "_wxTimerEvent","_class_wxTimerEvent",0}, |
2d091820 RD |
4483 | { "_wxScrollBar","_class_wxScrollBar",0}, |
4484 | { "_wxSpinButton","_class_wxSpinButton",0}, | |
2d091820 RD |
4485 | { "_wxColourDialog","_class_wxColourDialog",0}, |
4486 | { "_wxPrintData","_class_wxPrintData",0}, | |
4487 | { "_class_wxIndividualLayoutConstraint","_wxIndividualLayoutConstraint",0}, | |
4488 | { "_class_wxNotifyEvent","_wxNotifyEvent",0}, | |
4489 | { "_wxMessageDialog","_class_wxMessageDialog",0}, | |
37f6a977 | 4490 | { "_class_wxValidator","_wxValidator",0}, |
2d091820 RD |
4491 | { "_class_wxPyEvent","_wxPyEvent",0}, |
4492 | { "_wxTextEntryDialog","_class_wxTextEntryDialog",0}, | |
4493 | { "_class_wxIconizeEvent","_wxIconizeEvent",0}, | |
4494 | { "_class_wxStaticBitmap","_wxStaticBitmap",0}, | |
ab2208b5 | 4495 | { "_wxToolBarSimple","_class_wxToolBarSimple",0}, |
2d091820 | 4496 | { "_class_wxToolBar","_wxToolBar",0}, |
4120ef2b | 4497 | { "_wxDropTarget","_class_wxDropTarget",0}, |
2d091820 RD |
4498 | { "_class_wxStaticLine","_wxStaticLine",0}, |
4499 | { "_wxScrollEvent","_class_wxScrollEvent",0}, | |
ab2208b5 | 4500 | { "_wxToolBarToolBase","_class_wxToolBarToolBase",0}, |
4120ef2b | 4501 | { "_EBool","_wxCoord",0}, |
2d091820 RD |
4502 | { "_EBool","_wxPrintQuality",0}, |
4503 | { "_EBool","_signed_int",0}, | |
4504 | { "_EBool","_int",0}, | |
4505 | { "_EBool","_wxWindowID",0}, | |
4506 | { "_class_wxRegion","_wxRegion",0}, | |
4120ef2b | 4507 | { "_class_wxDataFormat","_wxDataFormat",0}, |
2d091820 | 4508 | { "_class_wxDropFilesEvent","_wxDropFilesEvent",0}, |
167b96c2 | 4509 | { "_wxWindowDestroyEvent","_class_wxWindowDestroyEvent",0}, |
2d091820 RD |
4510 | { "_class_wxPreviewFrame","_wxPreviewFrame",0}, |
4511 | { "_wxStaticText","_class_wxStaticText",0}, | |
4512 | { "_wxFont","_class_wxFont",0}, | |
4120ef2b | 4513 | { "_class_wxPyDropTarget","_wxPyDropTarget",0}, |
2d091820 | 4514 | { "_wxCloseEvent","_class_wxCloseEvent",0}, |
2d091820 RD |
4515 | { "_unsigned_long","_long",0}, |
4516 | { "_class_wxRect","_wxRect",0}, | |
4517 | { "_class_wxDC","_wxDC",0}, | |
9cce9de1 | 4518 | { "_wxScrollWinEvent","_class_wxScrollWinEvent",0}, |
2d091820 | 4519 | { "_class_wxProgressDialog","_wxProgressDialog",0}, |
167b96c2 RD |
4520 | { "_wxQueryNewPaletteEvent","_class_wxQueryNewPaletteEvent",0}, |
4521 | { "_class_wxWindowCreateEvent","_wxWindowCreateEvent",0}, | |
2d091820 | 4522 | { "_class_wxDirDialog","_wxDirDialog",0}, |
2d091820 RD |
4523 | { "_wxFocusEvent","_class_wxFocusEvent",0}, |
4524 | { "_wxMaximizeEvent","_class_wxMaximizeEvent",0}, | |
f6bcfd97 | 4525 | { "_class_wxTimerEvent","_wxTimerEvent",0}, |
2d091820 RD |
4526 | { "_class_wxSpinButton","_wxSpinButton",0}, |
4527 | { "_wxAcceleratorEntry","_class_wxAcceleratorEntry",0}, | |
4528 | { "_class_wxPanel","_class_wxPrintDialog",SwigwxPrintDialogTowxPanel}, | |
4529 | { "_class_wxPanel","_wxPrintDialog",SwigwxPrintDialogTowxPanel}, | |
4530 | { "_class_wxPanel","_class_wxPageSetupDialog",SwigwxPageSetupDialogTowxPanel}, | |
4531 | { "_class_wxPanel","_wxPageSetupDialog",SwigwxPageSetupDialogTowxPanel}, | |
4532 | { "_class_wxPanel","_wxPanel",0}, | |
4533 | { "_class_wxCheckBox","_wxCheckBox",0}, | |
4534 | { "_wxComboBox","_class_wxComboBox",0}, | |
4535 | { "_wxRadioButton","_class_wxRadioButton",0}, | |
4536 | { "_class_wxMessageDialog","_wxMessageDialog",0}, | |
4120ef2b | 4537 | { "_signed_int","_wxCoord",0}, |
2d091820 RD |
4538 | { "_signed_int","_wxPrintQuality",0}, |
4539 | { "_signed_int","_EBool",0}, | |
4540 | { "_signed_int","_wxWindowID",0}, | |
4541 | { "_signed_int","_int",0}, | |
4542 | { "_class_wxTextCtrl","_wxTextCtrl",0}, | |
4543 | { "_wxLayoutConstraints","_class_wxLayoutConstraints",0}, | |
4120ef2b | 4544 | { "_class_wxTextDataObject","_wxTextDataObject",0}, |
2d091820 RD |
4545 | { "_wxMenu","_class_wxMenu",0}, |
4546 | { "_class_wxMoveEvent","_wxMoveEvent",0}, | |
4547 | { "_wxListBox","_class_wxListBox",0}, | |
4548 | { "_wxScreenDC","_class_wxScreenDC",0}, | |
ab2208b5 | 4549 | { "_class_wxToolBarSimple","_wxToolBarSimple",0}, |
2d091820 RD |
4550 | { "_WXTYPE","_short",0}, |
4551 | { "_WXTYPE","_signed_short",0}, | |
4552 | { "_WXTYPE","_unsigned_short",0}, | |
4553 | { "_wxFileDialog","_class_wxFileDialog",0}, | |
4120ef2b | 4554 | { "_class_wxDropTarget","_wxDropTarget",0}, |
2d091820 RD |
4555 | { "_class_wxBrush","_wxBrush",0}, |
4556 | { "_unsigned_short","_WXTYPE",0}, | |
4557 | { "_unsigned_short","_short",0}, | |
4558 | { "_class_wxWindow","_class_wxPreviewFrame",SwigwxPreviewFrameTowxWindow}, | |
4559 | { "_class_wxWindow","_wxPreviewFrame",SwigwxPreviewFrameTowxWindow}, | |
4560 | { "_class_wxWindow","_class_wxPrintDialog",SwigwxPrintDialogTowxWindow}, | |
4561 | { "_class_wxWindow","_wxPrintDialog",SwigwxPrintDialogTowxWindow}, | |
4562 | { "_class_wxWindow","_class_wxPageSetupDialog",SwigwxPageSetupDialogTowxWindow}, | |
4563 | { "_class_wxWindow","_wxPageSetupDialog",SwigwxPageSetupDialogTowxWindow}, | |
4564 | { "_class_wxWindow","_wxWindow",0}, | |
4565 | { "_class_wxStaticText","_wxStaticText",0}, | |
4566 | { "_wxPrintDialogData","_class_wxPrintDialogData",0}, | |
4567 | { "_class_wxFont","_wxFont",0}, | |
4120ef2b | 4568 | { "_wxClipboard","_class_wxClipboard",0}, |
37f6a977 | 4569 | { "_class_wxPyValidator","_wxPyValidator",0}, |
2d091820 | 4570 | { "_class_wxCloseEvent","_wxCloseEvent",0}, |
4120ef2b | 4571 | { "_wxBusyInfo","_class_wxBusyInfo",0}, |
2d091820 | 4572 | { "_class_wxMenuEvent","_wxMenuEvent",0}, |
167b96c2 | 4573 | { "_wxPaletteChangedEvent","_class_wxPaletteChangedEvent",0}, |
4120ef2b | 4574 | { "_class_wxPyBitmapDataObject","_wxPyBitmapDataObject",0}, |
2d091820 RD |
4575 | { "_wxClientDC","_class_wxClientDC",0}, |
4576 | { "_wxMouseEvent","_class_wxMouseEvent",0}, | |
4577 | { "_wxSingleChoiceDialog","_class_wxSingleChoiceDialog",0}, | |
4578 | { "_class_wxPoint","_wxPoint",0}, | |
4579 | { "_wxRealPoint","_class_wxRealPoint",0}, | |
4580 | { "_class_wxRadioBox","_wxRadioBox",0}, | |
4581 | { "_signed_short","_WXTYPE",0}, | |
4582 | { "_signed_short","_short",0}, | |
4583 | { "_wxMemoryDC","_class_wxMemoryDC",0}, | |
4120ef2b | 4584 | { "_wxPyTextDataObject","_class_wxPyTextDataObject",0}, |
2d091820 RD |
4585 | { "_class_wxPrintDialog","_wxPrintDialog",0}, |
4586 | { "_wxPaintDC","_class_wxPaintDC",0}, | |
4587 | { "_class_wxWindowDC","_wxWindowDC",0}, | |
4588 | { "_class_wxFocusEvent","_wxFocusEvent",0}, | |
4589 | { "_class_wxMaximizeEvent","_wxMaximizeEvent",0}, | |
4590 | { "_wxStatusBar","_class_wxStatusBar",0}, | |
2d091820 RD |
4591 | { "_class_wxAcceleratorEntry","_wxAcceleratorEntry",0}, |
4592 | { "_class_wxCursor","_wxCursor",0}, | |
4593 | { "_wxPostScriptDC","_class_wxPostScriptDC",0}, | |
4120ef2b | 4594 | { "_wxPyFileDropTarget","_class_wxPyFileDropTarget",0}, |
2d091820 RD |
4595 | { "_wxScrolledWindow","_class_wxScrolledWindow",0}, |
4596 | { "_unsigned_char","_byte",0}, | |
4597 | { "_class_wxMenu","_wxMenu",0}, | |
4598 | { "_wxControl","_class_wxControl",0}, | |
4599 | { "_class_wxListBox","_wxListBox",0}, | |
4120ef2b | 4600 | { "_unsigned_int","_wxCoord",0}, |
2d091820 RD |
4601 | { "_unsigned_int","_wxPrintQuality",0}, |
4602 | { "_unsigned_int","_size_t",0}, | |
4603 | { "_unsigned_int","_uint",0}, | |
4604 | { "_unsigned_int","_wxWindowID",0}, | |
4605 | { "_unsigned_int","_int",0}, | |
4606 | { "_wxIcon","_class_wxIcon",0}, | |
4607 | { "_wxDialog","_class_wxPrintDialog",SwigwxPrintDialogTowxDialog}, | |
4608 | { "_wxDialog","_wxPrintDialog",SwigwxPrintDialogTowxDialog}, | |
4609 | { "_wxDialog","_class_wxPageSetupDialog",SwigwxPageSetupDialogTowxDialog}, | |
4610 | { "_wxDialog","_wxPageSetupDialog",SwigwxPageSetupDialogTowxDialog}, | |
4611 | { "_wxDialog","_class_wxDialog",0}, | |
4612 | { "_class_wxPen","_wxPen",0}, | |
4613 | { "_class_wxFileDialog","_wxFileDialog",0}, | |
4614 | { "_short","_WXTYPE",0}, | |
4615 | { "_short","_unsigned_short",0}, | |
4616 | { "_short","_signed_short",0}, | |
4617 | { "_class_wxStaticBox","_wxStaticBox",0}, | |
4120ef2b RD |
4618 | { "_class_wxPyDataObjectSimple","_wxPyDataObjectSimple",0}, |
4619 | { "_class_wxPyDropSource","_wxPyDropSource",0}, | |
2d091820 RD |
4620 | { "_class_wxScrollEvent","_wxScrollEvent",0}, |
4621 | { "_wxJoystickEvent","_class_wxJoystickEvent",0}, | |
4622 | { "_class_wxChoice","_wxChoice",0}, | |
4623 | { "_class_wxSlider","_wxSlider",0}, | |
4624 | { "_class_wxImageList","_wxImageList",0}, | |
4625 | { "_class_wxBitmapButton","_wxBitmapButton",0}, | |
4626 | { "_wxFrame","_class_wxPreviewFrame",SwigwxPreviewFrameTowxFrame}, | |
4627 | { "_wxFrame","_wxPreviewFrame",SwigwxPreviewFrameTowxFrame}, | |
4628 | { "_wxFrame","_class_wxFrame",0}, | |
167b96c2 | 4629 | { "_class_wxPaletteChangedEvent","_wxPaletteChangedEvent",0}, |
4120ef2b | 4630 | { "_wxWindowID","_wxCoord",0}, |
2d091820 RD |
4631 | { "_wxWindowID","_wxPrintQuality",0}, |
4632 | { "_wxWindowID","_size_t",0}, | |
4633 | { "_wxWindowID","_EBool",0}, | |
4634 | { "_wxWindowID","_uint",0}, | |
4635 | { "_wxWindowID","_int",0}, | |
4636 | { "_wxWindowID","_signed_int",0}, | |
4637 | { "_wxWindowID","_unsigned_int",0}, | |
9cce9de1 | 4638 | { "_class_wxScrollWinEvent","_wxScrollWinEvent",0}, |
4120ef2b | 4639 | { "_int","_wxCoord",0}, |
2d091820 RD |
4640 | { "_int","_wxPrintQuality",0}, |
4641 | { "_int","_size_t",0}, | |
4642 | { "_int","_EBool",0}, | |
4643 | { "_int","_uint",0}, | |
4644 | { "_int","_wxWindowID",0}, | |
4645 | { "_int","_unsigned_int",0}, | |
4646 | { "_int","_signed_int",0}, | |
4647 | { "_class_wxMouseEvent","_wxMouseEvent",0}, | |
37f6a977 | 4648 | { "_wxPyCommandEvent","_class_wxPyCommandEvent",0}, |
2d091820 RD |
4649 | { "_class_wxPrintPreview","_wxPrintPreview",0}, |
4650 | { "_class_wxSpinEvent","_wxSpinEvent",0}, | |
167b96c2 RD |
4651 | { "_class_wxQueryNewPaletteEvent","_wxQueryNewPaletteEvent",0}, |
4652 | { "_class_wxNavigationKeyEvent","_wxNavigationKeyEvent",0}, | |
2d091820 RD |
4653 | { "_wxButton","_class_wxButton",0}, |
4654 | { "_wxSize","_class_wxSize",0}, | |
4655 | { "_wxRegionIterator","_class_wxRegionIterator",0}, | |
4120ef2b | 4656 | { "_class_wxPyTextDataObject","_wxPyTextDataObject",0}, |
2d091820 RD |
4657 | { "_class_wxPaintDC","_wxPaintDC",0}, |
4658 | { "_class_wxSysColourChangedEvent","_wxSysColourChangedEvent",0}, | |
4120ef2b | 4659 | { "_class_wxPyFileDropTarget","_wxPyFileDropTarget",0}, |
2d091820 RD |
4660 | { "_class_wxInitDialogEvent","_wxInitDialogEvent",0}, |
4661 | { "_class_wxComboBox","_wxComboBox",0}, | |
4662 | { "_class_wxRadioButton","_wxRadioButton",0}, | |
37f6a977 | 4663 | { "_wxValidator","_class_wxValidator",0}, |
ab2208b5 | 4664 | { "_wxToolBarBase","_class_wxToolBarBase",0}, |
2d091820 RD |
4665 | { "_class_wxLayoutConstraints","_wxLayoutConstraints",0}, |
4666 | { "_wxIconizeEvent","_class_wxIconizeEvent",0}, | |
4667 | { "_class_wxControl","_wxControl",0}, | |
4668 | { "_wxStaticBitmap","_class_wxStaticBitmap",0}, | |
4669 | { "_class_wxIcon","_wxIcon",0}, | |
4670 | { "_class_wxColour","_wxColour",0}, | |
4671 | { "_class_wxScreenDC","_wxScreenDC",0}, | |
4672 | { "_class_wxPageSetupDialog","_wxPageSetupDialog",0}, | |
4673 | { "_wxPalette","_class_wxPalette",0}, | |
4674 | { "_class_wxIdleEvent","_wxIdleEvent",0}, | |
4120ef2b RD |
4675 | { "_wxCoord","_int",0}, |
4676 | { "_wxCoord","_signed_int",0}, | |
4677 | { "_wxCoord","_unsigned_int",0}, | |
4678 | { "_wxCoord","_wxWindowID",0}, | |
4679 | { "_wxCoord","_uint",0}, | |
4680 | { "_wxCoord","_EBool",0}, | |
4681 | { "_wxCoord","_size_t",0}, | |
4682 | { "_wxCoord","_wxPrintQuality",0}, | |
2d091820 | 4683 | { "_wxEraseEvent","_class_wxEraseEvent",0}, |
4120ef2b | 4684 | { "_wxDataObjectComposite","_class_wxDataObjectComposite",0}, |
2d091820 RD |
4685 | { "_class_wxJoystickEvent","_wxJoystickEvent",0}, |
4686 | { "_class_wxMiniFrame","_wxMiniFrame",0}, | |
4687 | { "_wxFontDialog","_class_wxFontDialog",0}, | |
4688 | { "_wxRegion","_class_wxRegion",0}, | |
4689 | { "_wxPreviewFrame","_class_wxPreviewFrame",0}, | |
4690 | { "_class_wxShowEvent","_wxShowEvent",0}, | |
4120ef2b | 4691 | { "_wxPyDropTarget","_class_wxPyDropTarget",0}, |
2d091820 RD |
4692 | { "_wxActivateEvent","_class_wxActivateEvent",0}, |
4693 | { "_wxGauge","_class_wxGauge",0}, | |
4694 | { "_class_wxCheckListBox","_wxCheckListBox",0}, | |
4120ef2b | 4695 | { "_class_wxBusyInfo","_wxBusyInfo",0}, |
2d091820 RD |
4696 | { "_class_wxCommandEvent","_wxCommandEvent",0}, |
4697 | { "_class_wxClientDC","_wxClientDC",0}, | |
4698 | { "_class_wxSizeEvent","_wxSizeEvent",0}, | |
4120ef2b | 4699 | { "_wxCustomDataObject","_class_wxCustomDataObject",0}, |
2d091820 RD |
4700 | { "_class_wxSize","_wxSize",0}, |
4701 | { "_class_wxBitmap","_wxBitmap",0}, | |
4702 | { "_class_wxMemoryDC","_wxMemoryDC",0}, | |
4120ef2b | 4703 | { "_wxPyTextDropTarget","_class_wxPyTextDropTarget",0}, |
2d091820 RD |
4704 | { "_wxMenuBar","_class_wxMenuBar",0}, |
4705 | { "_wxDirDialog","_class_wxDirDialog",0}, | |
4706 | { "_wxEvtHandler","_class_wxPreviewFrame",SwigwxPreviewFrameTowxEvtHandler}, | |
4707 | { "_wxEvtHandler","_wxPreviewFrame",SwigwxPreviewFrameTowxEvtHandler}, | |
4708 | { "_wxEvtHandler","_class_wxPrintDialog",SwigwxPrintDialogTowxEvtHandler}, | |
4709 | { "_wxEvtHandler","_wxPrintDialog",SwigwxPrintDialogTowxEvtHandler}, | |
4710 | { "_wxEvtHandler","_class_wxPageSetupDialog",SwigwxPageSetupDialogTowxEvtHandler}, | |
4711 | { "_wxEvtHandler","_wxPageSetupDialog",SwigwxPageSetupDialogTowxEvtHandler}, | |
4712 | { "_wxEvtHandler","_class_wxEvtHandler",0}, | |
4713 | { "_wxMenuItem","_class_wxMenuItem",0}, | |
4714 | { "_class_wxScrollBar","_wxScrollBar",0}, | |
4715 | { "_class_wxColourDialog","_wxColourDialog",0}, | |
4716 | { "_class_wxPrintData","_wxPrintData",0}, | |
2d091820 RD |
4717 | { "_class_wxScrolledWindow","_wxScrolledWindow",0}, |
4718 | { "_class_wxTextEntryDialog","_wxTextEntryDialog",0}, | |
4719 | { "_wxKeyEvent","_class_wxKeyEvent",0}, | |
4720 | { "_wxMoveEvent","_class_wxMoveEvent",0}, | |
4721 | { "_wxColourData","_class_wxColourData",0}, | |
4722 | { "_wxPageSetupDialogData","_class_wxPageSetupDialogData",0}, | |
4723 | { "_class_wxPalette","_wxPalette",0}, | |
4120ef2b | 4724 | { "_wxFileDataObject","_class_wxFileDataObject",0}, |
2d091820 | 4725 | { "_class_wxEraseEvent","_wxEraseEvent",0}, |
4120ef2b | 4726 | { "_class_wxDataObjectComposite","_wxDataObjectComposite",0}, |
ab2208b5 | 4727 | { "_class_wxToolBarToolBase","_wxToolBarToolBase",0}, |
2d091820 RD |
4728 | { "_class_wxFontDialog","_wxFontDialog",0}, |
4729 | { "_wxWindow","_class_wxPreviewFrame",SwigwxPreviewFrameTowxWindow}, | |
4730 | { "_wxWindow","_wxPreviewFrame",SwigwxPreviewFrameTowxWindow}, | |
4731 | { "_wxWindow","_class_wxPrintDialog",SwigwxPrintDialogTowxWindow}, | |
4732 | { "_wxWindow","_wxPrintDialog",SwigwxPrintDialogTowxWindow}, | |
4733 | { "_wxWindow","_class_wxPageSetupDialog",SwigwxPageSetupDialogTowxWindow}, | |
4734 | { "_wxWindow","_wxPageSetupDialog",SwigwxPageSetupDialogTowxWindow}, | |
4735 | { "_wxWindow","_class_wxWindow",0}, | |
167b96c2 | 4736 | { "_class_wxWindowDestroyEvent","_wxWindowDestroyEvent",0}, |
2d091820 RD |
4737 | { "_class_wxFrame","_class_wxPreviewFrame",SwigwxPreviewFrameTowxFrame}, |
4738 | { "_class_wxFrame","_wxPreviewFrame",SwigwxPreviewFrameTowxFrame}, | |
4739 | { "_class_wxFrame","_wxFrame",0}, | |
4740 | {0,0,0}}; | |
4741 | ||
d24a34bb RD |
4742 | static PyObject *SWIG_globals; |
4743 | #ifdef __cplusplus | |
4744 | extern "C" | |
4745 | #endif | |
2d091820 | 4746 | SWIGEXPORT(void) initprintfwc() { |
d24a34bb RD |
4747 | PyObject *m, *d; |
4748 | SWIG_globals = SWIG_newvarlink(); | |
4749 | m = Py_InitModule("printfwc", printfwcMethods); | |
4750 | d = PyModule_GetDict(m); | |
2d091820 RD |
4751 | { |
4752 | int i; | |
4753 | for (i = 0; _swig_mapping[i].n1; i++) | |
4754 | SWIG_RegisterMapping(_swig_mapping[i].n1,_swig_mapping[i].n2,_swig_mapping[i].pcnv); | |
4755 | } | |
d24a34bb | 4756 | } |