git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19793 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			2124 lines
		
	
	
		
			76 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			2124 lines
		
	
	
		
			76 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * FILE : contrib/gizmos/gizmos.cpp
 | |
|  * 
 | |
|  * This file was automatically generated by :
 | |
|  * Simplified Wrapper and Interface Generator (SWIG)
 | |
|  * Version 1.1 (Build 883)
 | |
|  * 
 | |
|  * Portions Copyright (c) 1995-1998
 | |
|  * The University of Utah and The Regents of the University of California.
 | |
|  * Permission is granted to distribute this file in any manner provided
 | |
|  * this notice remains intact.
 | |
|  * 
 | |
|  * Do not make changes to this file--changes will be lost!
 | |
|  *
 | |
|  */
 | |
| 
 | |
| 
 | |
| #define SWIGCODE
 | |
| /* Implementation : PYTHON */
 | |
| 
 | |
| #define SWIGPYTHON
 | |
| #include "Python.h"
 | |
| 
 | |
| #include <string.h>
 | |
| #include <stdlib.h>
 | |
| /* Definitions for Windows/Unix exporting */
 | |
| #if defined(__WIN32__)
 | |
| #   if defined(_MSC_VER)
 | |
| #	define SWIGEXPORT(a) __declspec(dllexport) a
 | |
| #   else
 | |
| #	if defined(__BORLANDC__)
 | |
| #	    define SWIGEXPORT(a) a _export
 | |
| #	else
 | |
| #	    define SWIGEXPORT(a) a
 | |
| #	endif
 | |
| #   endif
 | |
| #else
 | |
| #   define SWIGEXPORT(a) a
 | |
| #endif
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| extern "C" {
 | |
| #endif
 | |
| extern void SWIG_MakePtr(char *, void *, char *);
 | |
| extern void SWIG_RegisterMapping(char *, char *, void *(*)(void *));
 | |
| extern char *SWIG_GetPtr(char *, void **, char *);
 | |
| extern char *SWIG_GetPtrObj(PyObject *, void **, char *);
 | |
| extern void SWIG_addvarlink(PyObject *, char *, PyObject *(*)(void), int (*)(PyObject *));
 | |
| extern PyObject *SWIG_newvarlink(void);
 | |
| #ifdef __cplusplus
 | |
| }
 | |
| #endif
 | |
| #define SWIG_init    initgizmosc
 | |
| 
 | |
| #define SWIG_name    "gizmosc"
 | |
| 
 | |
| #include "wxPython.h"
 | |
| #include <wx/gizmos/dynamicsash.h>
 | |
| #include <wx/gizmos/editlbox.h>
 | |
| #include <wx/gizmos/splittree.h>
 | |
| #include <wx/gizmos/ledctrl.h>
 | |
| #include <wx/listctrl.h>
 | |
| 
 | |
| 
 | |
| static PyObject* t_output_helper(PyObject* target, PyObject* o) {
 | |
|     PyObject*   o2;
 | |
|     PyObject*   o3;
 | |
| 
 | |
|     if (!target) {
 | |
|         target = o;
 | |
|     } else if (target == Py_None) {
 | |
|         Py_DECREF(Py_None);
 | |
|         target = o;
 | |
|     } else {
 | |
|         if (!PyTuple_Check(target)) {
 | |
|             o2 = target;
 | |
|             target = PyTuple_New(1);
 | |
|             PyTuple_SetItem(target, 0, o2);
 | |
|         }
 | |
|         o3 = PyTuple_New(1);
 | |
|         PyTuple_SetItem(o3, 0, o);
 | |
| 
 | |
|         o2 = target;
 | |
|         target = PySequence_Concat(o2, o3);
 | |
|         Py_DECREF(o2);
 | |
|         Py_DECREF(o3);
 | |
|     }
 | |
|     return target;
 | |
| }
 | |
| 
 | |
|     // Put some wx default wxChar* values into wxStrings.
 | |
|     static const wxString wxPyDynamicSashNameStr(wxT("dynamicSashWindow"));
 | |
|     static const wxString wxPyEditableListBoxNameStr(wxT("editableListBox"));
 | |
| 
 | |
|     typedef wxTreeCtrl wxPyTreeCtrl;
 | |
| 
 | |
| class wxPyTreeCompanionWindow: public wxTreeCompanionWindow
 | |
| {
 | |
| public:
 | |
|     wxPyTreeCompanionWindow(wxWindow* parent, wxWindowID id = -1,
 | |
|                             const wxPoint& pos = wxDefaultPosition,
 | |
|                             const wxSize& size = wxDefaultSize,
 | |
|                             long style = 0)
 | |
|         : wxTreeCompanionWindow(parent, id, pos, size, style) {}
 | |
| 
 | |
| 
 | |
|     virtual void DrawItem(wxDC& dc, wxTreeItemId id, const wxRect& rect) {
 | |
|         bool found;
 | |
|         wxPyBeginBlockThreads();
 | |
|         if ((found = wxPyCBH_findCallback(m_myInst, "DrawItem"))) {
 | |
|             PyObject* dcobj = wxPyMake_wxObject(&dc);
 | |
|             PyObject* idobj = wxPyConstructObject((void*)&id, wxT("wxTreeItemId"), FALSE);
 | |
|             PyObject* recobj= wxPyConstructObject((void*)&rect, wxT("wxRect"), FALSE);
 | |
|             wxPyCBH_callCallback(m_myInst, Py_BuildValue("(OOO)", dcobj, idobj, recobj));
 | |
|             Py_DECREF(dcobj);
 | |
|             Py_DECREF(idobj);
 | |
|             Py_DECREF(recobj);
 | |
|         }
 | |
|         wxPyEndBlockThreads();
 | |
|         if (! found)
 | |
|             wxTreeCompanionWindow::DrawItem(dc, id, rect);
 | |
|     }
 | |
| 
 | |
|     PYPRIVATE;
 | |
| };
 | |
| #ifdef __cplusplus
 | |
| extern "C" {
 | |
| #endif
 | |
| static void *SwigwxDynamicSashSplitEventTowxCommandEvent(void *ptr) {
 | |
|     wxDynamicSashSplitEvent *src;
 | |
|     wxCommandEvent *dest;
 | |
|     src = (wxDynamicSashSplitEvent *) ptr;
 | |
|     dest = (wxCommandEvent *) src;
 | |
|     return (void *) dest;
 | |
| }
 | |
| 
 | |
| static void *SwigwxDynamicSashSplitEventTowxEvent(void *ptr) {
 | |
|     wxDynamicSashSplitEvent *src;
 | |
|     wxEvent *dest;
 | |
|     src = (wxDynamicSashSplitEvent *) ptr;
 | |
|     dest = (wxEvent *) src;
 | |
|     return (void *) dest;
 | |
| }
 | |
| 
 | |
| static void *SwigwxDynamicSashSplitEventTowxObject(void *ptr) {
 | |
|     wxDynamicSashSplitEvent *src;
 | |
|     wxObject *dest;
 | |
|     src = (wxDynamicSashSplitEvent *) ptr;
 | |
|     dest = (wxObject *) src;
 | |
|     return (void *) dest;
 | |
| }
 | |
| 
 | |
| #define new_wxDynamicSashSplitEvent(_swigarg0) (new wxDynamicSashSplitEvent(_swigarg0))
 | |
| static PyObject *_wrap_new_wxDynamicSashSplitEvent(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     wxDynamicSashSplitEvent * _result;
 | |
|     wxObject * _arg0;
 | |
|     PyObject * _argo0 = 0;
 | |
|     char *_kwnames[] = { "target", NULL };
 | |
|     char _ptemp[128];
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:new_wxDynamicSashSplitEvent",_kwnames,&_argo0)) 
 | |
|         return NULL;
 | |
|     if (_argo0) {
 | |
|         if (_argo0 == Py_None) { _arg0 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxObject_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of new_wxDynamicSashSplitEvent. Expected _wxObject_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     _result = (wxDynamicSashSplitEvent *)new_wxDynamicSashSplitEvent(_arg0);
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }    if (_result) {
 | |
|         SWIG_MakePtr(_ptemp, (char *) _result,"_wxDynamicSashSplitEvent_p");
 | |
|         _resultobj = Py_BuildValue("s",_ptemp);
 | |
|     } else {
 | |
|         Py_INCREF(Py_None);
 | |
|         _resultobj = Py_None;
 | |
|     }
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| static void *SwigwxDynamicSashUnifyEventTowxCommandEvent(void *ptr) {
 | |
|     wxDynamicSashUnifyEvent *src;
 | |
|     wxCommandEvent *dest;
 | |
|     src = (wxDynamicSashUnifyEvent *) ptr;
 | |
|     dest = (wxCommandEvent *) src;
 | |
|     return (void *) dest;
 | |
| }
 | |
| 
 | |
| static void *SwigwxDynamicSashUnifyEventTowxEvent(void *ptr) {
 | |
|     wxDynamicSashUnifyEvent *src;
 | |
|     wxEvent *dest;
 | |
|     src = (wxDynamicSashUnifyEvent *) ptr;
 | |
|     dest = (wxEvent *) src;
 | |
|     return (void *) dest;
 | |
| }
 | |
| 
 | |
| static void *SwigwxDynamicSashUnifyEventTowxObject(void *ptr) {
 | |
|     wxDynamicSashUnifyEvent *src;
 | |
|     wxObject *dest;
 | |
|     src = (wxDynamicSashUnifyEvent *) ptr;
 | |
|     dest = (wxObject *) src;
 | |
|     return (void *) dest;
 | |
| }
 | |
| 
 | |
| #define new_wxDynamicSashUnifyEvent(_swigarg0) (new wxDynamicSashUnifyEvent(_swigarg0))
 | |
| static PyObject *_wrap_new_wxDynamicSashUnifyEvent(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     wxDynamicSashUnifyEvent * _result;
 | |
|     wxObject * _arg0;
 | |
|     PyObject * _argo0 = 0;
 | |
|     char *_kwnames[] = { "target", NULL };
 | |
|     char _ptemp[128];
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:new_wxDynamicSashUnifyEvent",_kwnames,&_argo0)) 
 | |
|         return NULL;
 | |
|     if (_argo0) {
 | |
|         if (_argo0 == Py_None) { _arg0 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxObject_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of new_wxDynamicSashUnifyEvent. Expected _wxObject_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     _result = (wxDynamicSashUnifyEvent *)new_wxDynamicSashUnifyEvent(_arg0);
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }    if (_result) {
 | |
|         SWIG_MakePtr(_ptemp, (char *) _result,"_wxDynamicSashUnifyEvent_p");
 | |
|         _resultobj = Py_BuildValue("s",_ptemp);
 | |
|     } else {
 | |
|         Py_INCREF(Py_None);
 | |
|         _resultobj = Py_None;
 | |
|     }
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| static void *SwigwxDynamicSashWindowTowxWindow(void *ptr) {
 | |
|     wxDynamicSashWindow *src;
 | |
|     wxWindow *dest;
 | |
|     src = (wxDynamicSashWindow *) ptr;
 | |
|     dest = (wxWindow *) src;
 | |
|     return (void *) dest;
 | |
| }
 | |
| 
 | |
| static void *SwigwxDynamicSashWindowTowxEvtHandler(void *ptr) {
 | |
|     wxDynamicSashWindow *src;
 | |
|     wxEvtHandler *dest;
 | |
|     src = (wxDynamicSashWindow *) ptr;
 | |
|     dest = (wxEvtHandler *) src;
 | |
|     return (void *) dest;
 | |
| }
 | |
| 
 | |
| static void *SwigwxDynamicSashWindowTowxObject(void *ptr) {
 | |
|     wxDynamicSashWindow *src;
 | |
|     wxObject *dest;
 | |
|     src = (wxDynamicSashWindow *) ptr;
 | |
|     dest = (wxObject *) src;
 | |
|     return (void *) dest;
 | |
| }
 | |
| 
 | |
| #define new_wxDynamicSashWindow(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5) (new wxDynamicSashWindow(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5))
 | |
| static PyObject *_wrap_new_wxDynamicSashWindow(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     wxDynamicSashWindow * _result;
 | |
|     wxWindow * _arg0;
 | |
|     wxWindowID  _arg1;
 | |
|     wxPoint * _arg2 = (wxPoint *) &wxDefaultPosition;
 | |
|     wxSize * _arg3 = (wxSize *) &wxDefaultSize;
 | |
|     long  _arg4 = (long ) wxCLIP_CHILDREN|(wxDS_MANAGE_SCROLLBARS)|(wxDS_DRAG_CORNER);
 | |
|     wxString * _arg5 = (wxString *) &wxPyDynamicSashNameStr;
 | |
|     PyObject * _argo0 = 0;
 | |
|     wxPoint  temp;
 | |
|     PyObject * _obj2 = 0;
 | |
|     wxSize  temp0;
 | |
|     PyObject * _obj3 = 0;
 | |
|     PyObject * _obj5 = 0;
 | |
|     char *_kwnames[] = { "parent","id","pos","size","style","name", NULL };
 | |
|     char _ptemp[128];
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi|OOlO:new_wxDynamicSashWindow",_kwnames,&_argo0,&_arg1,&_obj2,&_obj3,&_arg4,&_obj5)) 
 | |
|         return NULL;
 | |
|     if (_argo0) {
 | |
|         if (_argo0 == Py_None) { _arg0 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of new_wxDynamicSashWindow. Expected _wxWindow_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
|     if (_obj2)
 | |
| {
 | |
|     _arg2 = &temp;
 | |
|     if (! wxPoint_helper(_obj2, &_arg2))
 | |
|         return NULL;
 | |
| }
 | |
|     if (_obj3)
 | |
| {
 | |
|     _arg3 = &temp0;
 | |
|     if (! wxSize_helper(_obj3, &_arg3))
 | |
|         return NULL;
 | |
| }
 | |
|     if (_obj5)
 | |
| {
 | |
|     _arg5 = wxString_in_helper(_obj5);
 | |
|     if (_arg5 == NULL)
 | |
|         return NULL;
 | |
| }
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     _result = (wxDynamicSashWindow *)new_wxDynamicSashWindow(_arg0,_arg1,*_arg2,*_arg3,_arg4,*_arg5);
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }    if (_result) {
 | |
|         SWIG_MakePtr(_ptemp, (char *) _result,"_wxDynamicSashWindow_p");
 | |
|         _resultobj = Py_BuildValue("s",_ptemp);
 | |
|     } else {
 | |
|         Py_INCREF(Py_None);
 | |
|         _resultobj = Py_None;
 | |
|     }
 | |
| {
 | |
|     if (_obj5)
 | |
|         delete _arg5;
 | |
| }
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| #define new_wxPreDynamicSashWindow() (new wxDynamicSashWindow())
 | |
| static PyObject *_wrap_new_wxPreDynamicSashWindow(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     wxDynamicSashWindow * _result;
 | |
|     char *_kwnames[] = {  NULL };
 | |
|     char _ptemp[128];
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxPreDynamicSashWindow",_kwnames)) 
 | |
|         return NULL;
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     _result = (wxDynamicSashWindow *)new_wxPreDynamicSashWindow();
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }    if (_result) {
 | |
|         SWIG_MakePtr(_ptemp, (char *) _result,"_wxDynamicSashWindow_p");
 | |
|         _resultobj = Py_BuildValue("s",_ptemp);
 | |
|     } else {
 | |
|         Py_INCREF(Py_None);
 | |
|         _resultobj = Py_None;
 | |
|     }
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| #define wxDynamicSashWindow_Create(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5)  (_swigobj->Create(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5))
 | |
| static PyObject *_wrap_wxDynamicSashWindow_Create(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     bool  _result;
 | |
|     wxDynamicSashWindow * _arg0;
 | |
|     wxWindow * _arg1;
 | |
|     wxWindowID  _arg2;
 | |
|     wxPoint * _arg3 = (wxPoint *) &wxDefaultPosition;
 | |
|     wxSize * _arg4 = (wxSize *) &wxDefaultSize;
 | |
|     long  _arg5 = (long ) wxCLIP_CHILDREN|(wxDS_MANAGE_SCROLLBARS)|(wxDS_DRAG_CORNER);
 | |
|     wxString * _arg6 = (wxString *) &wxPyDynamicSashNameStr;
 | |
|     PyObject * _argo0 = 0;
 | |
|     PyObject * _argo1 = 0;
 | |
|     wxPoint  temp;
 | |
|     PyObject * _obj3 = 0;
 | |
|     wxSize  temp0;
 | |
|     PyObject * _obj4 = 0;
 | |
|     PyObject * _obj6 = 0;
 | |
|     char *_kwnames[] = { "self","parent","id","pos","size","style","name", NULL };
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOi|OOlO:wxDynamicSashWindow_Create",_kwnames,&_argo0,&_argo1,&_arg2,&_obj3,&_obj4,&_arg5,&_obj6)) 
 | |
|         return NULL;
 | |
|     if (_argo0) {
 | |
|         if (_argo0 == Py_None) { _arg0 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxDynamicSashWindow_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxDynamicSashWindow_Create. Expected _wxDynamicSashWindow_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
|     if (_argo1) {
 | |
|         if (_argo1 == Py_None) { _arg1 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxDynamicSashWindow_Create. Expected _wxWindow_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
|     if (_obj3)
 | |
| {
 | |
|     _arg3 = &temp;
 | |
|     if (! wxPoint_helper(_obj3, &_arg3))
 | |
|         return NULL;
 | |
| }
 | |
|     if (_obj4)
 | |
| {
 | |
|     _arg4 = &temp0;
 | |
|     if (! wxSize_helper(_obj4, &_arg4))
 | |
|         return NULL;
 | |
| }
 | |
|     if (_obj6)
 | |
| {
 | |
|     _arg6 = wxString_in_helper(_obj6);
 | |
|     if (_arg6 == NULL)
 | |
|         return NULL;
 | |
| }
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     _result = (bool )wxDynamicSashWindow_Create(_arg0,_arg1,_arg2,*_arg3,*_arg4,_arg5,*_arg6);
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }    _resultobj = Py_BuildValue("i",_result);
 | |
| {
 | |
|     if (_obj6)
 | |
|         delete _arg6;
 | |
| }
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| #define wxDynamicSashWindow_GetHScrollBar(_swigobj,_swigarg0)  (_swigobj->GetHScrollBar(_swigarg0))
 | |
| static PyObject *_wrap_wxDynamicSashWindow_GetHScrollBar(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     wxScrollBar * _result;
 | |
|     wxDynamicSashWindow * _arg0;
 | |
|     wxWindow * _arg1;
 | |
|     PyObject * _argo0 = 0;
 | |
|     PyObject * _argo1 = 0;
 | |
|     char *_kwnames[] = { "self","child", NULL };
 | |
|     char _ptemp[128];
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxDynamicSashWindow_GetHScrollBar",_kwnames,&_argo0,&_argo1)) 
 | |
|         return NULL;
 | |
|     if (_argo0) {
 | |
|         if (_argo0 == Py_None) { _arg0 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxDynamicSashWindow_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxDynamicSashWindow_GetHScrollBar. Expected _wxDynamicSashWindow_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
|     if (_argo1) {
 | |
|         if (_argo1 == Py_None) { _arg1 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxDynamicSashWindow_GetHScrollBar. Expected _wxWindow_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     _result = (wxScrollBar *)wxDynamicSashWindow_GetHScrollBar(_arg0,_arg1);
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }    if (_result) {
 | |
|         SWIG_MakePtr(_ptemp, (char *) _result,"_wxScrollBar_p");
 | |
|         _resultobj = Py_BuildValue("s",_ptemp);
 | |
|     } else {
 | |
|         Py_INCREF(Py_None);
 | |
|         _resultobj = Py_None;
 | |
|     }
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| #define wxDynamicSashWindow_GetVScrollBar(_swigobj,_swigarg0)  (_swigobj->GetVScrollBar(_swigarg0))
 | |
| static PyObject *_wrap_wxDynamicSashWindow_GetVScrollBar(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     wxScrollBar * _result;
 | |
|     wxDynamicSashWindow * _arg0;
 | |
|     wxWindow * _arg1;
 | |
|     PyObject * _argo0 = 0;
 | |
|     PyObject * _argo1 = 0;
 | |
|     char *_kwnames[] = { "self","child", NULL };
 | |
|     char _ptemp[128];
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxDynamicSashWindow_GetVScrollBar",_kwnames,&_argo0,&_argo1)) 
 | |
|         return NULL;
 | |
|     if (_argo0) {
 | |
|         if (_argo0 == Py_None) { _arg0 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxDynamicSashWindow_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxDynamicSashWindow_GetVScrollBar. Expected _wxDynamicSashWindow_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
|     if (_argo1) {
 | |
|         if (_argo1 == Py_None) { _arg1 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxDynamicSashWindow_GetVScrollBar. Expected _wxWindow_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     _result = (wxScrollBar *)wxDynamicSashWindow_GetVScrollBar(_arg0,_arg1);
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }    if (_result) {
 | |
|         SWIG_MakePtr(_ptemp, (char *) _result,"_wxScrollBar_p");
 | |
|         _resultobj = Py_BuildValue("s",_ptemp);
 | |
|     } else {
 | |
|         Py_INCREF(Py_None);
 | |
|         _resultobj = Py_None;
 | |
|     }
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| static void *SwigwxEditableListBoxTowxPanel(void *ptr) {
 | |
|     wxEditableListBox *src;
 | |
|     wxPanel *dest;
 | |
|     src = (wxEditableListBox *) ptr;
 | |
|     dest = (wxPanel *) src;
 | |
|     return (void *) dest;
 | |
| }
 | |
| 
 | |
| static void *SwigwxEditableListBoxTowxWindow(void *ptr) {
 | |
|     wxEditableListBox *src;
 | |
|     wxWindow *dest;
 | |
|     src = (wxEditableListBox *) ptr;
 | |
|     dest = (wxWindow *) src;
 | |
|     return (void *) dest;
 | |
| }
 | |
| 
 | |
| static void *SwigwxEditableListBoxTowxEvtHandler(void *ptr) {
 | |
|     wxEditableListBox *src;
 | |
|     wxEvtHandler *dest;
 | |
|     src = (wxEditableListBox *) ptr;
 | |
|     dest = (wxEvtHandler *) src;
 | |
|     return (void *) dest;
 | |
| }
 | |
| 
 | |
| static void *SwigwxEditableListBoxTowxObject(void *ptr) {
 | |
|     wxEditableListBox *src;
 | |
|     wxObject *dest;
 | |
|     src = (wxEditableListBox *) ptr;
 | |
|     dest = (wxObject *) src;
 | |
|     return (void *) dest;
 | |
| }
 | |
| 
 | |
| #define new_wxEditableListBox(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5,_swigarg6) (new wxEditableListBox(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5,_swigarg6))
 | |
| static PyObject *_wrap_new_wxEditableListBox(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     wxEditableListBox * _result;
 | |
|     wxWindow * _arg0;
 | |
|     wxWindowID  _arg1;
 | |
|     wxString * _arg2;
 | |
|     wxPoint * _arg3 = (wxPoint *) &wxDefaultPosition;
 | |
|     wxSize * _arg4 = (wxSize *) &wxDefaultSize;
 | |
|     long  _arg5 = (long ) (wxEL_ALLOW_NEW)|(wxEL_ALLOW_EDIT)|(wxEL_ALLOW_DELETE);
 | |
|     wxString * _arg6 = (wxString *) &wxPyEditableListBoxNameStr;
 | |
|     PyObject * _argo0 = 0;
 | |
|     PyObject * _obj2 = 0;
 | |
|     wxPoint  temp;
 | |
|     PyObject * _obj3 = 0;
 | |
|     wxSize  temp0;
 | |
|     PyObject * _obj4 = 0;
 | |
|     PyObject * _obj6 = 0;
 | |
|     char *_kwnames[] = { "parent","id","label","pos","size","style","name", NULL };
 | |
|     char _ptemp[128];
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OiO|OOlO:new_wxEditableListBox",_kwnames,&_argo0,&_arg1,&_obj2,&_obj3,&_obj4,&_arg5,&_obj6)) 
 | |
|         return NULL;
 | |
|     if (_argo0) {
 | |
|         if (_argo0 == Py_None) { _arg0 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of new_wxEditableListBox. Expected _wxWindow_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
| {
 | |
|     _arg2 = wxString_in_helper(_obj2);
 | |
|     if (_arg2 == NULL)
 | |
|         return NULL;
 | |
| }
 | |
|     if (_obj3)
 | |
| {
 | |
|     _arg3 = &temp;
 | |
|     if (! wxPoint_helper(_obj3, &_arg3))
 | |
|         return NULL;
 | |
| }
 | |
|     if (_obj4)
 | |
| {
 | |
|     _arg4 = &temp0;
 | |
|     if (! wxSize_helper(_obj4, &_arg4))
 | |
|         return NULL;
 | |
| }
 | |
|     if (_obj6)
 | |
| {
 | |
|     _arg6 = wxString_in_helper(_obj6);
 | |
|     if (_arg6 == NULL)
 | |
|         return NULL;
 | |
| }
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     _result = (wxEditableListBox *)new_wxEditableListBox(_arg0,_arg1,*_arg2,*_arg3,*_arg4,_arg5,*_arg6);
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }    if (_result) {
 | |
|         SWIG_MakePtr(_ptemp, (char *) _result,"_wxEditableListBox_p");
 | |
|         _resultobj = Py_BuildValue("s",_ptemp);
 | |
|     } else {
 | |
|         Py_INCREF(Py_None);
 | |
|         _resultobj = Py_None;
 | |
|     }
 | |
| {
 | |
|     if (_obj2)
 | |
|         delete _arg2;
 | |
| }
 | |
| {
 | |
|     if (_obj6)
 | |
|         delete _arg6;
 | |
| }
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| #define wxEditableListBox_SetStrings(_swigobj,_swigarg0)  (_swigobj->SetStrings(_swigarg0))
 | |
| static PyObject *_wrap_wxEditableListBox_SetStrings(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     wxEditableListBox * _arg0;
 | |
|     wxArrayString * _arg1;
 | |
|     PyObject * _argo0 = 0;
 | |
|     PyObject * _obj1 = 0;
 | |
|     char *_kwnames[] = { "self","strings", NULL };
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxEditableListBox_SetStrings",_kwnames,&_argo0,&_obj1)) 
 | |
|         return NULL;
 | |
|     if (_argo0) {
 | |
|         if (_argo0 == Py_None) { _arg0 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxEditableListBox_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxEditableListBox_SetStrings. Expected _wxEditableListBox_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
| {
 | |
|     if (! PySequence_Check(_obj1)) {
 | |
|         PyErr_SetString(PyExc_TypeError, "Sequence of strings expected.");
 | |
|         return NULL;
 | |
|     }
 | |
|     _arg1 = new wxArrayString;
 | |
|     int i, len=PySequence_Length(_obj1);
 | |
|     for (i=0; i<len; i++) {
 | |
|         PyObject* item = PySequence_GetItem(_obj1, i);
 | |
| #if wxUSE_UNICODE
 | |
|         PyObject* str  = PyObject_Unicode(item);
 | |
| #else
 | |
|         PyObject* str  = PyObject_Str(item);
 | |
| #endif
 | |
|         _arg1->Add(Py2wxString(str));
 | |
|         Py_DECREF(item);
 | |
|         Py_DECREF(str);
 | |
|     }
 | |
| }
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     wxEditableListBox_SetStrings(_arg0,*_arg1);
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }    Py_INCREF(Py_None);
 | |
|     _resultobj = Py_None;
 | |
| {
 | |
|     if (_obj1)
 | |
|         delete _arg1;
 | |
| }
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| static PyObject * wxEditableListBox_GetStrings(wxEditableListBox *self) {
 | |
|             wxArrayString strings;
 | |
|             self->GetStrings(strings);
 | |
|             return wxArrayString2PyList_helper(strings);
 | |
|         }
 | |
| static PyObject *_wrap_wxEditableListBox_GetStrings(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     PyObject * _result;
 | |
|     wxEditableListBox * _arg0;
 | |
|     PyObject * _argo0 = 0;
 | |
|     char *_kwnames[] = { "self", NULL };
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxEditableListBox_GetStrings",_kwnames,&_argo0)) 
 | |
|         return NULL;
 | |
|     if (_argo0) {
 | |
|         if (_argo0 == Py_None) { _arg0 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxEditableListBox_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxEditableListBox_GetStrings. Expected _wxEditableListBox_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     _result = (PyObject *)wxEditableListBox_GetStrings(_arg0);
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }{
 | |
|   _resultobj = _result;
 | |
| }
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| #define wxEditableListBox_GetListCtrl(_swigobj)  (_swigobj->GetListCtrl())
 | |
| static PyObject *_wrap_wxEditableListBox_GetListCtrl(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     wxListCtrl * _result;
 | |
|     wxEditableListBox * _arg0;
 | |
|     PyObject * _argo0 = 0;
 | |
|     char *_kwnames[] = { "self", NULL };
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxEditableListBox_GetListCtrl",_kwnames,&_argo0)) 
 | |
|         return NULL;
 | |
|     if (_argo0) {
 | |
|         if (_argo0 == Py_None) { _arg0 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxEditableListBox_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxEditableListBox_GetListCtrl. Expected _wxEditableListBox_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     _result = (wxListCtrl *)wxEditableListBox_GetListCtrl(_arg0);
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }{ _resultobj = wxPyMake_wxObject(_result); }
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| #define wxEditableListBox_GetDelButton(_swigobj)  (_swigobj->GetDelButton())
 | |
| static PyObject *_wrap_wxEditableListBox_GetDelButton(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     wxBitmapButton * _result;
 | |
|     wxEditableListBox * _arg0;
 | |
|     PyObject * _argo0 = 0;
 | |
|     char *_kwnames[] = { "self", NULL };
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxEditableListBox_GetDelButton",_kwnames,&_argo0)) 
 | |
|         return NULL;
 | |
|     if (_argo0) {
 | |
|         if (_argo0 == Py_None) { _arg0 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxEditableListBox_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxEditableListBox_GetDelButton. Expected _wxEditableListBox_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     _result = (wxBitmapButton *)wxEditableListBox_GetDelButton(_arg0);
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }{ _resultobj = wxPyMake_wxObject(_result); }
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| #define wxEditableListBox_GetNewButton(_swigobj)  (_swigobj->GetNewButton())
 | |
| static PyObject *_wrap_wxEditableListBox_GetNewButton(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     wxBitmapButton * _result;
 | |
|     wxEditableListBox * _arg0;
 | |
|     PyObject * _argo0 = 0;
 | |
|     char *_kwnames[] = { "self", NULL };
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxEditableListBox_GetNewButton",_kwnames,&_argo0)) 
 | |
|         return NULL;
 | |
|     if (_argo0) {
 | |
|         if (_argo0 == Py_None) { _arg0 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxEditableListBox_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxEditableListBox_GetNewButton. Expected _wxEditableListBox_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     _result = (wxBitmapButton *)wxEditableListBox_GetNewButton(_arg0);
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }{ _resultobj = wxPyMake_wxObject(_result); }
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| #define wxEditableListBox_GetUpButton(_swigobj)  (_swigobj->GetUpButton())
 | |
| static PyObject *_wrap_wxEditableListBox_GetUpButton(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     wxBitmapButton * _result;
 | |
|     wxEditableListBox * _arg0;
 | |
|     PyObject * _argo0 = 0;
 | |
|     char *_kwnames[] = { "self", NULL };
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxEditableListBox_GetUpButton",_kwnames,&_argo0)) 
 | |
|         return NULL;
 | |
|     if (_argo0) {
 | |
|         if (_argo0 == Py_None) { _arg0 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxEditableListBox_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxEditableListBox_GetUpButton. Expected _wxEditableListBox_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     _result = (wxBitmapButton *)wxEditableListBox_GetUpButton(_arg0);
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }{ _resultobj = wxPyMake_wxObject(_result); }
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| #define wxEditableListBox_GetDownButton(_swigobj)  (_swigobj->GetDownButton())
 | |
| static PyObject *_wrap_wxEditableListBox_GetDownButton(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     wxBitmapButton * _result;
 | |
|     wxEditableListBox * _arg0;
 | |
|     PyObject * _argo0 = 0;
 | |
|     char *_kwnames[] = { "self", NULL };
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxEditableListBox_GetDownButton",_kwnames,&_argo0)) 
 | |
|         return NULL;
 | |
|     if (_argo0) {
 | |
|         if (_argo0 == Py_None) { _arg0 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxEditableListBox_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxEditableListBox_GetDownButton. Expected _wxEditableListBox_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     _result = (wxBitmapButton *)wxEditableListBox_GetDownButton(_arg0);
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }{ _resultobj = wxPyMake_wxObject(_result); }
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| #define wxEditableListBox_GetEditButton(_swigobj)  (_swigobj->GetEditButton())
 | |
| static PyObject *_wrap_wxEditableListBox_GetEditButton(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     wxBitmapButton * _result;
 | |
|     wxEditableListBox * _arg0;
 | |
|     PyObject * _argo0 = 0;
 | |
|     char *_kwnames[] = { "self", NULL };
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxEditableListBox_GetEditButton",_kwnames,&_argo0)) 
 | |
|         return NULL;
 | |
|     if (_argo0) {
 | |
|         if (_argo0 == Py_None) { _arg0 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxEditableListBox_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxEditableListBox_GetEditButton. Expected _wxEditableListBox_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     _result = (wxBitmapButton *)wxEditableListBox_GetEditButton(_arg0);
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }{ _resultobj = wxPyMake_wxObject(_result); }
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| static void *SwigwxRemotelyScrolledTreeCtrlTowxPyTreeCtrl(void *ptr) {
 | |
|     wxRemotelyScrolledTreeCtrl *src;
 | |
|     wxPyTreeCtrl *dest;
 | |
|     src = (wxRemotelyScrolledTreeCtrl *) ptr;
 | |
|     dest = (wxPyTreeCtrl *) src;
 | |
|     return (void *) dest;
 | |
| }
 | |
| 
 | |
| static void *SwigwxRemotelyScrolledTreeCtrlTowxControl(void *ptr) {
 | |
|     wxRemotelyScrolledTreeCtrl *src;
 | |
|     wxControl *dest;
 | |
|     src = (wxRemotelyScrolledTreeCtrl *) ptr;
 | |
|     dest = (wxControl *) src;
 | |
|     return (void *) dest;
 | |
| }
 | |
| 
 | |
| static void *SwigwxRemotelyScrolledTreeCtrlTowxWindow(void *ptr) {
 | |
|     wxRemotelyScrolledTreeCtrl *src;
 | |
|     wxWindow *dest;
 | |
|     src = (wxRemotelyScrolledTreeCtrl *) ptr;
 | |
|     dest = (wxWindow *) src;
 | |
|     return (void *) dest;
 | |
| }
 | |
| 
 | |
| static void *SwigwxRemotelyScrolledTreeCtrlTowxEvtHandler(void *ptr) {
 | |
|     wxRemotelyScrolledTreeCtrl *src;
 | |
|     wxEvtHandler *dest;
 | |
|     src = (wxRemotelyScrolledTreeCtrl *) ptr;
 | |
|     dest = (wxEvtHandler *) src;
 | |
|     return (void *) dest;
 | |
| }
 | |
| 
 | |
| static void *SwigwxRemotelyScrolledTreeCtrlTowxObject(void *ptr) {
 | |
|     wxRemotelyScrolledTreeCtrl *src;
 | |
|     wxObject *dest;
 | |
|     src = (wxRemotelyScrolledTreeCtrl *) ptr;
 | |
|     dest = (wxObject *) src;
 | |
|     return (void *) dest;
 | |
| }
 | |
| 
 | |
| #define new_wxRemotelyScrolledTreeCtrl(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4) (new wxRemotelyScrolledTreeCtrl(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4))
 | |
| static PyObject *_wrap_new_wxRemotelyScrolledTreeCtrl(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     wxRemotelyScrolledTreeCtrl * _result;
 | |
|     wxWindow * _arg0;
 | |
|     wxWindowID  _arg1;
 | |
|     wxPoint * _arg2 = (wxPoint *) &wxDefaultPosition;
 | |
|     wxSize * _arg3 = (wxSize *) &wxDefaultSize;
 | |
|     long  _arg4 = (long ) wxTR_HAS_BUTTONS;
 | |
|     PyObject * _argo0 = 0;
 | |
|     wxPoint  temp;
 | |
|     PyObject * _obj2 = 0;
 | |
|     wxSize  temp0;
 | |
|     PyObject * _obj3 = 0;
 | |
|     char *_kwnames[] = { "parent","id","pos","size","style", NULL };
 | |
|     char _ptemp[128];
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi|OOl:new_wxRemotelyScrolledTreeCtrl",_kwnames,&_argo0,&_arg1,&_obj2,&_obj3,&_arg4)) 
 | |
|         return NULL;
 | |
|     if (_argo0) {
 | |
|         if (_argo0 == Py_None) { _arg0 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of new_wxRemotelyScrolledTreeCtrl. Expected _wxWindow_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
|     if (_obj2)
 | |
| {
 | |
|     _arg2 = &temp;
 | |
|     if (! wxPoint_helper(_obj2, &_arg2))
 | |
|         return NULL;
 | |
| }
 | |
|     if (_obj3)
 | |
| {
 | |
|     _arg3 = &temp0;
 | |
|     if (! wxSize_helper(_obj3, &_arg3))
 | |
|         return NULL;
 | |
| }
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     _result = (wxRemotelyScrolledTreeCtrl *)new_wxRemotelyScrolledTreeCtrl(_arg0,_arg1,*_arg2,*_arg3,_arg4);
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }    if (_result) {
 | |
|         SWIG_MakePtr(_ptemp, (char *) _result,"_wxRemotelyScrolledTreeCtrl_p");
 | |
|         _resultobj = Py_BuildValue("s",_ptemp);
 | |
|     } else {
 | |
|         Py_INCREF(Py_None);
 | |
|         _resultobj = Py_None;
 | |
|     }
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| #define wxRemotelyScrolledTreeCtrl_HideVScrollbar(_swigobj)  (_swigobj->HideVScrollbar())
 | |
| static PyObject *_wrap_wxRemotelyScrolledTreeCtrl_HideVScrollbar(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     wxRemotelyScrolledTreeCtrl * _arg0;
 | |
|     PyObject * _argo0 = 0;
 | |
|     char *_kwnames[] = { "self", NULL };
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRemotelyScrolledTreeCtrl_HideVScrollbar",_kwnames,&_argo0)) 
 | |
|         return NULL;
 | |
|     if (_argo0) {
 | |
|         if (_argo0 == Py_None) { _arg0 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxRemotelyScrolledTreeCtrl_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxRemotelyScrolledTreeCtrl_HideVScrollbar. Expected _wxRemotelyScrolledTreeCtrl_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     wxRemotelyScrolledTreeCtrl_HideVScrollbar(_arg0);
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }    Py_INCREF(Py_None);
 | |
|     _resultobj = Py_None;
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| #define wxRemotelyScrolledTreeCtrl_AdjustRemoteScrollbars(_swigobj)  (_swigobj->AdjustRemoteScrollbars())
 | |
| static PyObject *_wrap_wxRemotelyScrolledTreeCtrl_AdjustRemoteScrollbars(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     wxRemotelyScrolledTreeCtrl * _arg0;
 | |
|     PyObject * _argo0 = 0;
 | |
|     char *_kwnames[] = { "self", NULL };
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRemotelyScrolledTreeCtrl_AdjustRemoteScrollbars",_kwnames,&_argo0)) 
 | |
|         return NULL;
 | |
|     if (_argo0) {
 | |
|         if (_argo0 == Py_None) { _arg0 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxRemotelyScrolledTreeCtrl_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxRemotelyScrolledTreeCtrl_AdjustRemoteScrollbars. Expected _wxRemotelyScrolledTreeCtrl_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     wxRemotelyScrolledTreeCtrl_AdjustRemoteScrollbars(_arg0);
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }    Py_INCREF(Py_None);
 | |
|     _resultobj = Py_None;
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| #define wxRemotelyScrolledTreeCtrl_GetScrolledWindow(_swigobj)  (_swigobj->GetScrolledWindow())
 | |
| static PyObject *_wrap_wxRemotelyScrolledTreeCtrl_GetScrolledWindow(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     wxScrolledWindow * _result;
 | |
|     wxRemotelyScrolledTreeCtrl * _arg0;
 | |
|     PyObject * _argo0 = 0;
 | |
|     char *_kwnames[] = { "self", NULL };
 | |
|     char _ptemp[128];
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRemotelyScrolledTreeCtrl_GetScrolledWindow",_kwnames,&_argo0)) 
 | |
|         return NULL;
 | |
|     if (_argo0) {
 | |
|         if (_argo0 == Py_None) { _arg0 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxRemotelyScrolledTreeCtrl_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxRemotelyScrolledTreeCtrl_GetScrolledWindow. Expected _wxRemotelyScrolledTreeCtrl_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     _result = (wxScrolledWindow *)wxRemotelyScrolledTreeCtrl_GetScrolledWindow(_arg0);
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }    if (_result) {
 | |
|         SWIG_MakePtr(_ptemp, (char *) _result,"_wxScrolledWindow_p");
 | |
|         _resultobj = Py_BuildValue("s",_ptemp);
 | |
|     } else {
 | |
|         Py_INCREF(Py_None);
 | |
|         _resultobj = Py_None;
 | |
|     }
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| #define wxRemotelyScrolledTreeCtrl_ScrollToLine(_swigobj,_swigarg0,_swigarg1)  (_swigobj->ScrollToLine(_swigarg0,_swigarg1))
 | |
| static PyObject *_wrap_wxRemotelyScrolledTreeCtrl_ScrollToLine(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     wxRemotelyScrolledTreeCtrl * _arg0;
 | |
|     int  _arg1;
 | |
|     int  _arg2;
 | |
|     PyObject * _argo0 = 0;
 | |
|     char *_kwnames[] = { "self","posHoriz","posVert", NULL };
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oii:wxRemotelyScrolledTreeCtrl_ScrollToLine",_kwnames,&_argo0,&_arg1,&_arg2)) 
 | |
|         return NULL;
 | |
|     if (_argo0) {
 | |
|         if (_argo0 == Py_None) { _arg0 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxRemotelyScrolledTreeCtrl_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxRemotelyScrolledTreeCtrl_ScrollToLine. Expected _wxRemotelyScrolledTreeCtrl_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     wxRemotelyScrolledTreeCtrl_ScrollToLine(_arg0,_arg1,_arg2);
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }    Py_INCREF(Py_None);
 | |
|     _resultobj = Py_None;
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| #define wxRemotelyScrolledTreeCtrl_SetCompanionWindow(_swigobj,_swigarg0)  (_swigobj->SetCompanionWindow(_swigarg0))
 | |
| static PyObject *_wrap_wxRemotelyScrolledTreeCtrl_SetCompanionWindow(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     wxRemotelyScrolledTreeCtrl * _arg0;
 | |
|     wxWindow * _arg1;
 | |
|     PyObject * _argo0 = 0;
 | |
|     PyObject * _argo1 = 0;
 | |
|     char *_kwnames[] = { "self","companion", NULL };
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxRemotelyScrolledTreeCtrl_SetCompanionWindow",_kwnames,&_argo0,&_argo1)) 
 | |
|         return NULL;
 | |
|     if (_argo0) {
 | |
|         if (_argo0 == Py_None) { _arg0 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxRemotelyScrolledTreeCtrl_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxRemotelyScrolledTreeCtrl_SetCompanionWindow. Expected _wxRemotelyScrolledTreeCtrl_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
|     if (_argo1) {
 | |
|         if (_argo1 == Py_None) { _arg1 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxRemotelyScrolledTreeCtrl_SetCompanionWindow. Expected _wxWindow_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     wxRemotelyScrolledTreeCtrl_SetCompanionWindow(_arg0,_arg1);
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }    Py_INCREF(Py_None);
 | |
|     _resultobj = Py_None;
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| #define wxRemotelyScrolledTreeCtrl_GetCompanionWindow(_swigobj)  (_swigobj->GetCompanionWindow())
 | |
| static PyObject *_wrap_wxRemotelyScrolledTreeCtrl_GetCompanionWindow(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     wxWindow * _result;
 | |
|     wxRemotelyScrolledTreeCtrl * _arg0;
 | |
|     PyObject * _argo0 = 0;
 | |
|     char *_kwnames[] = { "self", NULL };
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxRemotelyScrolledTreeCtrl_GetCompanionWindow",_kwnames,&_argo0)) 
 | |
|         return NULL;
 | |
|     if (_argo0) {
 | |
|         if (_argo0 == Py_None) { _arg0 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxRemotelyScrolledTreeCtrl_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxRemotelyScrolledTreeCtrl_GetCompanionWindow. Expected _wxRemotelyScrolledTreeCtrl_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     _result = (wxWindow *)wxRemotelyScrolledTreeCtrl_GetCompanionWindow(_arg0);
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }{ _resultobj = wxPyMake_wxObject(_result); }
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| static void *SwigwxPyTreeCompanionWindowTowxWindow(void *ptr) {
 | |
|     wxPyTreeCompanionWindow *src;
 | |
|     wxWindow *dest;
 | |
|     src = (wxPyTreeCompanionWindow *) ptr;
 | |
|     dest = (wxWindow *) src;
 | |
|     return (void *) dest;
 | |
| }
 | |
| 
 | |
| static void *SwigwxPyTreeCompanionWindowTowxEvtHandler(void *ptr) {
 | |
|     wxPyTreeCompanionWindow *src;
 | |
|     wxEvtHandler *dest;
 | |
|     src = (wxPyTreeCompanionWindow *) ptr;
 | |
|     dest = (wxEvtHandler *) src;
 | |
|     return (void *) dest;
 | |
| }
 | |
| 
 | |
| static void *SwigwxPyTreeCompanionWindowTowxObject(void *ptr) {
 | |
|     wxPyTreeCompanionWindow *src;
 | |
|     wxObject *dest;
 | |
|     src = (wxPyTreeCompanionWindow *) ptr;
 | |
|     dest = (wxObject *) src;
 | |
|     return (void *) dest;
 | |
| }
 | |
| 
 | |
| #define new_wxTreeCompanionWindow(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4) (new wxPyTreeCompanionWindow(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4))
 | |
| static PyObject *_wrap_new_wxTreeCompanionWindow(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     wxPyTreeCompanionWindow * _result;
 | |
|     wxWindow * _arg0;
 | |
|     wxWindowID  _arg1 = (wxWindowID ) -1;
 | |
|     wxPoint * _arg2 = (wxPoint *) &wxDefaultPosition;
 | |
|     wxSize * _arg3 = (wxSize *) &wxDefaultSize;
 | |
|     long  _arg4 = (long ) 0;
 | |
|     PyObject * _argo0 = 0;
 | |
|     wxPoint  temp;
 | |
|     PyObject * _obj2 = 0;
 | |
|     wxSize  temp0;
 | |
|     PyObject * _obj3 = 0;
 | |
|     char *_kwnames[] = { "parent","id","pos","size","style", NULL };
 | |
|     char _ptemp[128];
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|iOOl:new_wxTreeCompanionWindow",_kwnames,&_argo0,&_arg1,&_obj2,&_obj3,&_arg4)) 
 | |
|         return NULL;
 | |
|     if (_argo0) {
 | |
|         if (_argo0 == Py_None) { _arg0 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of new_wxTreeCompanionWindow. Expected _wxWindow_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
|     if (_obj2)
 | |
| {
 | |
|     _arg2 = &temp;
 | |
|     if (! wxPoint_helper(_obj2, &_arg2))
 | |
|         return NULL;
 | |
| }
 | |
|     if (_obj3)
 | |
| {
 | |
|     _arg3 = &temp0;
 | |
|     if (! wxSize_helper(_obj3, &_arg3))
 | |
|         return NULL;
 | |
| }
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     _result = (wxPyTreeCompanionWindow *)new_wxTreeCompanionWindow(_arg0,_arg1,*_arg2,*_arg3,_arg4);
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }    if (_result) {
 | |
|         SWIG_MakePtr(_ptemp, (char *) _result,"_wxPyTreeCompanionWindow_p");
 | |
|         _resultobj = Py_BuildValue("s",_ptemp);
 | |
|     } else {
 | |
|         Py_INCREF(Py_None);
 | |
|         _resultobj = Py_None;
 | |
|     }
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| #define wxTreeCompanionWindow__setCallbackInfo(_swigobj,_swigarg0,_swigarg1)  (_swigobj->_setCallbackInfo(_swigarg0,_swigarg1))
 | |
| static PyObject *_wrap_wxTreeCompanionWindow__setCallbackInfo(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     wxPyTreeCompanionWindow * _arg0;
 | |
|     PyObject * _arg1;
 | |
|     PyObject * _arg2;
 | |
|     PyObject * _argo0 = 0;
 | |
|     PyObject * _obj1 = 0;
 | |
|     PyObject * _obj2 = 0;
 | |
|     char *_kwnames[] = { "self","self","_class", NULL };
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OOO:wxTreeCompanionWindow__setCallbackInfo",_kwnames,&_argo0,&_obj1,&_obj2)) 
 | |
|         return NULL;
 | |
|     if (_argo0) {
 | |
|         if (_argo0 == Py_None) { _arg0 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCompanionWindow_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCompanionWindow__setCallbackInfo. Expected _wxPyTreeCompanionWindow_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
| {
 | |
|   _arg1 = _obj1;
 | |
| }
 | |
| {
 | |
|   _arg2 = _obj2;
 | |
| }
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     wxTreeCompanionWindow__setCallbackInfo(_arg0,_arg1,_arg2);
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }    Py_INCREF(Py_None);
 | |
|     _resultobj = Py_None;
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| #define wxTreeCompanionWindow_GetTreeCtrl(_swigobj)  (_swigobj->GetTreeCtrl())
 | |
| static PyObject *_wrap_wxTreeCompanionWindow_GetTreeCtrl(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     wxRemotelyScrolledTreeCtrl * _result;
 | |
|     wxPyTreeCompanionWindow * _arg0;
 | |
|     PyObject * _argo0 = 0;
 | |
|     char *_kwnames[] = { "self", NULL };
 | |
|     char _ptemp[128];
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeCompanionWindow_GetTreeCtrl",_kwnames,&_argo0)) 
 | |
|         return NULL;
 | |
|     if (_argo0) {
 | |
|         if (_argo0 == Py_None) { _arg0 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCompanionWindow_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCompanionWindow_GetTreeCtrl. Expected _wxPyTreeCompanionWindow_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     _result = (wxRemotelyScrolledTreeCtrl *)wxTreeCompanionWindow_GetTreeCtrl(_arg0);
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }    if (_result) {
 | |
|         SWIG_MakePtr(_ptemp, (char *) _result,"_wxRemotelyScrolledTreeCtrl_p");
 | |
|         _resultobj = Py_BuildValue("s",_ptemp);
 | |
|     } else {
 | |
|         Py_INCREF(Py_None);
 | |
|         _resultobj = Py_None;
 | |
|     }
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| #define wxTreeCompanionWindow_SetTreeCtrl(_swigobj,_swigarg0)  (_swigobj->SetTreeCtrl(_swigarg0))
 | |
| static PyObject *_wrap_wxTreeCompanionWindow_SetTreeCtrl(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     wxPyTreeCompanionWindow * _arg0;
 | |
|     wxRemotelyScrolledTreeCtrl * _arg1;
 | |
|     PyObject * _argo0 = 0;
 | |
|     PyObject * _argo1 = 0;
 | |
|     char *_kwnames[] = { "self","treeCtrl", NULL };
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTreeCompanionWindow_SetTreeCtrl",_kwnames,&_argo0,&_argo1)) 
 | |
|         return NULL;
 | |
|     if (_argo0) {
 | |
|         if (_argo0 == Py_None) { _arg0 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyTreeCompanionWindow_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCompanionWindow_SetTreeCtrl. Expected _wxPyTreeCompanionWindow_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
|     if (_argo1) {
 | |
|         if (_argo1 == Py_None) { _arg1 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxRemotelyScrolledTreeCtrl_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxTreeCompanionWindow_SetTreeCtrl. Expected _wxRemotelyScrolledTreeCtrl_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     wxTreeCompanionWindow_SetTreeCtrl(_arg0,_arg1);
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }    Py_INCREF(Py_None);
 | |
|     _resultobj = Py_None;
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| static void *SwigwxThinSplitterWindowTowxSplitterWindow(void *ptr) {
 | |
|     wxThinSplitterWindow *src;
 | |
|     wxSplitterWindow *dest;
 | |
|     src = (wxThinSplitterWindow *) ptr;
 | |
|     dest = (wxSplitterWindow *) src;
 | |
|     return (void *) dest;
 | |
| }
 | |
| 
 | |
| static void *SwigwxThinSplitterWindowTowxWindow(void *ptr) {
 | |
|     wxThinSplitterWindow *src;
 | |
|     wxWindow *dest;
 | |
|     src = (wxThinSplitterWindow *) ptr;
 | |
|     dest = (wxWindow *) src;
 | |
|     return (void *) dest;
 | |
| }
 | |
| 
 | |
| static void *SwigwxThinSplitterWindowTowxEvtHandler(void *ptr) {
 | |
|     wxThinSplitterWindow *src;
 | |
|     wxEvtHandler *dest;
 | |
|     src = (wxThinSplitterWindow *) ptr;
 | |
|     dest = (wxEvtHandler *) src;
 | |
|     return (void *) dest;
 | |
| }
 | |
| 
 | |
| static void *SwigwxThinSplitterWindowTowxObject(void *ptr) {
 | |
|     wxThinSplitterWindow *src;
 | |
|     wxObject *dest;
 | |
|     src = (wxThinSplitterWindow *) ptr;
 | |
|     dest = (wxObject *) src;
 | |
|     return (void *) dest;
 | |
| }
 | |
| 
 | |
| #define new_wxThinSplitterWindow(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4) (new wxThinSplitterWindow(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4))
 | |
| static PyObject *_wrap_new_wxThinSplitterWindow(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     wxThinSplitterWindow * _result;
 | |
|     wxWindow * _arg0;
 | |
|     wxWindowID  _arg1 = (wxWindowID ) -1;
 | |
|     wxPoint * _arg2 = (wxPoint *) &wxDefaultPosition;
 | |
|     wxSize * _arg3 = (wxSize *) &wxDefaultSize;
 | |
|     long  _arg4 = (long ) wxSP_3D|wxCLIP_CHILDREN;
 | |
|     PyObject * _argo0 = 0;
 | |
|     wxPoint  temp;
 | |
|     PyObject * _obj2 = 0;
 | |
|     wxSize  temp0;
 | |
|     PyObject * _obj3 = 0;
 | |
|     char *_kwnames[] = { "parent","id","pos","size","style", NULL };
 | |
|     char _ptemp[128];
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|iOOl:new_wxThinSplitterWindow",_kwnames,&_argo0,&_arg1,&_obj2,&_obj3,&_arg4)) 
 | |
|         return NULL;
 | |
|     if (_argo0) {
 | |
|         if (_argo0 == Py_None) { _arg0 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of new_wxThinSplitterWindow. Expected _wxWindow_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
|     if (_obj2)
 | |
| {
 | |
|     _arg2 = &temp;
 | |
|     if (! wxPoint_helper(_obj2, &_arg2))
 | |
|         return NULL;
 | |
| }
 | |
|     if (_obj3)
 | |
| {
 | |
|     _arg3 = &temp0;
 | |
|     if (! wxSize_helper(_obj3, &_arg3))
 | |
|         return NULL;
 | |
| }
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     _result = (wxThinSplitterWindow *)new_wxThinSplitterWindow(_arg0,_arg1,*_arg2,*_arg3,_arg4);
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }    if (_result) {
 | |
|         SWIG_MakePtr(_ptemp, (char *) _result,"_wxThinSplitterWindow_p");
 | |
|         _resultobj = Py_BuildValue("s",_ptemp);
 | |
|     } else {
 | |
|         Py_INCREF(Py_None);
 | |
|         _resultobj = Py_None;
 | |
|     }
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| static void *SwigwxSplitterScrolledWindowTowxScrolledWindow(void *ptr) {
 | |
|     wxSplitterScrolledWindow *src;
 | |
|     wxScrolledWindow *dest;
 | |
|     src = (wxSplitterScrolledWindow *) ptr;
 | |
|     dest = (wxScrolledWindow *) src;
 | |
|     return (void *) dest;
 | |
| }
 | |
| 
 | |
| static void *SwigwxSplitterScrolledWindowTowxPanel(void *ptr) {
 | |
|     wxSplitterScrolledWindow *src;
 | |
|     wxPanel *dest;
 | |
|     src = (wxSplitterScrolledWindow *) ptr;
 | |
|     dest = (wxPanel *) src;
 | |
|     return (void *) dest;
 | |
| }
 | |
| 
 | |
| static void *SwigwxSplitterScrolledWindowTowxWindow(void *ptr) {
 | |
|     wxSplitterScrolledWindow *src;
 | |
|     wxWindow *dest;
 | |
|     src = (wxSplitterScrolledWindow *) ptr;
 | |
|     dest = (wxWindow *) src;
 | |
|     return (void *) dest;
 | |
| }
 | |
| 
 | |
| static void *SwigwxSplitterScrolledWindowTowxEvtHandler(void *ptr) {
 | |
|     wxSplitterScrolledWindow *src;
 | |
|     wxEvtHandler *dest;
 | |
|     src = (wxSplitterScrolledWindow *) ptr;
 | |
|     dest = (wxEvtHandler *) src;
 | |
|     return (void *) dest;
 | |
| }
 | |
| 
 | |
| static void *SwigwxSplitterScrolledWindowTowxObject(void *ptr) {
 | |
|     wxSplitterScrolledWindow *src;
 | |
|     wxObject *dest;
 | |
|     src = (wxSplitterScrolledWindow *) ptr;
 | |
|     dest = (wxObject *) src;
 | |
|     return (void *) dest;
 | |
| }
 | |
| 
 | |
| #define new_wxSplitterScrolledWindow(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4) (new wxSplitterScrolledWindow(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4))
 | |
| static PyObject *_wrap_new_wxSplitterScrolledWindow(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     wxSplitterScrolledWindow * _result;
 | |
|     wxWindow * _arg0;
 | |
|     wxWindowID  _arg1 = (wxWindowID ) -1;
 | |
|     wxPoint * _arg2 = (wxPoint *) &wxDefaultPosition;
 | |
|     wxSize * _arg3 = (wxSize *) &wxDefaultSize;
 | |
|     long  _arg4 = (long ) 0;
 | |
|     PyObject * _argo0 = 0;
 | |
|     wxPoint  temp;
 | |
|     PyObject * _obj2 = 0;
 | |
|     wxSize  temp0;
 | |
|     PyObject * _obj3 = 0;
 | |
|     char *_kwnames[] = { "parent","id","pos","size","style", NULL };
 | |
|     char _ptemp[128];
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|iOOl:new_wxSplitterScrolledWindow",_kwnames,&_argo0,&_arg1,&_obj2,&_obj3,&_arg4)) 
 | |
|         return NULL;
 | |
|     if (_argo0) {
 | |
|         if (_argo0 == Py_None) { _arg0 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of new_wxSplitterScrolledWindow. Expected _wxWindow_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
|     if (_obj2)
 | |
| {
 | |
|     _arg2 = &temp;
 | |
|     if (! wxPoint_helper(_obj2, &_arg2))
 | |
|         return NULL;
 | |
| }
 | |
|     if (_obj3)
 | |
| {
 | |
|     _arg3 = &temp0;
 | |
|     if (! wxSize_helper(_obj3, &_arg3))
 | |
|         return NULL;
 | |
| }
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     _result = (wxSplitterScrolledWindow *)new_wxSplitterScrolledWindow(_arg0,_arg1,*_arg2,*_arg3,_arg4);
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }    if (_result) {
 | |
|         SWIG_MakePtr(_ptemp, (char *) _result,"_wxSplitterScrolledWindow_p");
 | |
|         _resultobj = Py_BuildValue("s",_ptemp);
 | |
|     } else {
 | |
|         Py_INCREF(Py_None);
 | |
|         _resultobj = Py_None;
 | |
|     }
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| static void *SwigwxLEDNumberCtrlTowxControl(void *ptr) {
 | |
|     wxLEDNumberCtrl *src;
 | |
|     wxControl *dest;
 | |
|     src = (wxLEDNumberCtrl *) ptr;
 | |
|     dest = (wxControl *) src;
 | |
|     return (void *) dest;
 | |
| }
 | |
| 
 | |
| static void *SwigwxLEDNumberCtrlTowxWindow(void *ptr) {
 | |
|     wxLEDNumberCtrl *src;
 | |
|     wxWindow *dest;
 | |
|     src = (wxLEDNumberCtrl *) ptr;
 | |
|     dest = (wxWindow *) src;
 | |
|     return (void *) dest;
 | |
| }
 | |
| 
 | |
| static void *SwigwxLEDNumberCtrlTowxEvtHandler(void *ptr) {
 | |
|     wxLEDNumberCtrl *src;
 | |
|     wxEvtHandler *dest;
 | |
|     src = (wxLEDNumberCtrl *) ptr;
 | |
|     dest = (wxEvtHandler *) src;
 | |
|     return (void *) dest;
 | |
| }
 | |
| 
 | |
| static void *SwigwxLEDNumberCtrlTowxObject(void *ptr) {
 | |
|     wxLEDNumberCtrl *src;
 | |
|     wxObject *dest;
 | |
|     src = (wxLEDNumberCtrl *) ptr;
 | |
|     dest = (wxObject *) src;
 | |
|     return (void *) dest;
 | |
| }
 | |
| 
 | |
| #define new_wxLEDNumberCtrl(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4) (new wxLEDNumberCtrl(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4))
 | |
| static PyObject *_wrap_new_wxLEDNumberCtrl(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     wxLEDNumberCtrl * _result;
 | |
|     wxWindow * _arg0;
 | |
|     wxWindowID  _arg1 = (wxWindowID ) -1;
 | |
|     wxPoint * _arg2 = (wxPoint *) &wxDefaultPosition;
 | |
|     wxSize * _arg3 = (wxSize *) &wxDefaultSize;
 | |
|     long  _arg4 = (long ) (wxLED_ALIGN_LEFT)|(wxLED_DRAW_FADED);
 | |
|     PyObject * _argo0 = 0;
 | |
|     wxPoint  temp;
 | |
|     PyObject * _obj2 = 0;
 | |
|     wxSize  temp0;
 | |
|     PyObject * _obj3 = 0;
 | |
|     char *_kwnames[] = { "parent","id","pos","size","style", NULL };
 | |
|     char _ptemp[128];
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|iOOl:new_wxLEDNumberCtrl",_kwnames,&_argo0,&_arg1,&_obj2,&_obj3,&_arg4)) 
 | |
|         return NULL;
 | |
|     if (_argo0) {
 | |
|         if (_argo0 == Py_None) { _arg0 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxWindow_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of new_wxLEDNumberCtrl. Expected _wxWindow_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
|     if (_obj2)
 | |
| {
 | |
|     _arg2 = &temp;
 | |
|     if (! wxPoint_helper(_obj2, &_arg2))
 | |
|         return NULL;
 | |
| }
 | |
|     if (_obj3)
 | |
| {
 | |
|     _arg3 = &temp0;
 | |
|     if (! wxSize_helper(_obj3, &_arg3))
 | |
|         return NULL;
 | |
| }
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     _result = (wxLEDNumberCtrl *)new_wxLEDNumberCtrl(_arg0,_arg1,*_arg2,*_arg3,_arg4);
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }    if (_result) {
 | |
|         SWIG_MakePtr(_ptemp, (char *) _result,"_wxLEDNumberCtrl_p");
 | |
|         _resultobj = Py_BuildValue("s",_ptemp);
 | |
|     } else {
 | |
|         Py_INCREF(Py_None);
 | |
|         _resultobj = Py_None;
 | |
|     }
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| #define new_wxPreLEDNumberCtrl() (new wxLEDNumberCtrl())
 | |
| static PyObject *_wrap_new_wxPreLEDNumberCtrl(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     wxLEDNumberCtrl * _result;
 | |
|     char *_kwnames[] = {  NULL };
 | |
|     char _ptemp[128];
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxPreLEDNumberCtrl",_kwnames)) 
 | |
|         return NULL;
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     _result = (wxLEDNumberCtrl *)new_wxPreLEDNumberCtrl();
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }    if (_result) {
 | |
|         SWIG_MakePtr(_ptemp, (char *) _result,"_wxLEDNumberCtrl_p");
 | |
|         _resultobj = Py_BuildValue("s",_ptemp);
 | |
|     } else {
 | |
|         Py_INCREF(Py_None);
 | |
|         _resultobj = Py_None;
 | |
|     }
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| #define wxLEDNumberCtrl_Create(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4)  (_swigobj->Create(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4))
 | |
| static PyObject *_wrap_wxLEDNumberCtrl_Create(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     bool  _result;
 | |
|     wxLEDNumberCtrl * _arg0;
 | |
|     wxWindow * _arg1;
 | |
|     wxWindowID  _arg2 = (wxWindowID ) -1;
 | |
|     wxPoint * _arg3 = (wxPoint *) &wxDefaultPosition;
 | |
|     wxSize * _arg4 = (wxSize *) &wxDefaultSize;
 | |
|     long  _arg5 = (long ) (wxLED_ALIGN_LEFT)|(wxLED_DRAW_FADED);
 | |
|     PyObject * _argo0 = 0;
 | |
|     PyObject * _argo1 = 0;
 | |
|     wxPoint  temp;
 | |
|     PyObject * _obj3 = 0;
 | |
|     wxSize  temp0;
 | |
|     PyObject * _obj4 = 0;
 | |
|     char *_kwnames[] = { "self","parent","id","pos","size","style", NULL };
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|iOOl:wxLEDNumberCtrl_Create",_kwnames,&_argo0,&_argo1,&_arg2,&_obj3,&_obj4,&_arg5)) 
 | |
|         return NULL;
 | |
|     if (_argo0) {
 | |
|         if (_argo0 == Py_None) { _arg0 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxLEDNumberCtrl_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxLEDNumberCtrl_Create. Expected _wxLEDNumberCtrl_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
|     if (_argo1) {
 | |
|         if (_argo1 == Py_None) { _arg1 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxWindow_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxLEDNumberCtrl_Create. Expected _wxWindow_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
|     if (_obj3)
 | |
| {
 | |
|     _arg3 = &temp;
 | |
|     if (! wxPoint_helper(_obj3, &_arg3))
 | |
|         return NULL;
 | |
| }
 | |
|     if (_obj4)
 | |
| {
 | |
|     _arg4 = &temp0;
 | |
|     if (! wxSize_helper(_obj4, &_arg4))
 | |
|         return NULL;
 | |
| }
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     _result = (bool )wxLEDNumberCtrl_Create(_arg0,_arg1,_arg2,*_arg3,*_arg4,_arg5);
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }    _resultobj = Py_BuildValue("i",_result);
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| #define wxLEDNumberCtrl_GetAlignment(_swigobj)  (_swigobj->GetAlignment())
 | |
| static PyObject *_wrap_wxLEDNumberCtrl_GetAlignment(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     wxLEDValueAlign  _result;
 | |
|     wxLEDNumberCtrl * _arg0;
 | |
|     PyObject * _argo0 = 0;
 | |
|     char *_kwnames[] = { "self", NULL };
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxLEDNumberCtrl_GetAlignment",_kwnames,&_argo0)) 
 | |
|         return NULL;
 | |
|     if (_argo0) {
 | |
|         if (_argo0 == Py_None) { _arg0 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxLEDNumberCtrl_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxLEDNumberCtrl_GetAlignment. Expected _wxLEDNumberCtrl_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     _result = (wxLEDValueAlign )wxLEDNumberCtrl_GetAlignment(_arg0);
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }    _resultobj = Py_BuildValue("i",_result);
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| #define wxLEDNumberCtrl_GetDrawFaded(_swigobj)  (_swigobj->GetDrawFaded())
 | |
| static PyObject *_wrap_wxLEDNumberCtrl_GetDrawFaded(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     bool  _result;
 | |
|     wxLEDNumberCtrl * _arg0;
 | |
|     PyObject * _argo0 = 0;
 | |
|     char *_kwnames[] = { "self", NULL };
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxLEDNumberCtrl_GetDrawFaded",_kwnames,&_argo0)) 
 | |
|         return NULL;
 | |
|     if (_argo0) {
 | |
|         if (_argo0 == Py_None) { _arg0 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxLEDNumberCtrl_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxLEDNumberCtrl_GetDrawFaded. Expected _wxLEDNumberCtrl_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     _result = (bool )wxLEDNumberCtrl_GetDrawFaded(_arg0);
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }    _resultobj = Py_BuildValue("i",_result);
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| #define wxLEDNumberCtrl_GetValue(_swigobj)  (_swigobj->GetValue())
 | |
| static PyObject *_wrap_wxLEDNumberCtrl_GetValue(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     wxString * _result;
 | |
|     wxLEDNumberCtrl * _arg0;
 | |
|     PyObject * _argo0 = 0;
 | |
|     char *_kwnames[] = { "self", NULL };
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxLEDNumberCtrl_GetValue",_kwnames,&_argo0)) 
 | |
|         return NULL;
 | |
|     if (_argo0) {
 | |
|         if (_argo0 == Py_None) { _arg0 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxLEDNumberCtrl_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxLEDNumberCtrl_GetValue. Expected _wxLEDNumberCtrl_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     const wxString & _result_ref = wxLEDNumberCtrl_GetValue(_arg0);
 | |
|     _result = (wxString *) &_result_ref;
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }{
 | |
| #if wxUSE_UNICODE
 | |
|     _resultobj = PyUnicode_FromWideChar(_result->c_str(), _result->Len());
 | |
| #else
 | |
|     _resultobj = PyString_FromStringAndSize(_result->c_str(), _result->Len());
 | |
| #endif
 | |
| }
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| #define wxLEDNumberCtrl_SetAlignment(_swigobj,_swigarg0,_swigarg1)  (_swigobj->SetAlignment(_swigarg0,_swigarg1))
 | |
| static PyObject *_wrap_wxLEDNumberCtrl_SetAlignment(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     wxLEDNumberCtrl * _arg0;
 | |
|     wxLEDValueAlign  _arg1;
 | |
|     bool  _arg2 = (bool ) true;
 | |
|     PyObject * _argo0 = 0;
 | |
|     int tempbool2 = (int) true;
 | |
|     char *_kwnames[] = { "self","Alignment","Redraw", NULL };
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi|i:wxLEDNumberCtrl_SetAlignment",_kwnames,&_argo0,&_arg1,&tempbool2)) 
 | |
|         return NULL;
 | |
|     if (_argo0) {
 | |
|         if (_argo0 == Py_None) { _arg0 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxLEDNumberCtrl_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxLEDNumberCtrl_SetAlignment. Expected _wxLEDNumberCtrl_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
|     _arg2 = (bool ) tempbool2;
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     wxLEDNumberCtrl_SetAlignment(_arg0,_arg1,_arg2);
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }    Py_INCREF(Py_None);
 | |
|     _resultobj = Py_None;
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| #define wxLEDNumberCtrl_SetDrawFaded(_swigobj,_swigarg0,_swigarg1)  (_swigobj->SetDrawFaded(_swigarg0,_swigarg1))
 | |
| static PyObject *_wrap_wxLEDNumberCtrl_SetDrawFaded(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     wxLEDNumberCtrl * _arg0;
 | |
|     bool  _arg1;
 | |
|     bool  _arg2 = (bool ) true;
 | |
|     PyObject * _argo0 = 0;
 | |
|     int tempbool1;
 | |
|     int tempbool2 = (int) true;
 | |
|     char *_kwnames[] = { "self","DrawFaded","Redraw", NULL };
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi|i:wxLEDNumberCtrl_SetDrawFaded",_kwnames,&_argo0,&tempbool1,&tempbool2)) 
 | |
|         return NULL;
 | |
|     if (_argo0) {
 | |
|         if (_argo0 == Py_None) { _arg0 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxLEDNumberCtrl_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxLEDNumberCtrl_SetDrawFaded. Expected _wxLEDNumberCtrl_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
|     _arg1 = (bool ) tempbool1;
 | |
|     _arg2 = (bool ) tempbool2;
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     wxLEDNumberCtrl_SetDrawFaded(_arg0,_arg1,_arg2);
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }    Py_INCREF(Py_None);
 | |
|     _resultobj = Py_None;
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| #define wxLEDNumberCtrl_SetValue(_swigobj,_swigarg0,_swigarg1)  (_swigobj->SetValue(_swigarg0,_swigarg1))
 | |
| static PyObject *_wrap_wxLEDNumberCtrl_SetValue(PyObject *self, PyObject *args, PyObject *kwargs) {
 | |
|     PyObject * _resultobj;
 | |
|     wxLEDNumberCtrl * _arg0;
 | |
|     wxString * _arg1;
 | |
|     bool  _arg2 = (bool ) true;
 | |
|     PyObject * _argo0 = 0;
 | |
|     PyObject * _obj1 = 0;
 | |
|     int tempbool2 = (int) true;
 | |
|     char *_kwnames[] = { "self","Value","Redraw", NULL };
 | |
| 
 | |
|     self = self;
 | |
|     if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|i:wxLEDNumberCtrl_SetValue",_kwnames,&_argo0,&_obj1,&tempbool2)) 
 | |
|         return NULL;
 | |
|     if (_argo0) {
 | |
|         if (_argo0 == Py_None) { _arg0 = NULL; }
 | |
|         else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxLEDNumberCtrl_p")) {
 | |
|             PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxLEDNumberCtrl_SetValue. Expected _wxLEDNumberCtrl_p.");
 | |
|         return NULL;
 | |
|         }
 | |
|     }
 | |
| {
 | |
|     _arg1 = wxString_in_helper(_obj1);
 | |
|     if (_arg1 == NULL)
 | |
|         return NULL;
 | |
| }
 | |
|     _arg2 = (bool ) tempbool2;
 | |
| {
 | |
|     PyThreadState* __tstate = wxPyBeginAllowThreads();
 | |
|     wxLEDNumberCtrl_SetValue(_arg0,*_arg1,_arg2);
 | |
| 
 | |
|     wxPyEndAllowThreads(__tstate);
 | |
|     if (PyErr_Occurred()) return NULL;
 | |
| }    Py_INCREF(Py_None);
 | |
|     _resultobj = Py_None;
 | |
| {
 | |
|     if (_obj1)
 | |
|         delete _arg1;
 | |
| }
 | |
|     return _resultobj;
 | |
| }
 | |
| 
 | |
| static PyMethodDef gizmoscMethods[] = {
 | |
| 	 { "wxLEDNumberCtrl_SetValue", (PyCFunction) _wrap_wxLEDNumberCtrl_SetValue, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "wxLEDNumberCtrl_SetDrawFaded", (PyCFunction) _wrap_wxLEDNumberCtrl_SetDrawFaded, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "wxLEDNumberCtrl_SetAlignment", (PyCFunction) _wrap_wxLEDNumberCtrl_SetAlignment, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "wxLEDNumberCtrl_GetValue", (PyCFunction) _wrap_wxLEDNumberCtrl_GetValue, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "wxLEDNumberCtrl_GetDrawFaded", (PyCFunction) _wrap_wxLEDNumberCtrl_GetDrawFaded, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "wxLEDNumberCtrl_GetAlignment", (PyCFunction) _wrap_wxLEDNumberCtrl_GetAlignment, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "wxLEDNumberCtrl_Create", (PyCFunction) _wrap_wxLEDNumberCtrl_Create, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "new_wxPreLEDNumberCtrl", (PyCFunction) _wrap_new_wxPreLEDNumberCtrl, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "new_wxLEDNumberCtrl", (PyCFunction) _wrap_new_wxLEDNumberCtrl, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "new_wxSplitterScrolledWindow", (PyCFunction) _wrap_new_wxSplitterScrolledWindow, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "new_wxThinSplitterWindow", (PyCFunction) _wrap_new_wxThinSplitterWindow, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "wxTreeCompanionWindow_SetTreeCtrl", (PyCFunction) _wrap_wxTreeCompanionWindow_SetTreeCtrl, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "wxTreeCompanionWindow_GetTreeCtrl", (PyCFunction) _wrap_wxTreeCompanionWindow_GetTreeCtrl, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "wxTreeCompanionWindow__setCallbackInfo", (PyCFunction) _wrap_wxTreeCompanionWindow__setCallbackInfo, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "new_wxTreeCompanionWindow", (PyCFunction) _wrap_new_wxTreeCompanionWindow, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "wxRemotelyScrolledTreeCtrl_GetCompanionWindow", (PyCFunction) _wrap_wxRemotelyScrolledTreeCtrl_GetCompanionWindow, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "wxRemotelyScrolledTreeCtrl_SetCompanionWindow", (PyCFunction) _wrap_wxRemotelyScrolledTreeCtrl_SetCompanionWindow, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "wxRemotelyScrolledTreeCtrl_ScrollToLine", (PyCFunction) _wrap_wxRemotelyScrolledTreeCtrl_ScrollToLine, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "wxRemotelyScrolledTreeCtrl_GetScrolledWindow", (PyCFunction) _wrap_wxRemotelyScrolledTreeCtrl_GetScrolledWindow, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "wxRemotelyScrolledTreeCtrl_AdjustRemoteScrollbars", (PyCFunction) _wrap_wxRemotelyScrolledTreeCtrl_AdjustRemoteScrollbars, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "wxRemotelyScrolledTreeCtrl_HideVScrollbar", (PyCFunction) _wrap_wxRemotelyScrolledTreeCtrl_HideVScrollbar, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "new_wxRemotelyScrolledTreeCtrl", (PyCFunction) _wrap_new_wxRemotelyScrolledTreeCtrl, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "wxEditableListBox_GetEditButton", (PyCFunction) _wrap_wxEditableListBox_GetEditButton, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "wxEditableListBox_GetDownButton", (PyCFunction) _wrap_wxEditableListBox_GetDownButton, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "wxEditableListBox_GetUpButton", (PyCFunction) _wrap_wxEditableListBox_GetUpButton, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "wxEditableListBox_GetNewButton", (PyCFunction) _wrap_wxEditableListBox_GetNewButton, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "wxEditableListBox_GetDelButton", (PyCFunction) _wrap_wxEditableListBox_GetDelButton, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "wxEditableListBox_GetListCtrl", (PyCFunction) _wrap_wxEditableListBox_GetListCtrl, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "wxEditableListBox_GetStrings", (PyCFunction) _wrap_wxEditableListBox_GetStrings, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "wxEditableListBox_SetStrings", (PyCFunction) _wrap_wxEditableListBox_SetStrings, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "new_wxEditableListBox", (PyCFunction) _wrap_new_wxEditableListBox, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "wxDynamicSashWindow_GetVScrollBar", (PyCFunction) _wrap_wxDynamicSashWindow_GetVScrollBar, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "wxDynamicSashWindow_GetHScrollBar", (PyCFunction) _wrap_wxDynamicSashWindow_GetHScrollBar, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "wxDynamicSashWindow_Create", (PyCFunction) _wrap_wxDynamicSashWindow_Create, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "new_wxPreDynamicSashWindow", (PyCFunction) _wrap_new_wxPreDynamicSashWindow, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "new_wxDynamicSashWindow", (PyCFunction) _wrap_new_wxDynamicSashWindow, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "new_wxDynamicSashUnifyEvent", (PyCFunction) _wrap_new_wxDynamicSashUnifyEvent, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { "new_wxDynamicSashSplitEvent", (PyCFunction) _wrap_new_wxDynamicSashSplitEvent, METH_VARARGS | METH_KEYWORDS },
 | |
| 	 { NULL, NULL }
 | |
| };
 | |
| #ifdef __cplusplus
 | |
| }
 | |
| #endif
 | |
| /*
 | |
|  * This table is used by the pointer type-checker
 | |
|  */
 | |
| static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
 | |
|     { "_wxEvent","_wxDynamicSashUnifyEvent",SwigwxDynamicSashUnifyEventTowxEvent},
 | |
|     { "_wxEvent","_wxDynamicSashSplitEvent",SwigwxDynamicSashSplitEventTowxEvent},
 | |
|     { "_signed_long","_long",0},
 | |
|     { "_wxPrintQuality","_wxCoord",0},
 | |
|     { "_wxPrintQuality","_int",0},
 | |
|     { "_wxPrintQuality","_signed_int",0},
 | |
|     { "_wxPrintQuality","_unsigned_int",0},
 | |
|     { "_wxPrintQuality","_wxWindowID",0},
 | |
|     { "_wxPrintQuality","_uint",0},
 | |
|     { "_wxPrintQuality","_EBool",0},
 | |
|     { "_wxPrintQuality","_size_t",0},
 | |
|     { "_wxPrintQuality","_time_t",0},
 | |
|     { "_wxPyTreeCtrl","_wxRemotelyScrolledTreeCtrl",SwigwxRemotelyScrolledTreeCtrlTowxPyTreeCtrl},
 | |
|     { "_byte","_unsigned_char",0},
 | |
|     { "_long","_unsigned_long",0},
 | |
|     { "_long","_signed_long",0},
 | |
|     { "_size_t","_wxCoord",0},
 | |
|     { "_size_t","_wxPrintQuality",0},
 | |
|     { "_size_t","_time_t",0},
 | |
|     { "_size_t","_unsigned_int",0},
 | |
|     { "_size_t","_int",0},
 | |
|     { "_size_t","_wxWindowID",0},
 | |
|     { "_size_t","_uint",0},
 | |
|     { "_wxPanel","_wxSplitterScrolledWindow",SwigwxSplitterScrolledWindowTowxPanel},
 | |
|     { "_wxPanel","_wxEditableListBox",SwigwxEditableListBoxTowxPanel},
 | |
|     { "_uint","_wxCoord",0},
 | |
|     { "_uint","_wxPrintQuality",0},
 | |
|     { "_uint","_time_t",0},
 | |
|     { "_uint","_size_t",0},
 | |
|     { "_uint","_unsigned_int",0},
 | |
|     { "_uint","_int",0},
 | |
|     { "_uint","_wxWindowID",0},
 | |
|     { "_wxChar","_char",0},
 | |
|     { "_wxCommandEvent","_wxDynamicSashUnifyEvent",SwigwxDynamicSashUnifyEventTowxCommandEvent},
 | |
|     { "_wxCommandEvent","_wxDynamicSashSplitEvent",SwigwxDynamicSashSplitEventTowxCommandEvent},
 | |
|     { "_char","_wxChar",0},
 | |
|     { "_struct_wxNativeFontInfo","_wxNativeFontInfo",0},
 | |
|     { "_EBool","_wxCoord",0},
 | |
|     { "_EBool","_wxPrintQuality",0},
 | |
|     { "_EBool","_signed_int",0},
 | |
|     { "_EBool","_int",0},
 | |
|     { "_EBool","_wxWindowID",0},
 | |
|     { "_unsigned_long","_long",0},
 | |
|     { "_wxNativeFontInfo","_struct_wxNativeFontInfo",0},
 | |
|     { "_signed_int","_wxCoord",0},
 | |
|     { "_signed_int","_wxPrintQuality",0},
 | |
|     { "_signed_int","_EBool",0},
 | |
|     { "_signed_int","_wxWindowID",0},
 | |
|     { "_signed_int","_int",0},
 | |
|     { "_WXTYPE","_wxDateTime_t",0},
 | |
|     { "_WXTYPE","_short",0},
 | |
|     { "_WXTYPE","_signed_short",0},
 | |
|     { "_WXTYPE","_unsigned_short",0},
 | |
|     { "_unsigned_short","_wxDateTime_t",0},
 | |
|     { "_unsigned_short","_WXTYPE",0},
 | |
|     { "_unsigned_short","_short",0},
 | |
|     { "_wxSplitterWindow","_wxThinSplitterWindow",SwigwxThinSplitterWindowTowxSplitterWindow},
 | |
|     { "_wxObject","_wxLEDNumberCtrl",SwigwxLEDNumberCtrlTowxObject},
 | |
|     { "_wxObject","_wxSplitterScrolledWindow",SwigwxSplitterScrolledWindowTowxObject},
 | |
|     { "_wxObject","_wxThinSplitterWindow",SwigwxThinSplitterWindowTowxObject},
 | |
|     { "_wxObject","_wxPyTreeCompanionWindow",SwigwxPyTreeCompanionWindowTowxObject},
 | |
|     { "_wxObject","_wxRemotelyScrolledTreeCtrl",SwigwxRemotelyScrolledTreeCtrlTowxObject},
 | |
|     { "_wxObject","_wxEditableListBox",SwigwxEditableListBoxTowxObject},
 | |
|     { "_wxObject","_wxDynamicSashWindow",SwigwxDynamicSashWindowTowxObject},
 | |
|     { "_wxObject","_wxDynamicSashUnifyEvent",SwigwxDynamicSashUnifyEventTowxObject},
 | |
|     { "_wxObject","_wxDynamicSashSplitEvent",SwigwxDynamicSashSplitEventTowxObject},
 | |
|     { "_signed_short","_WXTYPE",0},
 | |
|     { "_signed_short","_short",0},
 | |
|     { "_wxScrolledWindow","_wxSplitterScrolledWindow",SwigwxSplitterScrolledWindowTowxScrolledWindow},
 | |
|     { "_unsigned_char","_byte",0},
 | |
|     { "_wxControl","_wxLEDNumberCtrl",SwigwxLEDNumberCtrlTowxControl},
 | |
|     { "_wxControl","_wxRemotelyScrolledTreeCtrl",SwigwxRemotelyScrolledTreeCtrlTowxControl},
 | |
|     { "_unsigned_int","_wxCoord",0},
 | |
|     { "_unsigned_int","_wxPrintQuality",0},
 | |
|     { "_unsigned_int","_time_t",0},
 | |
|     { "_unsigned_int","_size_t",0},
 | |
|     { "_unsigned_int","_uint",0},
 | |
|     { "_unsigned_int","_wxWindowID",0},
 | |
|     { "_unsigned_int","_int",0},
 | |
|     { "_short","_wxDateTime_t",0},
 | |
|     { "_short","_WXTYPE",0},
 | |
|     { "_short","_unsigned_short",0},
 | |
|     { "_short","_signed_short",0},
 | |
|     { "_wxWindowID","_wxCoord",0},
 | |
|     { "_wxWindowID","_wxPrintQuality",0},
 | |
|     { "_wxWindowID","_time_t",0},
 | |
|     { "_wxWindowID","_size_t",0},
 | |
|     { "_wxWindowID","_EBool",0},
 | |
|     { "_wxWindowID","_uint",0},
 | |
|     { "_wxWindowID","_int",0},
 | |
|     { "_wxWindowID","_signed_int",0},
 | |
|     { "_wxWindowID","_unsigned_int",0},
 | |
|     { "_int","_wxCoord",0},
 | |
|     { "_int","_wxPrintQuality",0},
 | |
|     { "_int","_time_t",0},
 | |
|     { "_int","_size_t",0},
 | |
|     { "_int","_EBool",0},
 | |
|     { "_int","_uint",0},
 | |
|     { "_int","_wxWindowID",0},
 | |
|     { "_int","_unsigned_int",0},
 | |
|     { "_int","_signed_int",0},
 | |
|     { "_wxDateTime_t","_unsigned_short",0},
 | |
|     { "_wxDateTime_t","_short",0},
 | |
|     { "_wxDateTime_t","_WXTYPE",0},
 | |
|     { "_time_t","_wxCoord",0},
 | |
|     { "_time_t","_wxPrintQuality",0},
 | |
|     { "_time_t","_unsigned_int",0},
 | |
|     { "_time_t","_int",0},
 | |
|     { "_time_t","_wxWindowID",0},
 | |
|     { "_time_t","_uint",0},
 | |
|     { "_time_t","_size_t",0},
 | |
|     { "_wxCoord","_int",0},
 | |
|     { "_wxCoord","_signed_int",0},
 | |
|     { "_wxCoord","_unsigned_int",0},
 | |
|     { "_wxCoord","_wxWindowID",0},
 | |
|     { "_wxCoord","_uint",0},
 | |
|     { "_wxCoord","_EBool",0},
 | |
|     { "_wxCoord","_size_t",0},
 | |
|     { "_wxCoord","_time_t",0},
 | |
|     { "_wxCoord","_wxPrintQuality",0},
 | |
|     { "_wxEvtHandler","_wxLEDNumberCtrl",SwigwxLEDNumberCtrlTowxEvtHandler},
 | |
|     { "_wxEvtHandler","_wxSplitterScrolledWindow",SwigwxSplitterScrolledWindowTowxEvtHandler},
 | |
|     { "_wxEvtHandler","_wxThinSplitterWindow",SwigwxThinSplitterWindowTowxEvtHandler},
 | |
|     { "_wxEvtHandler","_wxPyTreeCompanionWindow",SwigwxPyTreeCompanionWindowTowxEvtHandler},
 | |
|     { "_wxEvtHandler","_wxRemotelyScrolledTreeCtrl",SwigwxRemotelyScrolledTreeCtrlTowxEvtHandler},
 | |
|     { "_wxEvtHandler","_wxEditableListBox",SwigwxEditableListBoxTowxEvtHandler},
 | |
|     { "_wxEvtHandler","_wxDynamicSashWindow",SwigwxDynamicSashWindowTowxEvtHandler},
 | |
|     { "_wxWindow","_wxLEDNumberCtrl",SwigwxLEDNumberCtrlTowxWindow},
 | |
|     { "_wxWindow","_wxSplitterScrolledWindow",SwigwxSplitterScrolledWindowTowxWindow},
 | |
|     { "_wxWindow","_wxThinSplitterWindow",SwigwxThinSplitterWindowTowxWindow},
 | |
|     { "_wxWindow","_wxPyTreeCompanionWindow",SwigwxPyTreeCompanionWindowTowxWindow},
 | |
|     { "_wxWindow","_wxRemotelyScrolledTreeCtrl",SwigwxRemotelyScrolledTreeCtrlTowxWindow},
 | |
|     { "_wxWindow","_wxEditableListBox",SwigwxEditableListBoxTowxWindow},
 | |
|     { "_wxWindow","_wxDynamicSashWindow",SwigwxDynamicSashWindowTowxWindow},
 | |
| {0,0,0}};
 | |
| 
 | |
| static PyObject *SWIG_globals;
 | |
| #ifdef __cplusplus
 | |
| extern "C" 
 | |
| #endif
 | |
| SWIGEXPORT(void) initgizmosc() {
 | |
| 	 PyObject *m, *d;
 | |
| 	 SWIG_globals = SWIG_newvarlink();
 | |
| 	 m = Py_InitModule("gizmosc", gizmoscMethods);
 | |
| 	 d = PyModule_GetDict(m);
 | |
| 	 PyDict_SetItemString(d,"wxEVT_DYNAMIC_SASH_SPLIT", PyInt_FromLong((long) wxEVT_DYNAMIC_SASH_SPLIT));
 | |
| 	 PyDict_SetItemString(d,"wxEVT_DYNAMIC_SASH_UNIFY", PyInt_FromLong((long) wxEVT_DYNAMIC_SASH_UNIFY));
 | |
| 	 PyDict_SetItemString(d,"wxDS_MANAGE_SCROLLBARS", PyInt_FromLong((long) wxDS_MANAGE_SCROLLBARS));
 | |
| 	 PyDict_SetItemString(d,"wxDS_DRAG_CORNER", PyInt_FromLong((long) wxDS_DRAG_CORNER));
 | |
| 	 PyDict_SetItemString(d,"wxEL_ALLOW_NEW", PyInt_FromLong((long) wxEL_ALLOW_NEW));
 | |
| 	 PyDict_SetItemString(d,"wxEL_ALLOW_EDIT", PyInt_FromLong((long) wxEL_ALLOW_EDIT));
 | |
| 	 PyDict_SetItemString(d,"wxEL_ALLOW_DELETE", PyInt_FromLong((long) wxEL_ALLOW_DELETE));
 | |
| 	 PyDict_SetItemString(d,"wxLED_ALIGN_LEFT", PyInt_FromLong((long) wxLED_ALIGN_LEFT));
 | |
| 	 PyDict_SetItemString(d,"wxLED_ALIGN_RIGHT", PyInt_FromLong((long) wxLED_ALIGN_RIGHT));
 | |
| 	 PyDict_SetItemString(d,"wxLED_ALIGN_CENTER", PyInt_FromLong((long) wxLED_ALIGN_CENTER));
 | |
| 	 PyDict_SetItemString(d,"wxLED_ALIGN_MASK", PyInt_FromLong((long) wxLED_ALIGN_MASK));
 | |
| 	 PyDict_SetItemString(d,"wxLED_DRAW_FADED", PyInt_FromLong((long) wxLED_DRAW_FADED));
 | |
| 
 | |
| 
 | |
|     wxClassInfo::CleanUpClasses();
 | |
|     wxClassInfo::InitializeClasses();
 | |
| 
 | |
|     wxPyPtrTypeMap_Add("wxTreeCompanionWindow", "wxPyTreeCompanionWindow");
 | |
| {
 | |
|    int i;
 | |
|    for (i = 0; _swig_mapping[i].n1; i++)
 | |
|         SWIG_RegisterMapping(_swig_mapping[i].n1,_swig_mapping[i].n2,_swig_mapping[i].pcnv);
 | |
| }
 | |
| }
 |