wxPython updates for wxGTK
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4430 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -197,9 +197,12 @@ class TestPanel(wxPanel):
|
|||||||
self.SetAutoLayout(true)
|
self.SetAutoLayout(true)
|
||||||
sizer = wxBoxSizer(wxVERTICAL)
|
sizer = wxBoxSizer(wxVERTICAL)
|
||||||
|
|
||||||
|
msg = "Custom Drag-And-Drop"
|
||||||
text = wxStaticText(self, -1, "", style=wxALIGN_CENTRE)
|
text = wxStaticText(self, -1, "", style=wxALIGN_CENTRE)
|
||||||
text.SetFont(wxFont(24, wxSWISS, wxNORMAL, wxBOLD, false))
|
text.SetFont(wxFont(24, wxSWISS, wxNORMAL, wxBOLD, false))
|
||||||
text.SetLabel("Custom Drag-And-Drop")
|
text.SetLabel(msg)
|
||||||
|
w,h = text.GetTextExtent(msg)
|
||||||
|
text.SetSize(wxSize(w,h+1))
|
||||||
text.SetForegroundColour(wxBLUE)
|
text.SetForegroundColour(wxBLUE)
|
||||||
sizer.Add(text, 0, wxEXPAND|wxALL, 5)
|
sizer.Add(text, 0, wxEXPAND|wxALL, 5)
|
||||||
sizer.Add(wxStaticLine(self, -1), 0, wxEXPAND)
|
sizer.Add(wxStaticLine(self, -1), 0, wxEXPAND)
|
||||||
|
@@ -149,9 +149,12 @@ class TestPanel(wxPanel):
|
|||||||
self.SetAutoLayout(true)
|
self.SetAutoLayout(true)
|
||||||
outsideSizer = wxBoxSizer(wxVERTICAL)
|
outsideSizer = wxBoxSizer(wxVERTICAL)
|
||||||
|
|
||||||
|
msg = "Clipboard / Drag-And-Drop"
|
||||||
text = wxStaticText(self, -1, "", style=wxALIGN_CENTRE)
|
text = wxStaticText(self, -1, "", style=wxALIGN_CENTRE)
|
||||||
text.SetFont(wxFont(24, wxSWISS, wxNORMAL, wxBOLD, false))
|
text.SetFont(wxFont(24, wxSWISS, wxNORMAL, wxBOLD, false))
|
||||||
text.SetLabel("Clipboard / Drag-And-Drop")
|
text.SetLabel(msg)
|
||||||
|
w,h = text.GetTextExtent(msg)
|
||||||
|
text.SetSize(wxSize(w,h+1))
|
||||||
text.SetForegroundColour(wxBLUE)
|
text.SetForegroundColour(wxBLUE)
|
||||||
outsideSizer.Add(text, 0, wxEXPAND|wxALL, 5)
|
outsideSizer.Add(text, 0, wxEXPAND|wxALL, 5)
|
||||||
outsideSizer.Add(wxStaticLine(self, -1), 0, wxEXPAND)
|
outsideSizer.Add(wxStaticLine(self, -1), 0, wxEXPAND)
|
||||||
|
@@ -400,12 +400,17 @@ bool wxIsDragResultOk(wxDragResult res);
|
|||||||
%{
|
%{
|
||||||
class wxPyDropSource : public wxDropSource {
|
class wxPyDropSource : public wxDropSource {
|
||||||
public:
|
public:
|
||||||
|
#ifdef __WXMSW__
|
||||||
wxPyDropSource(wxWindow *win = NULL,
|
wxPyDropSource(wxWindow *win = NULL,
|
||||||
const wxCursor &cursorCopy = wxNullCursor,
|
const wxCursor &cursorCopy = wxNullCursor,
|
||||||
const wxCursor &cursorMove = wxNullCursor,
|
const wxCursor &cursorMove = wxNullCursor,
|
||||||
const wxCursor &cursorStop = wxNullCursor)
|
const wxCursor &cursorStop = wxNullCursor)
|
||||||
: wxDropSource(win, cursorCopy, cursorMove, cursorStop) {}
|
: wxDropSource(win, cursorCopy, cursorMove, cursorStop) {}
|
||||||
|
#else
|
||||||
|
wxPyDropSource(wxWindow *win = NULL,
|
||||||
|
const wxIcon &go = wxNullIcon)
|
||||||
|
: wxDropSource(win, go) {}
|
||||||
|
#endif
|
||||||
DEC_PYCALLBACK_BOOL_DR(GiveFeedback);
|
DEC_PYCALLBACK_BOOL_DR(GiveFeedback);
|
||||||
PYPRIVATE;
|
PYPRIVATE;
|
||||||
};
|
};
|
||||||
@@ -417,10 +422,16 @@ IMP_PYCALLBACK_BOOL_DR(wxPyDropSource, wxDropSource, GiveFeedback);
|
|||||||
|
|
||||||
%name(wxDropSource) class wxPyDropSource {
|
%name(wxDropSource) class wxPyDropSource {
|
||||||
public:
|
public:
|
||||||
|
#ifdef __WXMSW__
|
||||||
wxPyDropSource(wxWindow *win = NULL,
|
wxPyDropSource(wxWindow *win = NULL,
|
||||||
const wxCursor &cursorCopy = wxNullCursor,
|
const wxCursor &cursorCopy = wxNullCursor,
|
||||||
const wxCursor &cursorMove = wxNullCursor,
|
const wxCursor &cursorMove = wxNullCursor,
|
||||||
const wxCursor &cursorStop = wxNullCursor);
|
const wxCursor &cursorStop = wxNullCursor);
|
||||||
|
#else
|
||||||
|
wxPyDropSource(wxWindow *win = NULL,
|
||||||
|
const wxIcon &go = wxNullIcon);
|
||||||
|
#endif
|
||||||
|
|
||||||
void _setSelf(PyObject* self);
|
void _setSelf(PyObject* self);
|
||||||
%pragma(python) addtomethod = "__init__:self._setSelf(self)"
|
%pragma(python) addtomethod = "__init__:self._setSelf(self)"
|
||||||
~wxPyDropSource();
|
~wxPyDropSource();
|
||||||
|
@@ -454,9 +454,9 @@ public:
|
|||||||
bool IsBold(const wxTreeItemId& item) const;
|
bool IsBold(const wxTreeItemId& item) const;
|
||||||
wxTreeItemId HitTest(const wxPoint& point);
|
wxTreeItemId HitTest(const wxPoint& point);
|
||||||
|
|
||||||
|
#ifdef __WXMSW__
|
||||||
void SetItemDropHighlight(const wxTreeItemId& item, int highlight = TRUE);
|
void SetItemDropHighlight(const wxTreeItemId& item, int highlight = TRUE);
|
||||||
|
|
||||||
#ifdef __WXMSW__
|
|
||||||
//bool GetBoundingRect(const wxTreeItemId& item, wxRect& rect, int textOnly = FALSE)
|
//bool GetBoundingRect(const wxTreeItemId& item, wxRect& rect, int textOnly = FALSE)
|
||||||
%addmethods {
|
%addmethods {
|
||||||
PyObject* GetBoundingRect(const wxTreeItemId& item, int textOnly = FALSE) {
|
PyObject* GetBoundingRect(const wxTreeItemId& item, int textOnly = FALSE) {
|
||||||
|
3596
utils/wxPython/src/gtk/clip_dnd.cpp
Normal file
3596
utils/wxPython/src/gtk/clip_dnd.cpp
Normal file
File diff suppressed because it is too large
Load Diff
506
utils/wxPython/src/gtk/clip_dnd.py
Normal file
506
utils/wxPython/src/gtk/clip_dnd.py
Normal file
@@ -0,0 +1,506 @@
|
|||||||
|
# This file was created automatically by SWIG.
|
||||||
|
import clip_dndc
|
||||||
|
|
||||||
|
from misc import *
|
||||||
|
|
||||||
|
from gdi import *
|
||||||
|
import wx
|
||||||
|
class wxDataFormatPtr :
|
||||||
|
def __init__(self,this):
|
||||||
|
self.this = this
|
||||||
|
self.thisown = 0
|
||||||
|
def __del__(self,clip_dndc=clip_dndc):
|
||||||
|
if self.thisown == 1 :
|
||||||
|
clip_dndc.delete_wxDataFormat(self)
|
||||||
|
def SetType(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxDataFormat_SetType,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def GetType(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxDataFormat_GetType,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def GetId(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxDataFormat_GetId,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def SetId(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxDataFormat_SetId,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def __repr__(self):
|
||||||
|
return "<C wxDataFormat instance at %s>" % (self.this,)
|
||||||
|
class wxDataFormat(wxDataFormatPtr):
|
||||||
|
def __init__(self,*_args,**_kwargs):
|
||||||
|
self.this = apply(clip_dndc.new_wxDataFormat,_args,_kwargs)
|
||||||
|
self.thisown = 1
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class wxDataObjectPtr :
|
||||||
|
Get = clip_dndc.wxDataObject_Get
|
||||||
|
Set = clip_dndc.wxDataObject_Set
|
||||||
|
Both = clip_dndc.wxDataObject_Both
|
||||||
|
def __init__(self,this):
|
||||||
|
self.this = this
|
||||||
|
self.thisown = 0
|
||||||
|
def __del__(self,clip_dndc=clip_dndc):
|
||||||
|
if self.thisown == 1 :
|
||||||
|
clip_dndc.delete_wxDataObject(self)
|
||||||
|
def GetPreferredFormat(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxDataObject_GetPreferredFormat,(self,) + _args, _kwargs)
|
||||||
|
if val: val = wxDataFormatPtr(val) ; val.thisown = 1
|
||||||
|
return val
|
||||||
|
def GetFormatCount(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxDataObject_GetFormatCount,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def GetAllFormats(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxDataObject_GetAllFormats,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def GetDataSize(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxDataObject_GetDataSize,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def GetDataHere(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxDataObject_GetDataHere,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def SetData(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxDataObject_SetData,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def IsSupportedFormat(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxDataObject_IsSupportedFormat,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def __repr__(self):
|
||||||
|
return "<C wxDataObject instance at %s>" % (self.this,)
|
||||||
|
class wxDataObject(wxDataObjectPtr):
|
||||||
|
def __init__(self,this):
|
||||||
|
self.this = this
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class wxDataObjectSimplePtr(wxDataObjectPtr):
|
||||||
|
def __init__(self,this):
|
||||||
|
self.this = this
|
||||||
|
self.thisown = 0
|
||||||
|
def GetFormat(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxDataObjectSimple_GetFormat,(self,) + _args, _kwargs)
|
||||||
|
if val: val = wxDataFormatPtr(val)
|
||||||
|
return val
|
||||||
|
def SetFormat(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxDataObjectSimple_SetFormat,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def __repr__(self):
|
||||||
|
return "<C wxDataObjectSimple instance at %s>" % (self.this,)
|
||||||
|
class wxDataObjectSimple(wxDataObjectSimplePtr):
|
||||||
|
def __init__(self,*_args,**_kwargs):
|
||||||
|
self.this = apply(clip_dndc.new_wxDataObjectSimple,_args,_kwargs)
|
||||||
|
self.thisown = 1
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class wxPyDataObjectSimplePtr(wxDataObjectSimplePtr):
|
||||||
|
def __init__(self,this):
|
||||||
|
self.this = this
|
||||||
|
self.thisown = 0
|
||||||
|
def _setSelf(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxPyDataObjectSimple__setSelf,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def __repr__(self):
|
||||||
|
return "<C wxPyDataObjectSimple instance at %s>" % (self.this,)
|
||||||
|
class wxPyDataObjectSimple(wxPyDataObjectSimplePtr):
|
||||||
|
def __init__(self,*_args,**_kwargs):
|
||||||
|
self.this = apply(clip_dndc.new_wxPyDataObjectSimple,_args,_kwargs)
|
||||||
|
self.thisown = 1
|
||||||
|
self._setSelf(self)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class wxDataObjectCompositePtr(wxDataObjectPtr):
|
||||||
|
def __init__(self,this):
|
||||||
|
self.this = this
|
||||||
|
self.thisown = 0
|
||||||
|
def Add(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxDataObjectComposite_Add,(self,) + _args, _kwargs)
|
||||||
|
_args[0].thisown = 0
|
||||||
|
return val
|
||||||
|
def __repr__(self):
|
||||||
|
return "<C wxDataObjectComposite instance at %s>" % (self.this,)
|
||||||
|
class wxDataObjectComposite(wxDataObjectCompositePtr):
|
||||||
|
def __init__(self,*_args,**_kwargs):
|
||||||
|
self.this = apply(clip_dndc.new_wxDataObjectComposite,_args,_kwargs)
|
||||||
|
self.thisown = 1
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class wxTextDataObjectPtr(wxDataObjectSimplePtr):
|
||||||
|
def __init__(self,this):
|
||||||
|
self.this = this
|
||||||
|
self.thisown = 0
|
||||||
|
def GetTextLength(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxTextDataObject_GetTextLength,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def GetText(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxTextDataObject_GetText,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def SetText(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxTextDataObject_SetText,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def __repr__(self):
|
||||||
|
return "<C wxTextDataObject instance at %s>" % (self.this,)
|
||||||
|
class wxTextDataObject(wxTextDataObjectPtr):
|
||||||
|
def __init__(self,*_args,**_kwargs):
|
||||||
|
self.this = apply(clip_dndc.new_wxTextDataObject,_args,_kwargs)
|
||||||
|
self.thisown = 1
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class wxPyTextDataObjectPtr(wxTextDataObjectPtr):
|
||||||
|
def __init__(self,this):
|
||||||
|
self.this = this
|
||||||
|
self.thisown = 0
|
||||||
|
def _setSelf(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxPyTextDataObject__setSelf,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def __repr__(self):
|
||||||
|
return "<C wxPyTextDataObject instance at %s>" % (self.this,)
|
||||||
|
class wxPyTextDataObject(wxPyTextDataObjectPtr):
|
||||||
|
def __init__(self,*_args,**_kwargs):
|
||||||
|
self.this = apply(clip_dndc.new_wxPyTextDataObject,_args,_kwargs)
|
||||||
|
self.thisown = 1
|
||||||
|
self._setSelf(self)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class wxBitmapDataObjectPtr(wxDataObjectSimplePtr):
|
||||||
|
def __init__(self,this):
|
||||||
|
self.this = this
|
||||||
|
self.thisown = 0
|
||||||
|
def GetBitmap(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxBitmapDataObject_GetBitmap,(self,) + _args, _kwargs)
|
||||||
|
if val: val = wxBitmapPtr(val) ; val.thisown = 1
|
||||||
|
return val
|
||||||
|
def SetBitmap(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxBitmapDataObject_SetBitmap,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def __repr__(self):
|
||||||
|
return "<C wxBitmapDataObject instance at %s>" % (self.this,)
|
||||||
|
class wxBitmapDataObject(wxBitmapDataObjectPtr):
|
||||||
|
def __init__(self,*_args,**_kwargs):
|
||||||
|
self.this = apply(clip_dndc.new_wxBitmapDataObject,_args,_kwargs)
|
||||||
|
self.thisown = 1
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class wxPyBitmapDataObjectPtr(wxBitmapDataObjectPtr):
|
||||||
|
def __init__(self,this):
|
||||||
|
self.this = this
|
||||||
|
self.thisown = 0
|
||||||
|
def _setSelf(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxPyBitmapDataObject__setSelf,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def __repr__(self):
|
||||||
|
return "<C wxPyBitmapDataObject instance at %s>" % (self.this,)
|
||||||
|
class wxPyBitmapDataObject(wxPyBitmapDataObjectPtr):
|
||||||
|
def __init__(self,*_args,**_kwargs):
|
||||||
|
self.this = apply(clip_dndc.new_wxPyBitmapDataObject,_args,_kwargs)
|
||||||
|
self.thisown = 1
|
||||||
|
self._setSelf(self)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class wxFileDataObjectPtr(wxDataObjectSimplePtr):
|
||||||
|
def __init__(self,this):
|
||||||
|
self.this = this
|
||||||
|
self.thisown = 0
|
||||||
|
def GetFilenames(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxFileDataObject_GetFilenames,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def __repr__(self):
|
||||||
|
return "<C wxFileDataObject instance at %s>" % (self.this,)
|
||||||
|
class wxFileDataObject(wxFileDataObjectPtr):
|
||||||
|
def __init__(self,*_args,**_kwargs):
|
||||||
|
self.this = apply(clip_dndc.new_wxFileDataObject,_args,_kwargs)
|
||||||
|
self.thisown = 1
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class wxCustomDataObjectPtr(wxDataObjectSimplePtr):
|
||||||
|
def __init__(self,this):
|
||||||
|
self.this = this
|
||||||
|
self.thisown = 0
|
||||||
|
def TakeData(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxCustomDataObject_TakeData,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def SetData(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxCustomDataObject_SetData,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def GetSize(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxCustomDataObject_GetSize,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def GetData(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxCustomDataObject_GetData,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def __repr__(self):
|
||||||
|
return "<C wxCustomDataObject instance at %s>" % (self.this,)
|
||||||
|
class wxCustomDataObject(wxCustomDataObjectPtr):
|
||||||
|
def __init__(self,*_args,**_kwargs):
|
||||||
|
self.this = apply(clip_dndc.new_wxCustomDataObject,_args,_kwargs)
|
||||||
|
self.thisown = 1
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class wxClipboardPtr :
|
||||||
|
def __init__(self,this):
|
||||||
|
self.this = this
|
||||||
|
self.thisown = 0
|
||||||
|
def Open(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxClipboard_Open,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def Close(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxClipboard_Close,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def IsOpened(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxClipboard_IsOpened,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def AddData(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxClipboard_AddData,(self,) + _args, _kwargs)
|
||||||
|
_args[0].thisown = 0
|
||||||
|
return val
|
||||||
|
def SetData(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxClipboard_SetData,(self,) + _args, _kwargs)
|
||||||
|
_args[0].thisown = 0
|
||||||
|
return val
|
||||||
|
def IsSupported(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxClipboard_IsSupported,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def GetData(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxClipboard_GetData,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def Clear(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxClipboard_Clear,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def Flush(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxClipboard_Flush,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def UsePrimarySelection(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxClipboard_UsePrimarySelection,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def __repr__(self):
|
||||||
|
return "<C wxClipboard instance at %s>" % (self.this,)
|
||||||
|
class wxClipboard(wxClipboardPtr):
|
||||||
|
def __init__(self,*_args,**_kwargs):
|
||||||
|
self.this = apply(clip_dndc.new_wxClipboard,_args,_kwargs)
|
||||||
|
self.thisown = 1
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class wxDropSourcePtr :
|
||||||
|
def __init__(self,this):
|
||||||
|
self.this = this
|
||||||
|
self.thisown = 0
|
||||||
|
def _setSelf(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxDropSource__setSelf,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def __del__(self,clip_dndc=clip_dndc):
|
||||||
|
if self.thisown == 1 :
|
||||||
|
clip_dndc.delete_wxDropSource(self)
|
||||||
|
def SetData(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxDropSource_SetData,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def GetDataObject(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxDropSource_GetDataObject,(self,) + _args, _kwargs)
|
||||||
|
if val: val = wxDataObjectPtr(val)
|
||||||
|
return val
|
||||||
|
def SetCursor(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxDropSource_SetCursor,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def DoDragDrop(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxDropSource_DoDragDrop,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_GiveFeedback(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxDropSource_base_GiveFeedback,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def __repr__(self):
|
||||||
|
return "<C wxDropSource instance at %s>" % (self.this,)
|
||||||
|
class wxDropSource(wxDropSourcePtr):
|
||||||
|
def __init__(self,*_args,**_kwargs):
|
||||||
|
self.this = apply(clip_dndc.new_wxDropSource,_args,_kwargs)
|
||||||
|
self.thisown = 1
|
||||||
|
self._setSelf(self)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class wxDropTargetPtr :
|
||||||
|
def __init__(self,this):
|
||||||
|
self.this = this
|
||||||
|
self.thisown = 0
|
||||||
|
def __repr__(self):
|
||||||
|
return "<C wxDropTarget instance at %s>" % (self.this,)
|
||||||
|
class wxDropTarget(wxDropTargetPtr):
|
||||||
|
def __init__(self,this):
|
||||||
|
self.this = this
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class wxPyDropTargetPtr(wxDropTargetPtr):
|
||||||
|
def __init__(self,this):
|
||||||
|
self.this = this
|
||||||
|
self.thisown = 0
|
||||||
|
def _setSelf(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxPyDropTarget__setSelf,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def __del__(self,clip_dndc=clip_dndc):
|
||||||
|
if self.thisown == 1 :
|
||||||
|
clip_dndc.delete_wxPyDropTarget(self)
|
||||||
|
def GetDataObject(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxPyDropTarget_GetDataObject,(self,) + _args, _kwargs)
|
||||||
|
if val: val = wxDataObjectPtr(val)
|
||||||
|
return val
|
||||||
|
def SetDataObject(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxPyDropTarget_SetDataObject,(self,) + _args, _kwargs)
|
||||||
|
if _args:_args[0].thisown = 0
|
||||||
|
return val
|
||||||
|
def base_OnEnter(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxPyDropTarget_base_OnEnter,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_OnDragOver(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxPyDropTarget_base_OnDragOver,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_OnLeave(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxPyDropTarget_base_OnLeave,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_OnDrop(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxPyDropTarget_base_OnDrop,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def GetData(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxPyDropTarget_GetData,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def __repr__(self):
|
||||||
|
return "<C wxPyDropTarget instance at %s>" % (self.this,)
|
||||||
|
class wxPyDropTarget(wxPyDropTargetPtr):
|
||||||
|
def __init__(self,*_args,**_kwargs):
|
||||||
|
self.this = apply(clip_dndc.new_wxPyDropTarget,_args,_kwargs)
|
||||||
|
self.thisown = 1
|
||||||
|
if _args:_args[0].thisown = 0
|
||||||
|
self._setSelf(self)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class wxTextDropTargetPtr(wxPyDropTargetPtr):
|
||||||
|
def __init__(self,this):
|
||||||
|
self.this = this
|
||||||
|
self.thisown = 0
|
||||||
|
def _setSelf(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxTextDropTarget__setSelf,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_OnEnter(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxTextDropTarget_base_OnEnter,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_OnDragOver(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxTextDropTarget_base_OnDragOver,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_OnLeave(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxTextDropTarget_base_OnLeave,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_OnDrop(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxTextDropTarget_base_OnDrop,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_OnData(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxTextDropTarget_base_OnData,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def __repr__(self):
|
||||||
|
return "<C wxTextDropTarget instance at %s>" % (self.this,)
|
||||||
|
class wxTextDropTarget(wxTextDropTargetPtr):
|
||||||
|
def __init__(self,*_args,**_kwargs):
|
||||||
|
self.this = apply(clip_dndc.new_wxTextDropTarget,_args,_kwargs)
|
||||||
|
self.thisown = 1
|
||||||
|
self._setSelf(self)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class wxFileDropTargetPtr(wxPyDropTargetPtr):
|
||||||
|
def __init__(self,this):
|
||||||
|
self.this = this
|
||||||
|
self.thisown = 0
|
||||||
|
def _setSelf(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxFileDropTarget__setSelf,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_OnEnter(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxFileDropTarget_base_OnEnter,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_OnDragOver(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxFileDropTarget_base_OnDragOver,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_OnLeave(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxFileDropTarget_base_OnLeave,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_OnDrop(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxFileDropTarget_base_OnDrop,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_OnData(self, *_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxFileDropTarget_base_OnData,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def __repr__(self):
|
||||||
|
return "<C wxFileDropTarget instance at %s>" % (self.this,)
|
||||||
|
class wxFileDropTarget(wxFileDropTargetPtr):
|
||||||
|
def __init__(self,*_args,**_kwargs):
|
||||||
|
self.this = apply(clip_dndc.new_wxFileDropTarget,_args,_kwargs)
|
||||||
|
self.thisown = 1
|
||||||
|
self._setSelf(self)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#-------------- FUNCTION WRAPPERS ------------------
|
||||||
|
|
||||||
|
def wxCustomDataFormat(*_args, **_kwargs):
|
||||||
|
val = apply(clip_dndc.wxCustomDataFormat,_args,_kwargs)
|
||||||
|
if val: val = wxDataFormatPtr(val); val.thisown = 1
|
||||||
|
return val
|
||||||
|
|
||||||
|
wxIsDragResultOk = clip_dndc.wxIsDragResultOk
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#-------------- VARIABLE WRAPPERS ------------------
|
||||||
|
|
||||||
|
wxDF_INVALID = clip_dndc.wxDF_INVALID
|
||||||
|
wxDF_TEXT = clip_dndc.wxDF_TEXT
|
||||||
|
wxDF_BITMAP = clip_dndc.wxDF_BITMAP
|
||||||
|
wxDF_METAFILE = clip_dndc.wxDF_METAFILE
|
||||||
|
wxDF_SYLK = clip_dndc.wxDF_SYLK
|
||||||
|
wxDF_DIF = clip_dndc.wxDF_DIF
|
||||||
|
wxDF_TIFF = clip_dndc.wxDF_TIFF
|
||||||
|
wxDF_OEMTEXT = clip_dndc.wxDF_OEMTEXT
|
||||||
|
wxDF_DIB = clip_dndc.wxDF_DIB
|
||||||
|
wxDF_PALETTE = clip_dndc.wxDF_PALETTE
|
||||||
|
wxDF_PENDATA = clip_dndc.wxDF_PENDATA
|
||||||
|
wxDF_RIFF = clip_dndc.wxDF_RIFF
|
||||||
|
wxDF_WAVE = clip_dndc.wxDF_WAVE
|
||||||
|
wxDF_UNICODETEXT = clip_dndc.wxDF_UNICODETEXT
|
||||||
|
wxDF_ENHMETAFILE = clip_dndc.wxDF_ENHMETAFILE
|
||||||
|
wxDF_FILENAME = clip_dndc.wxDF_FILENAME
|
||||||
|
wxDF_LOCALE = clip_dndc.wxDF_LOCALE
|
||||||
|
wxDF_PRIVATE = clip_dndc.wxDF_PRIVATE
|
||||||
|
wxDF_MAX = clip_dndc.wxDF_MAX
|
||||||
|
cvar = clip_dndc.cvar
|
||||||
|
wxFormatInvalid = wxDataFormatPtr(clip_dndc.cvar.wxFormatInvalid)
|
||||||
|
wxTheClipboard = wxClipboardPtr(clip_dndc.cvar.wxTheClipboard)
|
||||||
|
wxDragError = clip_dndc.wxDragError
|
||||||
|
wxDragNone = clip_dndc.wxDragNone
|
||||||
|
wxDragCopy = clip_dndc.wxDragCopy
|
||||||
|
wxDragMove = clip_dndc.wxDragMove
|
||||||
|
wxDragCancel = clip_dndc.wxDragCancel
|
@@ -2682,7 +2682,10 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxActivateEvent","_wxActivateEvent",0},
|
{ "_class_wxActivateEvent","_wxActivateEvent",0},
|
||||||
{ "_signed_long","_long",0},
|
{ "_signed_long","_long",0},
|
||||||
{ "_wxMenuEvent","_class_wxMenuEvent",0},
|
{ "_wxMenuEvent","_class_wxMenuEvent",0},
|
||||||
|
{ "_wxPyBitmapDataObject","_class_wxPyBitmapDataObject",0},
|
||||||
|
{ "_wxBitmapDataObject","_class_wxBitmapDataObject",0},
|
||||||
{ "_class_wxPyCommandEvent","_wxPyCommandEvent",0},
|
{ "_class_wxPyCommandEvent","_wxPyCommandEvent",0},
|
||||||
|
{ "_wxPrintQuality","_wxCoord",0},
|
||||||
{ "_wxPrintQuality","_int",0},
|
{ "_wxPrintQuality","_int",0},
|
||||||
{ "_wxPrintQuality","_signed_int",0},
|
{ "_wxPrintQuality","_signed_int",0},
|
||||||
{ "_wxPrintQuality","_unsigned_int",0},
|
{ "_wxPrintQuality","_unsigned_int",0},
|
||||||
@@ -2690,8 +2693,10 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPrintQuality","_uint",0},
|
{ "_wxPrintQuality","_uint",0},
|
||||||
{ "_wxPrintQuality","_EBool",0},
|
{ "_wxPrintQuality","_EBool",0},
|
||||||
{ "_wxPrintQuality","_size_t",0},
|
{ "_wxPrintQuality","_size_t",0},
|
||||||
|
{ "_class_wxCustomDataObject","_wxCustomDataObject",0},
|
||||||
{ "_wxFontData","_class_wxFontData",0},
|
{ "_wxFontData","_class_wxFontData",0},
|
||||||
{ "_class_wxRegionIterator","_wxRegionIterator",0},
|
{ "_class_wxRegionIterator","_wxRegionIterator",0},
|
||||||
|
{ "_class_wxPyTextDropTarget","_wxPyTextDropTarget",0},
|
||||||
{ "_class_wxMenuBar","_wxMenuBar",0},
|
{ "_class_wxMenuBar","_wxMenuBar",0},
|
||||||
{ "_class_wxEvtHandler","_class_wxProgressDialog",SwigwxProgressDialogTowxEvtHandler},
|
{ "_class_wxEvtHandler","_class_wxProgressDialog",SwigwxProgressDialogTowxEvtHandler},
|
||||||
{ "_class_wxEvtHandler","_wxProgressDialog",SwigwxProgressDialogTowxEvtHandler},
|
{ "_class_wxEvtHandler","_wxProgressDialog",SwigwxProgressDialogTowxEvtHandler},
|
||||||
@@ -2719,21 +2724,28 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPen","_class_wxPen",0},
|
{ "_wxPen","_class_wxPen",0},
|
||||||
{ "_wxUpdateUIEvent","_class_wxUpdateUIEvent",0},
|
{ "_wxUpdateUIEvent","_class_wxUpdateUIEvent",0},
|
||||||
{ "_byte","_unsigned_char",0},
|
{ "_byte","_unsigned_char",0},
|
||||||
|
{ "_wxDataObject","_class_wxDataObject",0},
|
||||||
{ "_wxStaticBox","_class_wxStaticBox",0},
|
{ "_wxStaticBox","_class_wxStaticBox",0},
|
||||||
|
{ "_wxPyDataObjectSimple","_class_wxPyDataObjectSimple",0},
|
||||||
|
{ "_wxPyDropSource","_class_wxPyDropSource",0},
|
||||||
{ "_wxChoice","_class_wxChoice",0},
|
{ "_wxChoice","_class_wxChoice",0},
|
||||||
{ "_wxSlider","_class_wxSlider",0},
|
{ "_wxSlider","_class_wxSlider",0},
|
||||||
{ "_long","_wxDash",0},
|
{ "_long","_wxDash",0},
|
||||||
{ "_long","_unsigned_long",0},
|
{ "_long","_unsigned_long",0},
|
||||||
{ "_long","_signed_long",0},
|
{ "_long","_signed_long",0},
|
||||||
{ "_wxImageList","_class_wxImageList",0},
|
{ "_wxImageList","_class_wxImageList",0},
|
||||||
|
{ "_wxDataObjectSimple","_class_wxDataObjectSimple",0},
|
||||||
{ "_wxDropFilesEvent","_class_wxDropFilesEvent",0},
|
{ "_wxDropFilesEvent","_class_wxDropFilesEvent",0},
|
||||||
{ "_wxBitmapButton","_class_wxBitmapButton",0},
|
{ "_wxBitmapButton","_class_wxBitmapButton",0},
|
||||||
{ "_class_wxAcceleratorTable","_wxAcceleratorTable",0},
|
{ "_class_wxAcceleratorTable","_wxAcceleratorTable",0},
|
||||||
|
{ "_class_wxClipboard","_wxClipboard",0},
|
||||||
{ "_class_wxGauge","_wxGauge",0},
|
{ "_class_wxGauge","_wxGauge",0},
|
||||||
{ "_wxDC","_class_wxDC",0},
|
{ "_wxDC","_class_wxDC",0},
|
||||||
|
{ "_class_wxBitmapDataObject","_wxBitmapDataObject",0},
|
||||||
{ "_class_wxSingleChoiceDialog","_wxSingleChoiceDialog",0},
|
{ "_class_wxSingleChoiceDialog","_wxSingleChoiceDialog",0},
|
||||||
{ "_wxProgressDialog","_class_wxProgressDialog",0},
|
{ "_wxProgressDialog","_class_wxProgressDialog",0},
|
||||||
{ "_wxSpinEvent","_class_wxSpinEvent",0},
|
{ "_wxSpinEvent","_class_wxSpinEvent",0},
|
||||||
|
{ "_size_t","_wxCoord",0},
|
||||||
{ "_size_t","_wxPrintQuality",0},
|
{ "_size_t","_wxPrintQuality",0},
|
||||||
{ "_size_t","_unsigned_int",0},
|
{ "_size_t","_unsigned_int",0},
|
||||||
{ "_size_t","_int",0},
|
{ "_size_t","_int",0},
|
||||||
@@ -2767,6 +2779,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPyEvent","_class_wxPyEvent",0},
|
{ "_wxPyEvent","_class_wxPyEvent",0},
|
||||||
{ "_wxTextCtrl","_class_wxTextCtrl",0},
|
{ "_wxTextCtrl","_class_wxTextCtrl",0},
|
||||||
{ "_class_wxMask","_wxMask",0},
|
{ "_class_wxMask","_wxMask",0},
|
||||||
|
{ "_wxTextDataObject","_class_wxTextDataObject",0},
|
||||||
{ "_class_wxKeyEvent","_wxKeyEvent",0},
|
{ "_class_wxKeyEvent","_wxKeyEvent",0},
|
||||||
{ "_wxColour","_class_wxColour",0},
|
{ "_wxColour","_class_wxColour",0},
|
||||||
{ "_class_wxDialog","_class_wxMessageDialog",SwigwxMessageDialogTowxDialog},
|
{ "_class_wxDialog","_class_wxMessageDialog",SwigwxMessageDialogTowxDialog},
|
||||||
@@ -2784,13 +2797,18 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxDialog","_class_wxColourDialog",SwigwxColourDialogTowxDialog},
|
{ "_class_wxDialog","_class_wxColourDialog",SwigwxColourDialogTowxDialog},
|
||||||
{ "_class_wxDialog","_wxColourDialog",SwigwxColourDialogTowxDialog},
|
{ "_class_wxDialog","_wxColourDialog",SwigwxColourDialogTowxDialog},
|
||||||
{ "_class_wxDialog","_wxDialog",0},
|
{ "_class_wxDialog","_wxDialog",0},
|
||||||
|
{ "_class_wxFileDataObject","_wxFileDataObject",0},
|
||||||
{ "_wxIdleEvent","_class_wxIdleEvent",0},
|
{ "_wxIdleEvent","_class_wxIdleEvent",0},
|
||||||
{ "_class_wxUpdateUIEvent","_wxUpdateUIEvent",0},
|
{ "_class_wxUpdateUIEvent","_wxUpdateUIEvent",0},
|
||||||
{ "_wxToolBar","_class_wxToolBar",0},
|
{ "_wxToolBar","_class_wxToolBar",0},
|
||||||
|
{ "_class_wxDataObject","_wxDataObject",0},
|
||||||
{ "_wxStaticLine","_class_wxStaticLine",0},
|
{ "_wxStaticLine","_class_wxStaticLine",0},
|
||||||
{ "_wxBrush","_class_wxBrush",0},
|
{ "_wxBrush","_class_wxBrush",0},
|
||||||
{ "_wxMiniFrame","_class_wxMiniFrame",0},
|
{ "_wxMiniFrame","_class_wxMiniFrame",0},
|
||||||
|
{ "_wxDataFormat","_class_wxDataFormat",0},
|
||||||
|
{ "_class_wxDataObjectSimple","_wxDataObjectSimple",0},
|
||||||
{ "_wxShowEvent","_class_wxShowEvent",0},
|
{ "_wxShowEvent","_class_wxShowEvent",0},
|
||||||
|
{ "_uint","_wxCoord",0},
|
||||||
{ "_uint","_wxPrintQuality",0},
|
{ "_uint","_wxPrintQuality",0},
|
||||||
{ "_uint","_size_t",0},
|
{ "_uint","_size_t",0},
|
||||||
{ "_uint","_unsigned_int",0},
|
{ "_uint","_unsigned_int",0},
|
||||||
@@ -2822,17 +2840,21 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxIconizeEvent","_wxIconizeEvent",0},
|
{ "_class_wxIconizeEvent","_wxIconizeEvent",0},
|
||||||
{ "_class_wxStaticBitmap","_wxStaticBitmap",0},
|
{ "_class_wxStaticBitmap","_wxStaticBitmap",0},
|
||||||
{ "_class_wxToolBar","_wxToolBar",0},
|
{ "_class_wxToolBar","_wxToolBar",0},
|
||||||
|
{ "_wxDropTarget","_class_wxDropTarget",0},
|
||||||
{ "_class_wxStaticLine","_wxStaticLine",0},
|
{ "_class_wxStaticLine","_wxStaticLine",0},
|
||||||
{ "_wxScrollEvent","_class_wxScrollEvent",0},
|
{ "_wxScrollEvent","_class_wxScrollEvent",0},
|
||||||
|
{ "_EBool","_wxCoord",0},
|
||||||
{ "_EBool","_wxPrintQuality",0},
|
{ "_EBool","_wxPrintQuality",0},
|
||||||
{ "_EBool","_signed_int",0},
|
{ "_EBool","_signed_int",0},
|
||||||
{ "_EBool","_int",0},
|
{ "_EBool","_int",0},
|
||||||
{ "_EBool","_wxWindowID",0},
|
{ "_EBool","_wxWindowID",0},
|
||||||
{ "_class_wxRegion","_wxRegion",0},
|
{ "_class_wxRegion","_wxRegion",0},
|
||||||
|
{ "_class_wxDataFormat","_wxDataFormat",0},
|
||||||
{ "_class_wxDropFilesEvent","_wxDropFilesEvent",0},
|
{ "_class_wxDropFilesEvent","_wxDropFilesEvent",0},
|
||||||
{ "_wxWindowDestroyEvent","_class_wxWindowDestroyEvent",0},
|
{ "_wxWindowDestroyEvent","_class_wxWindowDestroyEvent",0},
|
||||||
{ "_wxStaticText","_class_wxStaticText",0},
|
{ "_wxStaticText","_class_wxStaticText",0},
|
||||||
{ "_wxFont","_class_wxFont",0},
|
{ "_wxFont","_class_wxFont",0},
|
||||||
|
{ "_class_wxPyDropTarget","_wxPyDropTarget",0},
|
||||||
{ "_wxCloseEvent","_class_wxCloseEvent",0},
|
{ "_wxCloseEvent","_class_wxCloseEvent",0},
|
||||||
{ "_unsigned_long","_wxDash",0},
|
{ "_unsigned_long","_wxDash",0},
|
||||||
{ "_unsigned_long","_long",0},
|
{ "_unsigned_long","_long",0},
|
||||||
@@ -2867,12 +2889,14 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxComboBox","_class_wxComboBox",0},
|
{ "_wxComboBox","_class_wxComboBox",0},
|
||||||
{ "_wxRadioButton","_class_wxRadioButton",0},
|
{ "_wxRadioButton","_class_wxRadioButton",0},
|
||||||
{ "_class_wxMessageDialog","_wxMessageDialog",0},
|
{ "_class_wxMessageDialog","_wxMessageDialog",0},
|
||||||
|
{ "_signed_int","_wxCoord",0},
|
||||||
{ "_signed_int","_wxPrintQuality",0},
|
{ "_signed_int","_wxPrintQuality",0},
|
||||||
{ "_signed_int","_EBool",0},
|
{ "_signed_int","_EBool",0},
|
||||||
{ "_signed_int","_wxWindowID",0},
|
{ "_signed_int","_wxWindowID",0},
|
||||||
{ "_signed_int","_int",0},
|
{ "_signed_int","_int",0},
|
||||||
{ "_class_wxTextCtrl","_wxTextCtrl",0},
|
{ "_class_wxTextCtrl","_wxTextCtrl",0},
|
||||||
{ "_wxLayoutConstraints","_class_wxLayoutConstraints",0},
|
{ "_wxLayoutConstraints","_class_wxLayoutConstraints",0},
|
||||||
|
{ "_class_wxTextDataObject","_wxTextDataObject",0},
|
||||||
{ "_wxMenu","_class_wxMenu",0},
|
{ "_wxMenu","_class_wxMenu",0},
|
||||||
{ "_class_wxMoveEvent","_wxMoveEvent",0},
|
{ "_class_wxMoveEvent","_wxMoveEvent",0},
|
||||||
{ "_wxListBox","_class_wxListBox",0},
|
{ "_wxListBox","_class_wxListBox",0},
|
||||||
@@ -2881,6 +2905,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_WXTYPE","_signed_short",0},
|
{ "_WXTYPE","_signed_short",0},
|
||||||
{ "_WXTYPE","_unsigned_short",0},
|
{ "_WXTYPE","_unsigned_short",0},
|
||||||
{ "_wxFileDialog","_class_wxFileDialog",0},
|
{ "_wxFileDialog","_class_wxFileDialog",0},
|
||||||
|
{ "_class_wxDropTarget","_wxDropTarget",0},
|
||||||
{ "_class_wxBrush","_wxBrush",0},
|
{ "_class_wxBrush","_wxBrush",0},
|
||||||
{ "_unsigned_short","_WXTYPE",0},
|
{ "_unsigned_short","_WXTYPE",0},
|
||||||
{ "_unsigned_short","_short",0},
|
{ "_unsigned_short","_short",0},
|
||||||
@@ -2903,10 +2928,13 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxWindow","_wxWindow",0},
|
{ "_class_wxWindow","_wxWindow",0},
|
||||||
{ "_class_wxStaticText","_wxStaticText",0},
|
{ "_class_wxStaticText","_wxStaticText",0},
|
||||||
{ "_class_wxFont","_wxFont",0},
|
{ "_class_wxFont","_wxFont",0},
|
||||||
|
{ "_wxClipboard","_class_wxClipboard",0},
|
||||||
{ "_class_wxPyValidator","_wxPyValidator",0},
|
{ "_class_wxPyValidator","_wxPyValidator",0},
|
||||||
{ "_class_wxCloseEvent","_wxCloseEvent",0},
|
{ "_class_wxCloseEvent","_wxCloseEvent",0},
|
||||||
|
{ "_wxBusyInfo","_class_wxBusyInfo",0},
|
||||||
{ "_class_wxMenuEvent","_wxMenuEvent",0},
|
{ "_class_wxMenuEvent","_wxMenuEvent",0},
|
||||||
{ "_wxPaletteChangedEvent","_class_wxPaletteChangedEvent",0},
|
{ "_wxPaletteChangedEvent","_class_wxPaletteChangedEvent",0},
|
||||||
|
{ "_class_wxPyBitmapDataObject","_wxPyBitmapDataObject",0},
|
||||||
{ "_wxClientDC","_class_wxClientDC",0},
|
{ "_wxClientDC","_class_wxClientDC",0},
|
||||||
{ "_wxMouseEvent","_class_wxMouseEvent",0},
|
{ "_wxMouseEvent","_class_wxMouseEvent",0},
|
||||||
{ "_wxSingleChoiceDialog","_class_wxSingleChoiceDialog",0},
|
{ "_wxSingleChoiceDialog","_class_wxSingleChoiceDialog",0},
|
||||||
@@ -2916,6 +2944,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_signed_short","_WXTYPE",0},
|
{ "_signed_short","_WXTYPE",0},
|
||||||
{ "_signed_short","_short",0},
|
{ "_signed_short","_short",0},
|
||||||
{ "_wxMemoryDC","_class_wxMemoryDC",0},
|
{ "_wxMemoryDC","_class_wxMemoryDC",0},
|
||||||
|
{ "_wxPyTextDataObject","_class_wxPyTextDataObject",0},
|
||||||
{ "_wxPaintDC","_class_wxPaintDC",0},
|
{ "_wxPaintDC","_class_wxPaintDC",0},
|
||||||
{ "_class_wxWindowDC","_wxWindowDC",0},
|
{ "_class_wxWindowDC","_wxWindowDC",0},
|
||||||
{ "_class_wxFocusEvent","_wxFocusEvent",0},
|
{ "_class_wxFocusEvent","_wxFocusEvent",0},
|
||||||
@@ -2925,11 +2954,13 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxAcceleratorEntry","_wxAcceleratorEntry",0},
|
{ "_class_wxAcceleratorEntry","_wxAcceleratorEntry",0},
|
||||||
{ "_class_wxCursor","_wxCursor",0},
|
{ "_class_wxCursor","_wxCursor",0},
|
||||||
{ "_wxPostScriptDC","_class_wxPostScriptDC",0},
|
{ "_wxPostScriptDC","_class_wxPostScriptDC",0},
|
||||||
|
{ "_wxPyFileDropTarget","_class_wxPyFileDropTarget",0},
|
||||||
{ "_wxScrolledWindow","_class_wxScrolledWindow",0},
|
{ "_wxScrolledWindow","_class_wxScrolledWindow",0},
|
||||||
{ "_unsigned_char","_byte",0},
|
{ "_unsigned_char","_byte",0},
|
||||||
{ "_class_wxMenu","_wxMenu",0},
|
{ "_class_wxMenu","_wxMenu",0},
|
||||||
{ "_wxControl","_class_wxControl",0},
|
{ "_wxControl","_class_wxControl",0},
|
||||||
{ "_class_wxListBox","_wxListBox",0},
|
{ "_class_wxListBox","_wxListBox",0},
|
||||||
|
{ "_unsigned_int","_wxCoord",0},
|
||||||
{ "_unsigned_int","_wxPrintQuality",0},
|
{ "_unsigned_int","_wxPrintQuality",0},
|
||||||
{ "_unsigned_int","_size_t",0},
|
{ "_unsigned_int","_size_t",0},
|
||||||
{ "_unsigned_int","_uint",0},
|
{ "_unsigned_int","_uint",0},
|
||||||
@@ -2957,6 +2988,8 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_short","_unsigned_short",0},
|
{ "_short","_unsigned_short",0},
|
||||||
{ "_short","_signed_short",0},
|
{ "_short","_signed_short",0},
|
||||||
{ "_class_wxStaticBox","_wxStaticBox",0},
|
{ "_class_wxStaticBox","_wxStaticBox",0},
|
||||||
|
{ "_class_wxPyDataObjectSimple","_wxPyDataObjectSimple",0},
|
||||||
|
{ "_class_wxPyDropSource","_wxPyDropSource",0},
|
||||||
{ "_class_wxScrollEvent","_wxScrollEvent",0},
|
{ "_class_wxScrollEvent","_wxScrollEvent",0},
|
||||||
{ "_wxJoystickEvent","_class_wxJoystickEvent",0},
|
{ "_wxJoystickEvent","_class_wxJoystickEvent",0},
|
||||||
{ "_class_wxChoice","_wxChoice",0},
|
{ "_class_wxChoice","_wxChoice",0},
|
||||||
@@ -2967,6 +3000,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxFrame","_wxProgressDialog",SwigwxProgressDialogTowxFrame},
|
{ "_wxFrame","_wxProgressDialog",SwigwxProgressDialogTowxFrame},
|
||||||
{ "_wxFrame","_class_wxFrame",0},
|
{ "_wxFrame","_class_wxFrame",0},
|
||||||
{ "_class_wxPaletteChangedEvent","_wxPaletteChangedEvent",0},
|
{ "_class_wxPaletteChangedEvent","_wxPaletteChangedEvent",0},
|
||||||
|
{ "_wxWindowID","_wxCoord",0},
|
||||||
{ "_wxWindowID","_wxPrintQuality",0},
|
{ "_wxWindowID","_wxPrintQuality",0},
|
||||||
{ "_wxWindowID","_size_t",0},
|
{ "_wxWindowID","_size_t",0},
|
||||||
{ "_wxWindowID","_EBool",0},
|
{ "_wxWindowID","_EBool",0},
|
||||||
@@ -2975,6 +3009,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxWindowID","_signed_int",0},
|
{ "_wxWindowID","_signed_int",0},
|
||||||
{ "_wxWindowID","_unsigned_int",0},
|
{ "_wxWindowID","_unsigned_int",0},
|
||||||
{ "_class_wxScrollWinEvent","_wxScrollWinEvent",0},
|
{ "_class_wxScrollWinEvent","_wxScrollWinEvent",0},
|
||||||
|
{ "_int","_wxCoord",0},
|
||||||
{ "_int","_wxPrintQuality",0},
|
{ "_int","_wxPrintQuality",0},
|
||||||
{ "_int","_size_t",0},
|
{ "_int","_size_t",0},
|
||||||
{ "_int","_EBool",0},
|
{ "_int","_EBool",0},
|
||||||
@@ -2990,8 +3025,10 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxButton","_class_wxButton",0},
|
{ "_wxButton","_class_wxButton",0},
|
||||||
{ "_wxSize","_class_wxSize",0},
|
{ "_wxSize","_class_wxSize",0},
|
||||||
{ "_wxRegionIterator","_class_wxRegionIterator",0},
|
{ "_wxRegionIterator","_class_wxRegionIterator",0},
|
||||||
|
{ "_class_wxPyTextDataObject","_wxPyTextDataObject",0},
|
||||||
{ "_class_wxPaintDC","_wxPaintDC",0},
|
{ "_class_wxPaintDC","_wxPaintDC",0},
|
||||||
{ "_class_wxSysColourChangedEvent","_wxSysColourChangedEvent",0},
|
{ "_class_wxSysColourChangedEvent","_wxSysColourChangedEvent",0},
|
||||||
|
{ "_class_wxPyFileDropTarget","_wxPyFileDropTarget",0},
|
||||||
{ "_class_wxInitDialogEvent","_wxInitDialogEvent",0},
|
{ "_class_wxInitDialogEvent","_wxInitDialogEvent",0},
|
||||||
{ "_class_wxComboBox","_wxComboBox",0},
|
{ "_class_wxComboBox","_wxComboBox",0},
|
||||||
{ "_class_wxRadioButton","_wxRadioButton",0},
|
{ "_class_wxRadioButton","_wxRadioButton",0},
|
||||||
@@ -3005,21 +3042,34 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxScreenDC","_wxScreenDC",0},
|
{ "_class_wxScreenDC","_wxScreenDC",0},
|
||||||
{ "_wxPalette","_class_wxPalette",0},
|
{ "_wxPalette","_class_wxPalette",0},
|
||||||
{ "_class_wxIdleEvent","_wxIdleEvent",0},
|
{ "_class_wxIdleEvent","_wxIdleEvent",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","_wxPrintQuality",0},
|
||||||
{ "_wxEraseEvent","_class_wxEraseEvent",0},
|
{ "_wxEraseEvent","_class_wxEraseEvent",0},
|
||||||
|
{ "_wxDataObjectComposite","_class_wxDataObjectComposite",0},
|
||||||
{ "_class_wxJoystickEvent","_wxJoystickEvent",0},
|
{ "_class_wxJoystickEvent","_wxJoystickEvent",0},
|
||||||
{ "_class_wxMiniFrame","_wxMiniFrame",0},
|
{ "_class_wxMiniFrame","_wxMiniFrame",0},
|
||||||
{ "_wxFontDialog","_class_wxFontDialog",0},
|
{ "_wxFontDialog","_class_wxFontDialog",0},
|
||||||
{ "_wxRegion","_class_wxRegion",0},
|
{ "_wxRegion","_class_wxRegion",0},
|
||||||
{ "_class_wxShowEvent","_wxShowEvent",0},
|
{ "_class_wxShowEvent","_wxShowEvent",0},
|
||||||
|
{ "_wxPyDropTarget","_class_wxPyDropTarget",0},
|
||||||
{ "_wxActivateEvent","_class_wxActivateEvent",0},
|
{ "_wxActivateEvent","_class_wxActivateEvent",0},
|
||||||
{ "_wxGauge","_class_wxGauge",0},
|
{ "_wxGauge","_class_wxGauge",0},
|
||||||
{ "_class_wxCheckListBox","_wxCheckListBox",0},
|
{ "_class_wxCheckListBox","_wxCheckListBox",0},
|
||||||
|
{ "_class_wxBusyInfo","_wxBusyInfo",0},
|
||||||
{ "_class_wxCommandEvent","_wxCommandEvent",0},
|
{ "_class_wxCommandEvent","_wxCommandEvent",0},
|
||||||
{ "_class_wxClientDC","_wxClientDC",0},
|
{ "_class_wxClientDC","_wxClientDC",0},
|
||||||
{ "_class_wxSizeEvent","_wxSizeEvent",0},
|
{ "_class_wxSizeEvent","_wxSizeEvent",0},
|
||||||
|
{ "_wxCustomDataObject","_class_wxCustomDataObject",0},
|
||||||
{ "_class_wxSize","_wxSize",0},
|
{ "_class_wxSize","_wxSize",0},
|
||||||
{ "_class_wxBitmap","_wxBitmap",0},
|
{ "_class_wxBitmap","_wxBitmap",0},
|
||||||
{ "_class_wxMemoryDC","_wxMemoryDC",0},
|
{ "_class_wxMemoryDC","_wxMemoryDC",0},
|
||||||
|
{ "_wxPyTextDropTarget","_class_wxPyTextDropTarget",0},
|
||||||
{ "_wxMenuBar","_class_wxMenuBar",0},
|
{ "_wxMenuBar","_class_wxMenuBar",0},
|
||||||
{ "_wxDirDialog","_class_wxDirDialog",0},
|
{ "_wxDirDialog","_class_wxDirDialog",0},
|
||||||
{ "_wxEvtHandler","_class_wxProgressDialog",SwigwxProgressDialogTowxEvtHandler},
|
{ "_wxEvtHandler","_class_wxProgressDialog",SwigwxProgressDialogTowxEvtHandler},
|
||||||
@@ -3050,7 +3100,9 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxMoveEvent","_class_wxMoveEvent",0},
|
{ "_wxMoveEvent","_class_wxMoveEvent",0},
|
||||||
{ "_wxColourData","_class_wxColourData",0},
|
{ "_wxColourData","_class_wxColourData",0},
|
||||||
{ "_class_wxPalette","_wxPalette",0},
|
{ "_class_wxPalette","_wxPalette",0},
|
||||||
|
{ "_wxFileDataObject","_class_wxFileDataObject",0},
|
||||||
{ "_class_wxEraseEvent","_wxEraseEvent",0},
|
{ "_class_wxEraseEvent","_wxEraseEvent",0},
|
||||||
|
{ "_class_wxDataObjectComposite","_wxDataObjectComposite",0},
|
||||||
{ "_class_wxFontDialog","_wxFontDialog",0},
|
{ "_class_wxFontDialog","_wxFontDialog",0},
|
||||||
{ "_wxWindow","_class_wxProgressDialog",SwigwxProgressDialogTowxWindow},
|
{ "_wxWindow","_class_wxProgressDialog",SwigwxProgressDialogTowxWindow},
|
||||||
{ "_wxWindow","_wxProgressDialog",SwigwxProgressDialogTowxWindow},
|
{ "_wxWindow","_wxProgressDialog",SwigwxProgressDialogTowxWindow},
|
||||||
|
@@ -7,6 +7,8 @@ from gdi import *
|
|||||||
|
|
||||||
from windows import *
|
from windows import *
|
||||||
|
|
||||||
|
from clip_dnd import *
|
||||||
|
|
||||||
from frames import *
|
from frames import *
|
||||||
|
|
||||||
from stattool import *
|
from stattool import *
|
||||||
|
@@ -4827,6 +4827,102 @@ static PyObject *_wrap_wxTextCtrl_IsEditable(PyObject *self, PyObject *args, PyO
|
|||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#define wxTextCtrl_Undo(_swigobj) (_swigobj->Undo())
|
||||||
|
static PyObject *_wrap_wxTextCtrl_Undo(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
|
PyObject * _resultobj;
|
||||||
|
wxTextCtrl * _arg0;
|
||||||
|
PyObject * _argo0 = 0;
|
||||||
|
char *_kwnames[] = { "self", NULL };
|
||||||
|
|
||||||
|
self = self;
|
||||||
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTextCtrl_Undo",_kwnames,&_argo0))
|
||||||
|
return NULL;
|
||||||
|
if (_argo0) {
|
||||||
|
if (_argo0 == Py_None) { _arg0 = NULL; }
|
||||||
|
else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTextCtrl_p")) {
|
||||||
|
PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTextCtrl_Undo. Expected _wxTextCtrl_p.");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
|
wxTextCtrl_Undo(_arg0);
|
||||||
|
|
||||||
|
wxPy_END_ALLOW_THREADS;
|
||||||
|
} Py_INCREF(Py_None);
|
||||||
|
_resultobj = Py_None;
|
||||||
|
return _resultobj;
|
||||||
|
}
|
||||||
|
|
||||||
|
#define wxTextCtrl_Redo(_swigobj) (_swigobj->Redo())
|
||||||
|
static PyObject *_wrap_wxTextCtrl_Redo(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
|
PyObject * _resultobj;
|
||||||
|
wxTextCtrl * _arg0;
|
||||||
|
PyObject * _argo0 = 0;
|
||||||
|
char *_kwnames[] = { "self", NULL };
|
||||||
|
|
||||||
|
self = self;
|
||||||
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTextCtrl_Redo",_kwnames,&_argo0))
|
||||||
|
return NULL;
|
||||||
|
if (_argo0) {
|
||||||
|
if (_argo0 == Py_None) { _arg0 = NULL; }
|
||||||
|
else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTextCtrl_p")) {
|
||||||
|
PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTextCtrl_Redo. Expected _wxTextCtrl_p.");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
|
wxTextCtrl_Redo(_arg0);
|
||||||
|
|
||||||
|
wxPy_END_ALLOW_THREADS;
|
||||||
|
} Py_INCREF(Py_None);
|
||||||
|
_resultobj = Py_None;
|
||||||
|
return _resultobj;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void wxTextCtrl_write(wxTextCtrl *self,const wxString & text) {
|
||||||
|
self->AppendText(text + '\n');
|
||||||
|
}
|
||||||
|
static PyObject *_wrap_wxTextCtrl_write(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
|
PyObject * _resultobj;
|
||||||
|
wxTextCtrl * _arg0;
|
||||||
|
wxString * _arg1;
|
||||||
|
PyObject * _argo0 = 0;
|
||||||
|
PyObject * _obj1 = 0;
|
||||||
|
char *_kwnames[] = { "self","text", NULL };
|
||||||
|
|
||||||
|
self = self;
|
||||||
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxTextCtrl_write",_kwnames,&_argo0,&_obj1))
|
||||||
|
return NULL;
|
||||||
|
if (_argo0) {
|
||||||
|
if (_argo0 == Py_None) { _arg0 = NULL; }
|
||||||
|
else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTextCtrl_p")) {
|
||||||
|
PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTextCtrl_write. Expected _wxTextCtrl_p.");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
if (!PyString_Check(_obj1)) {
|
||||||
|
PyErr_SetString(PyExc_TypeError, wxStringErrorMsg);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
_arg1 = new wxString(PyString_AsString(_obj1), PyString_Size(_obj1));
|
||||||
|
}
|
||||||
|
{
|
||||||
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
|
wxTextCtrl_write(_arg0,*_arg1);
|
||||||
|
|
||||||
|
wxPy_END_ALLOW_THREADS;
|
||||||
|
} Py_INCREF(Py_None);
|
||||||
|
_resultobj = Py_None;
|
||||||
|
{
|
||||||
|
if (_obj1)
|
||||||
|
delete _arg1;
|
||||||
|
}
|
||||||
|
return _resultobj;
|
||||||
|
}
|
||||||
|
|
||||||
static void *SwigwxScrollBarTowxControl(void *ptr) {
|
static void *SwigwxScrollBarTowxControl(void *ptr) {
|
||||||
wxScrollBar *src;
|
wxScrollBar *src;
|
||||||
wxControl *dest;
|
wxControl *dest;
|
||||||
@@ -6871,6 +6967,9 @@ static PyMethodDef controlscMethods[] = {
|
|||||||
{ "wxScrollBar_GetPageSize", (PyCFunction) _wrap_wxScrollBar_GetPageSize, METH_VARARGS | METH_KEYWORDS },
|
{ "wxScrollBar_GetPageSize", (PyCFunction) _wrap_wxScrollBar_GetPageSize, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "wxScrollBar_GetRange", (PyCFunction) _wrap_wxScrollBar_GetRange, METH_VARARGS | METH_KEYWORDS },
|
{ "wxScrollBar_GetRange", (PyCFunction) _wrap_wxScrollBar_GetRange, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "new_wxScrollBar", (PyCFunction) _wrap_new_wxScrollBar, METH_VARARGS | METH_KEYWORDS },
|
{ "new_wxScrollBar", (PyCFunction) _wrap_new_wxScrollBar, METH_VARARGS | METH_KEYWORDS },
|
||||||
|
{ "wxTextCtrl_write", (PyCFunction) _wrap_wxTextCtrl_write, METH_VARARGS | METH_KEYWORDS },
|
||||||
|
{ "wxTextCtrl_Redo", (PyCFunction) _wrap_wxTextCtrl_Redo, METH_VARARGS | METH_KEYWORDS },
|
||||||
|
{ "wxTextCtrl_Undo", (PyCFunction) _wrap_wxTextCtrl_Undo, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "wxTextCtrl_IsEditable", (PyCFunction) _wrap_wxTextCtrl_IsEditable, METH_VARARGS | METH_KEYWORDS },
|
{ "wxTextCtrl_IsEditable", (PyCFunction) _wrap_wxTextCtrl_IsEditable, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "wxTextCtrl_GetSelection", (PyCFunction) _wrap_wxTextCtrl_GetSelection, METH_VARARGS | METH_KEYWORDS },
|
{ "wxTextCtrl_GetSelection", (PyCFunction) _wrap_wxTextCtrl_GetSelection, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "wxTextCtrl_CanUndo", (PyCFunction) _wrap_wxTextCtrl_CanUndo, METH_VARARGS | METH_KEYWORDS },
|
{ "wxTextCtrl_CanUndo", (PyCFunction) _wrap_wxTextCtrl_CanUndo, METH_VARARGS | METH_KEYWORDS },
|
||||||
@@ -7006,7 +7105,10 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxActivateEvent","_wxActivateEvent",0},
|
{ "_class_wxActivateEvent","_wxActivateEvent",0},
|
||||||
{ "_signed_long","_long",0},
|
{ "_signed_long","_long",0},
|
||||||
{ "_wxMenuEvent","_class_wxMenuEvent",0},
|
{ "_wxMenuEvent","_class_wxMenuEvent",0},
|
||||||
|
{ "_wxPyBitmapDataObject","_class_wxPyBitmapDataObject",0},
|
||||||
|
{ "_wxBitmapDataObject","_class_wxBitmapDataObject",0},
|
||||||
{ "_class_wxPyCommandEvent","_wxPyCommandEvent",0},
|
{ "_class_wxPyCommandEvent","_wxPyCommandEvent",0},
|
||||||
|
{ "_wxPrintQuality","_wxCoord",0},
|
||||||
{ "_wxPrintQuality","_int",0},
|
{ "_wxPrintQuality","_int",0},
|
||||||
{ "_wxPrintQuality","_signed_int",0},
|
{ "_wxPrintQuality","_signed_int",0},
|
||||||
{ "_wxPrintQuality","_unsigned_int",0},
|
{ "_wxPrintQuality","_unsigned_int",0},
|
||||||
@@ -7014,7 +7116,9 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPrintQuality","_uint",0},
|
{ "_wxPrintQuality","_uint",0},
|
||||||
{ "_wxPrintQuality","_EBool",0},
|
{ "_wxPrintQuality","_EBool",0},
|
||||||
{ "_wxPrintQuality","_size_t",0},
|
{ "_wxPrintQuality","_size_t",0},
|
||||||
|
{ "_class_wxCustomDataObject","_wxCustomDataObject",0},
|
||||||
{ "_class_wxRegionIterator","_wxRegionIterator",0},
|
{ "_class_wxRegionIterator","_wxRegionIterator",0},
|
||||||
|
{ "_class_wxPyTextDropTarget","_wxPyTextDropTarget",0},
|
||||||
{ "_class_wxMenuBar","_wxMenuBar",0},
|
{ "_class_wxMenuBar","_wxMenuBar",0},
|
||||||
{ "_class_wxEvtHandler","_class_wxSlider",SwigwxSliderTowxEvtHandler},
|
{ "_class_wxEvtHandler","_class_wxSlider",SwigwxSliderTowxEvtHandler},
|
||||||
{ "_class_wxEvtHandler","_wxSlider",SwigwxSliderTowxEvtHandler},
|
{ "_class_wxEvtHandler","_wxSlider",SwigwxSliderTowxEvtHandler},
|
||||||
@@ -7063,7 +7167,10 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPen","_class_wxPen",0},
|
{ "_wxPen","_class_wxPen",0},
|
||||||
{ "_wxUpdateUIEvent","_class_wxUpdateUIEvent",0},
|
{ "_wxUpdateUIEvent","_class_wxUpdateUIEvent",0},
|
||||||
{ "_byte","_unsigned_char",0},
|
{ "_byte","_unsigned_char",0},
|
||||||
|
{ "_wxDataObject","_class_wxDataObject",0},
|
||||||
{ "_wxStaticBox","_class_wxStaticBox",0},
|
{ "_wxStaticBox","_class_wxStaticBox",0},
|
||||||
|
{ "_wxPyDataObjectSimple","_class_wxPyDataObjectSimple",0},
|
||||||
|
{ "_wxPyDropSource","_class_wxPyDropSource",0},
|
||||||
{ "_wxChoice","_class_wxComboBox",SwigwxComboBoxTowxChoice},
|
{ "_wxChoice","_class_wxComboBox",SwigwxComboBoxTowxChoice},
|
||||||
{ "_wxChoice","_wxComboBox",SwigwxComboBoxTowxChoice},
|
{ "_wxChoice","_wxComboBox",SwigwxComboBoxTowxChoice},
|
||||||
{ "_wxChoice","_class_wxChoice",0},
|
{ "_wxChoice","_class_wxChoice",0},
|
||||||
@@ -7072,12 +7179,16 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_long","_unsigned_long",0},
|
{ "_long","_unsigned_long",0},
|
||||||
{ "_long","_signed_long",0},
|
{ "_long","_signed_long",0},
|
||||||
{ "_wxImageList","_class_wxImageList",0},
|
{ "_wxImageList","_class_wxImageList",0},
|
||||||
|
{ "_wxDataObjectSimple","_class_wxDataObjectSimple",0},
|
||||||
{ "_wxDropFilesEvent","_class_wxDropFilesEvent",0},
|
{ "_wxDropFilesEvent","_class_wxDropFilesEvent",0},
|
||||||
{ "_wxBitmapButton","_class_wxBitmapButton",0},
|
{ "_wxBitmapButton","_class_wxBitmapButton",0},
|
||||||
{ "_class_wxAcceleratorTable","_wxAcceleratorTable",0},
|
{ "_class_wxAcceleratorTable","_wxAcceleratorTable",0},
|
||||||
|
{ "_class_wxClipboard","_wxClipboard",0},
|
||||||
{ "_class_wxGauge","_wxGauge",0},
|
{ "_class_wxGauge","_wxGauge",0},
|
||||||
{ "_wxDC","_class_wxDC",0},
|
{ "_wxDC","_class_wxDC",0},
|
||||||
|
{ "_class_wxBitmapDataObject","_wxBitmapDataObject",0},
|
||||||
{ "_wxSpinEvent","_class_wxSpinEvent",0},
|
{ "_wxSpinEvent","_class_wxSpinEvent",0},
|
||||||
|
{ "_size_t","_wxCoord",0},
|
||||||
{ "_size_t","_wxPrintQuality",0},
|
{ "_size_t","_wxPrintQuality",0},
|
||||||
{ "_size_t","_unsigned_int",0},
|
{ "_size_t","_unsigned_int",0},
|
||||||
{ "_size_t","_int",0},
|
{ "_size_t","_int",0},
|
||||||
@@ -7096,14 +7207,20 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPyEvent","_class_wxPyEvent",0},
|
{ "_wxPyEvent","_class_wxPyEvent",0},
|
||||||
{ "_wxTextCtrl","_class_wxTextCtrl",0},
|
{ "_wxTextCtrl","_class_wxTextCtrl",0},
|
||||||
{ "_class_wxMask","_wxMask",0},
|
{ "_class_wxMask","_wxMask",0},
|
||||||
|
{ "_wxTextDataObject","_class_wxTextDataObject",0},
|
||||||
{ "_class_wxKeyEvent","_wxKeyEvent",0},
|
{ "_class_wxKeyEvent","_wxKeyEvent",0},
|
||||||
{ "_wxColour","_class_wxColour",0},
|
{ "_wxColour","_class_wxColour",0},
|
||||||
{ "_class_wxDialog","_wxDialog",0},
|
{ "_class_wxDialog","_wxDialog",0},
|
||||||
|
{ "_class_wxFileDataObject","_wxFileDataObject",0},
|
||||||
{ "_wxIdleEvent","_class_wxIdleEvent",0},
|
{ "_wxIdleEvent","_class_wxIdleEvent",0},
|
||||||
{ "_class_wxUpdateUIEvent","_wxUpdateUIEvent",0},
|
{ "_class_wxUpdateUIEvent","_wxUpdateUIEvent",0},
|
||||||
|
{ "_class_wxDataObject","_wxDataObject",0},
|
||||||
{ "_wxStaticLine","_class_wxStaticLine",0},
|
{ "_wxStaticLine","_class_wxStaticLine",0},
|
||||||
{ "_wxBrush","_class_wxBrush",0},
|
{ "_wxBrush","_class_wxBrush",0},
|
||||||
|
{ "_wxDataFormat","_class_wxDataFormat",0},
|
||||||
|
{ "_class_wxDataObjectSimple","_wxDataObjectSimple",0},
|
||||||
{ "_wxShowEvent","_class_wxShowEvent",0},
|
{ "_wxShowEvent","_class_wxShowEvent",0},
|
||||||
|
{ "_uint","_wxCoord",0},
|
||||||
{ "_uint","_wxPrintQuality",0},
|
{ "_uint","_wxPrintQuality",0},
|
||||||
{ "_uint","_size_t",0},
|
{ "_uint","_size_t",0},
|
||||||
{ "_uint","_unsigned_int",0},
|
{ "_uint","_unsigned_int",0},
|
||||||
@@ -7131,17 +7248,21 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxPyEvent","_wxPyEvent",0},
|
{ "_class_wxPyEvent","_wxPyEvent",0},
|
||||||
{ "_class_wxIconizeEvent","_wxIconizeEvent",0},
|
{ "_class_wxIconizeEvent","_wxIconizeEvent",0},
|
||||||
{ "_class_wxStaticBitmap","_wxStaticBitmap",0},
|
{ "_class_wxStaticBitmap","_wxStaticBitmap",0},
|
||||||
|
{ "_wxDropTarget","_class_wxDropTarget",0},
|
||||||
{ "_class_wxStaticLine","_wxStaticLine",0},
|
{ "_class_wxStaticLine","_wxStaticLine",0},
|
||||||
{ "_wxScrollEvent","_class_wxScrollEvent",0},
|
{ "_wxScrollEvent","_class_wxScrollEvent",0},
|
||||||
|
{ "_EBool","_wxCoord",0},
|
||||||
{ "_EBool","_wxPrintQuality",0},
|
{ "_EBool","_wxPrintQuality",0},
|
||||||
{ "_EBool","_signed_int",0},
|
{ "_EBool","_signed_int",0},
|
||||||
{ "_EBool","_int",0},
|
{ "_EBool","_int",0},
|
||||||
{ "_EBool","_wxWindowID",0},
|
{ "_EBool","_wxWindowID",0},
|
||||||
{ "_class_wxRegion","_wxRegion",0},
|
{ "_class_wxRegion","_wxRegion",0},
|
||||||
|
{ "_class_wxDataFormat","_wxDataFormat",0},
|
||||||
{ "_class_wxDropFilesEvent","_wxDropFilesEvent",0},
|
{ "_class_wxDropFilesEvent","_wxDropFilesEvent",0},
|
||||||
{ "_wxWindowDestroyEvent","_class_wxWindowDestroyEvent",0},
|
{ "_wxWindowDestroyEvent","_class_wxWindowDestroyEvent",0},
|
||||||
{ "_wxStaticText","_class_wxStaticText",0},
|
{ "_wxStaticText","_class_wxStaticText",0},
|
||||||
{ "_wxFont","_class_wxFont",0},
|
{ "_wxFont","_class_wxFont",0},
|
||||||
|
{ "_class_wxPyDropTarget","_wxPyDropTarget",0},
|
||||||
{ "_wxCloseEvent","_class_wxCloseEvent",0},
|
{ "_wxCloseEvent","_class_wxCloseEvent",0},
|
||||||
{ "_unsigned_long","_wxDash",0},
|
{ "_unsigned_long","_wxDash",0},
|
||||||
{ "_unsigned_long","_long",0},
|
{ "_unsigned_long","_long",0},
|
||||||
@@ -7159,12 +7280,14 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxCheckBox","_wxCheckBox",0},
|
{ "_class_wxCheckBox","_wxCheckBox",0},
|
||||||
{ "_wxComboBox","_class_wxComboBox",0},
|
{ "_wxComboBox","_class_wxComboBox",0},
|
||||||
{ "_wxRadioButton","_class_wxRadioButton",0},
|
{ "_wxRadioButton","_class_wxRadioButton",0},
|
||||||
|
{ "_signed_int","_wxCoord",0},
|
||||||
{ "_signed_int","_wxPrintQuality",0},
|
{ "_signed_int","_wxPrintQuality",0},
|
||||||
{ "_signed_int","_EBool",0},
|
{ "_signed_int","_EBool",0},
|
||||||
{ "_signed_int","_wxWindowID",0},
|
{ "_signed_int","_wxWindowID",0},
|
||||||
{ "_signed_int","_int",0},
|
{ "_signed_int","_int",0},
|
||||||
{ "_class_wxTextCtrl","_wxTextCtrl",0},
|
{ "_class_wxTextCtrl","_wxTextCtrl",0},
|
||||||
{ "_wxLayoutConstraints","_class_wxLayoutConstraints",0},
|
{ "_wxLayoutConstraints","_class_wxLayoutConstraints",0},
|
||||||
|
{ "_class_wxTextDataObject","_wxTextDataObject",0},
|
||||||
{ "_wxMenu","_class_wxMenu",0},
|
{ "_wxMenu","_class_wxMenu",0},
|
||||||
{ "_class_wxMoveEvent","_wxMoveEvent",0},
|
{ "_class_wxMoveEvent","_wxMoveEvent",0},
|
||||||
{ "_wxListBox","_class_wxCheckListBox",SwigwxCheckListBoxTowxListBox},
|
{ "_wxListBox","_class_wxCheckListBox",SwigwxCheckListBoxTowxListBox},
|
||||||
@@ -7174,6 +7297,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_WXTYPE","_short",0},
|
{ "_WXTYPE","_short",0},
|
||||||
{ "_WXTYPE","_signed_short",0},
|
{ "_WXTYPE","_signed_short",0},
|
||||||
{ "_WXTYPE","_unsigned_short",0},
|
{ "_WXTYPE","_unsigned_short",0},
|
||||||
|
{ "_class_wxDropTarget","_wxDropTarget",0},
|
||||||
{ "_class_wxBrush","_wxBrush",0},
|
{ "_class_wxBrush","_wxBrush",0},
|
||||||
{ "_unsigned_short","_WXTYPE",0},
|
{ "_unsigned_short","_WXTYPE",0},
|
||||||
{ "_unsigned_short","_short",0},
|
{ "_unsigned_short","_short",0},
|
||||||
@@ -7218,10 +7342,13 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxWindow","_wxWindow",0},
|
{ "_class_wxWindow","_wxWindow",0},
|
||||||
{ "_class_wxStaticText","_wxStaticText",0},
|
{ "_class_wxStaticText","_wxStaticText",0},
|
||||||
{ "_class_wxFont","_wxFont",0},
|
{ "_class_wxFont","_wxFont",0},
|
||||||
|
{ "_wxClipboard","_class_wxClipboard",0},
|
||||||
{ "_class_wxPyValidator","_wxPyValidator",0},
|
{ "_class_wxPyValidator","_wxPyValidator",0},
|
||||||
{ "_class_wxCloseEvent","_wxCloseEvent",0},
|
{ "_class_wxCloseEvent","_wxCloseEvent",0},
|
||||||
|
{ "_wxBusyInfo","_class_wxBusyInfo",0},
|
||||||
{ "_class_wxMenuEvent","_wxMenuEvent",0},
|
{ "_class_wxMenuEvent","_wxMenuEvent",0},
|
||||||
{ "_wxPaletteChangedEvent","_class_wxPaletteChangedEvent",0},
|
{ "_wxPaletteChangedEvent","_class_wxPaletteChangedEvent",0},
|
||||||
|
{ "_class_wxPyBitmapDataObject","_wxPyBitmapDataObject",0},
|
||||||
{ "_wxClientDC","_class_wxClientDC",0},
|
{ "_wxClientDC","_class_wxClientDC",0},
|
||||||
{ "_wxMouseEvent","_class_wxMouseEvent",0},
|
{ "_wxMouseEvent","_class_wxMouseEvent",0},
|
||||||
{ "_class_wxPoint","_wxPoint",0},
|
{ "_class_wxPoint","_wxPoint",0},
|
||||||
@@ -7230,6 +7357,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_signed_short","_WXTYPE",0},
|
{ "_signed_short","_WXTYPE",0},
|
||||||
{ "_signed_short","_short",0},
|
{ "_signed_short","_short",0},
|
||||||
{ "_wxMemoryDC","_class_wxMemoryDC",0},
|
{ "_wxMemoryDC","_class_wxMemoryDC",0},
|
||||||
|
{ "_wxPyTextDataObject","_class_wxPyTextDataObject",0},
|
||||||
{ "_wxPaintDC","_class_wxPaintDC",0},
|
{ "_wxPaintDC","_class_wxPaintDC",0},
|
||||||
{ "_class_wxWindowDC","_wxWindowDC",0},
|
{ "_class_wxWindowDC","_wxWindowDC",0},
|
||||||
{ "_class_wxFocusEvent","_wxFocusEvent",0},
|
{ "_class_wxFocusEvent","_wxFocusEvent",0},
|
||||||
@@ -7237,6 +7365,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxAcceleratorEntry","_wxAcceleratorEntry",0},
|
{ "_class_wxAcceleratorEntry","_wxAcceleratorEntry",0},
|
||||||
{ "_class_wxCursor","_wxCursor",0},
|
{ "_class_wxCursor","_wxCursor",0},
|
||||||
{ "_wxPostScriptDC","_class_wxPostScriptDC",0},
|
{ "_wxPostScriptDC","_class_wxPostScriptDC",0},
|
||||||
|
{ "_wxPyFileDropTarget","_class_wxPyFileDropTarget",0},
|
||||||
{ "_wxScrolledWindow","_class_wxScrolledWindow",0},
|
{ "_wxScrolledWindow","_class_wxScrolledWindow",0},
|
||||||
{ "_unsigned_char","_byte",0},
|
{ "_unsigned_char","_byte",0},
|
||||||
{ "_class_wxMenu","_wxMenu",0},
|
{ "_class_wxMenu","_wxMenu",0},
|
||||||
@@ -7280,6 +7409,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxListBox","_class_wxCheckListBox",SwigwxCheckListBoxTowxListBox},
|
{ "_class_wxListBox","_class_wxCheckListBox",SwigwxCheckListBoxTowxListBox},
|
||||||
{ "_class_wxListBox","_wxCheckListBox",SwigwxCheckListBoxTowxListBox},
|
{ "_class_wxListBox","_wxCheckListBox",SwigwxCheckListBoxTowxListBox},
|
||||||
{ "_class_wxListBox","_wxListBox",0},
|
{ "_class_wxListBox","_wxListBox",0},
|
||||||
|
{ "_unsigned_int","_wxCoord",0},
|
||||||
{ "_unsigned_int","_wxPrintQuality",0},
|
{ "_unsigned_int","_wxPrintQuality",0},
|
||||||
{ "_unsigned_int","_size_t",0},
|
{ "_unsigned_int","_size_t",0},
|
||||||
{ "_unsigned_int","_uint",0},
|
{ "_unsigned_int","_uint",0},
|
||||||
@@ -7292,6 +7422,8 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_short","_unsigned_short",0},
|
{ "_short","_unsigned_short",0},
|
||||||
{ "_short","_signed_short",0},
|
{ "_short","_signed_short",0},
|
||||||
{ "_class_wxStaticBox","_wxStaticBox",0},
|
{ "_class_wxStaticBox","_wxStaticBox",0},
|
||||||
|
{ "_class_wxPyDataObjectSimple","_wxPyDataObjectSimple",0},
|
||||||
|
{ "_class_wxPyDropSource","_wxPyDropSource",0},
|
||||||
{ "_class_wxScrollEvent","_wxScrollEvent",0},
|
{ "_class_wxScrollEvent","_wxScrollEvent",0},
|
||||||
{ "_wxJoystickEvent","_class_wxJoystickEvent",0},
|
{ "_wxJoystickEvent","_class_wxJoystickEvent",0},
|
||||||
{ "_class_wxChoice","_class_wxComboBox",SwigwxComboBoxTowxChoice},
|
{ "_class_wxChoice","_class_wxComboBox",SwigwxComboBoxTowxChoice},
|
||||||
@@ -7301,6 +7433,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxImageList","_wxImageList",0},
|
{ "_class_wxImageList","_wxImageList",0},
|
||||||
{ "_class_wxBitmapButton","_wxBitmapButton",0},
|
{ "_class_wxBitmapButton","_wxBitmapButton",0},
|
||||||
{ "_class_wxPaletteChangedEvent","_wxPaletteChangedEvent",0},
|
{ "_class_wxPaletteChangedEvent","_wxPaletteChangedEvent",0},
|
||||||
|
{ "_wxWindowID","_wxCoord",0},
|
||||||
{ "_wxWindowID","_wxPrintQuality",0},
|
{ "_wxWindowID","_wxPrintQuality",0},
|
||||||
{ "_wxWindowID","_size_t",0},
|
{ "_wxWindowID","_size_t",0},
|
||||||
{ "_wxWindowID","_EBool",0},
|
{ "_wxWindowID","_EBool",0},
|
||||||
@@ -7309,6 +7442,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxWindowID","_signed_int",0},
|
{ "_wxWindowID","_signed_int",0},
|
||||||
{ "_wxWindowID","_unsigned_int",0},
|
{ "_wxWindowID","_unsigned_int",0},
|
||||||
{ "_class_wxScrollWinEvent","_wxScrollWinEvent",0},
|
{ "_class_wxScrollWinEvent","_wxScrollWinEvent",0},
|
||||||
|
{ "_int","_wxCoord",0},
|
||||||
{ "_int","_wxPrintQuality",0},
|
{ "_int","_wxPrintQuality",0},
|
||||||
{ "_int","_size_t",0},
|
{ "_int","_size_t",0},
|
||||||
{ "_int","_EBool",0},
|
{ "_int","_EBool",0},
|
||||||
@@ -7326,8 +7460,10 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxButton","_class_wxButton",0},
|
{ "_wxButton","_class_wxButton",0},
|
||||||
{ "_wxSize","_class_wxSize",0},
|
{ "_wxSize","_class_wxSize",0},
|
||||||
{ "_wxRegionIterator","_class_wxRegionIterator",0},
|
{ "_wxRegionIterator","_class_wxRegionIterator",0},
|
||||||
|
{ "_class_wxPyTextDataObject","_wxPyTextDataObject",0},
|
||||||
{ "_class_wxPaintDC","_wxPaintDC",0},
|
{ "_class_wxPaintDC","_wxPaintDC",0},
|
||||||
{ "_class_wxSysColourChangedEvent","_wxSysColourChangedEvent",0},
|
{ "_class_wxSysColourChangedEvent","_wxSysColourChangedEvent",0},
|
||||||
|
{ "_class_wxPyFileDropTarget","_wxPyFileDropTarget",0},
|
||||||
{ "_class_wxInitDialogEvent","_wxInitDialogEvent",0},
|
{ "_class_wxInitDialogEvent","_wxInitDialogEvent",0},
|
||||||
{ "_class_wxComboBox","_wxComboBox",0},
|
{ "_class_wxComboBox","_wxComboBox",0},
|
||||||
{ "_class_wxRadioButton","_wxRadioButton",0},
|
{ "_class_wxRadioButton","_wxRadioButton",0},
|
||||||
@@ -7377,19 +7513,32 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxScreenDC","_wxScreenDC",0},
|
{ "_class_wxScreenDC","_wxScreenDC",0},
|
||||||
{ "_wxPalette","_class_wxPalette",0},
|
{ "_wxPalette","_class_wxPalette",0},
|
||||||
{ "_class_wxIdleEvent","_wxIdleEvent",0},
|
{ "_class_wxIdleEvent","_wxIdleEvent",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","_wxPrintQuality",0},
|
||||||
{ "_wxEraseEvent","_class_wxEraseEvent",0},
|
{ "_wxEraseEvent","_class_wxEraseEvent",0},
|
||||||
|
{ "_wxDataObjectComposite","_class_wxDataObjectComposite",0},
|
||||||
{ "_class_wxJoystickEvent","_wxJoystickEvent",0},
|
{ "_class_wxJoystickEvent","_wxJoystickEvent",0},
|
||||||
{ "_wxRegion","_class_wxRegion",0},
|
{ "_wxRegion","_class_wxRegion",0},
|
||||||
{ "_class_wxShowEvent","_wxShowEvent",0},
|
{ "_class_wxShowEvent","_wxShowEvent",0},
|
||||||
|
{ "_wxPyDropTarget","_class_wxPyDropTarget",0},
|
||||||
{ "_wxActivateEvent","_class_wxActivateEvent",0},
|
{ "_wxActivateEvent","_class_wxActivateEvent",0},
|
||||||
{ "_wxGauge","_class_wxGauge",0},
|
{ "_wxGauge","_class_wxGauge",0},
|
||||||
{ "_class_wxCheckListBox","_wxCheckListBox",0},
|
{ "_class_wxCheckListBox","_wxCheckListBox",0},
|
||||||
|
{ "_class_wxBusyInfo","_wxBusyInfo",0},
|
||||||
{ "_class_wxCommandEvent","_wxCommandEvent",0},
|
{ "_class_wxCommandEvent","_wxCommandEvent",0},
|
||||||
{ "_class_wxClientDC","_wxClientDC",0},
|
{ "_class_wxClientDC","_wxClientDC",0},
|
||||||
{ "_class_wxSizeEvent","_wxSizeEvent",0},
|
{ "_class_wxSizeEvent","_wxSizeEvent",0},
|
||||||
|
{ "_wxCustomDataObject","_class_wxCustomDataObject",0},
|
||||||
{ "_class_wxSize","_wxSize",0},
|
{ "_class_wxSize","_wxSize",0},
|
||||||
{ "_class_wxBitmap","_wxBitmap",0},
|
{ "_class_wxBitmap","_wxBitmap",0},
|
||||||
{ "_class_wxMemoryDC","_wxMemoryDC",0},
|
{ "_class_wxMemoryDC","_wxMemoryDC",0},
|
||||||
|
{ "_wxPyTextDropTarget","_class_wxPyTextDropTarget",0},
|
||||||
{ "_wxMenuBar","_class_wxMenuBar",0},
|
{ "_wxMenuBar","_class_wxMenuBar",0},
|
||||||
{ "_wxEvtHandler","_class_wxSlider",SwigwxSliderTowxEvtHandler},
|
{ "_wxEvtHandler","_class_wxSlider",SwigwxSliderTowxEvtHandler},
|
||||||
{ "_wxEvtHandler","_wxSlider",SwigwxSliderTowxEvtHandler},
|
{ "_wxEvtHandler","_wxSlider",SwigwxSliderTowxEvtHandler},
|
||||||
@@ -7438,7 +7587,9 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxKeyEvent","_class_wxKeyEvent",0},
|
{ "_wxKeyEvent","_class_wxKeyEvent",0},
|
||||||
{ "_wxMoveEvent","_class_wxMoveEvent",0},
|
{ "_wxMoveEvent","_class_wxMoveEvent",0},
|
||||||
{ "_class_wxPalette","_wxPalette",0},
|
{ "_class_wxPalette","_wxPalette",0},
|
||||||
|
{ "_wxFileDataObject","_class_wxFileDataObject",0},
|
||||||
{ "_class_wxEraseEvent","_wxEraseEvent",0},
|
{ "_class_wxEraseEvent","_wxEraseEvent",0},
|
||||||
|
{ "_class_wxDataObjectComposite","_wxDataObjectComposite",0},
|
||||||
{ "_wxWindow","_class_wxSlider",SwigwxSliderTowxWindow},
|
{ "_wxWindow","_class_wxSlider",SwigwxSliderTowxWindow},
|
||||||
{ "_wxWindow","_wxSlider",SwigwxSliderTowxWindow},
|
{ "_wxWindow","_wxSlider",SwigwxSliderTowxWindow},
|
||||||
{ "_wxWindow","_class_wxRadioButton",SwigwxRadioButtonTowxWindow},
|
{ "_wxWindow","_class_wxRadioButton",SwigwxRadioButtonTowxWindow},
|
||||||
|
@@ -7,6 +7,8 @@ from windows import *
|
|||||||
|
|
||||||
from gdi import *
|
from gdi import *
|
||||||
|
|
||||||
|
from clip_dnd import *
|
||||||
|
|
||||||
from events import *
|
from events import *
|
||||||
import wx
|
import wx
|
||||||
class wxControlPtr(wxWindowPtr):
|
class wxControlPtr(wxWindowPtr):
|
||||||
@@ -520,6 +522,15 @@ class wxTextCtrlPtr(wxControlPtr):
|
|||||||
def IsEditable(self, *_args, **_kwargs):
|
def IsEditable(self, *_args, **_kwargs):
|
||||||
val = apply(controlsc.wxTextCtrl_IsEditable,(self,) + _args, _kwargs)
|
val = apply(controlsc.wxTextCtrl_IsEditable,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
|
def Undo(self, *_args, **_kwargs):
|
||||||
|
val = apply(controlsc.wxTextCtrl_Undo,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def Redo(self, *_args, **_kwargs):
|
||||||
|
val = apply(controlsc.wxTextCtrl_Redo,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def write(self, *_args, **_kwargs):
|
||||||
|
val = apply(controlsc.wxTextCtrl_write,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
return "<C wxTextCtrl instance at %s>" % (self.this,)
|
return "<C wxTextCtrl instance at %s>" % (self.this,)
|
||||||
class wxTextCtrl(wxTextCtrlPtr):
|
class wxTextCtrl(wxTextCtrlPtr):
|
||||||
|
@@ -3569,6 +3569,61 @@ static PyObject *_wrap_wxTreeCtrl_SetStateImageList(PyObject *self, PyObject *ar
|
|||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#define wxTreeCtrl_GetSpacing(_swigobj) (_swigobj->GetSpacing())
|
||||||
|
static PyObject *_wrap_wxTreeCtrl_GetSpacing(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
|
PyObject * _resultobj;
|
||||||
|
unsigned int _result;
|
||||||
|
wxTreeCtrl * _arg0;
|
||||||
|
PyObject * _argo0 = 0;
|
||||||
|
char *_kwnames[] = { "self", NULL };
|
||||||
|
|
||||||
|
self = self;
|
||||||
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxTreeCtrl_GetSpacing",_kwnames,&_argo0))
|
||||||
|
return NULL;
|
||||||
|
if (_argo0) {
|
||||||
|
if (_argo0 == Py_None) { _arg0 = NULL; }
|
||||||
|
else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) {
|
||||||
|
PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_GetSpacing. Expected _wxTreeCtrl_p.");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
|
_result = (unsigned int )wxTreeCtrl_GetSpacing(_arg0);
|
||||||
|
|
||||||
|
wxPy_END_ALLOW_THREADS;
|
||||||
|
} _resultobj = Py_BuildValue("i",_result);
|
||||||
|
return _resultobj;
|
||||||
|
}
|
||||||
|
|
||||||
|
#define wxTreeCtrl_SetSpacing(_swigobj,_swigarg0) (_swigobj->SetSpacing(_swigarg0))
|
||||||
|
static PyObject *_wrap_wxTreeCtrl_SetSpacing(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
|
PyObject * _resultobj;
|
||||||
|
wxTreeCtrl * _arg0;
|
||||||
|
unsigned int _arg1;
|
||||||
|
PyObject * _argo0 = 0;
|
||||||
|
char *_kwnames[] = { "self","spacing", NULL };
|
||||||
|
|
||||||
|
self = self;
|
||||||
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,"Oi:wxTreeCtrl_SetSpacing",_kwnames,&_argo0,&_arg1))
|
||||||
|
return NULL;
|
||||||
|
if (_argo0) {
|
||||||
|
if (_argo0 == Py_None) { _arg0 = NULL; }
|
||||||
|
else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxTreeCtrl_p")) {
|
||||||
|
PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxTreeCtrl_SetSpacing. Expected _wxTreeCtrl_p.");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
|
wxTreeCtrl_SetSpacing(_arg0,_arg1);
|
||||||
|
|
||||||
|
wxPy_END_ALLOW_THREADS;
|
||||||
|
} Py_INCREF(Py_None);
|
||||||
|
_resultobj = Py_None;
|
||||||
|
return _resultobj;
|
||||||
|
}
|
||||||
|
|
||||||
#define wxTreeCtrl_GetItemText(_swigobj,_swigarg0) (_swigobj->GetItemText(_swigarg0))
|
#define wxTreeCtrl_GetItemText(_swigobj,_swigarg0) (_swigobj->GetItemText(_swigarg0))
|
||||||
static PyObject *_wrap_wxTreeCtrl_GetItemText(PyObject *self, PyObject *args, PyObject *kwargs) {
|
static PyObject *_wrap_wxTreeCtrl_GetItemText(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
PyObject * _resultobj;
|
PyObject * _resultobj;
|
||||||
@@ -5402,14 +5457,13 @@ static PyObject *_wrap_wxTreeCtrl_SetItemBold(PyObject *self, PyObject *args, Py
|
|||||||
PyObject * _resultobj;
|
PyObject * _resultobj;
|
||||||
wxTreeCtrl * _arg0;
|
wxTreeCtrl * _arg0;
|
||||||
wxTreeItemId * _arg1;
|
wxTreeItemId * _arg1;
|
||||||
bool _arg2 = (bool ) TRUE;
|
int _arg2 = (int ) TRUE;
|
||||||
PyObject * _argo0 = 0;
|
PyObject * _argo0 = 0;
|
||||||
PyObject * _argo1 = 0;
|
PyObject * _argo1 = 0;
|
||||||
int tempbool2 = (int) TRUE;
|
|
||||||
char *_kwnames[] = { "self","item","bold", NULL };
|
char *_kwnames[] = { "self","item","bold", NULL };
|
||||||
|
|
||||||
self = self;
|
self = self;
|
||||||
if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|i:wxTreeCtrl_SetItemBold",_kwnames,&_argo0,&_argo1,&tempbool2))
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO|i:wxTreeCtrl_SetItemBold",_kwnames,&_argo0,&_argo1,&_arg2))
|
||||||
return NULL;
|
return NULL;
|
||||||
if (_argo0) {
|
if (_argo0) {
|
||||||
if (_argo0 == Py_None) { _arg0 = NULL; }
|
if (_argo0 == Py_None) { _arg0 = NULL; }
|
||||||
@@ -5425,7 +5479,6 @@ static PyObject *_wrap_wxTreeCtrl_SetItemBold(PyObject *self, PyObject *args, Py
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
_arg2 = (bool ) tempbool2;
|
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
wxTreeCtrl_SetItemBold(_arg0,*_arg1,_arg2);
|
wxTreeCtrl_SetItemBold(_arg0,*_arg1,_arg2);
|
||||||
@@ -5559,6 +5612,8 @@ static PyMethodDef controls2cMethods[] = {
|
|||||||
{ "wxTreeCtrl_GetItemSelectedImage", (PyCFunction) _wrap_wxTreeCtrl_GetItemSelectedImage, METH_VARARGS | METH_KEYWORDS },
|
{ "wxTreeCtrl_GetItemSelectedImage", (PyCFunction) _wrap_wxTreeCtrl_GetItemSelectedImage, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "wxTreeCtrl_GetItemImage", (PyCFunction) _wrap_wxTreeCtrl_GetItemImage, METH_VARARGS | METH_KEYWORDS },
|
{ "wxTreeCtrl_GetItemImage", (PyCFunction) _wrap_wxTreeCtrl_GetItemImage, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "wxTreeCtrl_GetItemText", (PyCFunction) _wrap_wxTreeCtrl_GetItemText, METH_VARARGS | METH_KEYWORDS },
|
{ "wxTreeCtrl_GetItemText", (PyCFunction) _wrap_wxTreeCtrl_GetItemText, METH_VARARGS | METH_KEYWORDS },
|
||||||
|
{ "wxTreeCtrl_SetSpacing", (PyCFunction) _wrap_wxTreeCtrl_SetSpacing, METH_VARARGS | METH_KEYWORDS },
|
||||||
|
{ "wxTreeCtrl_GetSpacing", (PyCFunction) _wrap_wxTreeCtrl_GetSpacing, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "wxTreeCtrl_SetStateImageList", (PyCFunction) _wrap_wxTreeCtrl_SetStateImageList, METH_VARARGS | METH_KEYWORDS },
|
{ "wxTreeCtrl_SetStateImageList", (PyCFunction) _wrap_wxTreeCtrl_SetStateImageList, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "wxTreeCtrl_SetImageList", (PyCFunction) _wrap_wxTreeCtrl_SetImageList, METH_VARARGS | METH_KEYWORDS },
|
{ "wxTreeCtrl_SetImageList", (PyCFunction) _wrap_wxTreeCtrl_SetImageList, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "wxTreeCtrl_GetStateImageList", (PyCFunction) _wrap_wxTreeCtrl_GetStateImageList, METH_VARARGS | METH_KEYWORDS },
|
{ "wxTreeCtrl_GetStateImageList", (PyCFunction) _wrap_wxTreeCtrl_GetStateImageList, METH_VARARGS | METH_KEYWORDS },
|
||||||
@@ -5682,7 +5737,10 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxActivateEvent","_wxActivateEvent",0},
|
{ "_class_wxActivateEvent","_wxActivateEvent",0},
|
||||||
{ "_signed_long","_long",0},
|
{ "_signed_long","_long",0},
|
||||||
{ "_wxMenuEvent","_class_wxMenuEvent",0},
|
{ "_wxMenuEvent","_class_wxMenuEvent",0},
|
||||||
|
{ "_wxPyBitmapDataObject","_class_wxPyBitmapDataObject",0},
|
||||||
|
{ "_wxBitmapDataObject","_class_wxBitmapDataObject",0},
|
||||||
{ "_class_wxPyCommandEvent","_wxPyCommandEvent",0},
|
{ "_class_wxPyCommandEvent","_wxPyCommandEvent",0},
|
||||||
|
{ "_wxPrintQuality","_wxCoord",0},
|
||||||
{ "_wxPrintQuality","_int",0},
|
{ "_wxPrintQuality","_int",0},
|
||||||
{ "_wxPrintQuality","_signed_int",0},
|
{ "_wxPrintQuality","_signed_int",0},
|
||||||
{ "_wxPrintQuality","_unsigned_int",0},
|
{ "_wxPrintQuality","_unsigned_int",0},
|
||||||
@@ -5690,7 +5748,9 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPrintQuality","_uint",0},
|
{ "_wxPrintQuality","_uint",0},
|
||||||
{ "_wxPrintQuality","_EBool",0},
|
{ "_wxPrintQuality","_EBool",0},
|
||||||
{ "_wxPrintQuality","_size_t",0},
|
{ "_wxPrintQuality","_size_t",0},
|
||||||
|
{ "_class_wxCustomDataObject","_wxCustomDataObject",0},
|
||||||
{ "_class_wxRegionIterator","_wxRegionIterator",0},
|
{ "_class_wxRegionIterator","_wxRegionIterator",0},
|
||||||
|
{ "_class_wxPyTextDropTarget","_wxPyTextDropTarget",0},
|
||||||
{ "_class_wxMenuBar","_wxMenuBar",0},
|
{ "_class_wxMenuBar","_wxMenuBar",0},
|
||||||
{ "_class_wxPyTreeItemData","_wxPyTreeItemData",0},
|
{ "_class_wxPyTreeItemData","_wxPyTreeItemData",0},
|
||||||
{ "_class_wxEvtHandler","_class_wxTreeCtrl",SwigwxTreeCtrlTowxEvtHandler},
|
{ "_class_wxEvtHandler","_class_wxTreeCtrl",SwigwxTreeCtrlTowxEvtHandler},
|
||||||
@@ -5709,20 +5769,27 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPen","_class_wxPen",0},
|
{ "_wxPen","_class_wxPen",0},
|
||||||
{ "_wxUpdateUIEvent","_class_wxUpdateUIEvent",0},
|
{ "_wxUpdateUIEvent","_class_wxUpdateUIEvent",0},
|
||||||
{ "_byte","_unsigned_char",0},
|
{ "_byte","_unsigned_char",0},
|
||||||
|
{ "_wxDataObject","_class_wxDataObject",0},
|
||||||
{ "_wxStaticBox","_class_wxStaticBox",0},
|
{ "_wxStaticBox","_class_wxStaticBox",0},
|
||||||
|
{ "_wxPyDataObjectSimple","_class_wxPyDataObjectSimple",0},
|
||||||
|
{ "_wxPyDropSource","_class_wxPyDropSource",0},
|
||||||
{ "_wxChoice","_class_wxChoice",0},
|
{ "_wxChoice","_class_wxChoice",0},
|
||||||
{ "_wxSlider","_class_wxSlider",0},
|
{ "_wxSlider","_class_wxSlider",0},
|
||||||
{ "_long","_wxDash",0},
|
{ "_long","_wxDash",0},
|
||||||
{ "_long","_unsigned_long",0},
|
{ "_long","_unsigned_long",0},
|
||||||
{ "_long","_signed_long",0},
|
{ "_long","_signed_long",0},
|
||||||
{ "_wxImageList","_class_wxImageList",0},
|
{ "_wxImageList","_class_wxImageList",0},
|
||||||
|
{ "_wxDataObjectSimple","_class_wxDataObjectSimple",0},
|
||||||
{ "_wxDropFilesEvent","_class_wxDropFilesEvent",0},
|
{ "_wxDropFilesEvent","_class_wxDropFilesEvent",0},
|
||||||
{ "_wxBitmapButton","_class_wxBitmapButton",0},
|
{ "_wxBitmapButton","_class_wxBitmapButton",0},
|
||||||
{ "_class_wxAcceleratorTable","_wxAcceleratorTable",0},
|
{ "_class_wxAcceleratorTable","_wxAcceleratorTable",0},
|
||||||
|
{ "_class_wxClipboard","_wxClipboard",0},
|
||||||
{ "_class_wxGauge","_wxGauge",0},
|
{ "_class_wxGauge","_wxGauge",0},
|
||||||
{ "_wxDC","_class_wxDC",0},
|
{ "_wxDC","_class_wxDC",0},
|
||||||
|
{ "_class_wxBitmapDataObject","_wxBitmapDataObject",0},
|
||||||
{ "_wxListEvent","_class_wxListEvent",0},
|
{ "_wxListEvent","_class_wxListEvent",0},
|
||||||
{ "_wxSpinEvent","_class_wxSpinEvent",0},
|
{ "_wxSpinEvent","_class_wxSpinEvent",0},
|
||||||
|
{ "_size_t","_wxCoord",0},
|
||||||
{ "_size_t","_wxPrintQuality",0},
|
{ "_size_t","_wxPrintQuality",0},
|
||||||
{ "_size_t","_unsigned_int",0},
|
{ "_size_t","_unsigned_int",0},
|
||||||
{ "_size_t","_int",0},
|
{ "_size_t","_int",0},
|
||||||
@@ -5741,14 +5808,20 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPyEvent","_class_wxPyEvent",0},
|
{ "_wxPyEvent","_class_wxPyEvent",0},
|
||||||
{ "_wxTextCtrl","_class_wxTextCtrl",0},
|
{ "_wxTextCtrl","_class_wxTextCtrl",0},
|
||||||
{ "_class_wxMask","_wxMask",0},
|
{ "_class_wxMask","_wxMask",0},
|
||||||
|
{ "_wxTextDataObject","_class_wxTextDataObject",0},
|
||||||
{ "_class_wxKeyEvent","_wxKeyEvent",0},
|
{ "_class_wxKeyEvent","_wxKeyEvent",0},
|
||||||
{ "_wxColour","_class_wxColour",0},
|
{ "_wxColour","_class_wxColour",0},
|
||||||
{ "_class_wxDialog","_wxDialog",0},
|
{ "_class_wxDialog","_wxDialog",0},
|
||||||
|
{ "_class_wxFileDataObject","_wxFileDataObject",0},
|
||||||
{ "_wxIdleEvent","_class_wxIdleEvent",0},
|
{ "_wxIdleEvent","_class_wxIdleEvent",0},
|
||||||
{ "_class_wxUpdateUIEvent","_wxUpdateUIEvent",0},
|
{ "_class_wxUpdateUIEvent","_wxUpdateUIEvent",0},
|
||||||
|
{ "_class_wxDataObject","_wxDataObject",0},
|
||||||
{ "_wxStaticLine","_class_wxStaticLine",0},
|
{ "_wxStaticLine","_class_wxStaticLine",0},
|
||||||
{ "_wxBrush","_class_wxBrush",0},
|
{ "_wxBrush","_class_wxBrush",0},
|
||||||
|
{ "_wxDataFormat","_class_wxDataFormat",0},
|
||||||
|
{ "_class_wxDataObjectSimple","_wxDataObjectSimple",0},
|
||||||
{ "_wxShowEvent","_class_wxShowEvent",0},
|
{ "_wxShowEvent","_class_wxShowEvent",0},
|
||||||
|
{ "_uint","_wxCoord",0},
|
||||||
{ "_uint","_wxPrintQuality",0},
|
{ "_uint","_wxPrintQuality",0},
|
||||||
{ "_uint","_size_t",0},
|
{ "_uint","_size_t",0},
|
||||||
{ "_uint","_unsigned_int",0},
|
{ "_uint","_unsigned_int",0},
|
||||||
@@ -5785,17 +5858,21 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxIconizeEvent","_wxIconizeEvent",0},
|
{ "_class_wxIconizeEvent","_wxIconizeEvent",0},
|
||||||
{ "_class_wxStaticBitmap","_wxStaticBitmap",0},
|
{ "_class_wxStaticBitmap","_wxStaticBitmap",0},
|
||||||
{ "_wxListItem","_class_wxListItem",0},
|
{ "_wxListItem","_class_wxListItem",0},
|
||||||
|
{ "_wxDropTarget","_class_wxDropTarget",0},
|
||||||
{ "_class_wxStaticLine","_wxStaticLine",0},
|
{ "_class_wxStaticLine","_wxStaticLine",0},
|
||||||
{ "_wxScrollEvent","_class_wxScrollEvent",0},
|
{ "_wxScrollEvent","_class_wxScrollEvent",0},
|
||||||
|
{ "_EBool","_wxCoord",0},
|
||||||
{ "_EBool","_wxPrintQuality",0},
|
{ "_EBool","_wxPrintQuality",0},
|
||||||
{ "_EBool","_signed_int",0},
|
{ "_EBool","_signed_int",0},
|
||||||
{ "_EBool","_int",0},
|
{ "_EBool","_int",0},
|
||||||
{ "_EBool","_wxWindowID",0},
|
{ "_EBool","_wxWindowID",0},
|
||||||
{ "_class_wxRegion","_wxRegion",0},
|
{ "_class_wxRegion","_wxRegion",0},
|
||||||
|
{ "_class_wxDataFormat","_wxDataFormat",0},
|
||||||
{ "_class_wxDropFilesEvent","_wxDropFilesEvent",0},
|
{ "_class_wxDropFilesEvent","_wxDropFilesEvent",0},
|
||||||
{ "_wxWindowDestroyEvent","_class_wxWindowDestroyEvent",0},
|
{ "_wxWindowDestroyEvent","_class_wxWindowDestroyEvent",0},
|
||||||
{ "_wxStaticText","_class_wxStaticText",0},
|
{ "_wxStaticText","_class_wxStaticText",0},
|
||||||
{ "_wxFont","_class_wxFont",0},
|
{ "_wxFont","_class_wxFont",0},
|
||||||
|
{ "_class_wxPyDropTarget","_wxPyDropTarget",0},
|
||||||
{ "_wxCloseEvent","_class_wxCloseEvent",0},
|
{ "_wxCloseEvent","_class_wxCloseEvent",0},
|
||||||
{ "_unsigned_long","_wxDash",0},
|
{ "_unsigned_long","_wxDash",0},
|
||||||
{ "_unsigned_long","_long",0},
|
{ "_unsigned_long","_long",0},
|
||||||
@@ -5814,12 +5891,14 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxCheckBox","_wxCheckBox",0},
|
{ "_class_wxCheckBox","_wxCheckBox",0},
|
||||||
{ "_wxComboBox","_class_wxComboBox",0},
|
{ "_wxComboBox","_class_wxComboBox",0},
|
||||||
{ "_wxRadioButton","_class_wxRadioButton",0},
|
{ "_wxRadioButton","_class_wxRadioButton",0},
|
||||||
|
{ "_signed_int","_wxCoord",0},
|
||||||
{ "_signed_int","_wxPrintQuality",0},
|
{ "_signed_int","_wxPrintQuality",0},
|
||||||
{ "_signed_int","_EBool",0},
|
{ "_signed_int","_EBool",0},
|
||||||
{ "_signed_int","_wxWindowID",0},
|
{ "_signed_int","_wxWindowID",0},
|
||||||
{ "_signed_int","_int",0},
|
{ "_signed_int","_int",0},
|
||||||
{ "_class_wxTextCtrl","_wxTextCtrl",0},
|
{ "_class_wxTextCtrl","_wxTextCtrl",0},
|
||||||
{ "_wxLayoutConstraints","_class_wxLayoutConstraints",0},
|
{ "_wxLayoutConstraints","_class_wxLayoutConstraints",0},
|
||||||
|
{ "_class_wxTextDataObject","_wxTextDataObject",0},
|
||||||
{ "_wxMenu","_class_wxMenu",0},
|
{ "_wxMenu","_class_wxMenu",0},
|
||||||
{ "_class_wxMoveEvent","_wxMoveEvent",0},
|
{ "_class_wxMoveEvent","_wxMoveEvent",0},
|
||||||
{ "_wxListBox","_class_wxListBox",0},
|
{ "_wxListBox","_class_wxListBox",0},
|
||||||
@@ -5827,6 +5906,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_WXTYPE","_short",0},
|
{ "_WXTYPE","_short",0},
|
||||||
{ "_WXTYPE","_signed_short",0},
|
{ "_WXTYPE","_signed_short",0},
|
||||||
{ "_WXTYPE","_unsigned_short",0},
|
{ "_WXTYPE","_unsigned_short",0},
|
||||||
|
{ "_class_wxDropTarget","_wxDropTarget",0},
|
||||||
{ "_class_wxBrush","_wxBrush",0},
|
{ "_class_wxBrush","_wxBrush",0},
|
||||||
{ "_unsigned_short","_WXTYPE",0},
|
{ "_unsigned_short","_WXTYPE",0},
|
||||||
{ "_unsigned_short","_short",0},
|
{ "_unsigned_short","_short",0},
|
||||||
@@ -5837,10 +5917,13 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxWindow","_wxWindow",0},
|
{ "_class_wxWindow","_wxWindow",0},
|
||||||
{ "_class_wxStaticText","_wxStaticText",0},
|
{ "_class_wxStaticText","_wxStaticText",0},
|
||||||
{ "_class_wxFont","_wxFont",0},
|
{ "_class_wxFont","_wxFont",0},
|
||||||
|
{ "_wxClipboard","_class_wxClipboard",0},
|
||||||
{ "_class_wxPyValidator","_wxPyValidator",0},
|
{ "_class_wxPyValidator","_wxPyValidator",0},
|
||||||
{ "_class_wxCloseEvent","_wxCloseEvent",0},
|
{ "_class_wxCloseEvent","_wxCloseEvent",0},
|
||||||
|
{ "_wxBusyInfo","_class_wxBusyInfo",0},
|
||||||
{ "_class_wxMenuEvent","_wxMenuEvent",0},
|
{ "_class_wxMenuEvent","_wxMenuEvent",0},
|
||||||
{ "_wxPaletteChangedEvent","_class_wxPaletteChangedEvent",0},
|
{ "_wxPaletteChangedEvent","_class_wxPaletteChangedEvent",0},
|
||||||
|
{ "_class_wxPyBitmapDataObject","_wxPyBitmapDataObject",0},
|
||||||
{ "_wxClientDC","_class_wxClientDC",0},
|
{ "_wxClientDC","_class_wxClientDC",0},
|
||||||
{ "_wxMouseEvent","_class_wxMouseEvent",0},
|
{ "_wxMouseEvent","_class_wxMouseEvent",0},
|
||||||
{ "_wxListCtrl","_class_wxListCtrl",0},
|
{ "_wxListCtrl","_class_wxListCtrl",0},
|
||||||
@@ -5850,6 +5933,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_signed_short","_WXTYPE",0},
|
{ "_signed_short","_WXTYPE",0},
|
||||||
{ "_signed_short","_short",0},
|
{ "_signed_short","_short",0},
|
||||||
{ "_wxMemoryDC","_class_wxMemoryDC",0},
|
{ "_wxMemoryDC","_class_wxMemoryDC",0},
|
||||||
|
{ "_wxPyTextDataObject","_class_wxPyTextDataObject",0},
|
||||||
{ "_wxPaintDC","_class_wxPaintDC",0},
|
{ "_wxPaintDC","_class_wxPaintDC",0},
|
||||||
{ "_class_wxWindowDC","_wxWindowDC",0},
|
{ "_class_wxWindowDC","_wxWindowDC",0},
|
||||||
{ "_class_wxFocusEvent","_wxFocusEvent",0},
|
{ "_class_wxFocusEvent","_wxFocusEvent",0},
|
||||||
@@ -5857,6 +5941,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxAcceleratorEntry","_wxAcceleratorEntry",0},
|
{ "_class_wxAcceleratorEntry","_wxAcceleratorEntry",0},
|
||||||
{ "_class_wxCursor","_wxCursor",0},
|
{ "_class_wxCursor","_wxCursor",0},
|
||||||
{ "_wxPostScriptDC","_class_wxPostScriptDC",0},
|
{ "_wxPostScriptDC","_class_wxPostScriptDC",0},
|
||||||
|
{ "_wxPyFileDropTarget","_class_wxPyFileDropTarget",0},
|
||||||
{ "_wxScrolledWindow","_class_wxScrolledWindow",0},
|
{ "_wxScrolledWindow","_class_wxScrolledWindow",0},
|
||||||
{ "_wxTreeItemId","_class_wxTreeItemId",0},
|
{ "_wxTreeItemId","_class_wxTreeItemId",0},
|
||||||
{ "_unsigned_char","_byte",0},
|
{ "_unsigned_char","_byte",0},
|
||||||
@@ -5867,6 +5952,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxControl","_wxListCtrl",SwigwxListCtrlTowxControl},
|
{ "_wxControl","_wxListCtrl",SwigwxListCtrlTowxControl},
|
||||||
{ "_wxControl","_class_wxControl",0},
|
{ "_wxControl","_class_wxControl",0},
|
||||||
{ "_class_wxListBox","_wxListBox",0},
|
{ "_class_wxListBox","_wxListBox",0},
|
||||||
|
{ "_unsigned_int","_wxCoord",0},
|
||||||
{ "_unsigned_int","_wxPrintQuality",0},
|
{ "_unsigned_int","_wxPrintQuality",0},
|
||||||
{ "_unsigned_int","_size_t",0},
|
{ "_unsigned_int","_size_t",0},
|
||||||
{ "_unsigned_int","_uint",0},
|
{ "_unsigned_int","_uint",0},
|
||||||
@@ -5880,6 +5966,8 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_short","_unsigned_short",0},
|
{ "_short","_unsigned_short",0},
|
||||||
{ "_short","_signed_short",0},
|
{ "_short","_signed_short",0},
|
||||||
{ "_class_wxStaticBox","_wxStaticBox",0},
|
{ "_class_wxStaticBox","_wxStaticBox",0},
|
||||||
|
{ "_class_wxPyDataObjectSimple","_wxPyDataObjectSimple",0},
|
||||||
|
{ "_class_wxPyDropSource","_wxPyDropSource",0},
|
||||||
{ "_class_wxScrollEvent","_wxScrollEvent",0},
|
{ "_class_wxScrollEvent","_wxScrollEvent",0},
|
||||||
{ "_wxJoystickEvent","_class_wxJoystickEvent",0},
|
{ "_wxJoystickEvent","_class_wxJoystickEvent",0},
|
||||||
{ "_class_wxChoice","_wxChoice",0},
|
{ "_class_wxChoice","_wxChoice",0},
|
||||||
@@ -5887,6 +5975,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxImageList","_wxImageList",0},
|
{ "_class_wxImageList","_wxImageList",0},
|
||||||
{ "_class_wxBitmapButton","_wxBitmapButton",0},
|
{ "_class_wxBitmapButton","_wxBitmapButton",0},
|
||||||
{ "_class_wxPaletteChangedEvent","_wxPaletteChangedEvent",0},
|
{ "_class_wxPaletteChangedEvent","_wxPaletteChangedEvent",0},
|
||||||
|
{ "_wxWindowID","_wxCoord",0},
|
||||||
{ "_wxWindowID","_wxPrintQuality",0},
|
{ "_wxWindowID","_wxPrintQuality",0},
|
||||||
{ "_wxWindowID","_size_t",0},
|
{ "_wxWindowID","_size_t",0},
|
||||||
{ "_wxWindowID","_EBool",0},
|
{ "_wxWindowID","_EBool",0},
|
||||||
@@ -5895,6 +5984,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxWindowID","_signed_int",0},
|
{ "_wxWindowID","_signed_int",0},
|
||||||
{ "_wxWindowID","_unsigned_int",0},
|
{ "_wxWindowID","_unsigned_int",0},
|
||||||
{ "_class_wxScrollWinEvent","_wxScrollWinEvent",0},
|
{ "_class_wxScrollWinEvent","_wxScrollWinEvent",0},
|
||||||
|
{ "_int","_wxCoord",0},
|
||||||
{ "_int","_wxPrintQuality",0},
|
{ "_int","_wxPrintQuality",0},
|
||||||
{ "_int","_size_t",0},
|
{ "_int","_size_t",0},
|
||||||
{ "_int","_EBool",0},
|
{ "_int","_EBool",0},
|
||||||
@@ -5911,9 +6001,11 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxButton","_class_wxButton",0},
|
{ "_wxButton","_class_wxButton",0},
|
||||||
{ "_wxSize","_class_wxSize",0},
|
{ "_wxSize","_class_wxSize",0},
|
||||||
{ "_wxRegionIterator","_class_wxRegionIterator",0},
|
{ "_wxRegionIterator","_class_wxRegionIterator",0},
|
||||||
|
{ "_class_wxPyTextDataObject","_wxPyTextDataObject",0},
|
||||||
{ "_wxPyTreeItemData","_class_wxPyTreeItemData",0},
|
{ "_wxPyTreeItemData","_class_wxPyTreeItemData",0},
|
||||||
{ "_class_wxPaintDC","_wxPaintDC",0},
|
{ "_class_wxPaintDC","_wxPaintDC",0},
|
||||||
{ "_class_wxSysColourChangedEvent","_wxSysColourChangedEvent",0},
|
{ "_class_wxSysColourChangedEvent","_wxSysColourChangedEvent",0},
|
||||||
|
{ "_class_wxPyFileDropTarget","_wxPyFileDropTarget",0},
|
||||||
{ "_class_wxInitDialogEvent","_wxInitDialogEvent",0},
|
{ "_class_wxInitDialogEvent","_wxInitDialogEvent",0},
|
||||||
{ "_class_wxComboBox","_wxComboBox",0},
|
{ "_class_wxComboBox","_wxComboBox",0},
|
||||||
{ "_class_wxRadioButton","_wxRadioButton",0},
|
{ "_class_wxRadioButton","_wxRadioButton",0},
|
||||||
@@ -5933,13 +6025,24 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxScreenDC","_wxScreenDC",0},
|
{ "_class_wxScreenDC","_wxScreenDC",0},
|
||||||
{ "_wxPalette","_class_wxPalette",0},
|
{ "_wxPalette","_class_wxPalette",0},
|
||||||
{ "_class_wxIdleEvent","_wxIdleEvent",0},
|
{ "_class_wxIdleEvent","_wxIdleEvent",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","_wxPrintQuality",0},
|
||||||
{ "_wxEraseEvent","_class_wxEraseEvent",0},
|
{ "_wxEraseEvent","_class_wxEraseEvent",0},
|
||||||
|
{ "_wxDataObjectComposite","_class_wxDataObjectComposite",0},
|
||||||
{ "_class_wxJoystickEvent","_wxJoystickEvent",0},
|
{ "_class_wxJoystickEvent","_wxJoystickEvent",0},
|
||||||
{ "_wxRegion","_class_wxRegion",0},
|
{ "_wxRegion","_class_wxRegion",0},
|
||||||
{ "_class_wxShowEvent","_wxShowEvent",0},
|
{ "_class_wxShowEvent","_wxShowEvent",0},
|
||||||
|
{ "_wxPyDropTarget","_class_wxPyDropTarget",0},
|
||||||
{ "_wxActivateEvent","_class_wxActivateEvent",0},
|
{ "_wxActivateEvent","_class_wxActivateEvent",0},
|
||||||
{ "_wxGauge","_class_wxGauge",0},
|
{ "_wxGauge","_class_wxGauge",0},
|
||||||
{ "_class_wxCheckListBox","_wxCheckListBox",0},
|
{ "_class_wxCheckListBox","_wxCheckListBox",0},
|
||||||
|
{ "_class_wxBusyInfo","_wxBusyInfo",0},
|
||||||
{ "_class_wxCommandEvent","_class_wxTreeEvent",SwigwxTreeEventTowxCommandEvent},
|
{ "_class_wxCommandEvent","_class_wxTreeEvent",SwigwxTreeEventTowxCommandEvent},
|
||||||
{ "_class_wxCommandEvent","_wxTreeEvent",SwigwxTreeEventTowxCommandEvent},
|
{ "_class_wxCommandEvent","_wxTreeEvent",SwigwxTreeEventTowxCommandEvent},
|
||||||
{ "_class_wxCommandEvent","_class_wxListEvent",SwigwxListEventTowxCommandEvent},
|
{ "_class_wxCommandEvent","_class_wxListEvent",SwigwxListEventTowxCommandEvent},
|
||||||
@@ -5948,9 +6051,11 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxClientDC","_wxClientDC",0},
|
{ "_class_wxClientDC","_wxClientDC",0},
|
||||||
{ "_class_wxSizeEvent","_wxSizeEvent",0},
|
{ "_class_wxSizeEvent","_wxSizeEvent",0},
|
||||||
{ "_class_wxListCtrl","_wxListCtrl",0},
|
{ "_class_wxListCtrl","_wxListCtrl",0},
|
||||||
|
{ "_wxCustomDataObject","_class_wxCustomDataObject",0},
|
||||||
{ "_class_wxSize","_wxSize",0},
|
{ "_class_wxSize","_wxSize",0},
|
||||||
{ "_class_wxBitmap","_wxBitmap",0},
|
{ "_class_wxBitmap","_wxBitmap",0},
|
||||||
{ "_class_wxMemoryDC","_wxMemoryDC",0},
|
{ "_class_wxMemoryDC","_wxMemoryDC",0},
|
||||||
|
{ "_wxPyTextDropTarget","_class_wxPyTextDropTarget",0},
|
||||||
{ "_wxMenuBar","_class_wxMenuBar",0},
|
{ "_wxMenuBar","_class_wxMenuBar",0},
|
||||||
{ "_wxTreeEvent","_class_wxTreeEvent",0},
|
{ "_wxTreeEvent","_class_wxTreeEvent",0},
|
||||||
{ "_wxEvtHandler","_class_wxTreeCtrl",SwigwxTreeCtrlTowxEvtHandler},
|
{ "_wxEvtHandler","_class_wxTreeCtrl",SwigwxTreeCtrlTowxEvtHandler},
|
||||||
@@ -5966,7 +6071,9 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxKeyEvent","_class_wxKeyEvent",0},
|
{ "_wxKeyEvent","_class_wxKeyEvent",0},
|
||||||
{ "_wxMoveEvent","_class_wxMoveEvent",0},
|
{ "_wxMoveEvent","_class_wxMoveEvent",0},
|
||||||
{ "_class_wxPalette","_wxPalette",0},
|
{ "_class_wxPalette","_wxPalette",0},
|
||||||
|
{ "_wxFileDataObject","_class_wxFileDataObject",0},
|
||||||
{ "_class_wxEraseEvent","_wxEraseEvent",0},
|
{ "_class_wxEraseEvent","_wxEraseEvent",0},
|
||||||
|
{ "_class_wxDataObjectComposite","_wxDataObjectComposite",0},
|
||||||
{ "_wxWindow","_class_wxTreeCtrl",SwigwxTreeCtrlTowxWindow},
|
{ "_wxWindow","_class_wxTreeCtrl",SwigwxTreeCtrlTowxWindow},
|
||||||
{ "_wxWindow","_wxTreeCtrl",SwigwxTreeCtrlTowxWindow},
|
{ "_wxWindow","_wxTreeCtrl",SwigwxTreeCtrlTowxWindow},
|
||||||
{ "_wxWindow","_class_wxListCtrl",SwigwxListCtrlTowxWindow},
|
{ "_wxWindow","_class_wxListCtrl",SwigwxListCtrlTowxWindow},
|
||||||
|
@@ -7,6 +7,8 @@ from windows import *
|
|||||||
|
|
||||||
from gdi import *
|
from gdi import *
|
||||||
|
|
||||||
|
from clip_dnd import *
|
||||||
|
|
||||||
from events import *
|
from events import *
|
||||||
|
|
||||||
from controls import *
|
from controls import *
|
||||||
@@ -399,6 +401,12 @@ class wxTreeCtrlPtr(wxControlPtr):
|
|||||||
def SetStateImageList(self, *_args, **_kwargs):
|
def SetStateImageList(self, *_args, **_kwargs):
|
||||||
val = apply(controls2c.wxTreeCtrl_SetStateImageList,(self,) + _args, _kwargs)
|
val = apply(controls2c.wxTreeCtrl_SetStateImageList,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
|
def GetSpacing(self, *_args, **_kwargs):
|
||||||
|
val = apply(controls2c.wxTreeCtrl_GetSpacing,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def SetSpacing(self, *_args, **_kwargs):
|
||||||
|
val = apply(controls2c.wxTreeCtrl_SetSpacing,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
def GetItemText(self, *_args, **_kwargs):
|
def GetItemText(self, *_args, **_kwargs):
|
||||||
val = apply(controls2c.wxTreeCtrl_GetItemText,(self,) + _args, _kwargs)
|
val = apply(controls2c.wxTreeCtrl_GetItemText,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
|
@@ -104,88 +104,6 @@ static PyObject* t_output_helper(PyObject* target, PyObject* o) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static char* wxStringErrorMsg = "string type is required for parameter";
|
static char* wxStringErrorMsg = "string type is required for parameter";
|
||||||
|
|
||||||
class wxPyEvent : public wxEvent {
|
|
||||||
DECLARE_DYNAMIC_CLASS(wxPyEvent)
|
|
||||||
public:
|
|
||||||
wxPyEvent(int id=0, PyObject* userData = Py_None)
|
|
||||||
: wxEvent(id) {
|
|
||||||
m_userData = userData;
|
|
||||||
Py_INCREF(m_userData);
|
|
||||||
}
|
|
||||||
|
|
||||||
~wxPyEvent() {
|
|
||||||
bool doSave = wxPyRestoreThread();
|
|
||||||
Py_DECREF(m_userData);
|
|
||||||
wxPySaveThread(doSave);
|
|
||||||
}
|
|
||||||
|
|
||||||
void SetPyData(PyObject* userData) {
|
|
||||||
bool doSave = wxPyRestoreThread();
|
|
||||||
Py_DECREF(m_userData);
|
|
||||||
m_userData = userData;
|
|
||||||
Py_INCREF(m_userData);
|
|
||||||
wxPySaveThread(doSave);
|
|
||||||
}
|
|
||||||
|
|
||||||
PyObject* GetPyData() const {
|
|
||||||
Py_INCREF(m_userData);
|
|
||||||
return m_userData;
|
|
||||||
}
|
|
||||||
|
|
||||||
// This one is so the event object can be Cloned...
|
|
||||||
void CopyObject(wxObject& dest) const {
|
|
||||||
wxEvent::CopyObject(dest);
|
|
||||||
((wxPyEvent*)&dest)->SetPyData(m_userData);
|
|
||||||
}
|
|
||||||
|
|
||||||
private:
|
|
||||||
PyObject* m_userData;
|
|
||||||
};
|
|
||||||
|
|
||||||
IMPLEMENT_DYNAMIC_CLASS(wxPyEvent, wxEvent)
|
|
||||||
|
|
||||||
|
|
||||||
class wxPyCommandEvent : public wxCommandEvent {
|
|
||||||
DECLARE_DYNAMIC_CLASS(wxPyCommandEvent)
|
|
||||||
public:
|
|
||||||
wxPyCommandEvent(wxEventType commandType = wxEVT_NULL, int id=0, PyObject* userData = Py_None)
|
|
||||||
: wxCommandEvent(commandType, id) {
|
|
||||||
m_userData = userData;
|
|
||||||
Py_INCREF(m_userData);
|
|
||||||
}
|
|
||||||
|
|
||||||
~wxPyCommandEvent() {
|
|
||||||
bool doSave = wxPyRestoreThread();
|
|
||||||
Py_DECREF(m_userData);
|
|
||||||
wxPySaveThread(doSave);
|
|
||||||
}
|
|
||||||
|
|
||||||
void SetPyData(PyObject* userData) {
|
|
||||||
bool doSave = wxPyRestoreThread();
|
|
||||||
Py_DECREF(m_userData);
|
|
||||||
m_userData = userData;
|
|
||||||
Py_INCREF(m_userData);
|
|
||||||
wxPySaveThread(doSave);
|
|
||||||
}
|
|
||||||
|
|
||||||
PyObject* GetPyData() const {
|
|
||||||
Py_INCREF(m_userData);
|
|
||||||
return m_userData;
|
|
||||||
}
|
|
||||||
|
|
||||||
// This one is so the event object can be Cloned...
|
|
||||||
void CopyObject(wxObject& dest) const {
|
|
||||||
wxCommandEvent::CopyObject(dest);
|
|
||||||
((wxPyCommandEvent*)&dest)->SetPyData(m_userData);
|
|
||||||
}
|
|
||||||
|
|
||||||
private:
|
|
||||||
PyObject* m_userData;
|
|
||||||
};
|
|
||||||
|
|
||||||
IMPLEMENT_DYNAMIC_CLASS(wxPyCommandEvent, wxCommandEvent)
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
@@ -1994,53 +1912,6 @@ static PyObject *_wrap_wxMouseEvent_Leaving(PyObject *self, PyObject *args, PyOb
|
|||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
#define wxMouseEvent_Position(_swigobj,_swigarg0,_swigarg1) (_swigobj->Position(_swigarg0,_swigarg1))
|
|
||||||
static PyObject *_wrap_wxMouseEvent_Position(PyObject *self, PyObject *args, PyObject *kwargs) {
|
|
||||||
PyObject * _resultobj;
|
|
||||||
wxMouseEvent * _arg0;
|
|
||||||
long * _arg1;
|
|
||||||
long temp;
|
|
||||||
long * _arg2;
|
|
||||||
long temp0;
|
|
||||||
PyObject * _argo0 = 0;
|
|
||||||
char *_kwnames[] = { "self", NULL };
|
|
||||||
|
|
||||||
self = self;
|
|
||||||
{
|
|
||||||
_arg1 = &temp;
|
|
||||||
}
|
|
||||||
{
|
|
||||||
_arg2 = &temp0;
|
|
||||||
}
|
|
||||||
if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMouseEvent_Position",_kwnames,&_argo0))
|
|
||||||
return NULL;
|
|
||||||
if (_argo0) {
|
|
||||||
if (_argo0 == Py_None) { _arg0 = NULL; }
|
|
||||||
else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMouseEvent_p")) {
|
|
||||||
PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMouseEvent_Position. Expected _wxMouseEvent_p.");
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
{
|
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
|
||||||
wxMouseEvent_Position(_arg0,_arg1,_arg2);
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
|
||||||
} Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
{
|
|
||||||
PyObject *o;
|
|
||||||
o = PyInt_FromLong((long) (*_arg1));
|
|
||||||
_resultobj = t_output_helper(_resultobj, o);
|
|
||||||
}
|
|
||||||
{
|
|
||||||
PyObject *o;
|
|
||||||
o = PyInt_FromLong((long) (*_arg2));
|
|
||||||
_resultobj = t_output_helper(_resultobj, o);
|
|
||||||
}
|
|
||||||
return _resultobj;
|
|
||||||
}
|
|
||||||
|
|
||||||
#define wxMouseEvent_GetPosition(_swigobj) (_swigobj->GetPosition())
|
#define wxMouseEvent_GetPosition(_swigobj) (_swigobj->GetPosition())
|
||||||
static PyObject *_wrap_wxMouseEvent_GetPosition(PyObject *self, PyObject *args, PyObject *kwargs) {
|
static PyObject *_wrap_wxMouseEvent_GetPosition(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
PyObject * _resultobj;
|
PyObject * _resultobj;
|
||||||
@@ -2070,6 +1941,53 @@ static PyObject *_wrap_wxMouseEvent_GetPosition(PyObject *self, PyObject *args,
|
|||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#define wxMouseEvent_GetPositionTuple(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetPosition(_swigarg0,_swigarg1))
|
||||||
|
static PyObject *_wrap_wxMouseEvent_GetPositionTuple(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
|
PyObject * _resultobj;
|
||||||
|
wxMouseEvent * _arg0;
|
||||||
|
long * _arg1;
|
||||||
|
long temp;
|
||||||
|
long * _arg2;
|
||||||
|
long temp0;
|
||||||
|
PyObject * _argo0 = 0;
|
||||||
|
char *_kwnames[] = { "self", NULL };
|
||||||
|
|
||||||
|
self = self;
|
||||||
|
{
|
||||||
|
_arg1 = &temp;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
_arg2 = &temp0;
|
||||||
|
}
|
||||||
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxMouseEvent_GetPositionTuple",_kwnames,&_argo0))
|
||||||
|
return NULL;
|
||||||
|
if (_argo0) {
|
||||||
|
if (_argo0 == Py_None) { _arg0 = NULL; }
|
||||||
|
else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxMouseEvent_p")) {
|
||||||
|
PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxMouseEvent_GetPositionTuple. Expected _wxMouseEvent_p.");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
|
wxMouseEvent_GetPositionTuple(_arg0,_arg1,_arg2);
|
||||||
|
|
||||||
|
wxPy_END_ALLOW_THREADS;
|
||||||
|
} Py_INCREF(Py_None);
|
||||||
|
_resultobj = Py_None;
|
||||||
|
{
|
||||||
|
PyObject *o;
|
||||||
|
o = PyInt_FromLong((long) (*_arg1));
|
||||||
|
_resultobj = t_output_helper(_resultobj, o);
|
||||||
|
}
|
||||||
|
{
|
||||||
|
PyObject *o;
|
||||||
|
o = PyInt_FromLong((long) (*_arg2));
|
||||||
|
_resultobj = t_output_helper(_resultobj, o);
|
||||||
|
}
|
||||||
|
return _resultobj;
|
||||||
|
}
|
||||||
|
|
||||||
#define wxMouseEvent_GetLogicalPosition(_swigobj,_swigarg0) (_swigobj->GetLogicalPosition(_swigarg0))
|
#define wxMouseEvent_GetLogicalPosition(_swigobj,_swigarg0) (_swigobj->GetLogicalPosition(_swigarg0))
|
||||||
static PyObject *_wrap_wxMouseEvent_GetLogicalPosition(PyObject *self, PyObject *args, PyObject *kwargs) {
|
static PyObject *_wrap_wxMouseEvent_GetLogicalPosition(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
PyObject * _resultobj;
|
PyObject * _resultobj;
|
||||||
@@ -4691,26 +4609,20 @@ static void *SwigwxPyEventTowxEvent(void *ptr) {
|
|||||||
return (void *) dest;
|
return (void *) dest;
|
||||||
}
|
}
|
||||||
|
|
||||||
#define new_wxPyEvent(_swigarg0,_swigarg1) (new wxPyEvent(_swigarg0,_swigarg1))
|
#define new_wxPyEvent(_swigarg0) (new wxPyEvent(_swigarg0))
|
||||||
static PyObject *_wrap_new_wxPyEvent(PyObject *self, PyObject *args, PyObject *kwargs) {
|
static PyObject *_wrap_new_wxPyEvent(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
PyObject * _resultobj;
|
PyObject * _resultobj;
|
||||||
wxPyEvent * _result;
|
wxPyEvent * _result;
|
||||||
int _arg0 = (int ) 0;
|
int _arg0 = (int ) 0;
|
||||||
PyObject * _arg1 = (PyObject *) Py_None;
|
char *_kwnames[] = { "id", NULL };
|
||||||
PyObject * _obj1 = 0;
|
|
||||||
char *_kwnames[] = { "id","userData", NULL };
|
|
||||||
char _ptemp[128];
|
char _ptemp[128];
|
||||||
|
|
||||||
self = self;
|
self = self;
|
||||||
if(!PyArg_ParseTupleAndKeywords(args,kwargs,"|iO:new_wxPyEvent",_kwnames,&_arg0,&_obj1))
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,"|i:new_wxPyEvent",_kwnames,&_arg0))
|
||||||
return NULL;
|
return NULL;
|
||||||
if (_obj1)
|
|
||||||
{
|
|
||||||
_arg1 = _obj1;
|
|
||||||
}
|
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
_result = (wxPyEvent *)new_wxPyEvent(_arg0,_arg1);
|
_result = (wxPyEvent *)new_wxPyEvent(_arg0);
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
} if (_result) {
|
} if (_result) {
|
||||||
@@ -4750,22 +4662,22 @@ static PyObject *_wrap_delete_wxPyEvent(PyObject *self, PyObject *args, PyObject
|
|||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
#define wxPyEvent_SetPyData(_swigobj,_swigarg0) (_swigobj->SetPyData(_swigarg0))
|
#define wxPyEvent_SetSelf(_swigobj,_swigarg0) (_swigobj->SetSelf(_swigarg0))
|
||||||
static PyObject *_wrap_wxPyEvent_SetPyData(PyObject *self, PyObject *args, PyObject *kwargs) {
|
static PyObject *_wrap_wxPyEvent_SetSelf(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
PyObject * _resultobj;
|
PyObject * _resultobj;
|
||||||
wxPyEvent * _arg0;
|
wxPyEvent * _arg0;
|
||||||
PyObject * _arg1;
|
PyObject * _arg1;
|
||||||
PyObject * _argo0 = 0;
|
PyObject * _argo0 = 0;
|
||||||
PyObject * _obj1 = 0;
|
PyObject * _obj1 = 0;
|
||||||
char *_kwnames[] = { "self","userData", NULL };
|
char *_kwnames[] = { "self","self", NULL };
|
||||||
|
|
||||||
self = self;
|
self = self;
|
||||||
if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxPyEvent_SetPyData",_kwnames,&_argo0,&_obj1))
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxPyEvent_SetSelf",_kwnames,&_argo0,&_obj1))
|
||||||
return NULL;
|
return NULL;
|
||||||
if (_argo0) {
|
if (_argo0) {
|
||||||
if (_argo0 == Py_None) { _arg0 = NULL; }
|
if (_argo0 == Py_None) { _arg0 = NULL; }
|
||||||
else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyEvent_p")) {
|
else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyEvent_p")) {
|
||||||
PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyEvent_SetPyData. Expected _wxPyEvent_p.");
|
PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyEvent_SetSelf. Expected _wxPyEvent_p.");
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -4774,7 +4686,7 @@ static PyObject *_wrap_wxPyEvent_SetPyData(PyObject *self, PyObject *args, PyObj
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
wxPyEvent_SetPyData(_arg0,_arg1);
|
wxPyEvent_SetSelf(_arg0,_arg1);
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
} Py_INCREF(Py_None);
|
} Py_INCREF(Py_None);
|
||||||
@@ -4782,8 +4694,8 @@ static PyObject *_wrap_wxPyEvent_SetPyData(PyObject *self, PyObject *args, PyObj
|
|||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
#define wxPyEvent_GetPyData(_swigobj) (_swigobj->GetPyData())
|
#define wxPyEvent_GetSelf(_swigobj) (_swigobj->GetSelf())
|
||||||
static PyObject *_wrap_wxPyEvent_GetPyData(PyObject *self, PyObject *args, PyObject *kwargs) {
|
static PyObject *_wrap_wxPyEvent_GetSelf(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
PyObject * _resultobj;
|
PyObject * _resultobj;
|
||||||
PyObject * _result;
|
PyObject * _result;
|
||||||
wxPyEvent * _arg0;
|
wxPyEvent * _arg0;
|
||||||
@@ -4791,18 +4703,18 @@ static PyObject *_wrap_wxPyEvent_GetPyData(PyObject *self, PyObject *args, PyObj
|
|||||||
char *_kwnames[] = { "self", NULL };
|
char *_kwnames[] = { "self", NULL };
|
||||||
|
|
||||||
self = self;
|
self = self;
|
||||||
if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPyEvent_GetPyData",_kwnames,&_argo0))
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPyEvent_GetSelf",_kwnames,&_argo0))
|
||||||
return NULL;
|
return NULL;
|
||||||
if (_argo0) {
|
if (_argo0) {
|
||||||
if (_argo0 == Py_None) { _arg0 = NULL; }
|
if (_argo0 == Py_None) { _arg0 = NULL; }
|
||||||
else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyEvent_p")) {
|
else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyEvent_p")) {
|
||||||
PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyEvent_GetPyData. Expected _wxPyEvent_p.");
|
PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyEvent_GetSelf. Expected _wxPyEvent_p.");
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
_result = (PyObject *)wxPyEvent_GetPyData(_arg0);
|
_result = (PyObject *)wxPyEvent_GetSelf(_arg0);
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
}{
|
}{
|
||||||
@@ -4827,27 +4739,21 @@ static void *SwigwxPyCommandEventTowxEvent(void *ptr) {
|
|||||||
return (void *) dest;
|
return (void *) dest;
|
||||||
}
|
}
|
||||||
|
|
||||||
#define new_wxPyCommandEvent(_swigarg0,_swigarg1,_swigarg2) (new wxPyCommandEvent(_swigarg0,_swigarg1,_swigarg2))
|
#define new_wxPyCommandEvent(_swigarg0,_swigarg1) (new wxPyCommandEvent(_swigarg0,_swigarg1))
|
||||||
static PyObject *_wrap_new_wxPyCommandEvent(PyObject *self, PyObject *args, PyObject *kwargs) {
|
static PyObject *_wrap_new_wxPyCommandEvent(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
PyObject * _resultobj;
|
PyObject * _resultobj;
|
||||||
wxPyCommandEvent * _result;
|
wxPyCommandEvent * _result;
|
||||||
wxEventType _arg0 = (wxEventType ) wxEVT_NULL;
|
wxEventType _arg0 = (wxEventType ) wxEVT_NULL;
|
||||||
int _arg1 = (int ) 0;
|
int _arg1 = (int ) 0;
|
||||||
PyObject * _arg2 = (PyObject *) Py_None;
|
char *_kwnames[] = { "commandType","id", NULL };
|
||||||
PyObject * _obj2 = 0;
|
|
||||||
char *_kwnames[] = { "commandType","id","userData", NULL };
|
|
||||||
char _ptemp[128];
|
char _ptemp[128];
|
||||||
|
|
||||||
self = self;
|
self = self;
|
||||||
if(!PyArg_ParseTupleAndKeywords(args,kwargs,"|iiO:new_wxPyCommandEvent",_kwnames,&_arg0,&_arg1,&_obj2))
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,"|ii:new_wxPyCommandEvent",_kwnames,&_arg0,&_arg1))
|
||||||
return NULL;
|
return NULL;
|
||||||
if (_obj2)
|
|
||||||
{
|
|
||||||
_arg2 = _obj2;
|
|
||||||
}
|
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
_result = (wxPyCommandEvent *)new_wxPyCommandEvent(_arg0,_arg1,_arg2);
|
_result = (wxPyCommandEvent *)new_wxPyCommandEvent(_arg0,_arg1);
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
} if (_result) {
|
} if (_result) {
|
||||||
@@ -4887,22 +4793,22 @@ static PyObject *_wrap_delete_wxPyCommandEvent(PyObject *self, PyObject *args, P
|
|||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
#define wxPyCommandEvent_SetPyData(_swigobj,_swigarg0) (_swigobj->SetPyData(_swigarg0))
|
#define wxPyCommandEvent_SetSelf(_swigobj,_swigarg0) (_swigobj->SetSelf(_swigarg0))
|
||||||
static PyObject *_wrap_wxPyCommandEvent_SetPyData(PyObject *self, PyObject *args, PyObject *kwargs) {
|
static PyObject *_wrap_wxPyCommandEvent_SetSelf(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
PyObject * _resultobj;
|
PyObject * _resultobj;
|
||||||
wxPyCommandEvent * _arg0;
|
wxPyCommandEvent * _arg0;
|
||||||
PyObject * _arg1;
|
PyObject * _arg1;
|
||||||
PyObject * _argo0 = 0;
|
PyObject * _argo0 = 0;
|
||||||
PyObject * _obj1 = 0;
|
PyObject * _obj1 = 0;
|
||||||
char *_kwnames[] = { "self","userData", NULL };
|
char *_kwnames[] = { "self","self", NULL };
|
||||||
|
|
||||||
self = self;
|
self = self;
|
||||||
if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxPyCommandEvent_SetPyData",_kwnames,&_argo0,&_obj1))
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxPyCommandEvent_SetSelf",_kwnames,&_argo0,&_obj1))
|
||||||
return NULL;
|
return NULL;
|
||||||
if (_argo0) {
|
if (_argo0) {
|
||||||
if (_argo0 == Py_None) { _arg0 = NULL; }
|
if (_argo0 == Py_None) { _arg0 = NULL; }
|
||||||
else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyCommandEvent_p")) {
|
else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyCommandEvent_p")) {
|
||||||
PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyCommandEvent_SetPyData. Expected _wxPyCommandEvent_p.");
|
PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyCommandEvent_SetSelf. Expected _wxPyCommandEvent_p.");
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -4911,7 +4817,7 @@ static PyObject *_wrap_wxPyCommandEvent_SetPyData(PyObject *self, PyObject *args
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
wxPyCommandEvent_SetPyData(_arg0,_arg1);
|
wxPyCommandEvent_SetSelf(_arg0,_arg1);
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
} Py_INCREF(Py_None);
|
} Py_INCREF(Py_None);
|
||||||
@@ -4919,8 +4825,8 @@ static PyObject *_wrap_wxPyCommandEvent_SetPyData(PyObject *self, PyObject *args
|
|||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
#define wxPyCommandEvent_GetPyData(_swigobj) (_swigobj->GetPyData())
|
#define wxPyCommandEvent_GetSelf(_swigobj) (_swigobj->GetSelf())
|
||||||
static PyObject *_wrap_wxPyCommandEvent_GetPyData(PyObject *self, PyObject *args, PyObject *kwargs) {
|
static PyObject *_wrap_wxPyCommandEvent_GetSelf(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
PyObject * _resultobj;
|
PyObject * _resultobj;
|
||||||
PyObject * _result;
|
PyObject * _result;
|
||||||
wxPyCommandEvent * _arg0;
|
wxPyCommandEvent * _arg0;
|
||||||
@@ -4928,18 +4834,18 @@ static PyObject *_wrap_wxPyCommandEvent_GetPyData(PyObject *self, PyObject *args
|
|||||||
char *_kwnames[] = { "self", NULL };
|
char *_kwnames[] = { "self", NULL };
|
||||||
|
|
||||||
self = self;
|
self = self;
|
||||||
if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPyCommandEvent_GetPyData",_kwnames,&_argo0))
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxPyCommandEvent_GetSelf",_kwnames,&_argo0))
|
||||||
return NULL;
|
return NULL;
|
||||||
if (_argo0) {
|
if (_argo0) {
|
||||||
if (_argo0 == Py_None) { _arg0 = NULL; }
|
if (_argo0 == Py_None) { _arg0 = NULL; }
|
||||||
else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyCommandEvent_p")) {
|
else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyCommandEvent_p")) {
|
||||||
PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyCommandEvent_GetPyData. Expected _wxPyCommandEvent_p.");
|
PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPyCommandEvent_GetSelf. Expected _wxPyCommandEvent_p.");
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
_result = (PyObject *)wxPyCommandEvent_GetPyData(_arg0);
|
_result = (PyObject *)wxPyCommandEvent_GetSelf(_arg0);
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
wxPy_END_ALLOW_THREADS;
|
||||||
}{
|
}{
|
||||||
@@ -4949,12 +4855,12 @@ static PyObject *_wrap_wxPyCommandEvent_GetPyData(PyObject *self, PyObject *args
|
|||||||
}
|
}
|
||||||
|
|
||||||
static PyMethodDef eventscMethods[] = {
|
static PyMethodDef eventscMethods[] = {
|
||||||
{ "wxPyCommandEvent_GetPyData", (PyCFunction) _wrap_wxPyCommandEvent_GetPyData, METH_VARARGS | METH_KEYWORDS },
|
{ "wxPyCommandEvent_GetSelf", (PyCFunction) _wrap_wxPyCommandEvent_GetSelf, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "wxPyCommandEvent_SetPyData", (PyCFunction) _wrap_wxPyCommandEvent_SetPyData, METH_VARARGS | METH_KEYWORDS },
|
{ "wxPyCommandEvent_SetSelf", (PyCFunction) _wrap_wxPyCommandEvent_SetSelf, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "delete_wxPyCommandEvent", (PyCFunction) _wrap_delete_wxPyCommandEvent, METH_VARARGS | METH_KEYWORDS },
|
{ "delete_wxPyCommandEvent", (PyCFunction) _wrap_delete_wxPyCommandEvent, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "new_wxPyCommandEvent", (PyCFunction) _wrap_new_wxPyCommandEvent, METH_VARARGS | METH_KEYWORDS },
|
{ "new_wxPyCommandEvent", (PyCFunction) _wrap_new_wxPyCommandEvent, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "wxPyEvent_GetPyData", (PyCFunction) _wrap_wxPyEvent_GetPyData, METH_VARARGS | METH_KEYWORDS },
|
{ "wxPyEvent_GetSelf", (PyCFunction) _wrap_wxPyEvent_GetSelf, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "wxPyEvent_SetPyData", (PyCFunction) _wrap_wxPyEvent_SetPyData, METH_VARARGS | METH_KEYWORDS },
|
{ "wxPyEvent_SetSelf", (PyCFunction) _wrap_wxPyEvent_SetSelf, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "delete_wxPyEvent", (PyCFunction) _wrap_delete_wxPyEvent, METH_VARARGS | METH_KEYWORDS },
|
{ "delete_wxPyEvent", (PyCFunction) _wrap_delete_wxPyEvent, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "new_wxPyEvent", (PyCFunction) _wrap_new_wxPyEvent, METH_VARARGS | METH_KEYWORDS },
|
{ "new_wxPyEvent", (PyCFunction) _wrap_new_wxPyEvent, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "wxWindowDestroyEvent_GetWindow", (PyCFunction) _wrap_wxWindowDestroyEvent_GetWindow, METH_VARARGS | METH_KEYWORDS },
|
{ "wxWindowDestroyEvent_GetWindow", (PyCFunction) _wrap_wxWindowDestroyEvent_GetWindow, METH_VARARGS | METH_KEYWORDS },
|
||||||
@@ -5040,8 +4946,8 @@ static PyMethodDef eventscMethods[] = {
|
|||||||
{ "wxMouseEvent_GetY", (PyCFunction) _wrap_wxMouseEvent_GetY, METH_VARARGS | METH_KEYWORDS },
|
{ "wxMouseEvent_GetY", (PyCFunction) _wrap_wxMouseEvent_GetY, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "wxMouseEvent_GetX", (PyCFunction) _wrap_wxMouseEvent_GetX, METH_VARARGS | METH_KEYWORDS },
|
{ "wxMouseEvent_GetX", (PyCFunction) _wrap_wxMouseEvent_GetX, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "wxMouseEvent_GetLogicalPosition", (PyCFunction) _wrap_wxMouseEvent_GetLogicalPosition, METH_VARARGS | METH_KEYWORDS },
|
{ "wxMouseEvent_GetLogicalPosition", (PyCFunction) _wrap_wxMouseEvent_GetLogicalPosition, METH_VARARGS | METH_KEYWORDS },
|
||||||
|
{ "wxMouseEvent_GetPositionTuple", (PyCFunction) _wrap_wxMouseEvent_GetPositionTuple, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "wxMouseEvent_GetPosition", (PyCFunction) _wrap_wxMouseEvent_GetPosition, METH_VARARGS | METH_KEYWORDS },
|
{ "wxMouseEvent_GetPosition", (PyCFunction) _wrap_wxMouseEvent_GetPosition, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "wxMouseEvent_Position", (PyCFunction) _wrap_wxMouseEvent_Position, METH_VARARGS | METH_KEYWORDS },
|
|
||||||
{ "wxMouseEvent_Leaving", (PyCFunction) _wrap_wxMouseEvent_Leaving, METH_VARARGS | METH_KEYWORDS },
|
{ "wxMouseEvent_Leaving", (PyCFunction) _wrap_wxMouseEvent_Leaving, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "wxMouseEvent_Entering", (PyCFunction) _wrap_wxMouseEvent_Entering, METH_VARARGS | METH_KEYWORDS },
|
{ "wxMouseEvent_Entering", (PyCFunction) _wrap_wxMouseEvent_Entering, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "wxMouseEvent_Moving", (PyCFunction) _wrap_wxMouseEvent_Moving, METH_VARARGS | METH_KEYWORDS },
|
{ "wxMouseEvent_Moving", (PyCFunction) _wrap_wxMouseEvent_Moving, METH_VARARGS | METH_KEYWORDS },
|
||||||
@@ -5181,6 +5087,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_signed_long","_long",0},
|
{ "_signed_long","_long",0},
|
||||||
{ "_wxMenuEvent","_class_wxMenuEvent",0},
|
{ "_wxMenuEvent","_class_wxMenuEvent",0},
|
||||||
{ "_class_wxPyCommandEvent","_wxPyCommandEvent",0},
|
{ "_class_wxPyCommandEvent","_wxPyCommandEvent",0},
|
||||||
|
{ "_wxPrintQuality","_wxCoord",0},
|
||||||
{ "_wxPrintQuality","_int",0},
|
{ "_wxPrintQuality","_int",0},
|
||||||
{ "_wxPrintQuality","_signed_int",0},
|
{ "_wxPrintQuality","_signed_int",0},
|
||||||
{ "_wxPrintQuality","_unsigned_int",0},
|
{ "_wxPrintQuality","_unsigned_int",0},
|
||||||
@@ -5199,6 +5106,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxDropFilesEvent","_class_wxDropFilesEvent",0},
|
{ "_wxDropFilesEvent","_class_wxDropFilesEvent",0},
|
||||||
{ "_class_wxAcceleratorTable","_wxAcceleratorTable",0},
|
{ "_class_wxAcceleratorTable","_wxAcceleratorTable",0},
|
||||||
{ "_wxSpinEvent","_class_wxSpinEvent",0},
|
{ "_wxSpinEvent","_class_wxSpinEvent",0},
|
||||||
|
{ "_size_t","_wxCoord",0},
|
||||||
{ "_size_t","_wxPrintQuality",0},
|
{ "_size_t","_wxPrintQuality",0},
|
||||||
{ "_size_t","_unsigned_int",0},
|
{ "_size_t","_unsigned_int",0},
|
||||||
{ "_size_t","_int",0},
|
{ "_size_t","_int",0},
|
||||||
@@ -5215,6 +5123,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxIdleEvent","_class_wxIdleEvent",0},
|
{ "_wxIdleEvent","_class_wxIdleEvent",0},
|
||||||
{ "_class_wxUpdateUIEvent","_wxUpdateUIEvent",0},
|
{ "_class_wxUpdateUIEvent","_wxUpdateUIEvent",0},
|
||||||
{ "_wxShowEvent","_class_wxShowEvent",0},
|
{ "_wxShowEvent","_class_wxShowEvent",0},
|
||||||
|
{ "_uint","_wxCoord",0},
|
||||||
{ "_uint","_wxPrintQuality",0},
|
{ "_uint","_wxPrintQuality",0},
|
||||||
{ "_uint","_size_t",0},
|
{ "_uint","_size_t",0},
|
||||||
{ "_uint","_unsigned_int",0},
|
{ "_uint","_unsigned_int",0},
|
||||||
@@ -5305,6 +5214,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxScrollEvent","_class_wxSpinEvent",SwigwxSpinEventTowxScrollEvent},
|
{ "_wxScrollEvent","_class_wxSpinEvent",SwigwxSpinEventTowxScrollEvent},
|
||||||
{ "_wxScrollEvent","_wxSpinEvent",SwigwxSpinEventTowxScrollEvent},
|
{ "_wxScrollEvent","_wxSpinEvent",SwigwxSpinEventTowxScrollEvent},
|
||||||
{ "_wxScrollEvent","_class_wxScrollEvent",0},
|
{ "_wxScrollEvent","_class_wxScrollEvent",0},
|
||||||
|
{ "_EBool","_wxCoord",0},
|
||||||
{ "_EBool","_wxPrintQuality",0},
|
{ "_EBool","_wxPrintQuality",0},
|
||||||
{ "_EBool","_signed_int",0},
|
{ "_EBool","_signed_int",0},
|
||||||
{ "_EBool","_int",0},
|
{ "_EBool","_int",0},
|
||||||
@@ -5322,6 +5232,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxFocusEvent","_class_wxFocusEvent",0},
|
{ "_wxFocusEvent","_class_wxFocusEvent",0},
|
||||||
{ "_wxMaximizeEvent","_class_wxMaximizeEvent",0},
|
{ "_wxMaximizeEvent","_class_wxMaximizeEvent",0},
|
||||||
{ "_wxAcceleratorEntry","_class_wxAcceleratorEntry",0},
|
{ "_wxAcceleratorEntry","_class_wxAcceleratorEntry",0},
|
||||||
|
{ "_signed_int","_wxCoord",0},
|
||||||
{ "_signed_int","_wxPrintQuality",0},
|
{ "_signed_int","_wxPrintQuality",0},
|
||||||
{ "_signed_int","_EBool",0},
|
{ "_signed_int","_EBool",0},
|
||||||
{ "_signed_int","_wxWindowID",0},
|
{ "_signed_int","_wxWindowID",0},
|
||||||
@@ -5334,6 +5245,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_unsigned_short","_WXTYPE",0},
|
{ "_unsigned_short","_WXTYPE",0},
|
||||||
{ "_unsigned_short","_short",0},
|
{ "_unsigned_short","_short",0},
|
||||||
{ "_class_wxCloseEvent","_wxCloseEvent",0},
|
{ "_class_wxCloseEvent","_wxCloseEvent",0},
|
||||||
|
{ "_wxBusyInfo","_class_wxBusyInfo",0},
|
||||||
{ "_class_wxMenuEvent","_wxMenuEvent",0},
|
{ "_class_wxMenuEvent","_wxMenuEvent",0},
|
||||||
{ "_wxPaletteChangedEvent","_class_wxPaletteChangedEvent",0},
|
{ "_wxPaletteChangedEvent","_class_wxPaletteChangedEvent",0},
|
||||||
{ "_wxMouseEvent","_class_wxMouseEvent",0},
|
{ "_wxMouseEvent","_class_wxMouseEvent",0},
|
||||||
@@ -5345,6 +5257,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxMaximizeEvent","_wxMaximizeEvent",0},
|
{ "_class_wxMaximizeEvent","_wxMaximizeEvent",0},
|
||||||
{ "_class_wxAcceleratorEntry","_wxAcceleratorEntry",0},
|
{ "_class_wxAcceleratorEntry","_wxAcceleratorEntry",0},
|
||||||
{ "_unsigned_char","_byte",0},
|
{ "_unsigned_char","_byte",0},
|
||||||
|
{ "_unsigned_int","_wxCoord",0},
|
||||||
{ "_unsigned_int","_wxPrintQuality",0},
|
{ "_unsigned_int","_wxPrintQuality",0},
|
||||||
{ "_unsigned_int","_size_t",0},
|
{ "_unsigned_int","_size_t",0},
|
||||||
{ "_unsigned_int","_uint",0},
|
{ "_unsigned_int","_uint",0},
|
||||||
@@ -5358,6 +5271,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxScrollEvent","_wxScrollEvent",0},
|
{ "_class_wxScrollEvent","_wxScrollEvent",0},
|
||||||
{ "_wxJoystickEvent","_class_wxJoystickEvent",0},
|
{ "_wxJoystickEvent","_class_wxJoystickEvent",0},
|
||||||
{ "_class_wxPaletteChangedEvent","_wxPaletteChangedEvent",0},
|
{ "_class_wxPaletteChangedEvent","_wxPaletteChangedEvent",0},
|
||||||
|
{ "_wxWindowID","_wxCoord",0},
|
||||||
{ "_wxWindowID","_wxPrintQuality",0},
|
{ "_wxWindowID","_wxPrintQuality",0},
|
||||||
{ "_wxWindowID","_size_t",0},
|
{ "_wxWindowID","_size_t",0},
|
||||||
{ "_wxWindowID","_EBool",0},
|
{ "_wxWindowID","_EBool",0},
|
||||||
@@ -5366,6 +5280,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxWindowID","_signed_int",0},
|
{ "_wxWindowID","_signed_int",0},
|
||||||
{ "_wxWindowID","_unsigned_int",0},
|
{ "_wxWindowID","_unsigned_int",0},
|
||||||
{ "_class_wxScrollWinEvent","_wxScrollWinEvent",0},
|
{ "_class_wxScrollWinEvent","_wxScrollWinEvent",0},
|
||||||
|
{ "_int","_wxCoord",0},
|
||||||
{ "_int","_wxPrintQuality",0},
|
{ "_int","_wxPrintQuality",0},
|
||||||
{ "_int","_size_t",0},
|
{ "_int","_size_t",0},
|
||||||
{ "_int","_EBool",0},
|
{ "_int","_EBool",0},
|
||||||
@@ -5385,11 +5300,20 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxLayoutConstraints","_wxLayoutConstraints",0},
|
{ "_class_wxLayoutConstraints","_wxLayoutConstraints",0},
|
||||||
{ "_wxIconizeEvent","_class_wxIconizeEvent",0},
|
{ "_wxIconizeEvent","_class_wxIconizeEvent",0},
|
||||||
{ "_class_wxIdleEvent","_wxIdleEvent",0},
|
{ "_class_wxIdleEvent","_wxIdleEvent",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","_wxPrintQuality",0},
|
||||||
{ "_wxEraseEvent","_class_wxEraseEvent",0},
|
{ "_wxEraseEvent","_class_wxEraseEvent",0},
|
||||||
{ "_class_wxJoystickEvent","_wxJoystickEvent",0},
|
{ "_class_wxJoystickEvent","_wxJoystickEvent",0},
|
||||||
{ "_wxRegion","_class_wxRegion",0},
|
{ "_wxRegion","_class_wxRegion",0},
|
||||||
{ "_class_wxShowEvent","_wxShowEvent",0},
|
{ "_class_wxShowEvent","_wxShowEvent",0},
|
||||||
{ "_wxActivateEvent","_class_wxActivateEvent",0},
|
{ "_wxActivateEvent","_class_wxActivateEvent",0},
|
||||||
|
{ "_class_wxBusyInfo","_wxBusyInfo",0},
|
||||||
{ "_class_wxCommandEvent","_class_wxPyCommandEvent",SwigwxPyCommandEventTowxCommandEvent},
|
{ "_class_wxCommandEvent","_class_wxPyCommandEvent",SwigwxPyCommandEventTowxCommandEvent},
|
||||||
{ "_class_wxCommandEvent","_wxPyCommandEvent",SwigwxPyCommandEventTowxCommandEvent},
|
{ "_class_wxCommandEvent","_wxPyCommandEvent",SwigwxPyCommandEventTowxCommandEvent},
|
||||||
{ "_class_wxCommandEvent","_class_wxNotifyEvent",SwigwxNotifyEventTowxCommandEvent},
|
{ "_class_wxCommandEvent","_class_wxNotifyEvent",SwigwxNotifyEventTowxCommandEvent},
|
||||||
|
@@ -267,13 +267,13 @@ class wxMouseEventPtr(wxEventPtr):
|
|||||||
def Leaving(self, *_args, **_kwargs):
|
def Leaving(self, *_args, **_kwargs):
|
||||||
val = apply(eventsc.wxMouseEvent_Leaving,(self,) + _args, _kwargs)
|
val = apply(eventsc.wxMouseEvent_Leaving,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
def Position(self, *_args, **_kwargs):
|
|
||||||
val = apply(eventsc.wxMouseEvent_Position,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def GetPosition(self, *_args, **_kwargs):
|
def GetPosition(self, *_args, **_kwargs):
|
||||||
val = apply(eventsc.wxMouseEvent_GetPosition,(self,) + _args, _kwargs)
|
val = apply(eventsc.wxMouseEvent_GetPosition,(self,) + _args, _kwargs)
|
||||||
if val: val = wxPointPtr(val) ; val.thisown = 1
|
if val: val = wxPointPtr(val) ; val.thisown = 1
|
||||||
return val
|
return val
|
||||||
|
def GetPositionTuple(self, *_args, **_kwargs):
|
||||||
|
val = apply(eventsc.wxMouseEvent_GetPositionTuple,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
def GetLogicalPosition(self, *_args, **_kwargs):
|
def GetLogicalPosition(self, *_args, **_kwargs):
|
||||||
val = apply(eventsc.wxMouseEvent_GetLogicalPosition,(self,) + _args, _kwargs)
|
val = apply(eventsc.wxMouseEvent_GetLogicalPosition,(self,) + _args, _kwargs)
|
||||||
if val: val = wxPointPtr(val) ; val.thisown = 1
|
if val: val = wxPointPtr(val) ; val.thisown = 1
|
||||||
@@ -794,11 +794,11 @@ class wxPyEventPtr(wxEventPtr):
|
|||||||
def __del__(self,eventsc=eventsc):
|
def __del__(self,eventsc=eventsc):
|
||||||
if self.thisown == 1 :
|
if self.thisown == 1 :
|
||||||
eventsc.delete_wxPyEvent(self)
|
eventsc.delete_wxPyEvent(self)
|
||||||
def SetPyData(self, *_args, **_kwargs):
|
def SetSelf(self, *_args, **_kwargs):
|
||||||
val = apply(eventsc.wxPyEvent_SetPyData,(self,) + _args, _kwargs)
|
val = apply(eventsc.wxPyEvent_SetSelf,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
def GetPyData(self, *_args, **_kwargs):
|
def GetSelf(self, *_args, **_kwargs):
|
||||||
val = apply(eventsc.wxPyEvent_GetPyData,(self,) + _args, _kwargs)
|
val = apply(eventsc.wxPyEvent_GetSelf,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
return "<C wxPyEvent instance at %s>" % (self.this,)
|
return "<C wxPyEvent instance at %s>" % (self.this,)
|
||||||
@@ -806,6 +806,7 @@ class wxPyEvent(wxPyEventPtr):
|
|||||||
def __init__(self,*_args,**_kwargs):
|
def __init__(self,*_args,**_kwargs):
|
||||||
self.this = apply(eventsc.new_wxPyEvent,_args,_kwargs)
|
self.this = apply(eventsc.new_wxPyEvent,_args,_kwargs)
|
||||||
self.thisown = 1
|
self.thisown = 1
|
||||||
|
self.SetSelf(self)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -817,11 +818,11 @@ class wxPyCommandEventPtr(wxCommandEventPtr):
|
|||||||
def __del__(self,eventsc=eventsc):
|
def __del__(self,eventsc=eventsc):
|
||||||
if self.thisown == 1 :
|
if self.thisown == 1 :
|
||||||
eventsc.delete_wxPyCommandEvent(self)
|
eventsc.delete_wxPyCommandEvent(self)
|
||||||
def SetPyData(self, *_args, **_kwargs):
|
def SetSelf(self, *_args, **_kwargs):
|
||||||
val = apply(eventsc.wxPyCommandEvent_SetPyData,(self,) + _args, _kwargs)
|
val = apply(eventsc.wxPyCommandEvent_SetSelf,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
def GetPyData(self, *_args, **_kwargs):
|
def GetSelf(self, *_args, **_kwargs):
|
||||||
val = apply(eventsc.wxPyCommandEvent_GetPyData,(self,) + _args, _kwargs)
|
val = apply(eventsc.wxPyCommandEvent_GetSelf,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
return "<C wxPyCommandEvent instance at %s>" % (self.this,)
|
return "<C wxPyCommandEvent instance at %s>" % (self.this,)
|
||||||
@@ -829,6 +830,7 @@ class wxPyCommandEvent(wxPyCommandEventPtr):
|
|||||||
def __init__(self,*_args,**_kwargs):
|
def __init__(self,*_args,**_kwargs):
|
||||||
self.this = apply(eventsc.new_wxPyCommandEvent,_args,_kwargs)
|
self.this = apply(eventsc.new_wxPyCommandEvent,_args,_kwargs)
|
||||||
self.thisown = 1
|
self.thisown = 1
|
||||||
|
self.SetSelf(self)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@@ -951,7 +951,10 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxActivateEvent","_wxActivateEvent",0},
|
{ "_class_wxActivateEvent","_wxActivateEvent",0},
|
||||||
{ "_signed_long","_long",0},
|
{ "_signed_long","_long",0},
|
||||||
{ "_wxMenuEvent","_class_wxMenuEvent",0},
|
{ "_wxMenuEvent","_class_wxMenuEvent",0},
|
||||||
|
{ "_wxPyBitmapDataObject","_class_wxPyBitmapDataObject",0},
|
||||||
|
{ "_wxBitmapDataObject","_class_wxBitmapDataObject",0},
|
||||||
{ "_class_wxPyCommandEvent","_wxPyCommandEvent",0},
|
{ "_class_wxPyCommandEvent","_wxPyCommandEvent",0},
|
||||||
|
{ "_wxPrintQuality","_wxCoord",0},
|
||||||
{ "_wxPrintQuality","_int",0},
|
{ "_wxPrintQuality","_int",0},
|
||||||
{ "_wxPrintQuality","_signed_int",0},
|
{ "_wxPrintQuality","_signed_int",0},
|
||||||
{ "_wxPrintQuality","_unsigned_int",0},
|
{ "_wxPrintQuality","_unsigned_int",0},
|
||||||
@@ -959,7 +962,9 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPrintQuality","_uint",0},
|
{ "_wxPrintQuality","_uint",0},
|
||||||
{ "_wxPrintQuality","_EBool",0},
|
{ "_wxPrintQuality","_EBool",0},
|
||||||
{ "_wxPrintQuality","_size_t",0},
|
{ "_wxPrintQuality","_size_t",0},
|
||||||
|
{ "_class_wxCustomDataObject","_wxCustomDataObject",0},
|
||||||
{ "_class_wxRegionIterator","_wxRegionIterator",0},
|
{ "_class_wxRegionIterator","_wxRegionIterator",0},
|
||||||
|
{ "_class_wxPyTextDropTarget","_wxPyTextDropTarget",0},
|
||||||
{ "_class_wxMenuBar","_wxMenuBar",0},
|
{ "_class_wxMenuBar","_wxMenuBar",0},
|
||||||
{ "_class_wxEvtHandler","_class_wxMiniFrame",SwigwxMiniFrameTowxEvtHandler},
|
{ "_class_wxEvtHandler","_class_wxMiniFrame",SwigwxMiniFrameTowxEvtHandler},
|
||||||
{ "_class_wxEvtHandler","_wxMiniFrame",SwigwxMiniFrameTowxEvtHandler},
|
{ "_class_wxEvtHandler","_wxMiniFrame",SwigwxMiniFrameTowxEvtHandler},
|
||||||
@@ -974,19 +979,26 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPen","_class_wxPen",0},
|
{ "_wxPen","_class_wxPen",0},
|
||||||
{ "_wxUpdateUIEvent","_class_wxUpdateUIEvent",0},
|
{ "_wxUpdateUIEvent","_class_wxUpdateUIEvent",0},
|
||||||
{ "_byte","_unsigned_char",0},
|
{ "_byte","_unsigned_char",0},
|
||||||
|
{ "_wxDataObject","_class_wxDataObject",0},
|
||||||
{ "_wxStaticBox","_class_wxStaticBox",0},
|
{ "_wxStaticBox","_class_wxStaticBox",0},
|
||||||
|
{ "_wxPyDataObjectSimple","_class_wxPyDataObjectSimple",0},
|
||||||
|
{ "_wxPyDropSource","_class_wxPyDropSource",0},
|
||||||
{ "_wxChoice","_class_wxChoice",0},
|
{ "_wxChoice","_class_wxChoice",0},
|
||||||
{ "_wxSlider","_class_wxSlider",0},
|
{ "_wxSlider","_class_wxSlider",0},
|
||||||
{ "_long","_wxDash",0},
|
{ "_long","_wxDash",0},
|
||||||
{ "_long","_unsigned_long",0},
|
{ "_long","_unsigned_long",0},
|
||||||
{ "_long","_signed_long",0},
|
{ "_long","_signed_long",0},
|
||||||
{ "_wxImageList","_class_wxImageList",0},
|
{ "_wxImageList","_class_wxImageList",0},
|
||||||
|
{ "_wxDataObjectSimple","_class_wxDataObjectSimple",0},
|
||||||
{ "_wxDropFilesEvent","_class_wxDropFilesEvent",0},
|
{ "_wxDropFilesEvent","_class_wxDropFilesEvent",0},
|
||||||
{ "_wxBitmapButton","_class_wxBitmapButton",0},
|
{ "_wxBitmapButton","_class_wxBitmapButton",0},
|
||||||
{ "_class_wxAcceleratorTable","_wxAcceleratorTable",0},
|
{ "_class_wxAcceleratorTable","_wxAcceleratorTable",0},
|
||||||
|
{ "_class_wxClipboard","_wxClipboard",0},
|
||||||
{ "_class_wxGauge","_wxGauge",0},
|
{ "_class_wxGauge","_wxGauge",0},
|
||||||
{ "_wxDC","_class_wxDC",0},
|
{ "_wxDC","_class_wxDC",0},
|
||||||
|
{ "_class_wxBitmapDataObject","_wxBitmapDataObject",0},
|
||||||
{ "_wxSpinEvent","_class_wxSpinEvent",0},
|
{ "_wxSpinEvent","_class_wxSpinEvent",0},
|
||||||
|
{ "_size_t","_wxCoord",0},
|
||||||
{ "_size_t","_wxPrintQuality",0},
|
{ "_size_t","_wxPrintQuality",0},
|
||||||
{ "_size_t","_unsigned_int",0},
|
{ "_size_t","_unsigned_int",0},
|
||||||
{ "_size_t","_int",0},
|
{ "_size_t","_int",0},
|
||||||
@@ -1006,16 +1018,22 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPyEvent","_class_wxPyEvent",0},
|
{ "_wxPyEvent","_class_wxPyEvent",0},
|
||||||
{ "_wxTextCtrl","_class_wxTextCtrl",0},
|
{ "_wxTextCtrl","_class_wxTextCtrl",0},
|
||||||
{ "_class_wxMask","_wxMask",0},
|
{ "_class_wxMask","_wxMask",0},
|
||||||
|
{ "_wxTextDataObject","_class_wxTextDataObject",0},
|
||||||
{ "_class_wxKeyEvent","_wxKeyEvent",0},
|
{ "_class_wxKeyEvent","_wxKeyEvent",0},
|
||||||
{ "_wxColour","_class_wxColour",0},
|
{ "_wxColour","_class_wxColour",0},
|
||||||
{ "_class_wxDialog","_wxDialog",0},
|
{ "_class_wxDialog","_wxDialog",0},
|
||||||
|
{ "_class_wxFileDataObject","_wxFileDataObject",0},
|
||||||
{ "_wxIdleEvent","_class_wxIdleEvent",0},
|
{ "_wxIdleEvent","_class_wxIdleEvent",0},
|
||||||
{ "_class_wxUpdateUIEvent","_wxUpdateUIEvent",0},
|
{ "_class_wxUpdateUIEvent","_wxUpdateUIEvent",0},
|
||||||
{ "_wxToolBar","_class_wxToolBar",0},
|
{ "_wxToolBar","_class_wxToolBar",0},
|
||||||
|
{ "_class_wxDataObject","_wxDataObject",0},
|
||||||
{ "_wxStaticLine","_class_wxStaticLine",0},
|
{ "_wxStaticLine","_class_wxStaticLine",0},
|
||||||
{ "_wxBrush","_class_wxBrush",0},
|
{ "_wxBrush","_class_wxBrush",0},
|
||||||
{ "_wxMiniFrame","_class_wxMiniFrame",0},
|
{ "_wxMiniFrame","_class_wxMiniFrame",0},
|
||||||
|
{ "_wxDataFormat","_class_wxDataFormat",0},
|
||||||
|
{ "_class_wxDataObjectSimple","_wxDataObjectSimple",0},
|
||||||
{ "_wxShowEvent","_class_wxShowEvent",0},
|
{ "_wxShowEvent","_class_wxShowEvent",0},
|
||||||
|
{ "_uint","_wxCoord",0},
|
||||||
{ "_uint","_wxPrintQuality",0},
|
{ "_uint","_wxPrintQuality",0},
|
||||||
{ "_uint","_size_t",0},
|
{ "_uint","_size_t",0},
|
||||||
{ "_uint","_unsigned_int",0},
|
{ "_uint","_unsigned_int",0},
|
||||||
@@ -1043,17 +1061,21 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxIconizeEvent","_wxIconizeEvent",0},
|
{ "_class_wxIconizeEvent","_wxIconizeEvent",0},
|
||||||
{ "_class_wxStaticBitmap","_wxStaticBitmap",0},
|
{ "_class_wxStaticBitmap","_wxStaticBitmap",0},
|
||||||
{ "_class_wxToolBar","_wxToolBar",0},
|
{ "_class_wxToolBar","_wxToolBar",0},
|
||||||
|
{ "_wxDropTarget","_class_wxDropTarget",0},
|
||||||
{ "_class_wxStaticLine","_wxStaticLine",0},
|
{ "_class_wxStaticLine","_wxStaticLine",0},
|
||||||
{ "_wxScrollEvent","_class_wxScrollEvent",0},
|
{ "_wxScrollEvent","_class_wxScrollEvent",0},
|
||||||
|
{ "_EBool","_wxCoord",0},
|
||||||
{ "_EBool","_wxPrintQuality",0},
|
{ "_EBool","_wxPrintQuality",0},
|
||||||
{ "_EBool","_signed_int",0},
|
{ "_EBool","_signed_int",0},
|
||||||
{ "_EBool","_int",0},
|
{ "_EBool","_int",0},
|
||||||
{ "_EBool","_wxWindowID",0},
|
{ "_EBool","_wxWindowID",0},
|
||||||
{ "_class_wxRegion","_wxRegion",0},
|
{ "_class_wxRegion","_wxRegion",0},
|
||||||
|
{ "_class_wxDataFormat","_wxDataFormat",0},
|
||||||
{ "_class_wxDropFilesEvent","_wxDropFilesEvent",0},
|
{ "_class_wxDropFilesEvent","_wxDropFilesEvent",0},
|
||||||
{ "_wxWindowDestroyEvent","_class_wxWindowDestroyEvent",0},
|
{ "_wxWindowDestroyEvent","_class_wxWindowDestroyEvent",0},
|
||||||
{ "_wxStaticText","_class_wxStaticText",0},
|
{ "_wxStaticText","_class_wxStaticText",0},
|
||||||
{ "_wxFont","_class_wxFont",0},
|
{ "_wxFont","_class_wxFont",0},
|
||||||
|
{ "_class_wxPyDropTarget","_wxPyDropTarget",0},
|
||||||
{ "_wxCloseEvent","_class_wxCloseEvent",0},
|
{ "_wxCloseEvent","_class_wxCloseEvent",0},
|
||||||
{ "_unsigned_long","_wxDash",0},
|
{ "_unsigned_long","_wxDash",0},
|
||||||
{ "_unsigned_long","_long",0},
|
{ "_unsigned_long","_long",0},
|
||||||
@@ -1071,12 +1093,14 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxCheckBox","_wxCheckBox",0},
|
{ "_class_wxCheckBox","_wxCheckBox",0},
|
||||||
{ "_wxComboBox","_class_wxComboBox",0},
|
{ "_wxComboBox","_class_wxComboBox",0},
|
||||||
{ "_wxRadioButton","_class_wxRadioButton",0},
|
{ "_wxRadioButton","_class_wxRadioButton",0},
|
||||||
|
{ "_signed_int","_wxCoord",0},
|
||||||
{ "_signed_int","_wxPrintQuality",0},
|
{ "_signed_int","_wxPrintQuality",0},
|
||||||
{ "_signed_int","_EBool",0},
|
{ "_signed_int","_EBool",0},
|
||||||
{ "_signed_int","_wxWindowID",0},
|
{ "_signed_int","_wxWindowID",0},
|
||||||
{ "_signed_int","_int",0},
|
{ "_signed_int","_int",0},
|
||||||
{ "_class_wxTextCtrl","_wxTextCtrl",0},
|
{ "_class_wxTextCtrl","_wxTextCtrl",0},
|
||||||
{ "_wxLayoutConstraints","_class_wxLayoutConstraints",0},
|
{ "_wxLayoutConstraints","_class_wxLayoutConstraints",0},
|
||||||
|
{ "_class_wxTextDataObject","_wxTextDataObject",0},
|
||||||
{ "_wxMenu","_class_wxMenu",0},
|
{ "_wxMenu","_class_wxMenu",0},
|
||||||
{ "_class_wxMoveEvent","_wxMoveEvent",0},
|
{ "_class_wxMoveEvent","_wxMoveEvent",0},
|
||||||
{ "_wxListBox","_class_wxListBox",0},
|
{ "_wxListBox","_class_wxListBox",0},
|
||||||
@@ -1084,6 +1108,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_WXTYPE","_short",0},
|
{ "_WXTYPE","_short",0},
|
||||||
{ "_WXTYPE","_signed_short",0},
|
{ "_WXTYPE","_signed_short",0},
|
||||||
{ "_WXTYPE","_unsigned_short",0},
|
{ "_WXTYPE","_unsigned_short",0},
|
||||||
|
{ "_class_wxDropTarget","_wxDropTarget",0},
|
||||||
{ "_class_wxBrush","_wxBrush",0},
|
{ "_class_wxBrush","_wxBrush",0},
|
||||||
{ "_unsigned_short","_WXTYPE",0},
|
{ "_unsigned_short","_WXTYPE",0},
|
||||||
{ "_unsigned_short","_short",0},
|
{ "_unsigned_short","_short",0},
|
||||||
@@ -1094,10 +1119,13 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxWindow","_wxWindow",0},
|
{ "_class_wxWindow","_wxWindow",0},
|
||||||
{ "_class_wxStaticText","_wxStaticText",0},
|
{ "_class_wxStaticText","_wxStaticText",0},
|
||||||
{ "_class_wxFont","_wxFont",0},
|
{ "_class_wxFont","_wxFont",0},
|
||||||
|
{ "_wxClipboard","_class_wxClipboard",0},
|
||||||
{ "_class_wxPyValidator","_wxPyValidator",0},
|
{ "_class_wxPyValidator","_wxPyValidator",0},
|
||||||
{ "_class_wxCloseEvent","_wxCloseEvent",0},
|
{ "_class_wxCloseEvent","_wxCloseEvent",0},
|
||||||
|
{ "_wxBusyInfo","_class_wxBusyInfo",0},
|
||||||
{ "_class_wxMenuEvent","_wxMenuEvent",0},
|
{ "_class_wxMenuEvent","_wxMenuEvent",0},
|
||||||
{ "_wxPaletteChangedEvent","_class_wxPaletteChangedEvent",0},
|
{ "_wxPaletteChangedEvent","_class_wxPaletteChangedEvent",0},
|
||||||
|
{ "_class_wxPyBitmapDataObject","_wxPyBitmapDataObject",0},
|
||||||
{ "_wxClientDC","_class_wxClientDC",0},
|
{ "_wxClientDC","_class_wxClientDC",0},
|
||||||
{ "_wxMouseEvent","_class_wxMouseEvent",0},
|
{ "_wxMouseEvent","_class_wxMouseEvent",0},
|
||||||
{ "_class_wxPoint","_wxPoint",0},
|
{ "_class_wxPoint","_wxPoint",0},
|
||||||
@@ -1106,6 +1134,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_signed_short","_WXTYPE",0},
|
{ "_signed_short","_WXTYPE",0},
|
||||||
{ "_signed_short","_short",0},
|
{ "_signed_short","_short",0},
|
||||||
{ "_wxMemoryDC","_class_wxMemoryDC",0},
|
{ "_wxMemoryDC","_class_wxMemoryDC",0},
|
||||||
|
{ "_wxPyTextDataObject","_class_wxPyTextDataObject",0},
|
||||||
{ "_wxPaintDC","_class_wxPaintDC",0},
|
{ "_wxPaintDC","_class_wxPaintDC",0},
|
||||||
{ "_class_wxWindowDC","_wxWindowDC",0},
|
{ "_class_wxWindowDC","_wxWindowDC",0},
|
||||||
{ "_class_wxFocusEvent","_wxFocusEvent",0},
|
{ "_class_wxFocusEvent","_wxFocusEvent",0},
|
||||||
@@ -1115,11 +1144,13 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxAcceleratorEntry","_wxAcceleratorEntry",0},
|
{ "_class_wxAcceleratorEntry","_wxAcceleratorEntry",0},
|
||||||
{ "_class_wxCursor","_wxCursor",0},
|
{ "_class_wxCursor","_wxCursor",0},
|
||||||
{ "_wxPostScriptDC","_class_wxPostScriptDC",0},
|
{ "_wxPostScriptDC","_class_wxPostScriptDC",0},
|
||||||
|
{ "_wxPyFileDropTarget","_class_wxPyFileDropTarget",0},
|
||||||
{ "_wxScrolledWindow","_class_wxScrolledWindow",0},
|
{ "_wxScrolledWindow","_class_wxScrolledWindow",0},
|
||||||
{ "_unsigned_char","_byte",0},
|
{ "_unsigned_char","_byte",0},
|
||||||
{ "_class_wxMenu","_wxMenu",0},
|
{ "_class_wxMenu","_wxMenu",0},
|
||||||
{ "_wxControl","_class_wxControl",0},
|
{ "_wxControl","_class_wxControl",0},
|
||||||
{ "_class_wxListBox","_wxListBox",0},
|
{ "_class_wxListBox","_wxListBox",0},
|
||||||
|
{ "_unsigned_int","_wxCoord",0},
|
||||||
{ "_unsigned_int","_wxPrintQuality",0},
|
{ "_unsigned_int","_wxPrintQuality",0},
|
||||||
{ "_unsigned_int","_size_t",0},
|
{ "_unsigned_int","_size_t",0},
|
||||||
{ "_unsigned_int","_uint",0},
|
{ "_unsigned_int","_uint",0},
|
||||||
@@ -1132,6 +1163,8 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_short","_unsigned_short",0},
|
{ "_short","_unsigned_short",0},
|
||||||
{ "_short","_signed_short",0},
|
{ "_short","_signed_short",0},
|
||||||
{ "_class_wxStaticBox","_wxStaticBox",0},
|
{ "_class_wxStaticBox","_wxStaticBox",0},
|
||||||
|
{ "_class_wxPyDataObjectSimple","_wxPyDataObjectSimple",0},
|
||||||
|
{ "_class_wxPyDropSource","_wxPyDropSource",0},
|
||||||
{ "_class_wxScrollEvent","_wxScrollEvent",0},
|
{ "_class_wxScrollEvent","_wxScrollEvent",0},
|
||||||
{ "_wxJoystickEvent","_class_wxJoystickEvent",0},
|
{ "_wxJoystickEvent","_class_wxJoystickEvent",0},
|
||||||
{ "_class_wxChoice","_wxChoice",0},
|
{ "_class_wxChoice","_wxChoice",0},
|
||||||
@@ -1142,6 +1175,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxFrame","_wxMiniFrame",SwigwxMiniFrameTowxFrame},
|
{ "_wxFrame","_wxMiniFrame",SwigwxMiniFrameTowxFrame},
|
||||||
{ "_wxFrame","_class_wxFrame",0},
|
{ "_wxFrame","_class_wxFrame",0},
|
||||||
{ "_class_wxPaletteChangedEvent","_wxPaletteChangedEvent",0},
|
{ "_class_wxPaletteChangedEvent","_wxPaletteChangedEvent",0},
|
||||||
|
{ "_wxWindowID","_wxCoord",0},
|
||||||
{ "_wxWindowID","_wxPrintQuality",0},
|
{ "_wxWindowID","_wxPrintQuality",0},
|
||||||
{ "_wxWindowID","_size_t",0},
|
{ "_wxWindowID","_size_t",0},
|
||||||
{ "_wxWindowID","_EBool",0},
|
{ "_wxWindowID","_EBool",0},
|
||||||
@@ -1150,6 +1184,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxWindowID","_signed_int",0},
|
{ "_wxWindowID","_signed_int",0},
|
||||||
{ "_wxWindowID","_unsigned_int",0},
|
{ "_wxWindowID","_unsigned_int",0},
|
||||||
{ "_class_wxScrollWinEvent","_wxScrollWinEvent",0},
|
{ "_class_wxScrollWinEvent","_wxScrollWinEvent",0},
|
||||||
|
{ "_int","_wxCoord",0},
|
||||||
{ "_int","_wxPrintQuality",0},
|
{ "_int","_wxPrintQuality",0},
|
||||||
{ "_int","_size_t",0},
|
{ "_int","_size_t",0},
|
||||||
{ "_int","_EBool",0},
|
{ "_int","_EBool",0},
|
||||||
@@ -1165,8 +1200,10 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxButton","_class_wxButton",0},
|
{ "_wxButton","_class_wxButton",0},
|
||||||
{ "_wxSize","_class_wxSize",0},
|
{ "_wxSize","_class_wxSize",0},
|
||||||
{ "_wxRegionIterator","_class_wxRegionIterator",0},
|
{ "_wxRegionIterator","_class_wxRegionIterator",0},
|
||||||
|
{ "_class_wxPyTextDataObject","_wxPyTextDataObject",0},
|
||||||
{ "_class_wxPaintDC","_wxPaintDC",0},
|
{ "_class_wxPaintDC","_wxPaintDC",0},
|
||||||
{ "_class_wxSysColourChangedEvent","_wxSysColourChangedEvent",0},
|
{ "_class_wxSysColourChangedEvent","_wxSysColourChangedEvent",0},
|
||||||
|
{ "_class_wxPyFileDropTarget","_wxPyFileDropTarget",0},
|
||||||
{ "_class_wxInitDialogEvent","_wxInitDialogEvent",0},
|
{ "_class_wxInitDialogEvent","_wxInitDialogEvent",0},
|
||||||
{ "_class_wxComboBox","_wxComboBox",0},
|
{ "_class_wxComboBox","_wxComboBox",0},
|
||||||
{ "_class_wxRadioButton","_wxRadioButton",0},
|
{ "_class_wxRadioButton","_wxRadioButton",0},
|
||||||
@@ -1180,20 +1217,33 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxScreenDC","_wxScreenDC",0},
|
{ "_class_wxScreenDC","_wxScreenDC",0},
|
||||||
{ "_wxPalette","_class_wxPalette",0},
|
{ "_wxPalette","_class_wxPalette",0},
|
||||||
{ "_class_wxIdleEvent","_wxIdleEvent",0},
|
{ "_class_wxIdleEvent","_wxIdleEvent",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","_wxPrintQuality",0},
|
||||||
{ "_wxEraseEvent","_class_wxEraseEvent",0},
|
{ "_wxEraseEvent","_class_wxEraseEvent",0},
|
||||||
|
{ "_wxDataObjectComposite","_class_wxDataObjectComposite",0},
|
||||||
{ "_class_wxJoystickEvent","_wxJoystickEvent",0},
|
{ "_class_wxJoystickEvent","_wxJoystickEvent",0},
|
||||||
{ "_class_wxMiniFrame","_wxMiniFrame",0},
|
{ "_class_wxMiniFrame","_wxMiniFrame",0},
|
||||||
{ "_wxRegion","_class_wxRegion",0},
|
{ "_wxRegion","_class_wxRegion",0},
|
||||||
{ "_class_wxShowEvent","_wxShowEvent",0},
|
{ "_class_wxShowEvent","_wxShowEvent",0},
|
||||||
|
{ "_wxPyDropTarget","_class_wxPyDropTarget",0},
|
||||||
{ "_wxActivateEvent","_class_wxActivateEvent",0},
|
{ "_wxActivateEvent","_class_wxActivateEvent",0},
|
||||||
{ "_wxGauge","_class_wxGauge",0},
|
{ "_wxGauge","_class_wxGauge",0},
|
||||||
{ "_class_wxCheckListBox","_wxCheckListBox",0},
|
{ "_class_wxCheckListBox","_wxCheckListBox",0},
|
||||||
|
{ "_class_wxBusyInfo","_wxBusyInfo",0},
|
||||||
{ "_class_wxCommandEvent","_wxCommandEvent",0},
|
{ "_class_wxCommandEvent","_wxCommandEvent",0},
|
||||||
{ "_class_wxClientDC","_wxClientDC",0},
|
{ "_class_wxClientDC","_wxClientDC",0},
|
||||||
{ "_class_wxSizeEvent","_wxSizeEvent",0},
|
{ "_class_wxSizeEvent","_wxSizeEvent",0},
|
||||||
|
{ "_wxCustomDataObject","_class_wxCustomDataObject",0},
|
||||||
{ "_class_wxSize","_wxSize",0},
|
{ "_class_wxSize","_wxSize",0},
|
||||||
{ "_class_wxBitmap","_wxBitmap",0},
|
{ "_class_wxBitmap","_wxBitmap",0},
|
||||||
{ "_class_wxMemoryDC","_wxMemoryDC",0},
|
{ "_class_wxMemoryDC","_wxMemoryDC",0},
|
||||||
|
{ "_wxPyTextDropTarget","_class_wxPyTextDropTarget",0},
|
||||||
{ "_wxMenuBar","_class_wxMenuBar",0},
|
{ "_wxMenuBar","_class_wxMenuBar",0},
|
||||||
{ "_wxEvtHandler","_class_wxMiniFrame",SwigwxMiniFrameTowxEvtHandler},
|
{ "_wxEvtHandler","_class_wxMiniFrame",SwigwxMiniFrameTowxEvtHandler},
|
||||||
{ "_wxEvtHandler","_wxMiniFrame",SwigwxMiniFrameTowxEvtHandler},
|
{ "_wxEvtHandler","_wxMiniFrame",SwigwxMiniFrameTowxEvtHandler},
|
||||||
@@ -1208,7 +1258,9 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxKeyEvent","_class_wxKeyEvent",0},
|
{ "_wxKeyEvent","_class_wxKeyEvent",0},
|
||||||
{ "_wxMoveEvent","_class_wxMoveEvent",0},
|
{ "_wxMoveEvent","_class_wxMoveEvent",0},
|
||||||
{ "_class_wxPalette","_wxPalette",0},
|
{ "_class_wxPalette","_wxPalette",0},
|
||||||
|
{ "_wxFileDataObject","_class_wxFileDataObject",0},
|
||||||
{ "_class_wxEraseEvent","_wxEraseEvent",0},
|
{ "_class_wxEraseEvent","_wxEraseEvent",0},
|
||||||
|
{ "_class_wxDataObjectComposite","_wxDataObjectComposite",0},
|
||||||
{ "_wxWindow","_class_wxMiniFrame",SwigwxMiniFrameTowxWindow},
|
{ "_wxWindow","_class_wxMiniFrame",SwigwxMiniFrameTowxWindow},
|
||||||
{ "_wxWindow","_wxMiniFrame",SwigwxMiniFrameTowxWindow},
|
{ "_wxWindow","_wxMiniFrame",SwigwxMiniFrameTowxWindow},
|
||||||
{ "_wxWindow","_class_wxFrame",SwigwxFrameTowxWindow},
|
{ "_wxWindow","_class_wxFrame",SwigwxFrameTowxWindow},
|
||||||
|
@@ -7,6 +7,8 @@ from gdi import *
|
|||||||
|
|
||||||
from windows import *
|
from windows import *
|
||||||
|
|
||||||
|
from clip_dnd import *
|
||||||
|
|
||||||
from stattool import *
|
from stattool import *
|
||||||
|
|
||||||
from controls import *
|
from controls import *
|
||||||
|
@@ -6735,6 +6735,7 @@ static PyMethodDef gdicMethods[] = {
|
|||||||
static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
||||||
{ "_wxAcceleratorTable","_class_wxAcceleratorTable",0},
|
{ "_wxAcceleratorTable","_class_wxAcceleratorTable",0},
|
||||||
{ "_signed_long","_long",0},
|
{ "_signed_long","_long",0},
|
||||||
|
{ "_wxPrintQuality","_wxCoord",0},
|
||||||
{ "_wxPrintQuality","_int",0},
|
{ "_wxPrintQuality","_int",0},
|
||||||
{ "_wxPrintQuality","_signed_int",0},
|
{ "_wxPrintQuality","_signed_int",0},
|
||||||
{ "_wxPrintQuality","_unsigned_int",0},
|
{ "_wxPrintQuality","_unsigned_int",0},
|
||||||
@@ -6766,6 +6767,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxDC","_class_wxMemoryDC",SwigwxMemoryDCTowxDC},
|
{ "_wxDC","_class_wxMemoryDC",SwigwxMemoryDCTowxDC},
|
||||||
{ "_wxDC","_wxMemoryDC",SwigwxMemoryDCTowxDC},
|
{ "_wxDC","_wxMemoryDC",SwigwxMemoryDCTowxDC},
|
||||||
{ "_wxDC","_class_wxDC",0},
|
{ "_wxDC","_class_wxDC",0},
|
||||||
|
{ "_size_t","_wxCoord",0},
|
||||||
{ "_size_t","_wxPrintQuality",0},
|
{ "_size_t","_wxPrintQuality",0},
|
||||||
{ "_size_t","_unsigned_int",0},
|
{ "_size_t","_unsigned_int",0},
|
||||||
{ "_size_t","_int",0},
|
{ "_size_t","_int",0},
|
||||||
@@ -6776,6 +6778,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxMask","_wxMask",0},
|
{ "_class_wxMask","_wxMask",0},
|
||||||
{ "_wxColour","_class_wxColour",0},
|
{ "_wxColour","_class_wxColour",0},
|
||||||
{ "_wxBrush","_class_wxBrush",0},
|
{ "_wxBrush","_class_wxBrush",0},
|
||||||
|
{ "_uint","_wxCoord",0},
|
||||||
{ "_uint","_wxPrintQuality",0},
|
{ "_uint","_wxPrintQuality",0},
|
||||||
{ "_uint","_size_t",0},
|
{ "_uint","_size_t",0},
|
||||||
{ "_uint","_unsigned_int",0},
|
{ "_uint","_unsigned_int",0},
|
||||||
@@ -6791,6 +6794,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPyTimer","_class_wxPyTimer",0},
|
{ "_wxPyTimer","_class_wxPyTimer",0},
|
||||||
{ "_wxWindowDC","_class_wxWindowDC",0},
|
{ "_wxWindowDC","_class_wxWindowDC",0},
|
||||||
{ "_class_wxIndividualLayoutConstraint","_wxIndividualLayoutConstraint",0},
|
{ "_class_wxIndividualLayoutConstraint","_wxIndividualLayoutConstraint",0},
|
||||||
|
{ "_EBool","_wxCoord",0},
|
||||||
{ "_EBool","_wxPrintQuality",0},
|
{ "_EBool","_wxPrintQuality",0},
|
||||||
{ "_EBool","_signed_int",0},
|
{ "_EBool","_signed_int",0},
|
||||||
{ "_EBool","_int",0},
|
{ "_EBool","_int",0},
|
||||||
@@ -6815,6 +6819,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxDC","_wxDC",0},
|
{ "_class_wxDC","_wxDC",0},
|
||||||
{ "_class_wxPyTimer","_wxPyTimer",0},
|
{ "_class_wxPyTimer","_wxPyTimer",0},
|
||||||
{ "_wxAcceleratorEntry","_class_wxAcceleratorEntry",0},
|
{ "_wxAcceleratorEntry","_class_wxAcceleratorEntry",0},
|
||||||
|
{ "_signed_int","_wxCoord",0},
|
||||||
{ "_signed_int","_wxPrintQuality",0},
|
{ "_signed_int","_wxPrintQuality",0},
|
||||||
{ "_signed_int","_EBool",0},
|
{ "_signed_int","_EBool",0},
|
||||||
{ "_signed_int","_wxWindowID",0},
|
{ "_signed_int","_wxWindowID",0},
|
||||||
@@ -6828,6 +6833,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_unsigned_short","_WXTYPE",0},
|
{ "_unsigned_short","_WXTYPE",0},
|
||||||
{ "_unsigned_short","_short",0},
|
{ "_unsigned_short","_short",0},
|
||||||
{ "_class_wxFont","_wxFont",0},
|
{ "_class_wxFont","_wxFont",0},
|
||||||
|
{ "_wxBusyInfo","_class_wxBusyInfo",0},
|
||||||
{ "_wxClientDC","_class_wxClientDC",0},
|
{ "_wxClientDC","_class_wxClientDC",0},
|
||||||
{ "_class_wxPoint","_wxPoint",0},
|
{ "_class_wxPoint","_wxPoint",0},
|
||||||
{ "_wxRealPoint","_class_wxRealPoint",0},
|
{ "_wxRealPoint","_class_wxRealPoint",0},
|
||||||
@@ -6840,6 +6846,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxCursor","_wxCursor",0},
|
{ "_class_wxCursor","_wxCursor",0},
|
||||||
{ "_wxPostScriptDC","_class_wxPostScriptDC",0},
|
{ "_wxPostScriptDC","_class_wxPostScriptDC",0},
|
||||||
{ "_unsigned_char","_byte",0},
|
{ "_unsigned_char","_byte",0},
|
||||||
|
{ "_unsigned_int","_wxCoord",0},
|
||||||
{ "_unsigned_int","_wxPrintQuality",0},
|
{ "_unsigned_int","_wxPrintQuality",0},
|
||||||
{ "_unsigned_int","_size_t",0},
|
{ "_unsigned_int","_size_t",0},
|
||||||
{ "_unsigned_int","_uint",0},
|
{ "_unsigned_int","_uint",0},
|
||||||
@@ -6851,6 +6858,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_short","_unsigned_short",0},
|
{ "_short","_unsigned_short",0},
|
||||||
{ "_short","_signed_short",0},
|
{ "_short","_signed_short",0},
|
||||||
{ "_class_wxImageList","_wxImageList",0},
|
{ "_class_wxImageList","_wxImageList",0},
|
||||||
|
{ "_wxWindowID","_wxCoord",0},
|
||||||
{ "_wxWindowID","_wxPrintQuality",0},
|
{ "_wxWindowID","_wxPrintQuality",0},
|
||||||
{ "_wxWindowID","_size_t",0},
|
{ "_wxWindowID","_size_t",0},
|
||||||
{ "_wxWindowID","_EBool",0},
|
{ "_wxWindowID","_EBool",0},
|
||||||
@@ -6858,6 +6866,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxWindowID","_int",0},
|
{ "_wxWindowID","_int",0},
|
||||||
{ "_wxWindowID","_signed_int",0},
|
{ "_wxWindowID","_signed_int",0},
|
||||||
{ "_wxWindowID","_unsigned_int",0},
|
{ "_wxWindowID","_unsigned_int",0},
|
||||||
|
{ "_int","_wxCoord",0},
|
||||||
{ "_int","_wxPrintQuality",0},
|
{ "_int","_wxPrintQuality",0},
|
||||||
{ "_int","_size_t",0},
|
{ "_int","_size_t",0},
|
||||||
{ "_int","_EBool",0},
|
{ "_int","_EBool",0},
|
||||||
@@ -6873,7 +6882,16 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxColour","_wxColour",0},
|
{ "_class_wxColour","_wxColour",0},
|
||||||
{ "_class_wxScreenDC","_wxScreenDC",0},
|
{ "_class_wxScreenDC","_wxScreenDC",0},
|
||||||
{ "_wxPalette","_class_wxPalette",0},
|
{ "_wxPalette","_class_wxPalette",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","_wxPrintQuality",0},
|
||||||
{ "_wxRegion","_class_wxRegion",0},
|
{ "_wxRegion","_class_wxRegion",0},
|
||||||
|
{ "_class_wxBusyInfo","_wxBusyInfo",0},
|
||||||
{ "_class_wxClientDC","_wxClientDC",0},
|
{ "_class_wxClientDC","_wxClientDC",0},
|
||||||
{ "_class_wxSize","_wxSize",0},
|
{ "_class_wxSize","_wxSize",0},
|
||||||
{ "_class_wxBitmap","_class_wxCursor",SwigwxCursorTowxBitmap},
|
{ "_class_wxBitmap","_class_wxCursor",SwigwxCursorTowxBitmap},
|
||||||
|
@@ -1715,6 +1715,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxJPEGHandler","_wxJPEGHandler",0},
|
{ "_class_wxJPEGHandler","_wxJPEGHandler",0},
|
||||||
{ "_wxBMPHandler","_class_wxBMPHandler",0},
|
{ "_wxBMPHandler","_class_wxBMPHandler",0},
|
||||||
{ "_wxImage","_class_wxImage",0},
|
{ "_wxImage","_class_wxImage",0},
|
||||||
|
{ "_wxPrintQuality","_wxCoord",0},
|
||||||
{ "_wxPrintQuality","_int",0},
|
{ "_wxPrintQuality","_int",0},
|
||||||
{ "_wxPrintQuality","_signed_int",0},
|
{ "_wxPrintQuality","_signed_int",0},
|
||||||
{ "_wxPrintQuality","_unsigned_int",0},
|
{ "_wxPrintQuality","_unsigned_int",0},
|
||||||
@@ -1750,6 +1751,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxAcceleratorTable","_wxAcceleratorTable",0},
|
{ "_class_wxAcceleratorTable","_wxAcceleratorTable",0},
|
||||||
{ "_wxDC","_class_wxDC",0},
|
{ "_wxDC","_class_wxDC",0},
|
||||||
{ "_class_wxBMPHandler","_wxBMPHandler",0},
|
{ "_class_wxBMPHandler","_wxBMPHandler",0},
|
||||||
|
{ "_size_t","_wxCoord",0},
|
||||||
{ "_size_t","_wxPrintQuality",0},
|
{ "_size_t","_wxPrintQuality",0},
|
||||||
{ "_size_t","_unsigned_int",0},
|
{ "_size_t","_unsigned_int",0},
|
||||||
{ "_size_t","_int",0},
|
{ "_size_t","_int",0},
|
||||||
@@ -1763,6 +1765,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxPNGHandler","_wxPNGHandler",0},
|
{ "_class_wxPNGHandler","_wxPNGHandler",0},
|
||||||
{ "_wxColour","_class_wxColour",0},
|
{ "_wxColour","_class_wxColour",0},
|
||||||
{ "_wxBrush","_class_wxBrush",0},
|
{ "_wxBrush","_class_wxBrush",0},
|
||||||
|
{ "_uint","_wxCoord",0},
|
||||||
{ "_uint","_wxPrintQuality",0},
|
{ "_uint","_wxPrintQuality",0},
|
||||||
{ "_uint","_size_t",0},
|
{ "_uint","_size_t",0},
|
||||||
{ "_uint","_unsigned_int",0},
|
{ "_uint","_unsigned_int",0},
|
||||||
@@ -1776,6 +1779,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPyTimer","_class_wxPyTimer",0},
|
{ "_wxPyTimer","_class_wxPyTimer",0},
|
||||||
{ "_wxWindowDC","_class_wxWindowDC",0},
|
{ "_wxWindowDC","_class_wxWindowDC",0},
|
||||||
{ "_class_wxIndividualLayoutConstraint","_wxIndividualLayoutConstraint",0},
|
{ "_class_wxIndividualLayoutConstraint","_wxIndividualLayoutConstraint",0},
|
||||||
|
{ "_EBool","_wxCoord",0},
|
||||||
{ "_EBool","_wxPrintQuality",0},
|
{ "_EBool","_wxPrintQuality",0},
|
||||||
{ "_EBool","_signed_int",0},
|
{ "_EBool","_signed_int",0},
|
||||||
{ "_EBool","_int",0},
|
{ "_EBool","_int",0},
|
||||||
@@ -1788,6 +1792,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxDC","_wxDC",0},
|
{ "_class_wxDC","_wxDC",0},
|
||||||
{ "_class_wxPyTimer","_wxPyTimer",0},
|
{ "_class_wxPyTimer","_wxPyTimer",0},
|
||||||
{ "_wxAcceleratorEntry","_class_wxAcceleratorEntry",0},
|
{ "_wxAcceleratorEntry","_class_wxAcceleratorEntry",0},
|
||||||
|
{ "_signed_int","_wxCoord",0},
|
||||||
{ "_signed_int","_wxPrintQuality",0},
|
{ "_signed_int","_wxPrintQuality",0},
|
||||||
{ "_signed_int","_EBool",0},
|
{ "_signed_int","_EBool",0},
|
||||||
{ "_signed_int","_wxWindowID",0},
|
{ "_signed_int","_wxWindowID",0},
|
||||||
@@ -1801,6 +1806,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_unsigned_short","_WXTYPE",0},
|
{ "_unsigned_short","_WXTYPE",0},
|
||||||
{ "_unsigned_short","_short",0},
|
{ "_unsigned_short","_short",0},
|
||||||
{ "_class_wxFont","_wxFont",0},
|
{ "_class_wxFont","_wxFont",0},
|
||||||
|
{ "_wxBusyInfo","_class_wxBusyInfo",0},
|
||||||
{ "_wxClientDC","_class_wxClientDC",0},
|
{ "_wxClientDC","_class_wxClientDC",0},
|
||||||
{ "_class_wxPoint","_wxPoint",0},
|
{ "_class_wxPoint","_wxPoint",0},
|
||||||
{ "_wxRealPoint","_class_wxRealPoint",0},
|
{ "_wxRealPoint","_class_wxRealPoint",0},
|
||||||
@@ -1826,6 +1832,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxImageHandler","_wxPNGHandler",SwigwxPNGHandlerTowxImageHandler},
|
{ "_class_wxImageHandler","_wxPNGHandler",SwigwxPNGHandlerTowxImageHandler},
|
||||||
{ "_class_wxImageHandler","_wxImageHandler",0},
|
{ "_class_wxImageHandler","_wxImageHandler",0},
|
||||||
{ "_unsigned_char","_byte",0},
|
{ "_unsigned_char","_byte",0},
|
||||||
|
{ "_unsigned_int","_wxCoord",0},
|
||||||
{ "_unsigned_int","_wxPrintQuality",0},
|
{ "_unsigned_int","_wxPrintQuality",0},
|
||||||
{ "_unsigned_int","_size_t",0},
|
{ "_unsigned_int","_size_t",0},
|
||||||
{ "_unsigned_int","_uint",0},
|
{ "_unsigned_int","_uint",0},
|
||||||
@@ -1839,6 +1846,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxImageList","_wxImageList",0},
|
{ "_class_wxImageList","_wxImageList",0},
|
||||||
{ "_wxPCXHandler","_class_wxPCXHandler",0},
|
{ "_wxPCXHandler","_class_wxPCXHandler",0},
|
||||||
{ "_wxJPEGHandler","_class_wxJPEGHandler",0},
|
{ "_wxJPEGHandler","_class_wxJPEGHandler",0},
|
||||||
|
{ "_wxWindowID","_wxCoord",0},
|
||||||
{ "_wxWindowID","_wxPrintQuality",0},
|
{ "_wxWindowID","_wxPrintQuality",0},
|
||||||
{ "_wxWindowID","_size_t",0},
|
{ "_wxWindowID","_size_t",0},
|
||||||
{ "_wxWindowID","_EBool",0},
|
{ "_wxWindowID","_EBool",0},
|
||||||
@@ -1846,6 +1854,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxWindowID","_int",0},
|
{ "_wxWindowID","_int",0},
|
||||||
{ "_wxWindowID","_signed_int",0},
|
{ "_wxWindowID","_signed_int",0},
|
||||||
{ "_wxWindowID","_unsigned_int",0},
|
{ "_wxWindowID","_unsigned_int",0},
|
||||||
|
{ "_int","_wxCoord",0},
|
||||||
{ "_int","_wxPrintQuality",0},
|
{ "_int","_wxPrintQuality",0},
|
||||||
{ "_int","_size_t",0},
|
{ "_int","_size_t",0},
|
||||||
{ "_int","_EBool",0},
|
{ "_int","_EBool",0},
|
||||||
@@ -1861,8 +1870,17 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxColour","_wxColour",0},
|
{ "_class_wxColour","_wxColour",0},
|
||||||
{ "_class_wxScreenDC","_wxScreenDC",0},
|
{ "_class_wxScreenDC","_wxScreenDC",0},
|
||||||
{ "_wxPalette","_class_wxPalette",0},
|
{ "_wxPalette","_class_wxPalette",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","_wxPrintQuality",0},
|
||||||
{ "_wxRegion","_class_wxRegion",0},
|
{ "_wxRegion","_class_wxRegion",0},
|
||||||
{ "_class_wxPCXHandler","_wxPCXHandler",0},
|
{ "_class_wxPCXHandler","_wxPCXHandler",0},
|
||||||
|
{ "_class_wxBusyInfo","_wxBusyInfo",0},
|
||||||
{ "_class_wxClientDC","_wxClientDC",0},
|
{ "_class_wxClientDC","_wxClientDC",0},
|
||||||
{ "_class_wxSize","_wxSize",0},
|
{ "_class_wxSize","_wxSize",0},
|
||||||
{ "_class_wxBitmap","_wxBitmap",0},
|
{ "_class_wxBitmap","_wxBitmap",0},
|
||||||
|
@@ -691,7 +691,10 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxActivateEvent","_wxActivateEvent",0},
|
{ "_class_wxActivateEvent","_wxActivateEvent",0},
|
||||||
{ "_signed_long","_long",0},
|
{ "_signed_long","_long",0},
|
||||||
{ "_wxMenuEvent","_class_wxMenuEvent",0},
|
{ "_wxMenuEvent","_class_wxMenuEvent",0},
|
||||||
|
{ "_wxPyBitmapDataObject","_class_wxPyBitmapDataObject",0},
|
||||||
|
{ "_wxBitmapDataObject","_class_wxBitmapDataObject",0},
|
||||||
{ "_class_wxPyCommandEvent","_wxPyCommandEvent",0},
|
{ "_class_wxPyCommandEvent","_wxPyCommandEvent",0},
|
||||||
|
{ "_wxPrintQuality","_wxCoord",0},
|
||||||
{ "_wxPrintQuality","_int",0},
|
{ "_wxPrintQuality","_int",0},
|
||||||
{ "_wxPrintQuality","_signed_int",0},
|
{ "_wxPrintQuality","_signed_int",0},
|
||||||
{ "_wxPrintQuality","_unsigned_int",0},
|
{ "_wxPrintQuality","_unsigned_int",0},
|
||||||
@@ -699,7 +702,9 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPrintQuality","_uint",0},
|
{ "_wxPrintQuality","_uint",0},
|
||||||
{ "_wxPrintQuality","_EBool",0},
|
{ "_wxPrintQuality","_EBool",0},
|
||||||
{ "_wxPrintQuality","_size_t",0},
|
{ "_wxPrintQuality","_size_t",0},
|
||||||
|
{ "_class_wxCustomDataObject","_wxCustomDataObject",0},
|
||||||
{ "_class_wxRegionIterator","_wxRegionIterator",0},
|
{ "_class_wxRegionIterator","_wxRegionIterator",0},
|
||||||
|
{ "_class_wxPyTextDropTarget","_wxPyTextDropTarget",0},
|
||||||
{ "_class_wxMenuBar","_wxMenuBar",0},
|
{ "_class_wxMenuBar","_wxMenuBar",0},
|
||||||
{ "_class_wxEvtHandler","_class_wxMDIClientWindow",SwigwxMDIClientWindowTowxEvtHandler},
|
{ "_class_wxEvtHandler","_class_wxMDIClientWindow",SwigwxMDIClientWindowTowxEvtHandler},
|
||||||
{ "_class_wxEvtHandler","_wxMDIClientWindow",SwigwxMDIClientWindowTowxEvtHandler},
|
{ "_class_wxEvtHandler","_wxMDIClientWindow",SwigwxMDIClientWindowTowxEvtHandler},
|
||||||
@@ -716,19 +721,26 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPen","_class_wxPen",0},
|
{ "_wxPen","_class_wxPen",0},
|
||||||
{ "_wxUpdateUIEvent","_class_wxUpdateUIEvent",0},
|
{ "_wxUpdateUIEvent","_class_wxUpdateUIEvent",0},
|
||||||
{ "_byte","_unsigned_char",0},
|
{ "_byte","_unsigned_char",0},
|
||||||
|
{ "_wxDataObject","_class_wxDataObject",0},
|
||||||
{ "_wxStaticBox","_class_wxStaticBox",0},
|
{ "_wxStaticBox","_class_wxStaticBox",0},
|
||||||
|
{ "_wxPyDataObjectSimple","_class_wxPyDataObjectSimple",0},
|
||||||
|
{ "_wxPyDropSource","_class_wxPyDropSource",0},
|
||||||
{ "_wxChoice","_class_wxChoice",0},
|
{ "_wxChoice","_class_wxChoice",0},
|
||||||
{ "_wxSlider","_class_wxSlider",0},
|
{ "_wxSlider","_class_wxSlider",0},
|
||||||
{ "_long","_wxDash",0},
|
{ "_long","_wxDash",0},
|
||||||
{ "_long","_unsigned_long",0},
|
{ "_long","_unsigned_long",0},
|
||||||
{ "_long","_signed_long",0},
|
{ "_long","_signed_long",0},
|
||||||
{ "_wxImageList","_class_wxImageList",0},
|
{ "_wxImageList","_class_wxImageList",0},
|
||||||
|
{ "_wxDataObjectSimple","_class_wxDataObjectSimple",0},
|
||||||
{ "_wxDropFilesEvent","_class_wxDropFilesEvent",0},
|
{ "_wxDropFilesEvent","_class_wxDropFilesEvent",0},
|
||||||
{ "_wxBitmapButton","_class_wxBitmapButton",0},
|
{ "_wxBitmapButton","_class_wxBitmapButton",0},
|
||||||
{ "_class_wxAcceleratorTable","_wxAcceleratorTable",0},
|
{ "_class_wxAcceleratorTable","_wxAcceleratorTable",0},
|
||||||
|
{ "_class_wxClipboard","_wxClipboard",0},
|
||||||
{ "_class_wxGauge","_wxGauge",0},
|
{ "_class_wxGauge","_wxGauge",0},
|
||||||
{ "_wxDC","_class_wxDC",0},
|
{ "_wxDC","_class_wxDC",0},
|
||||||
|
{ "_class_wxBitmapDataObject","_wxBitmapDataObject",0},
|
||||||
{ "_wxSpinEvent","_class_wxSpinEvent",0},
|
{ "_wxSpinEvent","_class_wxSpinEvent",0},
|
||||||
|
{ "_size_t","_wxCoord",0},
|
||||||
{ "_size_t","_wxPrintQuality",0},
|
{ "_size_t","_wxPrintQuality",0},
|
||||||
{ "_size_t","_unsigned_int",0},
|
{ "_size_t","_unsigned_int",0},
|
||||||
{ "_size_t","_int",0},
|
{ "_size_t","_int",0},
|
||||||
@@ -748,16 +760,22 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPyEvent","_class_wxPyEvent",0},
|
{ "_wxPyEvent","_class_wxPyEvent",0},
|
||||||
{ "_wxTextCtrl","_class_wxTextCtrl",0},
|
{ "_wxTextCtrl","_class_wxTextCtrl",0},
|
||||||
{ "_class_wxMask","_wxMask",0},
|
{ "_class_wxMask","_wxMask",0},
|
||||||
|
{ "_wxTextDataObject","_class_wxTextDataObject",0},
|
||||||
{ "_class_wxKeyEvent","_wxKeyEvent",0},
|
{ "_class_wxKeyEvent","_wxKeyEvent",0},
|
||||||
{ "_wxColour","_class_wxColour",0},
|
{ "_wxColour","_class_wxColour",0},
|
||||||
{ "_class_wxDialog","_wxDialog",0},
|
{ "_class_wxDialog","_wxDialog",0},
|
||||||
|
{ "_class_wxFileDataObject","_wxFileDataObject",0},
|
||||||
{ "_wxIdleEvent","_class_wxIdleEvent",0},
|
{ "_wxIdleEvent","_class_wxIdleEvent",0},
|
||||||
{ "_class_wxUpdateUIEvent","_wxUpdateUIEvent",0},
|
{ "_class_wxUpdateUIEvent","_wxUpdateUIEvent",0},
|
||||||
{ "_wxToolBar","_class_wxToolBar",0},
|
{ "_wxToolBar","_class_wxToolBar",0},
|
||||||
|
{ "_class_wxDataObject","_wxDataObject",0},
|
||||||
{ "_wxStaticLine","_class_wxStaticLine",0},
|
{ "_wxStaticLine","_class_wxStaticLine",0},
|
||||||
{ "_wxBrush","_class_wxBrush",0},
|
{ "_wxBrush","_class_wxBrush",0},
|
||||||
{ "_wxMiniFrame","_class_wxMiniFrame",0},
|
{ "_wxMiniFrame","_class_wxMiniFrame",0},
|
||||||
|
{ "_wxDataFormat","_class_wxDataFormat",0},
|
||||||
|
{ "_class_wxDataObjectSimple","_wxDataObjectSimple",0},
|
||||||
{ "_wxShowEvent","_class_wxShowEvent",0},
|
{ "_wxShowEvent","_class_wxShowEvent",0},
|
||||||
|
{ "_uint","_wxCoord",0},
|
||||||
{ "_uint","_wxPrintQuality",0},
|
{ "_uint","_wxPrintQuality",0},
|
||||||
{ "_uint","_size_t",0},
|
{ "_uint","_size_t",0},
|
||||||
{ "_uint","_unsigned_int",0},
|
{ "_uint","_unsigned_int",0},
|
||||||
@@ -786,17 +804,21 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxStaticBitmap","_wxStaticBitmap",0},
|
{ "_class_wxStaticBitmap","_wxStaticBitmap",0},
|
||||||
{ "_wxMDIChildFrame","_class_wxMDIChildFrame",0},
|
{ "_wxMDIChildFrame","_class_wxMDIChildFrame",0},
|
||||||
{ "_class_wxToolBar","_wxToolBar",0},
|
{ "_class_wxToolBar","_wxToolBar",0},
|
||||||
|
{ "_wxDropTarget","_class_wxDropTarget",0},
|
||||||
{ "_class_wxStaticLine","_wxStaticLine",0},
|
{ "_class_wxStaticLine","_wxStaticLine",0},
|
||||||
{ "_wxScrollEvent","_class_wxScrollEvent",0},
|
{ "_wxScrollEvent","_class_wxScrollEvent",0},
|
||||||
|
{ "_EBool","_wxCoord",0},
|
||||||
{ "_EBool","_wxPrintQuality",0},
|
{ "_EBool","_wxPrintQuality",0},
|
||||||
{ "_EBool","_signed_int",0},
|
{ "_EBool","_signed_int",0},
|
||||||
{ "_EBool","_int",0},
|
{ "_EBool","_int",0},
|
||||||
{ "_EBool","_wxWindowID",0},
|
{ "_EBool","_wxWindowID",0},
|
||||||
{ "_class_wxRegion","_wxRegion",0},
|
{ "_class_wxRegion","_wxRegion",0},
|
||||||
|
{ "_class_wxDataFormat","_wxDataFormat",0},
|
||||||
{ "_class_wxDropFilesEvent","_wxDropFilesEvent",0},
|
{ "_class_wxDropFilesEvent","_wxDropFilesEvent",0},
|
||||||
{ "_wxWindowDestroyEvent","_class_wxWindowDestroyEvent",0},
|
{ "_wxWindowDestroyEvent","_class_wxWindowDestroyEvent",0},
|
||||||
{ "_wxStaticText","_class_wxStaticText",0},
|
{ "_wxStaticText","_class_wxStaticText",0},
|
||||||
{ "_wxFont","_class_wxFont",0},
|
{ "_wxFont","_class_wxFont",0},
|
||||||
|
{ "_class_wxPyDropTarget","_wxPyDropTarget",0},
|
||||||
{ "_wxCloseEvent","_class_wxCloseEvent",0},
|
{ "_wxCloseEvent","_class_wxCloseEvent",0},
|
||||||
{ "_unsigned_long","_wxDash",0},
|
{ "_unsigned_long","_wxDash",0},
|
||||||
{ "_unsigned_long","_long",0},
|
{ "_unsigned_long","_long",0},
|
||||||
@@ -815,12 +837,14 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxCheckBox","_wxCheckBox",0},
|
{ "_class_wxCheckBox","_wxCheckBox",0},
|
||||||
{ "_wxComboBox","_class_wxComboBox",0},
|
{ "_wxComboBox","_class_wxComboBox",0},
|
||||||
{ "_wxRadioButton","_class_wxRadioButton",0},
|
{ "_wxRadioButton","_class_wxRadioButton",0},
|
||||||
|
{ "_signed_int","_wxCoord",0},
|
||||||
{ "_signed_int","_wxPrintQuality",0},
|
{ "_signed_int","_wxPrintQuality",0},
|
||||||
{ "_signed_int","_EBool",0},
|
{ "_signed_int","_EBool",0},
|
||||||
{ "_signed_int","_wxWindowID",0},
|
{ "_signed_int","_wxWindowID",0},
|
||||||
{ "_signed_int","_int",0},
|
{ "_signed_int","_int",0},
|
||||||
{ "_class_wxTextCtrl","_wxTextCtrl",0},
|
{ "_class_wxTextCtrl","_wxTextCtrl",0},
|
||||||
{ "_wxLayoutConstraints","_class_wxLayoutConstraints",0},
|
{ "_wxLayoutConstraints","_class_wxLayoutConstraints",0},
|
||||||
|
{ "_class_wxTextDataObject","_wxTextDataObject",0},
|
||||||
{ "_wxMenu","_class_wxMenu",0},
|
{ "_wxMenu","_class_wxMenu",0},
|
||||||
{ "_class_wxMoveEvent","_wxMoveEvent",0},
|
{ "_class_wxMoveEvent","_wxMoveEvent",0},
|
||||||
{ "_wxListBox","_class_wxListBox",0},
|
{ "_wxListBox","_class_wxListBox",0},
|
||||||
@@ -829,6 +853,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_WXTYPE","_short",0},
|
{ "_WXTYPE","_short",0},
|
||||||
{ "_WXTYPE","_signed_short",0},
|
{ "_WXTYPE","_signed_short",0},
|
||||||
{ "_WXTYPE","_unsigned_short",0},
|
{ "_WXTYPE","_unsigned_short",0},
|
||||||
|
{ "_class_wxDropTarget","_wxDropTarget",0},
|
||||||
{ "_class_wxMDIClientWindow","_wxMDIClientWindow",0},
|
{ "_class_wxMDIClientWindow","_wxMDIClientWindow",0},
|
||||||
{ "_class_wxBrush","_wxBrush",0},
|
{ "_class_wxBrush","_wxBrush",0},
|
||||||
{ "_unsigned_short","_WXTYPE",0},
|
{ "_unsigned_short","_WXTYPE",0},
|
||||||
@@ -842,10 +867,13 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxWindow","_wxWindow",0},
|
{ "_class_wxWindow","_wxWindow",0},
|
||||||
{ "_class_wxStaticText","_wxStaticText",0},
|
{ "_class_wxStaticText","_wxStaticText",0},
|
||||||
{ "_class_wxFont","_wxFont",0},
|
{ "_class_wxFont","_wxFont",0},
|
||||||
|
{ "_wxClipboard","_class_wxClipboard",0},
|
||||||
{ "_class_wxPyValidator","_wxPyValidator",0},
|
{ "_class_wxPyValidator","_wxPyValidator",0},
|
||||||
{ "_class_wxCloseEvent","_wxCloseEvent",0},
|
{ "_class_wxCloseEvent","_wxCloseEvent",0},
|
||||||
|
{ "_wxBusyInfo","_class_wxBusyInfo",0},
|
||||||
{ "_class_wxMenuEvent","_wxMenuEvent",0},
|
{ "_class_wxMenuEvent","_wxMenuEvent",0},
|
||||||
{ "_wxPaletteChangedEvent","_class_wxPaletteChangedEvent",0},
|
{ "_wxPaletteChangedEvent","_class_wxPaletteChangedEvent",0},
|
||||||
|
{ "_class_wxPyBitmapDataObject","_wxPyBitmapDataObject",0},
|
||||||
{ "_wxClientDC","_class_wxClientDC",0},
|
{ "_wxClientDC","_class_wxClientDC",0},
|
||||||
{ "_wxMouseEvent","_class_wxMouseEvent",0},
|
{ "_wxMouseEvent","_class_wxMouseEvent",0},
|
||||||
{ "_class_wxPoint","_wxPoint",0},
|
{ "_class_wxPoint","_wxPoint",0},
|
||||||
@@ -854,6 +882,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_signed_short","_WXTYPE",0},
|
{ "_signed_short","_WXTYPE",0},
|
||||||
{ "_signed_short","_short",0},
|
{ "_signed_short","_short",0},
|
||||||
{ "_wxMemoryDC","_class_wxMemoryDC",0},
|
{ "_wxMemoryDC","_class_wxMemoryDC",0},
|
||||||
|
{ "_wxPyTextDataObject","_class_wxPyTextDataObject",0},
|
||||||
{ "_wxPaintDC","_class_wxPaintDC",0},
|
{ "_wxPaintDC","_class_wxPaintDC",0},
|
||||||
{ "_class_wxWindowDC","_wxWindowDC",0},
|
{ "_class_wxWindowDC","_wxWindowDC",0},
|
||||||
{ "_class_wxFocusEvent","_wxFocusEvent",0},
|
{ "_class_wxFocusEvent","_wxFocusEvent",0},
|
||||||
@@ -863,11 +892,13 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxAcceleratorEntry","_wxAcceleratorEntry",0},
|
{ "_class_wxAcceleratorEntry","_wxAcceleratorEntry",0},
|
||||||
{ "_class_wxCursor","_wxCursor",0},
|
{ "_class_wxCursor","_wxCursor",0},
|
||||||
{ "_wxPostScriptDC","_class_wxPostScriptDC",0},
|
{ "_wxPostScriptDC","_class_wxPostScriptDC",0},
|
||||||
|
{ "_wxPyFileDropTarget","_class_wxPyFileDropTarget",0},
|
||||||
{ "_wxScrolledWindow","_class_wxScrolledWindow",0},
|
{ "_wxScrolledWindow","_class_wxScrolledWindow",0},
|
||||||
{ "_unsigned_char","_byte",0},
|
{ "_unsigned_char","_byte",0},
|
||||||
{ "_class_wxMenu","_wxMenu",0},
|
{ "_class_wxMenu","_wxMenu",0},
|
||||||
{ "_wxControl","_class_wxControl",0},
|
{ "_wxControl","_class_wxControl",0},
|
||||||
{ "_class_wxListBox","_wxListBox",0},
|
{ "_class_wxListBox","_wxListBox",0},
|
||||||
|
{ "_unsigned_int","_wxCoord",0},
|
||||||
{ "_unsigned_int","_wxPrintQuality",0},
|
{ "_unsigned_int","_wxPrintQuality",0},
|
||||||
{ "_unsigned_int","_size_t",0},
|
{ "_unsigned_int","_size_t",0},
|
||||||
{ "_unsigned_int","_uint",0},
|
{ "_unsigned_int","_uint",0},
|
||||||
@@ -880,6 +911,8 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_short","_unsigned_short",0},
|
{ "_short","_unsigned_short",0},
|
||||||
{ "_short","_signed_short",0},
|
{ "_short","_signed_short",0},
|
||||||
{ "_class_wxStaticBox","_wxStaticBox",0},
|
{ "_class_wxStaticBox","_wxStaticBox",0},
|
||||||
|
{ "_class_wxPyDataObjectSimple","_wxPyDataObjectSimple",0},
|
||||||
|
{ "_class_wxPyDropSource","_wxPyDropSource",0},
|
||||||
{ "_class_wxScrollEvent","_wxScrollEvent",0},
|
{ "_class_wxScrollEvent","_wxScrollEvent",0},
|
||||||
{ "_wxJoystickEvent","_class_wxJoystickEvent",0},
|
{ "_wxJoystickEvent","_class_wxJoystickEvent",0},
|
||||||
{ "_class_wxChoice","_wxChoice",0},
|
{ "_class_wxChoice","_wxChoice",0},
|
||||||
@@ -892,6 +925,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxFrame","_wxMDIParentFrame",SwigwxMDIParentFrameTowxFrame},
|
{ "_wxFrame","_wxMDIParentFrame",SwigwxMDIParentFrameTowxFrame},
|
||||||
{ "_wxFrame","_class_wxFrame",0},
|
{ "_wxFrame","_class_wxFrame",0},
|
||||||
{ "_class_wxPaletteChangedEvent","_wxPaletteChangedEvent",0},
|
{ "_class_wxPaletteChangedEvent","_wxPaletteChangedEvent",0},
|
||||||
|
{ "_wxWindowID","_wxCoord",0},
|
||||||
{ "_wxWindowID","_wxPrintQuality",0},
|
{ "_wxWindowID","_wxPrintQuality",0},
|
||||||
{ "_wxWindowID","_size_t",0},
|
{ "_wxWindowID","_size_t",0},
|
||||||
{ "_wxWindowID","_EBool",0},
|
{ "_wxWindowID","_EBool",0},
|
||||||
@@ -900,6 +934,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxWindowID","_signed_int",0},
|
{ "_wxWindowID","_signed_int",0},
|
||||||
{ "_wxWindowID","_unsigned_int",0},
|
{ "_wxWindowID","_unsigned_int",0},
|
||||||
{ "_class_wxScrollWinEvent","_wxScrollWinEvent",0},
|
{ "_class_wxScrollWinEvent","_wxScrollWinEvent",0},
|
||||||
|
{ "_int","_wxCoord",0},
|
||||||
{ "_int","_wxPrintQuality",0},
|
{ "_int","_wxPrintQuality",0},
|
||||||
{ "_int","_size_t",0},
|
{ "_int","_size_t",0},
|
||||||
{ "_int","_EBool",0},
|
{ "_int","_EBool",0},
|
||||||
@@ -915,9 +950,11 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxButton","_class_wxButton",0},
|
{ "_wxButton","_class_wxButton",0},
|
||||||
{ "_wxSize","_class_wxSize",0},
|
{ "_wxSize","_class_wxSize",0},
|
||||||
{ "_wxRegionIterator","_class_wxRegionIterator",0},
|
{ "_wxRegionIterator","_class_wxRegionIterator",0},
|
||||||
|
{ "_class_wxPyTextDataObject","_wxPyTextDataObject",0},
|
||||||
{ "_class_wxMDIParentFrame","_wxMDIParentFrame",0},
|
{ "_class_wxMDIParentFrame","_wxMDIParentFrame",0},
|
||||||
{ "_class_wxPaintDC","_wxPaintDC",0},
|
{ "_class_wxPaintDC","_wxPaintDC",0},
|
||||||
{ "_class_wxSysColourChangedEvent","_wxSysColourChangedEvent",0},
|
{ "_class_wxSysColourChangedEvent","_wxSysColourChangedEvent",0},
|
||||||
|
{ "_class_wxPyFileDropTarget","_wxPyFileDropTarget",0},
|
||||||
{ "_class_wxInitDialogEvent","_wxInitDialogEvent",0},
|
{ "_class_wxInitDialogEvent","_wxInitDialogEvent",0},
|
||||||
{ "_class_wxComboBox","_wxComboBox",0},
|
{ "_class_wxComboBox","_wxComboBox",0},
|
||||||
{ "_class_wxRadioButton","_wxRadioButton",0},
|
{ "_class_wxRadioButton","_wxRadioButton",0},
|
||||||
@@ -931,20 +968,33 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxScreenDC","_wxScreenDC",0},
|
{ "_class_wxScreenDC","_wxScreenDC",0},
|
||||||
{ "_wxPalette","_class_wxPalette",0},
|
{ "_wxPalette","_class_wxPalette",0},
|
||||||
{ "_class_wxIdleEvent","_wxIdleEvent",0},
|
{ "_class_wxIdleEvent","_wxIdleEvent",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","_wxPrintQuality",0},
|
||||||
{ "_wxEraseEvent","_class_wxEraseEvent",0},
|
{ "_wxEraseEvent","_class_wxEraseEvent",0},
|
||||||
|
{ "_wxDataObjectComposite","_class_wxDataObjectComposite",0},
|
||||||
{ "_class_wxJoystickEvent","_wxJoystickEvent",0},
|
{ "_class_wxJoystickEvent","_wxJoystickEvent",0},
|
||||||
{ "_class_wxMiniFrame","_wxMiniFrame",0},
|
{ "_class_wxMiniFrame","_wxMiniFrame",0},
|
||||||
{ "_wxRegion","_class_wxRegion",0},
|
{ "_wxRegion","_class_wxRegion",0},
|
||||||
{ "_class_wxShowEvent","_wxShowEvent",0},
|
{ "_class_wxShowEvent","_wxShowEvent",0},
|
||||||
|
{ "_wxPyDropTarget","_class_wxPyDropTarget",0},
|
||||||
{ "_wxActivateEvent","_class_wxActivateEvent",0},
|
{ "_wxActivateEvent","_class_wxActivateEvent",0},
|
||||||
{ "_wxGauge","_class_wxGauge",0},
|
{ "_wxGauge","_class_wxGauge",0},
|
||||||
{ "_class_wxCheckListBox","_wxCheckListBox",0},
|
{ "_class_wxCheckListBox","_wxCheckListBox",0},
|
||||||
|
{ "_class_wxBusyInfo","_wxBusyInfo",0},
|
||||||
{ "_class_wxCommandEvent","_wxCommandEvent",0},
|
{ "_class_wxCommandEvent","_wxCommandEvent",0},
|
||||||
{ "_class_wxClientDC","_wxClientDC",0},
|
{ "_class_wxClientDC","_wxClientDC",0},
|
||||||
{ "_class_wxSizeEvent","_wxSizeEvent",0},
|
{ "_class_wxSizeEvent","_wxSizeEvent",0},
|
||||||
|
{ "_wxCustomDataObject","_class_wxCustomDataObject",0},
|
||||||
{ "_class_wxSize","_wxSize",0},
|
{ "_class_wxSize","_wxSize",0},
|
||||||
{ "_class_wxBitmap","_wxBitmap",0},
|
{ "_class_wxBitmap","_wxBitmap",0},
|
||||||
{ "_class_wxMemoryDC","_wxMemoryDC",0},
|
{ "_class_wxMemoryDC","_wxMemoryDC",0},
|
||||||
|
{ "_wxPyTextDropTarget","_class_wxPyTextDropTarget",0},
|
||||||
{ "_wxMenuBar","_class_wxMenuBar",0},
|
{ "_wxMenuBar","_class_wxMenuBar",0},
|
||||||
{ "_wxEvtHandler","_class_wxMDIClientWindow",SwigwxMDIClientWindowTowxEvtHandler},
|
{ "_wxEvtHandler","_class_wxMDIClientWindow",SwigwxMDIClientWindowTowxEvtHandler},
|
||||||
{ "_wxEvtHandler","_wxMDIClientWindow",SwigwxMDIClientWindowTowxEvtHandler},
|
{ "_wxEvtHandler","_wxMDIClientWindow",SwigwxMDIClientWindowTowxEvtHandler},
|
||||||
@@ -961,8 +1011,10 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxKeyEvent","_class_wxKeyEvent",0},
|
{ "_wxKeyEvent","_class_wxKeyEvent",0},
|
||||||
{ "_wxMoveEvent","_class_wxMoveEvent",0},
|
{ "_wxMoveEvent","_class_wxMoveEvent",0},
|
||||||
{ "_class_wxPalette","_wxPalette",0},
|
{ "_class_wxPalette","_wxPalette",0},
|
||||||
|
{ "_wxFileDataObject","_class_wxFileDataObject",0},
|
||||||
{ "_class_wxEraseEvent","_wxEraseEvent",0},
|
{ "_class_wxEraseEvent","_wxEraseEvent",0},
|
||||||
{ "_wxMDIClientWindow","_class_wxMDIClientWindow",0},
|
{ "_wxMDIClientWindow","_class_wxMDIClientWindow",0},
|
||||||
|
{ "_class_wxDataObjectComposite","_wxDataObjectComposite",0},
|
||||||
{ "_wxWindow","_class_wxMDIClientWindow",SwigwxMDIClientWindowTowxWindow},
|
{ "_wxWindow","_class_wxMDIClientWindow",SwigwxMDIClientWindowTowxWindow},
|
||||||
{ "_wxWindow","_wxMDIClientWindow",SwigwxMDIClientWindowTowxWindow},
|
{ "_wxWindow","_wxMDIClientWindow",SwigwxMDIClientWindowTowxWindow},
|
||||||
{ "_wxWindow","_class_wxMDIChildFrame",SwigwxMDIChildFrameTowxWindow},
|
{ "_wxWindow","_class_wxMDIChildFrame",SwigwxMDIChildFrameTowxWindow},
|
||||||
|
@@ -7,6 +7,8 @@ from windows import *
|
|||||||
|
|
||||||
from gdi import *
|
from gdi import *
|
||||||
|
|
||||||
|
from clip_dnd import *
|
||||||
|
|
||||||
from frames import *
|
from frames import *
|
||||||
|
|
||||||
from stattool import *
|
from stattool import *
|
||||||
|
@@ -56,6 +56,7 @@ extern PyObject *SWIG_newvarlink(void);
|
|||||||
#include "helpers.h"
|
#include "helpers.h"
|
||||||
#include <wx/resource.h>
|
#include <wx/resource.h>
|
||||||
#include <wx/tooltip.h>
|
#include <wx/tooltip.h>
|
||||||
|
#include <wx/busyinfo.h>
|
||||||
|
|
||||||
static PyObject* l_output_helper(PyObject* target, PyObject* o) {
|
static PyObject* l_output_helper(PyObject* target, PyObject* o) {
|
||||||
PyObject* o2;
|
PyObject* o2;
|
||||||
@@ -3790,7 +3791,74 @@ static PyObject *_wrap_delete_wxAcceleratorTable(PyObject *self, PyObject *args,
|
|||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#define new_wxBusyInfo(_swigarg0) (new wxBusyInfo(_swigarg0))
|
||||||
|
static PyObject *_wrap_new_wxBusyInfo(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
|
PyObject * _resultobj;
|
||||||
|
wxBusyInfo * _result;
|
||||||
|
wxString * _arg0;
|
||||||
|
PyObject * _obj0 = 0;
|
||||||
|
char *_kwnames[] = { "message", NULL };
|
||||||
|
char _ptemp[128];
|
||||||
|
|
||||||
|
self = self;
|
||||||
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:new_wxBusyInfo",_kwnames,&_obj0))
|
||||||
|
return NULL;
|
||||||
|
{
|
||||||
|
if (!PyString_Check(_obj0)) {
|
||||||
|
PyErr_SetString(PyExc_TypeError, wxStringErrorMsg);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
_arg0 = new wxString(PyString_AsString(_obj0), PyString_Size(_obj0));
|
||||||
|
}
|
||||||
|
{
|
||||||
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
|
_result = (wxBusyInfo *)new_wxBusyInfo(*_arg0);
|
||||||
|
|
||||||
|
wxPy_END_ALLOW_THREADS;
|
||||||
|
} if (_result) {
|
||||||
|
SWIG_MakePtr(_ptemp, (char *) _result,"_wxBusyInfo_p");
|
||||||
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
|
} else {
|
||||||
|
Py_INCREF(Py_None);
|
||||||
|
_resultobj = Py_None;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
if (_obj0)
|
||||||
|
delete _arg0;
|
||||||
|
}
|
||||||
|
return _resultobj;
|
||||||
|
}
|
||||||
|
|
||||||
|
#define delete_wxBusyInfo(_swigobj) (delete _swigobj)
|
||||||
|
static PyObject *_wrap_delete_wxBusyInfo(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
|
PyObject * _resultobj;
|
||||||
|
wxBusyInfo * _arg0;
|
||||||
|
PyObject * _argo0 = 0;
|
||||||
|
char *_kwnames[] = { "self", NULL };
|
||||||
|
|
||||||
|
self = self;
|
||||||
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:delete_wxBusyInfo",_kwnames,&_argo0))
|
||||||
|
return NULL;
|
||||||
|
if (_argo0) {
|
||||||
|
if (_argo0 == Py_None) { _arg0 = NULL; }
|
||||||
|
else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxBusyInfo_p")) {
|
||||||
|
PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of delete_wxBusyInfo. Expected _wxBusyInfo_p.");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
|
delete_wxBusyInfo(_arg0);
|
||||||
|
|
||||||
|
wxPy_END_ALLOW_THREADS;
|
||||||
|
} Py_INCREF(Py_None);
|
||||||
|
_resultobj = Py_None;
|
||||||
|
return _resultobj;
|
||||||
|
}
|
||||||
|
|
||||||
static PyMethodDef misccMethods[] = {
|
static PyMethodDef misccMethods[] = {
|
||||||
|
{ "delete_wxBusyInfo", (PyCFunction) _wrap_delete_wxBusyInfo, METH_VARARGS | METH_KEYWORDS },
|
||||||
|
{ "new_wxBusyInfo", (PyCFunction) _wrap_new_wxBusyInfo, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "delete_wxAcceleratorTable", (PyCFunction) _wrap_delete_wxAcceleratorTable, METH_VARARGS | METH_KEYWORDS },
|
{ "delete_wxAcceleratorTable", (PyCFunction) _wrap_delete_wxAcceleratorTable, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "new_wxAcceleratorTable", (PyCFunction) _wrap_new_wxAcceleratorTable, METH_VARARGS | METH_KEYWORDS },
|
{ "new_wxAcceleratorTable", (PyCFunction) _wrap_new_wxAcceleratorTable, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "wxAcceleratorEntry_GetCommand", (PyCFunction) _wrap_wxAcceleratorEntry_GetCommand, METH_VARARGS | METH_KEYWORDS },
|
{ "wxAcceleratorEntry_GetCommand", (PyCFunction) _wrap_wxAcceleratorEntry_GetCommand, METH_VARARGS | METH_KEYWORDS },
|
||||||
@@ -3937,6 +4005,7 @@ static PyMethodDef misccMethods[] = {
|
|||||||
static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
||||||
{ "_wxAcceleratorTable","_class_wxAcceleratorTable",0},
|
{ "_wxAcceleratorTable","_class_wxAcceleratorTable",0},
|
||||||
{ "_signed_long","_long",0},
|
{ "_signed_long","_long",0},
|
||||||
|
{ "_wxPrintQuality","_wxCoord",0},
|
||||||
{ "_wxPrintQuality","_int",0},
|
{ "_wxPrintQuality","_int",0},
|
||||||
{ "_wxPrintQuality","_signed_int",0},
|
{ "_wxPrintQuality","_signed_int",0},
|
||||||
{ "_wxPrintQuality","_unsigned_int",0},
|
{ "_wxPrintQuality","_unsigned_int",0},
|
||||||
@@ -3950,12 +4019,14 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_long","_unsigned_long",0},
|
{ "_long","_unsigned_long",0},
|
||||||
{ "_long","_signed_long",0},
|
{ "_long","_signed_long",0},
|
||||||
{ "_class_wxAcceleratorTable","_wxAcceleratorTable",0},
|
{ "_class_wxAcceleratorTable","_wxAcceleratorTable",0},
|
||||||
|
{ "_size_t","_wxCoord",0},
|
||||||
{ "_size_t","_wxPrintQuality",0},
|
{ "_size_t","_wxPrintQuality",0},
|
||||||
{ "_size_t","_unsigned_int",0},
|
{ "_size_t","_unsigned_int",0},
|
||||||
{ "_size_t","_int",0},
|
{ "_size_t","_int",0},
|
||||||
{ "_size_t","_wxWindowID",0},
|
{ "_size_t","_wxWindowID",0},
|
||||||
{ "_size_t","_uint",0},
|
{ "_size_t","_uint",0},
|
||||||
{ "_class_wxRealPoint","_wxRealPoint",0},
|
{ "_class_wxRealPoint","_wxRealPoint",0},
|
||||||
|
{ "_uint","_wxCoord",0},
|
||||||
{ "_uint","_wxPrintQuality",0},
|
{ "_uint","_wxPrintQuality",0},
|
||||||
{ "_uint","_size_t",0},
|
{ "_uint","_size_t",0},
|
||||||
{ "_uint","_unsigned_int",0},
|
{ "_uint","_unsigned_int",0},
|
||||||
@@ -3965,6 +4036,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPoint","_class_wxPoint",0},
|
{ "_wxPoint","_class_wxPoint",0},
|
||||||
{ "_wxPyTimer","_class_wxPyTimer",0},
|
{ "_wxPyTimer","_class_wxPyTimer",0},
|
||||||
{ "_class_wxIndividualLayoutConstraint","_wxIndividualLayoutConstraint",0},
|
{ "_class_wxIndividualLayoutConstraint","_wxIndividualLayoutConstraint",0},
|
||||||
|
{ "_EBool","_wxCoord",0},
|
||||||
{ "_EBool","_wxPrintQuality",0},
|
{ "_EBool","_wxPrintQuality",0},
|
||||||
{ "_EBool","_signed_int",0},
|
{ "_EBool","_signed_int",0},
|
||||||
{ "_EBool","_int",0},
|
{ "_EBool","_int",0},
|
||||||
@@ -3974,6 +4046,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxRect","_wxRect",0},
|
{ "_class_wxRect","_wxRect",0},
|
||||||
{ "_class_wxPyTimer","_wxPyTimer",0},
|
{ "_class_wxPyTimer","_wxPyTimer",0},
|
||||||
{ "_wxAcceleratorEntry","_class_wxAcceleratorEntry",0},
|
{ "_wxAcceleratorEntry","_class_wxAcceleratorEntry",0},
|
||||||
|
{ "_signed_int","_wxCoord",0},
|
||||||
{ "_signed_int","_wxPrintQuality",0},
|
{ "_signed_int","_wxPrintQuality",0},
|
||||||
{ "_signed_int","_EBool",0},
|
{ "_signed_int","_EBool",0},
|
||||||
{ "_signed_int","_wxWindowID",0},
|
{ "_signed_int","_wxWindowID",0},
|
||||||
@@ -3984,12 +4057,14 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_WXTYPE","_unsigned_short",0},
|
{ "_WXTYPE","_unsigned_short",0},
|
||||||
{ "_unsigned_short","_WXTYPE",0},
|
{ "_unsigned_short","_WXTYPE",0},
|
||||||
{ "_unsigned_short","_short",0},
|
{ "_unsigned_short","_short",0},
|
||||||
|
{ "_wxBusyInfo","_class_wxBusyInfo",0},
|
||||||
{ "_class_wxPoint","_wxPoint",0},
|
{ "_class_wxPoint","_wxPoint",0},
|
||||||
{ "_wxRealPoint","_class_wxRealPoint",0},
|
{ "_wxRealPoint","_class_wxRealPoint",0},
|
||||||
{ "_signed_short","_WXTYPE",0},
|
{ "_signed_short","_WXTYPE",0},
|
||||||
{ "_signed_short","_short",0},
|
{ "_signed_short","_short",0},
|
||||||
{ "_class_wxAcceleratorEntry","_wxAcceleratorEntry",0},
|
{ "_class_wxAcceleratorEntry","_wxAcceleratorEntry",0},
|
||||||
{ "_unsigned_char","_byte",0},
|
{ "_unsigned_char","_byte",0},
|
||||||
|
{ "_unsigned_int","_wxCoord",0},
|
||||||
{ "_unsigned_int","_wxPrintQuality",0},
|
{ "_unsigned_int","_wxPrintQuality",0},
|
||||||
{ "_unsigned_int","_size_t",0},
|
{ "_unsigned_int","_size_t",0},
|
||||||
{ "_unsigned_int","_uint",0},
|
{ "_unsigned_int","_uint",0},
|
||||||
@@ -3998,6 +4073,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_short","_WXTYPE",0},
|
{ "_short","_WXTYPE",0},
|
||||||
{ "_short","_unsigned_short",0},
|
{ "_short","_unsigned_short",0},
|
||||||
{ "_short","_signed_short",0},
|
{ "_short","_signed_short",0},
|
||||||
|
{ "_wxWindowID","_wxCoord",0},
|
||||||
{ "_wxWindowID","_wxPrintQuality",0},
|
{ "_wxWindowID","_wxPrintQuality",0},
|
||||||
{ "_wxWindowID","_size_t",0},
|
{ "_wxWindowID","_size_t",0},
|
||||||
{ "_wxWindowID","_EBool",0},
|
{ "_wxWindowID","_EBool",0},
|
||||||
@@ -4005,6 +4081,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxWindowID","_int",0},
|
{ "_wxWindowID","_int",0},
|
||||||
{ "_wxWindowID","_signed_int",0},
|
{ "_wxWindowID","_signed_int",0},
|
||||||
{ "_wxWindowID","_unsigned_int",0},
|
{ "_wxWindowID","_unsigned_int",0},
|
||||||
|
{ "_int","_wxCoord",0},
|
||||||
{ "_int","_wxPrintQuality",0},
|
{ "_int","_wxPrintQuality",0},
|
||||||
{ "_int","_size_t",0},
|
{ "_int","_size_t",0},
|
||||||
{ "_int","_EBool",0},
|
{ "_int","_EBool",0},
|
||||||
@@ -4015,7 +4092,16 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxSize","_class_wxSize",0},
|
{ "_wxSize","_class_wxSize",0},
|
||||||
{ "_wxRegionIterator","_class_wxRegionIterator",0},
|
{ "_wxRegionIterator","_class_wxRegionIterator",0},
|
||||||
{ "_class_wxLayoutConstraints","_wxLayoutConstraints",0},
|
{ "_class_wxLayoutConstraints","_wxLayoutConstraints",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","_wxPrintQuality",0},
|
||||||
{ "_wxRegion","_class_wxRegion",0},
|
{ "_wxRegion","_class_wxRegion",0},
|
||||||
|
{ "_class_wxBusyInfo","_wxBusyInfo",0},
|
||||||
{ "_class_wxSize","_wxSize",0},
|
{ "_class_wxSize","_wxSize",0},
|
||||||
{0,0,0}};
|
{0,0,0}};
|
||||||
|
|
||||||
|
@@ -504,6 +504,23 @@ class wxAcceleratorTable(wxAcceleratorTablePtr):
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class wxBusyInfoPtr :
|
||||||
|
def __init__(self,this):
|
||||||
|
self.this = this
|
||||||
|
self.thisown = 0
|
||||||
|
def __del__(self,miscc=miscc):
|
||||||
|
if self.thisown == 1 :
|
||||||
|
miscc.delete_wxBusyInfo(self)
|
||||||
|
def __repr__(self):
|
||||||
|
return "<C wxBusyInfo instance at %s>" % (self.this,)
|
||||||
|
class wxBusyInfo(wxBusyInfoPtr):
|
||||||
|
def __init__(self,*_args,**_kwargs):
|
||||||
|
self.this = apply(miscc.new_wxBusyInfo,_args,_kwargs)
|
||||||
|
self.thisown = 1
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#-------------- FUNCTION WRAPPERS ------------------
|
#-------------- FUNCTION WRAPPERS ------------------
|
||||||
|
@@ -57,9 +57,7 @@ extern PyObject *SWIG_newvarlink(void);
|
|||||||
#include <wx/resource.h>
|
#include <wx/resource.h>
|
||||||
#include <wx/tooltip.h>
|
#include <wx/tooltip.h>
|
||||||
#include <wx/caret.h>
|
#include <wx/caret.h>
|
||||||
#ifdef NOT_READY_YET
|
|
||||||
#include <wx/fontenum.h>
|
#include <wx/fontenum.h>
|
||||||
#endif
|
|
||||||
|
|
||||||
static PyObject* l_output_helper(PyObject* target, PyObject* o) {
|
static PyObject* l_output_helper(PyObject* target, PyObject* o) {
|
||||||
PyObject* o2;
|
PyObject* o2;
|
||||||
@@ -138,6 +136,21 @@ static char* wxStringErrorMsg = "string type is required for parameter";
|
|||||||
void wxCaret_SetBlinkTime(int milliseconds) {
|
void wxCaret_SetBlinkTime(int milliseconds) {
|
||||||
wxCaret::SetBlinkTime(milliseconds);
|
wxCaret::SetBlinkTime(milliseconds);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class wxPyFontEnumerator : public wxFontEnumerator {
|
||||||
|
public:
|
||||||
|
wxPyFontEnumerator() {}
|
||||||
|
~wxPyFontEnumerator() {}
|
||||||
|
|
||||||
|
DEC_PYCALLBACK_BOOL_STRING(OnFacename);
|
||||||
|
DEC_PYCALLBACK_BOOL_STRINGSTRING(OnFontEncoding);
|
||||||
|
|
||||||
|
PYPRIVATE;
|
||||||
|
};
|
||||||
|
|
||||||
|
IMP_PYCALLBACK_BOOL_STRING(wxPyFontEnumerator, wxFontEnumerator, OnFacename);
|
||||||
|
IMP_PYCALLBACK_BOOL_STRINGSTRING(wxPyFontEnumerator, wxFontEnumerator, OnFontEncoding);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
@@ -1088,6 +1101,41 @@ static PyObject *_wrap_wxCaret_SetBlinkTime(PyObject *self, PyObject *args, PyOb
|
|||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static PyObject *_wrap_wxPostEvent(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
|
PyObject * _resultobj;
|
||||||
|
wxEvtHandler * _arg0;
|
||||||
|
wxEvent * _arg1;
|
||||||
|
PyObject * _argo0 = 0;
|
||||||
|
PyObject * _argo1 = 0;
|
||||||
|
char *_kwnames[] = { "dest","event", NULL };
|
||||||
|
|
||||||
|
self = self;
|
||||||
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxPostEvent",_kwnames,&_argo0,&_argo1))
|
||||||
|
return NULL;
|
||||||
|
if (_argo0) {
|
||||||
|
if (_argo0 == Py_None) { _arg0 = NULL; }
|
||||||
|
else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxEvtHandler_p")) {
|
||||||
|
PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxPostEvent. Expected _wxEvtHandler_p.");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (_argo1) {
|
||||||
|
if (_argo1 == Py_None) { _arg1 = NULL; }
|
||||||
|
else if (SWIG_GetPtrObj(_argo1,(void **) &_arg1,"_wxEvent_p")) {
|
||||||
|
PyErr_SetString(PyExc_TypeError,"Type error in argument 2 of wxPostEvent. Expected _wxEvent_p.");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
|
wxPostEvent(_arg0,*_arg1);
|
||||||
|
|
||||||
|
wxPy_END_ALLOW_THREADS;
|
||||||
|
} Py_INCREF(Py_None);
|
||||||
|
_resultobj = Py_None;
|
||||||
|
return _resultobj;
|
||||||
|
}
|
||||||
|
|
||||||
#define new_wxToolTip(_swigarg0) (new wxToolTip(_swigarg0))
|
#define new_wxToolTip(_swigarg0) (new wxToolTip(_swigarg0))
|
||||||
static PyObject *_wrap_new_wxToolTip(PyObject *self, PyObject *args, PyObject *kwargs) {
|
static PyObject *_wrap_new_wxToolTip(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
PyObject * _resultobj;
|
PyObject * _resultobj;
|
||||||
@@ -1714,7 +1762,290 @@ static PyObject *_wrap_wxCaret_OnKillFocus(PyObject *self, PyObject *args, PyObj
|
|||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#define new_wxFontEnumerator() (new wxPyFontEnumerator())
|
||||||
|
static PyObject *_wrap_new_wxFontEnumerator(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
|
PyObject * _resultobj;
|
||||||
|
wxPyFontEnumerator * _result;
|
||||||
|
char *_kwnames[] = { NULL };
|
||||||
|
char _ptemp[128];
|
||||||
|
|
||||||
|
self = self;
|
||||||
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new_wxFontEnumerator",_kwnames))
|
||||||
|
return NULL;
|
||||||
|
{
|
||||||
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
|
_result = (wxPyFontEnumerator *)new_wxFontEnumerator();
|
||||||
|
|
||||||
|
wxPy_END_ALLOW_THREADS;
|
||||||
|
} if (_result) {
|
||||||
|
SWIG_MakePtr(_ptemp, (char *) _result,"_wxPyFontEnumerator_p");
|
||||||
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
|
} else {
|
||||||
|
Py_INCREF(Py_None);
|
||||||
|
_resultobj = Py_None;
|
||||||
|
}
|
||||||
|
return _resultobj;
|
||||||
|
}
|
||||||
|
|
||||||
|
#define delete_wxPyFontEnumerator(_swigobj) (delete _swigobj)
|
||||||
|
static PyObject *_wrap_delete_wxFontEnumerator(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
|
PyObject * _resultobj;
|
||||||
|
wxPyFontEnumerator * _arg0;
|
||||||
|
PyObject * _argo0 = 0;
|
||||||
|
char *_kwnames[] = { "self", NULL };
|
||||||
|
|
||||||
|
self = self;
|
||||||
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:delete_wxFontEnumerator",_kwnames,&_argo0))
|
||||||
|
return NULL;
|
||||||
|
if (_argo0) {
|
||||||
|
if (_argo0 == Py_None) { _arg0 = NULL; }
|
||||||
|
else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyFontEnumerator_p")) {
|
||||||
|
PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of delete_wxFontEnumerator. Expected _wxPyFontEnumerator_p.");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
|
delete_wxPyFontEnumerator(_arg0);
|
||||||
|
|
||||||
|
wxPy_END_ALLOW_THREADS;
|
||||||
|
} Py_INCREF(Py_None);
|
||||||
|
_resultobj = Py_None;
|
||||||
|
return _resultobj;
|
||||||
|
}
|
||||||
|
|
||||||
|
#define wxFontEnumerator__setSelf(_swigobj,_swigarg0) (_swigobj->_setSelf(_swigarg0))
|
||||||
|
static PyObject *_wrap_wxFontEnumerator__setSelf(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
|
PyObject * _resultobj;
|
||||||
|
wxPyFontEnumerator * _arg0;
|
||||||
|
PyObject * _arg1;
|
||||||
|
PyObject * _argo0 = 0;
|
||||||
|
PyObject * _obj1 = 0;
|
||||||
|
char *_kwnames[] = { "self","self", NULL };
|
||||||
|
|
||||||
|
self = self;
|
||||||
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,"OO:wxFontEnumerator__setSelf",_kwnames,&_argo0,&_obj1))
|
||||||
|
return NULL;
|
||||||
|
if (_argo0) {
|
||||||
|
if (_argo0 == Py_None) { _arg0 = NULL; }
|
||||||
|
else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyFontEnumerator_p")) {
|
||||||
|
PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxFontEnumerator__setSelf. Expected _wxPyFontEnumerator_p.");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
_arg1 = _obj1;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
|
wxFontEnumerator__setSelf(_arg0,_arg1);
|
||||||
|
|
||||||
|
wxPy_END_ALLOW_THREADS;
|
||||||
|
} Py_INCREF(Py_None);
|
||||||
|
_resultobj = Py_None;
|
||||||
|
return _resultobj;
|
||||||
|
}
|
||||||
|
|
||||||
|
#define wxFontEnumerator_EnumerateFacenames(_swigobj,_swigarg0,_swigarg1) (_swigobj->EnumerateFacenames(_swigarg0,_swigarg1))
|
||||||
|
static PyObject *_wrap_wxFontEnumerator_EnumerateFacenames(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
|
PyObject * _resultobj;
|
||||||
|
bool _result;
|
||||||
|
wxPyFontEnumerator * _arg0;
|
||||||
|
wxFontEncoding _arg1 = (wxFontEncoding ) wxFONTENCODING_SYSTEM;
|
||||||
|
bool _arg2 = (bool ) FALSE;
|
||||||
|
PyObject * _argo0 = 0;
|
||||||
|
int tempbool2 = (int) FALSE;
|
||||||
|
char *_kwnames[] = { "self","encoding","fixedWidthOnly", NULL };
|
||||||
|
|
||||||
|
self = self;
|
||||||
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|ii:wxFontEnumerator_EnumerateFacenames",_kwnames,&_argo0,&_arg1,&tempbool2))
|
||||||
|
return NULL;
|
||||||
|
if (_argo0) {
|
||||||
|
if (_argo0 == Py_None) { _arg0 = NULL; }
|
||||||
|
else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyFontEnumerator_p")) {
|
||||||
|
PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxFontEnumerator_EnumerateFacenames. Expected _wxPyFontEnumerator_p.");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
_arg2 = (bool ) tempbool2;
|
||||||
|
{
|
||||||
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
|
_result = (bool )wxFontEnumerator_EnumerateFacenames(_arg0,_arg1,_arg2);
|
||||||
|
|
||||||
|
wxPy_END_ALLOW_THREADS;
|
||||||
|
} _resultobj = Py_BuildValue("i",_result);
|
||||||
|
return _resultobj;
|
||||||
|
}
|
||||||
|
|
||||||
|
#define wxFontEnumerator_EnumerateEncodings(_swigobj,_swigarg0) (_swigobj->EnumerateEncodings(_swigarg0))
|
||||||
|
static PyObject *_wrap_wxFontEnumerator_EnumerateEncodings(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
|
PyObject * _resultobj;
|
||||||
|
bool _result;
|
||||||
|
wxPyFontEnumerator * _arg0;
|
||||||
|
char * _arg1 = (char *) "";
|
||||||
|
PyObject * _argo0 = 0;
|
||||||
|
char *_kwnames[] = { "self","facename", NULL };
|
||||||
|
|
||||||
|
self = self;
|
||||||
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O|s:wxFontEnumerator_EnumerateEncodings",_kwnames,&_argo0,&_arg1))
|
||||||
|
return NULL;
|
||||||
|
if (_argo0) {
|
||||||
|
if (_argo0 == Py_None) { _arg0 = NULL; }
|
||||||
|
else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyFontEnumerator_p")) {
|
||||||
|
PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxFontEnumerator_EnumerateEncodings. Expected _wxPyFontEnumerator_p.");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
|
_result = (bool )wxFontEnumerator_EnumerateEncodings(_arg0,_arg1);
|
||||||
|
|
||||||
|
wxPy_END_ALLOW_THREADS;
|
||||||
|
} _resultobj = Py_BuildValue("i",_result);
|
||||||
|
return _resultobj;
|
||||||
|
}
|
||||||
|
|
||||||
|
static PyObject * wxPyFontEnumerator_GetEncodings(wxPyFontEnumerator *self) {
|
||||||
|
wxArrayString* arr = self->GetEncodings();
|
||||||
|
PyObject* list = PyList_New(0);
|
||||||
|
for (size_t x=0; x<arr->GetCount(); x++)
|
||||||
|
PyList_Append(list, PyString_FromString((*arr)[x]));
|
||||||
|
return list;
|
||||||
|
}
|
||||||
|
static PyObject *_wrap_wxFontEnumerator_GetEncodings(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
|
PyObject * _resultobj;
|
||||||
|
PyObject * _result;
|
||||||
|
wxPyFontEnumerator * _arg0;
|
||||||
|
PyObject * _argo0 = 0;
|
||||||
|
char *_kwnames[] = { "self", NULL };
|
||||||
|
|
||||||
|
self = self;
|
||||||
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxFontEnumerator_GetEncodings",_kwnames,&_argo0))
|
||||||
|
return NULL;
|
||||||
|
if (_argo0) {
|
||||||
|
if (_argo0 == Py_None) { _arg0 = NULL; }
|
||||||
|
else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyFontEnumerator_p")) {
|
||||||
|
PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxFontEnumerator_GetEncodings. Expected _wxPyFontEnumerator_p.");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
|
_result = (PyObject *)wxPyFontEnumerator_GetEncodings(_arg0);
|
||||||
|
|
||||||
|
wxPy_END_ALLOW_THREADS;
|
||||||
|
}{
|
||||||
|
_resultobj = _result;
|
||||||
|
}
|
||||||
|
return _resultobj;
|
||||||
|
}
|
||||||
|
|
||||||
|
static PyObject * wxPyFontEnumerator_GetFacenames(wxPyFontEnumerator *self) {
|
||||||
|
wxArrayString* arr = self->GetFacenames();
|
||||||
|
PyObject* list = PyList_New(0);
|
||||||
|
for (size_t x=0; x<arr->GetCount(); x++)
|
||||||
|
PyList_Append(list, PyString_FromString((*arr)[x]));
|
||||||
|
return list;
|
||||||
|
}
|
||||||
|
static PyObject *_wrap_wxFontEnumerator_GetFacenames(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
|
PyObject * _resultobj;
|
||||||
|
PyObject * _result;
|
||||||
|
wxPyFontEnumerator * _arg0;
|
||||||
|
PyObject * _argo0 = 0;
|
||||||
|
char *_kwnames[] = { "self", NULL };
|
||||||
|
|
||||||
|
self = self;
|
||||||
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:wxFontEnumerator_GetFacenames",_kwnames,&_argo0))
|
||||||
|
return NULL;
|
||||||
|
if (_argo0) {
|
||||||
|
if (_argo0 == Py_None) { _arg0 = NULL; }
|
||||||
|
else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxPyFontEnumerator_p")) {
|
||||||
|
PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of wxFontEnumerator_GetFacenames. Expected _wxPyFontEnumerator_p.");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
|
_result = (PyObject *)wxPyFontEnumerator_GetFacenames(_arg0);
|
||||||
|
|
||||||
|
wxPy_END_ALLOW_THREADS;
|
||||||
|
}{
|
||||||
|
_resultobj = _result;
|
||||||
|
}
|
||||||
|
return _resultobj;
|
||||||
|
}
|
||||||
|
|
||||||
|
#define new_wxBusyCursor(_swigarg0) (new wxBusyCursor(_swigarg0))
|
||||||
|
static PyObject *_wrap_new_wxBusyCursor(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
|
PyObject * _resultobj;
|
||||||
|
wxBusyCursor * _result;
|
||||||
|
wxCursor * _arg0 = (wxCursor *) wxHOURGLASS_CURSOR;
|
||||||
|
PyObject * _argo0 = 0;
|
||||||
|
char *_kwnames[] = { "cursor", NULL };
|
||||||
|
char _ptemp[128];
|
||||||
|
|
||||||
|
self = self;
|
||||||
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,"|O:new_wxBusyCursor",_kwnames,&_argo0))
|
||||||
|
return NULL;
|
||||||
|
if (_argo0) {
|
||||||
|
if (_argo0 == Py_None) { _arg0 = NULL; }
|
||||||
|
else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxCursor_p")) {
|
||||||
|
PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of new_wxBusyCursor. Expected _wxCursor_p.");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
|
_result = (wxBusyCursor *)new_wxBusyCursor(_arg0);
|
||||||
|
|
||||||
|
wxPy_END_ALLOW_THREADS;
|
||||||
|
} if (_result) {
|
||||||
|
SWIG_MakePtr(_ptemp, (char *) _result,"_wxBusyCursor_p");
|
||||||
|
_resultobj = Py_BuildValue("s",_ptemp);
|
||||||
|
} else {
|
||||||
|
Py_INCREF(Py_None);
|
||||||
|
_resultobj = Py_None;
|
||||||
|
}
|
||||||
|
return _resultobj;
|
||||||
|
}
|
||||||
|
|
||||||
|
#define delete_wxBusyCursor(_swigobj) (delete _swigobj)
|
||||||
|
static PyObject *_wrap_delete_wxBusyCursor(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
|
PyObject * _resultobj;
|
||||||
|
wxBusyCursor * _arg0;
|
||||||
|
PyObject * _argo0 = 0;
|
||||||
|
char *_kwnames[] = { "self", NULL };
|
||||||
|
|
||||||
|
self = self;
|
||||||
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:delete_wxBusyCursor",_kwnames,&_argo0))
|
||||||
|
return NULL;
|
||||||
|
if (_argo0) {
|
||||||
|
if (_argo0 == Py_None) { _arg0 = NULL; }
|
||||||
|
else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"_wxBusyCursor_p")) {
|
||||||
|
PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of delete_wxBusyCursor. Expected _wxBusyCursor_p.");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
|
delete_wxBusyCursor(_arg0);
|
||||||
|
|
||||||
|
wxPy_END_ALLOW_THREADS;
|
||||||
|
} Py_INCREF(Py_None);
|
||||||
|
_resultobj = Py_None;
|
||||||
|
return _resultobj;
|
||||||
|
}
|
||||||
|
|
||||||
static PyMethodDef misc2cMethods[] = {
|
static PyMethodDef misc2cMethods[] = {
|
||||||
|
{ "delete_wxBusyCursor", (PyCFunction) _wrap_delete_wxBusyCursor, METH_VARARGS | METH_KEYWORDS },
|
||||||
|
{ "new_wxBusyCursor", (PyCFunction) _wrap_new_wxBusyCursor, METH_VARARGS | METH_KEYWORDS },
|
||||||
|
{ "wxFontEnumerator_GetFacenames", (PyCFunction) _wrap_wxFontEnumerator_GetFacenames, METH_VARARGS | METH_KEYWORDS },
|
||||||
|
{ "wxFontEnumerator_GetEncodings", (PyCFunction) _wrap_wxFontEnumerator_GetEncodings, METH_VARARGS | METH_KEYWORDS },
|
||||||
|
{ "wxFontEnumerator_EnumerateEncodings", (PyCFunction) _wrap_wxFontEnumerator_EnumerateEncodings, METH_VARARGS | METH_KEYWORDS },
|
||||||
|
{ "wxFontEnumerator_EnumerateFacenames", (PyCFunction) _wrap_wxFontEnumerator_EnumerateFacenames, METH_VARARGS | METH_KEYWORDS },
|
||||||
|
{ "wxFontEnumerator__setSelf", (PyCFunction) _wrap_wxFontEnumerator__setSelf, METH_VARARGS | METH_KEYWORDS },
|
||||||
|
{ "delete_wxFontEnumerator", (PyCFunction) _wrap_delete_wxFontEnumerator, METH_VARARGS | METH_KEYWORDS },
|
||||||
|
{ "new_wxFontEnumerator", (PyCFunction) _wrap_new_wxFontEnumerator, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "wxCaret_OnKillFocus", (PyCFunction) _wrap_wxCaret_OnKillFocus, METH_VARARGS | METH_KEYWORDS },
|
{ "wxCaret_OnKillFocus", (PyCFunction) _wrap_wxCaret_OnKillFocus, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "wxCaret_OnSetFocus", (PyCFunction) _wrap_wxCaret_OnSetFocus, METH_VARARGS | METH_KEYWORDS },
|
{ "wxCaret_OnSetFocus", (PyCFunction) _wrap_wxCaret_OnSetFocus, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "wxCaret_Hide", (PyCFunction) _wrap_wxCaret_Hide, METH_VARARGS | METH_KEYWORDS },
|
{ "wxCaret_Hide", (PyCFunction) _wrap_wxCaret_Hide, METH_VARARGS | METH_KEYWORDS },
|
||||||
@@ -1734,6 +2065,7 @@ static PyMethodDef misc2cMethods[] = {
|
|||||||
{ "wxToolTip_GetTip", (PyCFunction) _wrap_wxToolTip_GetTip, METH_VARARGS | METH_KEYWORDS },
|
{ "wxToolTip_GetTip", (PyCFunction) _wrap_wxToolTip_GetTip, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "wxToolTip_SetTip", (PyCFunction) _wrap_wxToolTip_SetTip, METH_VARARGS | METH_KEYWORDS },
|
{ "wxToolTip_SetTip", (PyCFunction) _wrap_wxToolTip_SetTip, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "new_wxToolTip", (PyCFunction) _wrap_new_wxToolTip, METH_VARARGS | METH_KEYWORDS },
|
{ "new_wxToolTip", (PyCFunction) _wrap_new_wxToolTip, METH_VARARGS | METH_KEYWORDS },
|
||||||
|
{ "wxPostEvent", (PyCFunction) _wrap_wxPostEvent, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "wxCaret_SetBlinkTime", (PyCFunction) _wrap_wxCaret_SetBlinkTime, METH_VARARGS | METH_KEYWORDS },
|
{ "wxCaret_SetBlinkTime", (PyCFunction) _wrap_wxCaret_SetBlinkTime, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "wxCaret_GetBlinkTime", (PyCFunction) _wrap_wxCaret_GetBlinkTime, METH_VARARGS | METH_KEYWORDS },
|
{ "wxCaret_GetBlinkTime", (PyCFunction) _wrap_wxCaret_GetBlinkTime, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "wxToolTip_SetDelay", (PyCFunction) _wrap_wxToolTip_SetDelay, METH_VARARGS | METH_KEYWORDS },
|
{ "wxToolTip_SetDelay", (PyCFunction) _wrap_wxToolTip_SetDelay, METH_VARARGS | METH_KEYWORDS },
|
||||||
@@ -1773,7 +2105,14 @@ static PyMethodDef misc2cMethods[] = {
|
|||||||
*/
|
*/
|
||||||
static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
||||||
{ "_wxAcceleratorTable","_class_wxAcceleratorTable",0},
|
{ "_wxAcceleratorTable","_class_wxAcceleratorTable",0},
|
||||||
|
{ "_wxEvent","_class_wxEvent",0},
|
||||||
|
{ "_class_wxActivateEvent","_wxActivateEvent",0},
|
||||||
{ "_signed_long","_long",0},
|
{ "_signed_long","_long",0},
|
||||||
|
{ "_wxMenuEvent","_class_wxMenuEvent",0},
|
||||||
|
{ "_wxPyBitmapDataObject","_class_wxPyBitmapDataObject",0},
|
||||||
|
{ "_wxBitmapDataObject","_class_wxBitmapDataObject",0},
|
||||||
|
{ "_class_wxPyCommandEvent","_wxPyCommandEvent",0},
|
||||||
|
{ "_wxPrintQuality","_wxCoord",0},
|
||||||
{ "_wxPrintQuality","_int",0},
|
{ "_wxPrintQuality","_int",0},
|
||||||
{ "_wxPrintQuality","_signed_int",0},
|
{ "_wxPrintQuality","_signed_int",0},
|
||||||
{ "_wxPrintQuality","_unsigned_int",0},
|
{ "_wxPrintQuality","_unsigned_int",0},
|
||||||
@@ -1781,93 +2120,161 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPrintQuality","_uint",0},
|
{ "_wxPrintQuality","_uint",0},
|
||||||
{ "_wxPrintQuality","_EBool",0},
|
{ "_wxPrintQuality","_EBool",0},
|
||||||
{ "_wxPrintQuality","_size_t",0},
|
{ "_wxPrintQuality","_size_t",0},
|
||||||
|
{ "_class_wxCustomDataObject","_wxCustomDataObject",0},
|
||||||
{ "_class_wxRegionIterator","_wxRegionIterator",0},
|
{ "_class_wxRegionIterator","_wxRegionIterator",0},
|
||||||
|
{ "_class_wxPyTextDropTarget","_wxPyTextDropTarget",0},
|
||||||
{ "_class_wxMenuBar","_wxMenuBar",0},
|
{ "_class_wxMenuBar","_wxMenuBar",0},
|
||||||
{ "_class_wxEvtHandler","_wxEvtHandler",0},
|
{ "_class_wxEvtHandler","_wxEvtHandler",0},
|
||||||
|
{ "_wxPaintEvent","_class_wxPaintEvent",0},
|
||||||
{ "_wxIndividualLayoutConstraint","_class_wxIndividualLayoutConstraint",0},
|
{ "_wxIndividualLayoutConstraint","_class_wxIndividualLayoutConstraint",0},
|
||||||
{ "_wxCursor","_class_wxCursor",0},
|
{ "_wxCursor","_class_wxCursor",0},
|
||||||
|
{ "_wxNotifyEvent","_class_wxNotifyEvent",0},
|
||||||
{ "_wxMask","_class_wxMask",0},
|
{ "_wxMask","_class_wxMask",0},
|
||||||
{ "_wxToolTip","_class_wxToolTip",0},
|
{ "_wxToolTip","_class_wxToolTip",0},
|
||||||
{ "_wxPen","_class_wxPen",0},
|
{ "_wxPen","_class_wxPen",0},
|
||||||
|
{ "_wxUpdateUIEvent","_class_wxUpdateUIEvent",0},
|
||||||
{ "_byte","_unsigned_char",0},
|
{ "_byte","_unsigned_char",0},
|
||||||
|
{ "_wxDataObject","_class_wxDataObject",0},
|
||||||
|
{ "_class_wxPyFontEnumerator","_wxPyFontEnumerator",0},
|
||||||
|
{ "_wxPyDataObjectSimple","_class_wxPyDataObjectSimple",0},
|
||||||
|
{ "_wxPyDropSource","_class_wxPyDropSource",0},
|
||||||
{ "_long","_wxDash",0},
|
{ "_long","_wxDash",0},
|
||||||
{ "_long","_unsigned_long",0},
|
{ "_long","_unsigned_long",0},
|
||||||
{ "_long","_signed_long",0},
|
{ "_long","_signed_long",0},
|
||||||
{ "_wxImageList","_class_wxImageList",0},
|
{ "_wxImageList","_class_wxImageList",0},
|
||||||
|
{ "_wxDataObjectSimple","_class_wxDataObjectSimple",0},
|
||||||
|
{ "_wxDropFilesEvent","_class_wxDropFilesEvent",0},
|
||||||
{ "_class_wxAcceleratorTable","_wxAcceleratorTable",0},
|
{ "_class_wxAcceleratorTable","_wxAcceleratorTable",0},
|
||||||
|
{ "_class_wxClipboard","_wxClipboard",0},
|
||||||
{ "_wxDC","_class_wxDC",0},
|
{ "_wxDC","_class_wxDC",0},
|
||||||
|
{ "_class_wxBitmapDataObject","_wxBitmapDataObject",0},
|
||||||
|
{ "_wxSpinEvent","_class_wxSpinEvent",0},
|
||||||
|
{ "_size_t","_wxCoord",0},
|
||||||
{ "_size_t","_wxPrintQuality",0},
|
{ "_size_t","_wxPrintQuality",0},
|
||||||
{ "_size_t","_unsigned_int",0},
|
{ "_size_t","_unsigned_int",0},
|
||||||
{ "_size_t","_int",0},
|
{ "_size_t","_int",0},
|
||||||
{ "_size_t","_wxWindowID",0},
|
{ "_size_t","_wxWindowID",0},
|
||||||
{ "_size_t","_uint",0},
|
{ "_size_t","_uint",0},
|
||||||
{ "_class_wxRealPoint","_wxRealPoint",0},
|
{ "_class_wxRealPoint","_wxRealPoint",0},
|
||||||
|
{ "_wxNavigationKeyEvent","_class_wxNavigationKeyEvent",0},
|
||||||
|
{ "_wxWindowCreateEvent","_class_wxWindowCreateEvent",0},
|
||||||
{ "_class_wxMenuItem","_wxMenuItem",0},
|
{ "_class_wxMenuItem","_wxMenuItem",0},
|
||||||
|
{ "_class_wxPaintEvent","_wxPaintEvent",0},
|
||||||
|
{ "_wxSysColourChangedEvent","_class_wxSysColourChangedEvent",0},
|
||||||
{ "_class_wxPostScriptDC","_wxPostScriptDC",0},
|
{ "_class_wxPostScriptDC","_wxPostScriptDC",0},
|
||||||
{ "_wxPanel","_class_wxPanel",0},
|
{ "_wxPanel","_class_wxPanel",0},
|
||||||
|
{ "_wxInitDialogEvent","_class_wxInitDialogEvent",0},
|
||||||
|
{ "_wxPyEvent","_class_wxPyEvent",0},
|
||||||
{ "_class_wxMask","_wxMask",0},
|
{ "_class_wxMask","_wxMask",0},
|
||||||
|
{ "_wxTextDataObject","_class_wxTextDataObject",0},
|
||||||
|
{ "_class_wxKeyEvent","_wxKeyEvent",0},
|
||||||
{ "_class_wxToolTip","_wxToolTip",0},
|
{ "_class_wxToolTip","_wxToolTip",0},
|
||||||
{ "_wxColour","_class_wxColour",0},
|
{ "_wxColour","_class_wxColour",0},
|
||||||
{ "_class_wxDialog","_wxDialog",0},
|
{ "_class_wxDialog","_wxDialog",0},
|
||||||
|
{ "_wxBusyCursor","_class_wxBusyCursor",0},
|
||||||
|
{ "_class_wxFileDataObject","_wxFileDataObject",0},
|
||||||
|
{ "_wxIdleEvent","_class_wxIdleEvent",0},
|
||||||
|
{ "_class_wxUpdateUIEvent","_wxUpdateUIEvent",0},
|
||||||
|
{ "_class_wxDataObject","_wxDataObject",0},
|
||||||
{ "_wxCaret","_class_wxCaret",0},
|
{ "_wxCaret","_class_wxCaret",0},
|
||||||
{ "_wxBrush","_class_wxBrush",0},
|
{ "_wxBrush","_class_wxBrush",0},
|
||||||
|
{ "_wxDataFormat","_class_wxDataFormat",0},
|
||||||
|
{ "_class_wxDataObjectSimple","_wxDataObjectSimple",0},
|
||||||
|
{ "_wxShowEvent","_class_wxShowEvent",0},
|
||||||
|
{ "_uint","_wxCoord",0},
|
||||||
{ "_uint","_wxPrintQuality",0},
|
{ "_uint","_wxPrintQuality",0},
|
||||||
{ "_uint","_size_t",0},
|
{ "_uint","_size_t",0},
|
||||||
{ "_uint","_unsigned_int",0},
|
{ "_uint","_unsigned_int",0},
|
||||||
{ "_uint","_int",0},
|
{ "_uint","_int",0},
|
||||||
{ "_uint","_wxWindowID",0},
|
{ "_uint","_wxWindowID",0},
|
||||||
{ "_wxPyValidator","_class_wxPyValidator",0},
|
{ "_wxPyValidator","_class_wxPyValidator",0},
|
||||||
|
{ "_class_wxEvent","_wxEvent",0},
|
||||||
{ "_wxRect","_class_wxRect",0},
|
{ "_wxRect","_class_wxRect",0},
|
||||||
|
{ "_wxCommandEvent","_class_wxCommandEvent",0},
|
||||||
|
{ "_wxSizeEvent","_class_wxSizeEvent",0},
|
||||||
{ "_wxPoint","_class_wxPoint",0},
|
{ "_wxPoint","_class_wxPoint",0},
|
||||||
{ "_wxBitmap","_class_wxBitmap",0},
|
{ "_wxBitmap","_class_wxBitmap",0},
|
||||||
{ "_wxPyTimer","_class_wxPyTimer",0},
|
{ "_wxPyTimer","_class_wxPyTimer",0},
|
||||||
{ "_wxWindowDC","_class_wxWindowDC",0},
|
{ "_wxWindowDC","_class_wxWindowDC",0},
|
||||||
{ "_class_wxIndividualLayoutConstraint","_wxIndividualLayoutConstraint",0},
|
{ "_class_wxIndividualLayoutConstraint","_wxIndividualLayoutConstraint",0},
|
||||||
|
{ "_class_wxNotifyEvent","_wxNotifyEvent",0},
|
||||||
{ "_class_wxValidator","_wxValidator",0},
|
{ "_class_wxValidator","_wxValidator",0},
|
||||||
|
{ "_class_wxPyEvent","_wxPyEvent",0},
|
||||||
|
{ "_class_wxIconizeEvent","_wxIconizeEvent",0},
|
||||||
|
{ "_class_wxBusyCursor","_wxBusyCursor",0},
|
||||||
|
{ "_wxDropTarget","_class_wxDropTarget",0},
|
||||||
|
{ "_wxScrollEvent","_class_wxScrollEvent",0},
|
||||||
|
{ "_EBool","_wxCoord",0},
|
||||||
{ "_EBool","_wxPrintQuality",0},
|
{ "_EBool","_wxPrintQuality",0},
|
||||||
{ "_EBool","_signed_int",0},
|
{ "_EBool","_signed_int",0},
|
||||||
{ "_EBool","_int",0},
|
{ "_EBool","_int",0},
|
||||||
{ "_EBool","_wxWindowID",0},
|
{ "_EBool","_wxWindowID",0},
|
||||||
{ "_class_wxRegion","_wxRegion",0},
|
{ "_class_wxRegion","_wxRegion",0},
|
||||||
|
{ "_class_wxDataFormat","_wxDataFormat",0},
|
||||||
|
{ "_class_wxDropFilesEvent","_wxDropFilesEvent",0},
|
||||||
|
{ "_wxWindowDestroyEvent","_class_wxWindowDestroyEvent",0},
|
||||||
{ "_wxFont","_class_wxFont",0},
|
{ "_wxFont","_class_wxFont",0},
|
||||||
|
{ "_class_wxPyDropTarget","_wxPyDropTarget",0},
|
||||||
|
{ "_wxCloseEvent","_class_wxCloseEvent",0},
|
||||||
{ "_unsigned_long","_wxDash",0},
|
{ "_unsigned_long","_wxDash",0},
|
||||||
{ "_unsigned_long","_long",0},
|
{ "_unsigned_long","_long",0},
|
||||||
{ "_class_wxRect","_wxRect",0},
|
{ "_class_wxRect","_wxRect",0},
|
||||||
{ "_class_wxDC","_wxDC",0},
|
{ "_class_wxDC","_wxDC",0},
|
||||||
|
{ "_wxScrollWinEvent","_class_wxScrollWinEvent",0},
|
||||||
|
{ "_wxQueryNewPaletteEvent","_class_wxQueryNewPaletteEvent",0},
|
||||||
|
{ "_class_wxWindowCreateEvent","_wxWindowCreateEvent",0},
|
||||||
{ "_class_wxPyTimer","_wxPyTimer",0},
|
{ "_class_wxPyTimer","_wxPyTimer",0},
|
||||||
|
{ "_wxFocusEvent","_class_wxFocusEvent",0},
|
||||||
|
{ "_wxMaximizeEvent","_class_wxMaximizeEvent",0},
|
||||||
{ "_wxAcceleratorEntry","_class_wxAcceleratorEntry",0},
|
{ "_wxAcceleratorEntry","_class_wxAcceleratorEntry",0},
|
||||||
{ "_class_wxPanel","_wxPanel",0},
|
{ "_class_wxPanel","_wxPanel",0},
|
||||||
|
{ "_signed_int","_wxCoord",0},
|
||||||
{ "_signed_int","_wxPrintQuality",0},
|
{ "_signed_int","_wxPrintQuality",0},
|
||||||
{ "_signed_int","_EBool",0},
|
{ "_signed_int","_EBool",0},
|
||||||
{ "_signed_int","_wxWindowID",0},
|
{ "_signed_int","_wxWindowID",0},
|
||||||
{ "_signed_int","_int",0},
|
{ "_signed_int","_int",0},
|
||||||
{ "_wxLayoutConstraints","_class_wxLayoutConstraints",0},
|
{ "_wxLayoutConstraints","_class_wxLayoutConstraints",0},
|
||||||
|
{ "_class_wxTextDataObject","_wxTextDataObject",0},
|
||||||
{ "_wxMenu","_class_wxMenu",0},
|
{ "_wxMenu","_class_wxMenu",0},
|
||||||
|
{ "_class_wxMoveEvent","_wxMoveEvent",0},
|
||||||
{ "_wxScreenDC","_class_wxScreenDC",0},
|
{ "_wxScreenDC","_class_wxScreenDC",0},
|
||||||
{ "_WXTYPE","_short",0},
|
{ "_WXTYPE","_short",0},
|
||||||
{ "_WXTYPE","_signed_short",0},
|
{ "_WXTYPE","_signed_short",0},
|
||||||
{ "_WXTYPE","_unsigned_short",0},
|
{ "_WXTYPE","_unsigned_short",0},
|
||||||
|
{ "_class_wxDropTarget","_wxDropTarget",0},
|
||||||
{ "_class_wxCaret","_wxCaret",0},
|
{ "_class_wxCaret","_wxCaret",0},
|
||||||
{ "_class_wxBrush","_wxBrush",0},
|
{ "_class_wxBrush","_wxBrush",0},
|
||||||
{ "_unsigned_short","_WXTYPE",0},
|
{ "_unsigned_short","_WXTYPE",0},
|
||||||
{ "_unsigned_short","_short",0},
|
{ "_unsigned_short","_short",0},
|
||||||
{ "_class_wxWindow","_wxWindow",0},
|
{ "_class_wxWindow","_wxWindow",0},
|
||||||
{ "_class_wxFont","_wxFont",0},
|
{ "_class_wxFont","_wxFont",0},
|
||||||
|
{ "_wxClipboard","_class_wxClipboard",0},
|
||||||
{ "_class_wxPyValidator","_wxPyValidator",0},
|
{ "_class_wxPyValidator","_wxPyValidator",0},
|
||||||
|
{ "_class_wxCloseEvent","_wxCloseEvent",0},
|
||||||
|
{ "_wxBusyInfo","_class_wxBusyInfo",0},
|
||||||
|
{ "_class_wxMenuEvent","_wxMenuEvent",0},
|
||||||
|
{ "_wxPaletteChangedEvent","_class_wxPaletteChangedEvent",0},
|
||||||
|
{ "_class_wxPyBitmapDataObject","_wxPyBitmapDataObject",0},
|
||||||
{ "_wxClientDC","_class_wxClientDC",0},
|
{ "_wxClientDC","_class_wxClientDC",0},
|
||||||
|
{ "_wxMouseEvent","_class_wxMouseEvent",0},
|
||||||
{ "_class_wxPoint","_wxPoint",0},
|
{ "_class_wxPoint","_wxPoint",0},
|
||||||
{ "_wxRealPoint","_class_wxRealPoint",0},
|
{ "_wxRealPoint","_class_wxRealPoint",0},
|
||||||
{ "_signed_short","_WXTYPE",0},
|
{ "_signed_short","_WXTYPE",0},
|
||||||
{ "_signed_short","_short",0},
|
{ "_signed_short","_short",0},
|
||||||
{ "_wxMemoryDC","_class_wxMemoryDC",0},
|
{ "_wxMemoryDC","_class_wxMemoryDC",0},
|
||||||
|
{ "_wxPyTextDataObject","_class_wxPyTextDataObject",0},
|
||||||
{ "_wxPaintDC","_class_wxPaintDC",0},
|
{ "_wxPaintDC","_class_wxPaintDC",0},
|
||||||
{ "_class_wxWindowDC","_wxWindowDC",0},
|
{ "_class_wxWindowDC","_wxWindowDC",0},
|
||||||
|
{ "_class_wxFocusEvent","_wxFocusEvent",0},
|
||||||
|
{ "_class_wxMaximizeEvent","_wxMaximizeEvent",0},
|
||||||
{ "_class_wxAcceleratorEntry","_wxAcceleratorEntry",0},
|
{ "_class_wxAcceleratorEntry","_wxAcceleratorEntry",0},
|
||||||
{ "_class_wxCursor","_wxCursor",0},
|
{ "_class_wxCursor","_wxCursor",0},
|
||||||
{ "_wxPostScriptDC","_class_wxPostScriptDC",0},
|
{ "_wxPostScriptDC","_class_wxPostScriptDC",0},
|
||||||
|
{ "_wxPyFileDropTarget","_class_wxPyFileDropTarget",0},
|
||||||
{ "_wxScrolledWindow","_class_wxScrolledWindow",0},
|
{ "_wxScrolledWindow","_class_wxScrolledWindow",0},
|
||||||
{ "_unsigned_char","_byte",0},
|
{ "_unsigned_char","_byte",0},
|
||||||
{ "_class_wxMenu","_wxMenu",0},
|
{ "_class_wxMenu","_wxMenu",0},
|
||||||
|
{ "_unsigned_int","_wxCoord",0},
|
||||||
{ "_unsigned_int","_wxPrintQuality",0},
|
{ "_unsigned_int","_wxPrintQuality",0},
|
||||||
{ "_unsigned_int","_size_t",0},
|
{ "_unsigned_int","_size_t",0},
|
||||||
{ "_unsigned_int","_uint",0},
|
{ "_unsigned_int","_uint",0},
|
||||||
@@ -1879,7 +2286,13 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_short","_WXTYPE",0},
|
{ "_short","_WXTYPE",0},
|
||||||
{ "_short","_unsigned_short",0},
|
{ "_short","_unsigned_short",0},
|
||||||
{ "_short","_signed_short",0},
|
{ "_short","_signed_short",0},
|
||||||
|
{ "_class_wxPyDataObjectSimple","_wxPyDataObjectSimple",0},
|
||||||
|
{ "_class_wxPyDropSource","_wxPyDropSource",0},
|
||||||
|
{ "_class_wxScrollEvent","_wxScrollEvent",0},
|
||||||
|
{ "_wxJoystickEvent","_class_wxJoystickEvent",0},
|
||||||
{ "_class_wxImageList","_wxImageList",0},
|
{ "_class_wxImageList","_wxImageList",0},
|
||||||
|
{ "_class_wxPaletteChangedEvent","_wxPaletteChangedEvent",0},
|
||||||
|
{ "_wxWindowID","_wxCoord",0},
|
||||||
{ "_wxWindowID","_wxPrintQuality",0},
|
{ "_wxWindowID","_wxPrintQuality",0},
|
||||||
{ "_wxWindowID","_size_t",0},
|
{ "_wxWindowID","_size_t",0},
|
||||||
{ "_wxWindowID","_EBool",0},
|
{ "_wxWindowID","_EBool",0},
|
||||||
@@ -1887,6 +2300,8 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxWindowID","_int",0},
|
{ "_wxWindowID","_int",0},
|
||||||
{ "_wxWindowID","_signed_int",0},
|
{ "_wxWindowID","_signed_int",0},
|
||||||
{ "_wxWindowID","_unsigned_int",0},
|
{ "_wxWindowID","_unsigned_int",0},
|
||||||
|
{ "_class_wxScrollWinEvent","_wxScrollWinEvent",0},
|
||||||
|
{ "_int","_wxCoord",0},
|
||||||
{ "_int","_wxPrintQuality",0},
|
{ "_int","_wxPrintQuality",0},
|
||||||
{ "_int","_size_t",0},
|
{ "_int","_size_t",0},
|
||||||
{ "_int","_EBool",0},
|
{ "_int","_EBool",0},
|
||||||
@@ -1894,28 +2309,65 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_int","_wxWindowID",0},
|
{ "_int","_wxWindowID",0},
|
||||||
{ "_int","_unsigned_int",0},
|
{ "_int","_unsigned_int",0},
|
||||||
{ "_int","_signed_int",0},
|
{ "_int","_signed_int",0},
|
||||||
|
{ "_class_wxMouseEvent","_wxMouseEvent",0},
|
||||||
|
{ "_wxPyCommandEvent","_class_wxPyCommandEvent",0},
|
||||||
|
{ "_class_wxSpinEvent","_wxSpinEvent",0},
|
||||||
|
{ "_class_wxQueryNewPaletteEvent","_wxQueryNewPaletteEvent",0},
|
||||||
|
{ "_class_wxNavigationKeyEvent","_wxNavigationKeyEvent",0},
|
||||||
{ "_wxSize","_class_wxSize",0},
|
{ "_wxSize","_class_wxSize",0},
|
||||||
{ "_wxRegionIterator","_class_wxRegionIterator",0},
|
{ "_wxRegionIterator","_class_wxRegionIterator",0},
|
||||||
|
{ "_class_wxPyTextDataObject","_wxPyTextDataObject",0},
|
||||||
{ "_class_wxPaintDC","_wxPaintDC",0},
|
{ "_class_wxPaintDC","_wxPaintDC",0},
|
||||||
|
{ "_class_wxSysColourChangedEvent","_wxSysColourChangedEvent",0},
|
||||||
|
{ "_class_wxPyFileDropTarget","_wxPyFileDropTarget",0},
|
||||||
|
{ "_class_wxInitDialogEvent","_wxInitDialogEvent",0},
|
||||||
{ "_wxValidator","_class_wxValidator",0},
|
{ "_wxValidator","_class_wxValidator",0},
|
||||||
{ "_class_wxLayoutConstraints","_wxLayoutConstraints",0},
|
{ "_class_wxLayoutConstraints","_wxLayoutConstraints",0},
|
||||||
|
{ "_wxIconizeEvent","_class_wxIconizeEvent",0},
|
||||||
{ "_class_wxIcon","_wxIcon",0},
|
{ "_class_wxIcon","_wxIcon",0},
|
||||||
{ "_class_wxColour","_wxColour",0},
|
{ "_class_wxColour","_wxColour",0},
|
||||||
{ "_class_wxScreenDC","_wxScreenDC",0},
|
{ "_class_wxScreenDC","_wxScreenDC",0},
|
||||||
{ "_wxPalette","_class_wxPalette",0},
|
{ "_wxPalette","_class_wxPalette",0},
|
||||||
|
{ "_class_wxIdleEvent","_wxIdleEvent",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","_wxPrintQuality",0},
|
||||||
|
{ "_wxEraseEvent","_class_wxEraseEvent",0},
|
||||||
|
{ "_wxDataObjectComposite","_class_wxDataObjectComposite",0},
|
||||||
|
{ "_class_wxJoystickEvent","_wxJoystickEvent",0},
|
||||||
{ "_wxRegion","_class_wxRegion",0},
|
{ "_wxRegion","_class_wxRegion",0},
|
||||||
|
{ "_class_wxShowEvent","_wxShowEvent",0},
|
||||||
|
{ "_wxPyDropTarget","_class_wxPyDropTarget",0},
|
||||||
|
{ "_wxActivateEvent","_class_wxActivateEvent",0},
|
||||||
|
{ "_class_wxBusyInfo","_wxBusyInfo",0},
|
||||||
|
{ "_class_wxCommandEvent","_wxCommandEvent",0},
|
||||||
{ "_class_wxClientDC","_wxClientDC",0},
|
{ "_class_wxClientDC","_wxClientDC",0},
|
||||||
|
{ "_class_wxSizeEvent","_wxSizeEvent",0},
|
||||||
|
{ "_wxCustomDataObject","_class_wxCustomDataObject",0},
|
||||||
{ "_class_wxSize","_wxSize",0},
|
{ "_class_wxSize","_wxSize",0},
|
||||||
{ "_class_wxBitmap","_wxBitmap",0},
|
{ "_class_wxBitmap","_wxBitmap",0},
|
||||||
{ "_class_wxMemoryDC","_wxMemoryDC",0},
|
{ "_class_wxMemoryDC","_wxMemoryDC",0},
|
||||||
|
{ "_wxPyTextDropTarget","_class_wxPyTextDropTarget",0},
|
||||||
{ "_wxMenuBar","_class_wxMenuBar",0},
|
{ "_wxMenuBar","_class_wxMenuBar",0},
|
||||||
{ "_wxEvtHandler","_class_wxEvtHandler",0},
|
{ "_wxEvtHandler","_class_wxEvtHandler",0},
|
||||||
{ "_wxMenuItem","_class_wxMenuItem",0},
|
{ "_wxMenuItem","_class_wxMenuItem",0},
|
||||||
{ "_wxDash","_unsigned_long",0},
|
{ "_wxDash","_unsigned_long",0},
|
||||||
{ "_wxDash","_long",0},
|
{ "_wxDash","_long",0},
|
||||||
{ "_class_wxScrolledWindow","_wxScrolledWindow",0},
|
{ "_class_wxScrolledWindow","_wxScrolledWindow",0},
|
||||||
|
{ "_wxKeyEvent","_class_wxKeyEvent",0},
|
||||||
|
{ "_wxMoveEvent","_class_wxMoveEvent",0},
|
||||||
{ "_class_wxPalette","_wxPalette",0},
|
{ "_class_wxPalette","_wxPalette",0},
|
||||||
|
{ "_wxFileDataObject","_class_wxFileDataObject",0},
|
||||||
|
{ "_class_wxEraseEvent","_wxEraseEvent",0},
|
||||||
|
{ "_wxPyFontEnumerator","_class_wxPyFontEnumerator",0},
|
||||||
|
{ "_class_wxDataObjectComposite","_wxDataObjectComposite",0},
|
||||||
{ "_wxWindow","_class_wxWindow",0},
|
{ "_wxWindow","_class_wxWindow",0},
|
||||||
|
{ "_class_wxWindowDestroyEvent","_wxWindowDestroyEvent",0},
|
||||||
{0,0,0}};
|
{0,0,0}};
|
||||||
|
|
||||||
static PyObject *SWIG_globals;
|
static PyObject *SWIG_globals;
|
||||||
|
@@ -6,6 +6,10 @@ from windows import *
|
|||||||
from misc import *
|
from misc import *
|
||||||
|
|
||||||
from gdi import *
|
from gdi import *
|
||||||
|
|
||||||
|
from clip_dnd import *
|
||||||
|
|
||||||
|
from events import *
|
||||||
class wxToolTipPtr :
|
class wxToolTipPtr :
|
||||||
def __init__(self,this):
|
def __init__(self,this):
|
||||||
self.this = this
|
self.this = this
|
||||||
@@ -89,6 +93,56 @@ class wxCaret(wxCaretPtr):
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class wxFontEnumeratorPtr :
|
||||||
|
def __init__(self,this):
|
||||||
|
self.this = this
|
||||||
|
self.thisown = 0
|
||||||
|
def __del__(self,misc2c=misc2c):
|
||||||
|
if self.thisown == 1 :
|
||||||
|
misc2c.delete_wxFontEnumerator(self)
|
||||||
|
def _setSelf(self, *_args, **_kwargs):
|
||||||
|
val = apply(misc2c.wxFontEnumerator__setSelf,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def EnumerateFacenames(self, *_args, **_kwargs):
|
||||||
|
val = apply(misc2c.wxFontEnumerator_EnumerateFacenames,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def EnumerateEncodings(self, *_args, **_kwargs):
|
||||||
|
val = apply(misc2c.wxFontEnumerator_EnumerateEncodings,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def GetEncodings(self, *_args, **_kwargs):
|
||||||
|
val = apply(misc2c.wxFontEnumerator_GetEncodings,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def GetFacenames(self, *_args, **_kwargs):
|
||||||
|
val = apply(misc2c.wxFontEnumerator_GetFacenames,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def __repr__(self):
|
||||||
|
return "<C wxFontEnumerator instance at %s>" % (self.this,)
|
||||||
|
class wxFontEnumerator(wxFontEnumeratorPtr):
|
||||||
|
def __init__(self,*_args,**_kwargs):
|
||||||
|
self.this = apply(misc2c.new_wxFontEnumerator,_args,_kwargs)
|
||||||
|
self.thisown = 1
|
||||||
|
self._setSelf(self)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class wxBusyCursorPtr :
|
||||||
|
def __init__(self,this):
|
||||||
|
self.this = this
|
||||||
|
self.thisown = 0
|
||||||
|
def __del__(self,misc2c=misc2c):
|
||||||
|
if self.thisown == 1 :
|
||||||
|
misc2c.delete_wxBusyCursor(self)
|
||||||
|
def __repr__(self):
|
||||||
|
return "<C wxBusyCursor instance at %s>" % (self.this,)
|
||||||
|
class wxBusyCursor(wxBusyCursorPtr):
|
||||||
|
def __init__(self,*_args,**_kwargs):
|
||||||
|
self.this = apply(misc2c.new_wxBusyCursor,_args,_kwargs)
|
||||||
|
self.thisown = 1
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#-------------- FUNCTION WRAPPERS ------------------
|
#-------------- FUNCTION WRAPPERS ------------------
|
||||||
@@ -175,6 +229,8 @@ wxCaret_GetBlinkTime = misc2c.wxCaret_GetBlinkTime
|
|||||||
|
|
||||||
wxCaret_SetBlinkTime = misc2c.wxCaret_SetBlinkTime
|
wxCaret_SetBlinkTime = misc2c.wxCaret_SetBlinkTime
|
||||||
|
|
||||||
|
wxPostEvent = misc2c.wxPostEvent
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#-------------- VARIABLE WRAPPERS ------------------
|
#-------------- VARIABLE WRAPPERS ------------------
|
||||||
|
@@ -57,6 +57,8 @@ extern PyObject *SWIG_newvarlink(void);
|
|||||||
#include <wx/print.h>
|
#include <wx/print.h>
|
||||||
#include <wx/printdlg.h>
|
#include <wx/printdlg.h>
|
||||||
|
|
||||||
|
#include "printfw.h"
|
||||||
|
|
||||||
static PyObject* l_output_helper(PyObject* target, PyObject* o) {
|
static PyObject* l_output_helper(PyObject* target, PyObject* o) {
|
||||||
PyObject* o2;
|
PyObject* o2;
|
||||||
PyObject* o3;
|
PyObject* o3;
|
||||||
@@ -106,66 +108,53 @@ static PyObject* t_output_helper(PyObject* target, PyObject* o) {
|
|||||||
|
|
||||||
static char* wxStringErrorMsg = "string type is required for parameter";
|
static char* wxStringErrorMsg = "string type is required for parameter";
|
||||||
|
|
||||||
class wxPyPrintout : public wxPrintout {
|
|
||||||
public:
|
|
||||||
wxPyPrintout(const wxString& title) : wxPrintout(title) {}
|
|
||||||
|
|
||||||
DEC_PYCALLBACK_BOOL_INTINT(OnBeginDocument);
|
|
||||||
DEC_PYCALLBACK__(OnEndDocument);
|
|
||||||
DEC_PYCALLBACK__(OnBeginPrinting);
|
|
||||||
DEC_PYCALLBACK__(OnEndPrinting);
|
|
||||||
DEC_PYCALLBACK__(OnPreparePrinting);
|
|
||||||
DEC_PYCALLBACK_BOOL_INT_pure(OnPrintPage);
|
|
||||||
DEC_PYCALLBACK_BOOL_INT(HasPage);
|
|
||||||
|
|
||||||
|
|
||||||
// Since this one would be tough and ugly to do with the Macros...
|
// Since this one would be tough and ugly to do with the Macros...
|
||||||
void GetPageInfo(int *minPage, int *maxPage, int *pageFrom, int *pageTo) {
|
void wxPyPrintout::GetPageInfo(int *minPage, int *maxPage, int *pageFrom, int *pageTo) {
|
||||||
bool hadErr = false;
|
bool hadErr = false;
|
||||||
|
|
||||||
bool doSave = wxPyRestoreThread();
|
bool doSave = wxPyRestoreThread();
|
||||||
if (m_myInst.findCallback("GetPageInfo")) {
|
if (m_myInst.findCallback("GetPageInfo")) {
|
||||||
PyObject* result = m_myInst.callCallbackObj(Py_BuildValue("()"));
|
PyObject* result = m_myInst.callCallbackObj(Py_BuildValue("()"));
|
||||||
if (result && PyTuple_Check(result) && PyTuple_Size(result) == 4) {
|
if (result && PyTuple_Check(result) && PyTuple_Size(result) == 4) {
|
||||||
PyObject* val;
|
PyObject* val;
|
||||||
|
|
||||||
val = PyTuple_GetItem(result, 0);
|
val = PyTuple_GetItem(result, 0);
|
||||||
if (PyInt_Check(val)) *minPage = PyInt_AsLong(val);
|
if (PyInt_Check(val)) *minPage = PyInt_AsLong(val);
|
||||||
else hadErr = true;
|
else hadErr = true;
|
||||||
|
|
||||||
val = PyTuple_GetItem(result, 1);
|
val = PyTuple_GetItem(result, 1);
|
||||||
if (PyInt_Check(val)) *maxPage = PyInt_AsLong(val);
|
if (PyInt_Check(val)) *maxPage = PyInt_AsLong(val);
|
||||||
else hadErr = true;
|
else hadErr = true;
|
||||||
|
|
||||||
val = PyTuple_GetItem(result, 2);
|
val = PyTuple_GetItem(result, 2);
|
||||||
if (PyInt_Check(val)) *pageFrom = PyInt_AsLong(val);
|
if (PyInt_Check(val)) *pageFrom = PyInt_AsLong(val);
|
||||||
else hadErr = true;
|
else hadErr = true;
|
||||||
|
|
||||||
val = PyTuple_GetItem(result, 3);
|
val = PyTuple_GetItem(result, 3);
|
||||||
if (PyInt_Check(val)) *pageTo = PyInt_AsLong(val);
|
if (PyInt_Check(val)) *pageTo = PyInt_AsLong(val);
|
||||||
else hadErr = true;
|
else hadErr = true;
|
||||||
}
|
|
||||||
else
|
|
||||||
hadErr = true;
|
|
||||||
|
|
||||||
if (hadErr) {
|
|
||||||
PyErr_SetString(PyExc_TypeError, "GetPageInfo should return a tuple of 4 integers.");
|
|
||||||
PyErr_Print();
|
|
||||||
}
|
|
||||||
Py_DECREF(result);
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
wxPrintout::GetPageInfo(minPage, maxPage, pageFrom, pageTo);
|
hadErr = true;
|
||||||
|
|
||||||
wxPySaveThread(doSave);
|
if (hadErr) {
|
||||||
|
PyErr_SetString(PyExc_TypeError, "GetPageInfo should return a tuple of 4 integers.");
|
||||||
|
PyErr_Print();
|
||||||
|
}
|
||||||
|
Py_DECREF(result);
|
||||||
}
|
}
|
||||||
|
else
|
||||||
void base_GetPageInfo(int *minPage, int *maxPage, int *pageFrom, int *pageTo) {
|
|
||||||
wxPrintout::GetPageInfo(minPage, maxPage, pageFrom, pageTo);
|
wxPrintout::GetPageInfo(minPage, maxPage, pageFrom, pageTo);
|
||||||
}
|
|
||||||
|
|
||||||
PYPRIVATE;
|
wxPySaveThread(doSave);
|
||||||
};
|
}
|
||||||
|
|
||||||
|
void wxPyPrintout::base_GetPageInfo(int *minPage, int *maxPage, int *pageFrom, int *pageTo) {
|
||||||
|
wxPrintout::GetPageInfo(minPage, maxPage, pageFrom, pageTo);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
IMP_PYCALLBACK_BOOL_INTINT(wxPyPrintout, wxPrintout, OnBeginDocument);
|
IMP_PYCALLBACK_BOOL_INTINT(wxPyPrintout, wxPrintout, OnBeginDocument);
|
||||||
IMP_PYCALLBACK__(wxPyPrintout, wxPrintout, OnEndDocument);
|
IMP_PYCALLBACK__(wxPyPrintout, wxPrintout, OnEndDocument);
|
||||||
@@ -4360,7 +4349,10 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxActivateEvent","_wxActivateEvent",0},
|
{ "_class_wxActivateEvent","_wxActivateEvent",0},
|
||||||
{ "_signed_long","_long",0},
|
{ "_signed_long","_long",0},
|
||||||
{ "_wxMenuEvent","_class_wxMenuEvent",0},
|
{ "_wxMenuEvent","_class_wxMenuEvent",0},
|
||||||
|
{ "_wxPyBitmapDataObject","_class_wxPyBitmapDataObject",0},
|
||||||
|
{ "_wxBitmapDataObject","_class_wxBitmapDataObject",0},
|
||||||
{ "_class_wxPyCommandEvent","_wxPyCommandEvent",0},
|
{ "_class_wxPyCommandEvent","_wxPyCommandEvent",0},
|
||||||
|
{ "_wxPrintQuality","_wxCoord",0},
|
||||||
{ "_wxPrintQuality","_int",0},
|
{ "_wxPrintQuality","_int",0},
|
||||||
{ "_wxPrintQuality","_signed_int",0},
|
{ "_wxPrintQuality","_signed_int",0},
|
||||||
{ "_wxPrintQuality","_unsigned_int",0},
|
{ "_wxPrintQuality","_unsigned_int",0},
|
||||||
@@ -4368,8 +4360,10 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPrintQuality","_uint",0},
|
{ "_wxPrintQuality","_uint",0},
|
||||||
{ "_wxPrintQuality","_EBool",0},
|
{ "_wxPrintQuality","_EBool",0},
|
||||||
{ "_wxPrintQuality","_size_t",0},
|
{ "_wxPrintQuality","_size_t",0},
|
||||||
|
{ "_class_wxCustomDataObject","_wxCustomDataObject",0},
|
||||||
{ "_wxFontData","_class_wxFontData",0},
|
{ "_wxFontData","_class_wxFontData",0},
|
||||||
{ "_class_wxRegionIterator","_wxRegionIterator",0},
|
{ "_class_wxRegionIterator","_wxRegionIterator",0},
|
||||||
|
{ "_class_wxPyTextDropTarget","_wxPyTextDropTarget",0},
|
||||||
{ "_class_wxMenuBar","_wxMenuBar",0},
|
{ "_class_wxMenuBar","_wxMenuBar",0},
|
||||||
{ "_class_wxEvtHandler","_class_wxPreviewFrame",SwigwxPreviewFrameTowxEvtHandler},
|
{ "_class_wxEvtHandler","_class_wxPreviewFrame",SwigwxPreviewFrameTowxEvtHandler},
|
||||||
{ "_class_wxEvtHandler","_wxPreviewFrame",SwigwxPreviewFrameTowxEvtHandler},
|
{ "_class_wxEvtHandler","_wxPreviewFrame",SwigwxPreviewFrameTowxEvtHandler},
|
||||||
@@ -4389,7 +4383,10 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPen","_class_wxPen",0},
|
{ "_wxPen","_class_wxPen",0},
|
||||||
{ "_wxUpdateUIEvent","_class_wxUpdateUIEvent",0},
|
{ "_wxUpdateUIEvent","_class_wxUpdateUIEvent",0},
|
||||||
{ "_byte","_unsigned_char",0},
|
{ "_byte","_unsigned_char",0},
|
||||||
|
{ "_wxDataObject","_class_wxDataObject",0},
|
||||||
{ "_wxStaticBox","_class_wxStaticBox",0},
|
{ "_wxStaticBox","_class_wxStaticBox",0},
|
||||||
|
{ "_wxPyDataObjectSimple","_class_wxPyDataObjectSimple",0},
|
||||||
|
{ "_wxPyDropSource","_class_wxPyDropSource",0},
|
||||||
{ "_wxChoice","_class_wxChoice",0},
|
{ "_wxChoice","_class_wxChoice",0},
|
||||||
{ "_wxSlider","_class_wxSlider",0},
|
{ "_wxSlider","_class_wxSlider",0},
|
||||||
{ "_wxPyPrintout","_class_wxPyPrintout",0},
|
{ "_wxPyPrintout","_class_wxPyPrintout",0},
|
||||||
@@ -4397,16 +4394,20 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_long","_unsigned_long",0},
|
{ "_long","_unsigned_long",0},
|
||||||
{ "_long","_signed_long",0},
|
{ "_long","_signed_long",0},
|
||||||
{ "_wxImageList","_class_wxImageList",0},
|
{ "_wxImageList","_class_wxImageList",0},
|
||||||
|
{ "_wxDataObjectSimple","_class_wxDataObjectSimple",0},
|
||||||
{ "_wxDropFilesEvent","_class_wxDropFilesEvent",0},
|
{ "_wxDropFilesEvent","_class_wxDropFilesEvent",0},
|
||||||
{ "_wxBitmapButton","_class_wxBitmapButton",0},
|
{ "_wxBitmapButton","_class_wxBitmapButton",0},
|
||||||
{ "_class_wxPrintDialogData","_wxPrintDialogData",0},
|
{ "_class_wxPrintDialogData","_wxPrintDialogData",0},
|
||||||
{ "_class_wxAcceleratorTable","_wxAcceleratorTable",0},
|
{ "_class_wxAcceleratorTable","_wxAcceleratorTable",0},
|
||||||
|
{ "_class_wxClipboard","_wxClipboard",0},
|
||||||
{ "_class_wxGauge","_wxGauge",0},
|
{ "_class_wxGauge","_wxGauge",0},
|
||||||
{ "_wxDC","_class_wxDC",0},
|
{ "_wxDC","_class_wxDC",0},
|
||||||
|
{ "_class_wxBitmapDataObject","_wxBitmapDataObject",0},
|
||||||
{ "_class_wxSingleChoiceDialog","_wxSingleChoiceDialog",0},
|
{ "_class_wxSingleChoiceDialog","_wxSingleChoiceDialog",0},
|
||||||
{ "_wxProgressDialog","_class_wxProgressDialog",0},
|
{ "_wxProgressDialog","_class_wxProgressDialog",0},
|
||||||
{ "_wxPrintPreview","_class_wxPrintPreview",0},
|
{ "_wxPrintPreview","_class_wxPrintPreview",0},
|
||||||
{ "_wxSpinEvent","_class_wxSpinEvent",0},
|
{ "_wxSpinEvent","_class_wxSpinEvent",0},
|
||||||
|
{ "_size_t","_wxCoord",0},
|
||||||
{ "_size_t","_wxPrintQuality",0},
|
{ "_size_t","_wxPrintQuality",0},
|
||||||
{ "_size_t","_unsigned_int",0},
|
{ "_size_t","_unsigned_int",0},
|
||||||
{ "_size_t","_int",0},
|
{ "_size_t","_int",0},
|
||||||
@@ -4430,6 +4431,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPyEvent","_class_wxPyEvent",0},
|
{ "_wxPyEvent","_class_wxPyEvent",0},
|
||||||
{ "_wxTextCtrl","_class_wxTextCtrl",0},
|
{ "_wxTextCtrl","_class_wxTextCtrl",0},
|
||||||
{ "_class_wxMask","_wxMask",0},
|
{ "_class_wxMask","_wxMask",0},
|
||||||
|
{ "_wxTextDataObject","_class_wxTextDataObject",0},
|
||||||
{ "_class_wxKeyEvent","_wxKeyEvent",0},
|
{ "_class_wxKeyEvent","_wxKeyEvent",0},
|
||||||
{ "_wxColour","_class_wxColour",0},
|
{ "_wxColour","_class_wxColour",0},
|
||||||
{ "_class_wxDialog","_class_wxPrintDialog",SwigwxPrintDialogTowxDialog},
|
{ "_class_wxDialog","_class_wxPrintDialog",SwigwxPrintDialogTowxDialog},
|
||||||
@@ -4439,14 +4441,19 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxDialog","_wxDialog",0},
|
{ "_class_wxDialog","_wxDialog",0},
|
||||||
{ "_wxPageSetupDialog","_class_wxPageSetupDialog",0},
|
{ "_wxPageSetupDialog","_class_wxPageSetupDialog",0},
|
||||||
{ "_class_wxPrinter","_wxPrinter",0},
|
{ "_class_wxPrinter","_wxPrinter",0},
|
||||||
|
{ "_class_wxFileDataObject","_wxFileDataObject",0},
|
||||||
{ "_wxIdleEvent","_class_wxIdleEvent",0},
|
{ "_wxIdleEvent","_class_wxIdleEvent",0},
|
||||||
{ "_class_wxUpdateUIEvent","_wxUpdateUIEvent",0},
|
{ "_class_wxUpdateUIEvent","_wxUpdateUIEvent",0},
|
||||||
{ "_wxToolBar","_class_wxToolBar",0},
|
{ "_wxToolBar","_class_wxToolBar",0},
|
||||||
|
{ "_class_wxDataObject","_wxDataObject",0},
|
||||||
{ "_wxStaticLine","_class_wxStaticLine",0},
|
{ "_wxStaticLine","_class_wxStaticLine",0},
|
||||||
{ "_wxBrush","_class_wxBrush",0},
|
{ "_wxBrush","_class_wxBrush",0},
|
||||||
{ "_wxMiniFrame","_class_wxMiniFrame",0},
|
{ "_wxMiniFrame","_class_wxMiniFrame",0},
|
||||||
{ "_class_wxPyPrintout","_wxPyPrintout",0},
|
{ "_class_wxPyPrintout","_wxPyPrintout",0},
|
||||||
|
{ "_wxDataFormat","_class_wxDataFormat",0},
|
||||||
|
{ "_class_wxDataObjectSimple","_wxDataObjectSimple",0},
|
||||||
{ "_wxShowEvent","_class_wxShowEvent",0},
|
{ "_wxShowEvent","_class_wxShowEvent",0},
|
||||||
|
{ "_uint","_wxCoord",0},
|
||||||
{ "_uint","_wxPrintQuality",0},
|
{ "_uint","_wxPrintQuality",0},
|
||||||
{ "_uint","_size_t",0},
|
{ "_uint","_size_t",0},
|
||||||
{ "_uint","_unsigned_int",0},
|
{ "_uint","_unsigned_int",0},
|
||||||
@@ -4480,18 +4487,22 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxIconizeEvent","_wxIconizeEvent",0},
|
{ "_class_wxIconizeEvent","_wxIconizeEvent",0},
|
||||||
{ "_class_wxStaticBitmap","_wxStaticBitmap",0},
|
{ "_class_wxStaticBitmap","_wxStaticBitmap",0},
|
||||||
{ "_class_wxToolBar","_wxToolBar",0},
|
{ "_class_wxToolBar","_wxToolBar",0},
|
||||||
|
{ "_wxDropTarget","_class_wxDropTarget",0},
|
||||||
{ "_class_wxStaticLine","_wxStaticLine",0},
|
{ "_class_wxStaticLine","_wxStaticLine",0},
|
||||||
{ "_wxScrollEvent","_class_wxScrollEvent",0},
|
{ "_wxScrollEvent","_class_wxScrollEvent",0},
|
||||||
|
{ "_EBool","_wxCoord",0},
|
||||||
{ "_EBool","_wxPrintQuality",0},
|
{ "_EBool","_wxPrintQuality",0},
|
||||||
{ "_EBool","_signed_int",0},
|
{ "_EBool","_signed_int",0},
|
||||||
{ "_EBool","_int",0},
|
{ "_EBool","_int",0},
|
||||||
{ "_EBool","_wxWindowID",0},
|
{ "_EBool","_wxWindowID",0},
|
||||||
{ "_class_wxRegion","_wxRegion",0},
|
{ "_class_wxRegion","_wxRegion",0},
|
||||||
|
{ "_class_wxDataFormat","_wxDataFormat",0},
|
||||||
{ "_class_wxDropFilesEvent","_wxDropFilesEvent",0},
|
{ "_class_wxDropFilesEvent","_wxDropFilesEvent",0},
|
||||||
{ "_wxWindowDestroyEvent","_class_wxWindowDestroyEvent",0},
|
{ "_wxWindowDestroyEvent","_class_wxWindowDestroyEvent",0},
|
||||||
{ "_class_wxPreviewFrame","_wxPreviewFrame",0},
|
{ "_class_wxPreviewFrame","_wxPreviewFrame",0},
|
||||||
{ "_wxStaticText","_class_wxStaticText",0},
|
{ "_wxStaticText","_class_wxStaticText",0},
|
||||||
{ "_wxFont","_class_wxFont",0},
|
{ "_wxFont","_class_wxFont",0},
|
||||||
|
{ "_class_wxPyDropTarget","_wxPyDropTarget",0},
|
||||||
{ "_wxCloseEvent","_class_wxCloseEvent",0},
|
{ "_wxCloseEvent","_class_wxCloseEvent",0},
|
||||||
{ "_unsigned_long","_wxDash",0},
|
{ "_unsigned_long","_wxDash",0},
|
||||||
{ "_unsigned_long","_long",0},
|
{ "_unsigned_long","_long",0},
|
||||||
@@ -4516,12 +4527,14 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxComboBox","_class_wxComboBox",0},
|
{ "_wxComboBox","_class_wxComboBox",0},
|
||||||
{ "_wxRadioButton","_class_wxRadioButton",0},
|
{ "_wxRadioButton","_class_wxRadioButton",0},
|
||||||
{ "_class_wxMessageDialog","_wxMessageDialog",0},
|
{ "_class_wxMessageDialog","_wxMessageDialog",0},
|
||||||
|
{ "_signed_int","_wxCoord",0},
|
||||||
{ "_signed_int","_wxPrintQuality",0},
|
{ "_signed_int","_wxPrintQuality",0},
|
||||||
{ "_signed_int","_EBool",0},
|
{ "_signed_int","_EBool",0},
|
||||||
{ "_signed_int","_wxWindowID",0},
|
{ "_signed_int","_wxWindowID",0},
|
||||||
{ "_signed_int","_int",0},
|
{ "_signed_int","_int",0},
|
||||||
{ "_class_wxTextCtrl","_wxTextCtrl",0},
|
{ "_class_wxTextCtrl","_wxTextCtrl",0},
|
||||||
{ "_wxLayoutConstraints","_class_wxLayoutConstraints",0},
|
{ "_wxLayoutConstraints","_class_wxLayoutConstraints",0},
|
||||||
|
{ "_class_wxTextDataObject","_wxTextDataObject",0},
|
||||||
{ "_wxMenu","_class_wxMenu",0},
|
{ "_wxMenu","_class_wxMenu",0},
|
||||||
{ "_class_wxMoveEvent","_wxMoveEvent",0},
|
{ "_class_wxMoveEvent","_wxMoveEvent",0},
|
||||||
{ "_wxListBox","_class_wxListBox",0},
|
{ "_wxListBox","_class_wxListBox",0},
|
||||||
@@ -4530,6 +4543,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_WXTYPE","_signed_short",0},
|
{ "_WXTYPE","_signed_short",0},
|
||||||
{ "_WXTYPE","_unsigned_short",0},
|
{ "_WXTYPE","_unsigned_short",0},
|
||||||
{ "_wxFileDialog","_class_wxFileDialog",0},
|
{ "_wxFileDialog","_class_wxFileDialog",0},
|
||||||
|
{ "_class_wxDropTarget","_wxDropTarget",0},
|
||||||
{ "_class_wxBrush","_wxBrush",0},
|
{ "_class_wxBrush","_wxBrush",0},
|
||||||
{ "_unsigned_short","_WXTYPE",0},
|
{ "_unsigned_short","_WXTYPE",0},
|
||||||
{ "_unsigned_short","_short",0},
|
{ "_unsigned_short","_short",0},
|
||||||
@@ -4543,10 +4557,13 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxStaticText","_wxStaticText",0},
|
{ "_class_wxStaticText","_wxStaticText",0},
|
||||||
{ "_wxPrintDialogData","_class_wxPrintDialogData",0},
|
{ "_wxPrintDialogData","_class_wxPrintDialogData",0},
|
||||||
{ "_class_wxFont","_wxFont",0},
|
{ "_class_wxFont","_wxFont",0},
|
||||||
|
{ "_wxClipboard","_class_wxClipboard",0},
|
||||||
{ "_class_wxPyValidator","_wxPyValidator",0},
|
{ "_class_wxPyValidator","_wxPyValidator",0},
|
||||||
{ "_class_wxCloseEvent","_wxCloseEvent",0},
|
{ "_class_wxCloseEvent","_wxCloseEvent",0},
|
||||||
|
{ "_wxBusyInfo","_class_wxBusyInfo",0},
|
||||||
{ "_class_wxMenuEvent","_wxMenuEvent",0},
|
{ "_class_wxMenuEvent","_wxMenuEvent",0},
|
||||||
{ "_wxPaletteChangedEvent","_class_wxPaletteChangedEvent",0},
|
{ "_wxPaletteChangedEvent","_class_wxPaletteChangedEvent",0},
|
||||||
|
{ "_class_wxPyBitmapDataObject","_wxPyBitmapDataObject",0},
|
||||||
{ "_wxClientDC","_class_wxClientDC",0},
|
{ "_wxClientDC","_class_wxClientDC",0},
|
||||||
{ "_wxMouseEvent","_class_wxMouseEvent",0},
|
{ "_wxMouseEvent","_class_wxMouseEvent",0},
|
||||||
{ "_wxSingleChoiceDialog","_class_wxSingleChoiceDialog",0},
|
{ "_wxSingleChoiceDialog","_class_wxSingleChoiceDialog",0},
|
||||||
@@ -4556,6 +4573,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_signed_short","_WXTYPE",0},
|
{ "_signed_short","_WXTYPE",0},
|
||||||
{ "_signed_short","_short",0},
|
{ "_signed_short","_short",0},
|
||||||
{ "_wxMemoryDC","_class_wxMemoryDC",0},
|
{ "_wxMemoryDC","_class_wxMemoryDC",0},
|
||||||
|
{ "_wxPyTextDataObject","_class_wxPyTextDataObject",0},
|
||||||
{ "_class_wxPrintDialog","_wxPrintDialog",0},
|
{ "_class_wxPrintDialog","_wxPrintDialog",0},
|
||||||
{ "_wxPaintDC","_class_wxPaintDC",0},
|
{ "_wxPaintDC","_class_wxPaintDC",0},
|
||||||
{ "_class_wxWindowDC","_wxWindowDC",0},
|
{ "_class_wxWindowDC","_wxWindowDC",0},
|
||||||
@@ -4566,11 +4584,13 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxAcceleratorEntry","_wxAcceleratorEntry",0},
|
{ "_class_wxAcceleratorEntry","_wxAcceleratorEntry",0},
|
||||||
{ "_class_wxCursor","_wxCursor",0},
|
{ "_class_wxCursor","_wxCursor",0},
|
||||||
{ "_wxPostScriptDC","_class_wxPostScriptDC",0},
|
{ "_wxPostScriptDC","_class_wxPostScriptDC",0},
|
||||||
|
{ "_wxPyFileDropTarget","_class_wxPyFileDropTarget",0},
|
||||||
{ "_wxScrolledWindow","_class_wxScrolledWindow",0},
|
{ "_wxScrolledWindow","_class_wxScrolledWindow",0},
|
||||||
{ "_unsigned_char","_byte",0},
|
{ "_unsigned_char","_byte",0},
|
||||||
{ "_class_wxMenu","_wxMenu",0},
|
{ "_class_wxMenu","_wxMenu",0},
|
||||||
{ "_wxControl","_class_wxControl",0},
|
{ "_wxControl","_class_wxControl",0},
|
||||||
{ "_class_wxListBox","_wxListBox",0},
|
{ "_class_wxListBox","_wxListBox",0},
|
||||||
|
{ "_unsigned_int","_wxCoord",0},
|
||||||
{ "_unsigned_int","_wxPrintQuality",0},
|
{ "_unsigned_int","_wxPrintQuality",0},
|
||||||
{ "_unsigned_int","_size_t",0},
|
{ "_unsigned_int","_size_t",0},
|
||||||
{ "_unsigned_int","_uint",0},
|
{ "_unsigned_int","_uint",0},
|
||||||
@@ -4588,6 +4608,8 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_short","_unsigned_short",0},
|
{ "_short","_unsigned_short",0},
|
||||||
{ "_short","_signed_short",0},
|
{ "_short","_signed_short",0},
|
||||||
{ "_class_wxStaticBox","_wxStaticBox",0},
|
{ "_class_wxStaticBox","_wxStaticBox",0},
|
||||||
|
{ "_class_wxPyDataObjectSimple","_wxPyDataObjectSimple",0},
|
||||||
|
{ "_class_wxPyDropSource","_wxPyDropSource",0},
|
||||||
{ "_class_wxScrollEvent","_wxScrollEvent",0},
|
{ "_class_wxScrollEvent","_wxScrollEvent",0},
|
||||||
{ "_wxJoystickEvent","_class_wxJoystickEvent",0},
|
{ "_wxJoystickEvent","_class_wxJoystickEvent",0},
|
||||||
{ "_class_wxChoice","_wxChoice",0},
|
{ "_class_wxChoice","_wxChoice",0},
|
||||||
@@ -4598,6 +4620,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxFrame","_wxPreviewFrame",SwigwxPreviewFrameTowxFrame},
|
{ "_wxFrame","_wxPreviewFrame",SwigwxPreviewFrameTowxFrame},
|
||||||
{ "_wxFrame","_class_wxFrame",0},
|
{ "_wxFrame","_class_wxFrame",0},
|
||||||
{ "_class_wxPaletteChangedEvent","_wxPaletteChangedEvent",0},
|
{ "_class_wxPaletteChangedEvent","_wxPaletteChangedEvent",0},
|
||||||
|
{ "_wxWindowID","_wxCoord",0},
|
||||||
{ "_wxWindowID","_wxPrintQuality",0},
|
{ "_wxWindowID","_wxPrintQuality",0},
|
||||||
{ "_wxWindowID","_size_t",0},
|
{ "_wxWindowID","_size_t",0},
|
||||||
{ "_wxWindowID","_EBool",0},
|
{ "_wxWindowID","_EBool",0},
|
||||||
@@ -4606,6 +4629,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxWindowID","_signed_int",0},
|
{ "_wxWindowID","_signed_int",0},
|
||||||
{ "_wxWindowID","_unsigned_int",0},
|
{ "_wxWindowID","_unsigned_int",0},
|
||||||
{ "_class_wxScrollWinEvent","_wxScrollWinEvent",0},
|
{ "_class_wxScrollWinEvent","_wxScrollWinEvent",0},
|
||||||
|
{ "_int","_wxCoord",0},
|
||||||
{ "_int","_wxPrintQuality",0},
|
{ "_int","_wxPrintQuality",0},
|
||||||
{ "_int","_size_t",0},
|
{ "_int","_size_t",0},
|
||||||
{ "_int","_EBool",0},
|
{ "_int","_EBool",0},
|
||||||
@@ -4622,8 +4646,10 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxButton","_class_wxButton",0},
|
{ "_wxButton","_class_wxButton",0},
|
||||||
{ "_wxSize","_class_wxSize",0},
|
{ "_wxSize","_class_wxSize",0},
|
||||||
{ "_wxRegionIterator","_class_wxRegionIterator",0},
|
{ "_wxRegionIterator","_class_wxRegionIterator",0},
|
||||||
|
{ "_class_wxPyTextDataObject","_wxPyTextDataObject",0},
|
||||||
{ "_class_wxPaintDC","_wxPaintDC",0},
|
{ "_class_wxPaintDC","_wxPaintDC",0},
|
||||||
{ "_class_wxSysColourChangedEvent","_wxSysColourChangedEvent",0},
|
{ "_class_wxSysColourChangedEvent","_wxSysColourChangedEvent",0},
|
||||||
|
{ "_class_wxPyFileDropTarget","_wxPyFileDropTarget",0},
|
||||||
{ "_class_wxInitDialogEvent","_wxInitDialogEvent",0},
|
{ "_class_wxInitDialogEvent","_wxInitDialogEvent",0},
|
||||||
{ "_class_wxComboBox","_wxComboBox",0},
|
{ "_class_wxComboBox","_wxComboBox",0},
|
||||||
{ "_class_wxRadioButton","_wxRadioButton",0},
|
{ "_class_wxRadioButton","_wxRadioButton",0},
|
||||||
@@ -4638,22 +4664,35 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxPageSetupDialog","_wxPageSetupDialog",0},
|
{ "_class_wxPageSetupDialog","_wxPageSetupDialog",0},
|
||||||
{ "_wxPalette","_class_wxPalette",0},
|
{ "_wxPalette","_class_wxPalette",0},
|
||||||
{ "_class_wxIdleEvent","_wxIdleEvent",0},
|
{ "_class_wxIdleEvent","_wxIdleEvent",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","_wxPrintQuality",0},
|
||||||
{ "_wxEraseEvent","_class_wxEraseEvent",0},
|
{ "_wxEraseEvent","_class_wxEraseEvent",0},
|
||||||
|
{ "_wxDataObjectComposite","_class_wxDataObjectComposite",0},
|
||||||
{ "_class_wxJoystickEvent","_wxJoystickEvent",0},
|
{ "_class_wxJoystickEvent","_wxJoystickEvent",0},
|
||||||
{ "_class_wxMiniFrame","_wxMiniFrame",0},
|
{ "_class_wxMiniFrame","_wxMiniFrame",0},
|
||||||
{ "_wxFontDialog","_class_wxFontDialog",0},
|
{ "_wxFontDialog","_class_wxFontDialog",0},
|
||||||
{ "_wxRegion","_class_wxRegion",0},
|
{ "_wxRegion","_class_wxRegion",0},
|
||||||
{ "_wxPreviewFrame","_class_wxPreviewFrame",0},
|
{ "_wxPreviewFrame","_class_wxPreviewFrame",0},
|
||||||
{ "_class_wxShowEvent","_wxShowEvent",0},
|
{ "_class_wxShowEvent","_wxShowEvent",0},
|
||||||
|
{ "_wxPyDropTarget","_class_wxPyDropTarget",0},
|
||||||
{ "_wxActivateEvent","_class_wxActivateEvent",0},
|
{ "_wxActivateEvent","_class_wxActivateEvent",0},
|
||||||
{ "_wxGauge","_class_wxGauge",0},
|
{ "_wxGauge","_class_wxGauge",0},
|
||||||
{ "_class_wxCheckListBox","_wxCheckListBox",0},
|
{ "_class_wxCheckListBox","_wxCheckListBox",0},
|
||||||
|
{ "_class_wxBusyInfo","_wxBusyInfo",0},
|
||||||
{ "_class_wxCommandEvent","_wxCommandEvent",0},
|
{ "_class_wxCommandEvent","_wxCommandEvent",0},
|
||||||
{ "_class_wxClientDC","_wxClientDC",0},
|
{ "_class_wxClientDC","_wxClientDC",0},
|
||||||
{ "_class_wxSizeEvent","_wxSizeEvent",0},
|
{ "_class_wxSizeEvent","_wxSizeEvent",0},
|
||||||
|
{ "_wxCustomDataObject","_class_wxCustomDataObject",0},
|
||||||
{ "_class_wxSize","_wxSize",0},
|
{ "_class_wxSize","_wxSize",0},
|
||||||
{ "_class_wxBitmap","_wxBitmap",0},
|
{ "_class_wxBitmap","_wxBitmap",0},
|
||||||
{ "_class_wxMemoryDC","_wxMemoryDC",0},
|
{ "_class_wxMemoryDC","_wxMemoryDC",0},
|
||||||
|
{ "_wxPyTextDropTarget","_class_wxPyTextDropTarget",0},
|
||||||
{ "_wxMenuBar","_class_wxMenuBar",0},
|
{ "_wxMenuBar","_class_wxMenuBar",0},
|
||||||
{ "_wxDirDialog","_class_wxDirDialog",0},
|
{ "_wxDirDialog","_class_wxDirDialog",0},
|
||||||
{ "_wxEvtHandler","_class_wxPreviewFrame",SwigwxPreviewFrameTowxEvtHandler},
|
{ "_wxEvtHandler","_class_wxPreviewFrame",SwigwxPreviewFrameTowxEvtHandler},
|
||||||
@@ -4676,7 +4715,9 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxColourData","_class_wxColourData",0},
|
{ "_wxColourData","_class_wxColourData",0},
|
||||||
{ "_wxPageSetupDialogData","_class_wxPageSetupDialogData",0},
|
{ "_wxPageSetupDialogData","_class_wxPageSetupDialogData",0},
|
||||||
{ "_class_wxPalette","_wxPalette",0},
|
{ "_class_wxPalette","_wxPalette",0},
|
||||||
|
{ "_wxFileDataObject","_class_wxFileDataObject",0},
|
||||||
{ "_class_wxEraseEvent","_wxEraseEvent",0},
|
{ "_class_wxEraseEvent","_wxEraseEvent",0},
|
||||||
|
{ "_class_wxDataObjectComposite","_wxDataObjectComposite",0},
|
||||||
{ "_class_wxFontDialog","_wxFontDialog",0},
|
{ "_class_wxFontDialog","_wxFontDialog",0},
|
||||||
{ "_wxWindow","_class_wxPreviewFrame",SwigwxPreviewFrameTowxWindow},
|
{ "_wxWindow","_class_wxPreviewFrame",SwigwxPreviewFrameTowxWindow},
|
||||||
{ "_wxWindow","_wxPreviewFrame",SwigwxPreviewFrameTowxWindow},
|
{ "_wxWindow","_wxPreviewFrame",SwigwxPreviewFrameTowxWindow},
|
||||||
|
@@ -7,6 +7,8 @@ from windows import *
|
|||||||
|
|
||||||
from gdi import *
|
from gdi import *
|
||||||
|
|
||||||
|
from clip_dnd import *
|
||||||
|
|
||||||
from cmndlgs import *
|
from cmndlgs import *
|
||||||
|
|
||||||
from frames import *
|
from frames import *
|
||||||
|
@@ -1420,7 +1420,10 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxActivateEvent","_wxActivateEvent",0},
|
{ "_class_wxActivateEvent","_wxActivateEvent",0},
|
||||||
{ "_signed_long","_long",0},
|
{ "_signed_long","_long",0},
|
||||||
{ "_wxMenuEvent","_class_wxMenuEvent",0},
|
{ "_wxMenuEvent","_class_wxMenuEvent",0},
|
||||||
|
{ "_wxPyBitmapDataObject","_class_wxPyBitmapDataObject",0},
|
||||||
|
{ "_wxBitmapDataObject","_class_wxBitmapDataObject",0},
|
||||||
{ "_class_wxPyCommandEvent","_wxPyCommandEvent",0},
|
{ "_class_wxPyCommandEvent","_wxPyCommandEvent",0},
|
||||||
|
{ "_wxPrintQuality","_wxCoord",0},
|
||||||
{ "_wxPrintQuality","_int",0},
|
{ "_wxPrintQuality","_int",0},
|
||||||
{ "_wxPrintQuality","_signed_int",0},
|
{ "_wxPrintQuality","_signed_int",0},
|
||||||
{ "_wxPrintQuality","_unsigned_int",0},
|
{ "_wxPrintQuality","_unsigned_int",0},
|
||||||
@@ -1428,7 +1431,9 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPrintQuality","_uint",0},
|
{ "_wxPrintQuality","_uint",0},
|
||||||
{ "_wxPrintQuality","_EBool",0},
|
{ "_wxPrintQuality","_EBool",0},
|
||||||
{ "_wxPrintQuality","_size_t",0},
|
{ "_wxPrintQuality","_size_t",0},
|
||||||
|
{ "_class_wxCustomDataObject","_wxCustomDataObject",0},
|
||||||
{ "_class_wxRegionIterator","_wxRegionIterator",0},
|
{ "_class_wxRegionIterator","_wxRegionIterator",0},
|
||||||
|
{ "_class_wxPyTextDropTarget","_wxPyTextDropTarget",0},
|
||||||
{ "_class_wxMenuBar","_wxMenuBar",0},
|
{ "_class_wxMenuBar","_wxMenuBar",0},
|
||||||
{ "_class_wxStaticBoxSizer","_wxStaticBoxSizer",0},
|
{ "_class_wxStaticBoxSizer","_wxStaticBoxSizer",0},
|
||||||
{ "_class_wxEvtHandler","_wxEvtHandler",0},
|
{ "_class_wxEvtHandler","_wxEvtHandler",0},
|
||||||
@@ -1441,13 +1446,17 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPen","_class_wxPen",0},
|
{ "_wxPen","_class_wxPen",0},
|
||||||
{ "_wxUpdateUIEvent","_class_wxUpdateUIEvent",0},
|
{ "_wxUpdateUIEvent","_class_wxUpdateUIEvent",0},
|
||||||
{ "_byte","_unsigned_char",0},
|
{ "_byte","_unsigned_char",0},
|
||||||
|
{ "_wxDataObject","_class_wxDataObject",0},
|
||||||
{ "_wxStaticBox","_class_wxStaticBox",0},
|
{ "_wxStaticBox","_class_wxStaticBox",0},
|
||||||
|
{ "_wxPyDataObjectSimple","_class_wxPyDataObjectSimple",0},
|
||||||
|
{ "_wxPyDropSource","_class_wxPyDropSource",0},
|
||||||
{ "_wxChoice","_class_wxChoice",0},
|
{ "_wxChoice","_class_wxChoice",0},
|
||||||
{ "_wxSlider","_class_wxSlider",0},
|
{ "_wxSlider","_class_wxSlider",0},
|
||||||
{ "_long","_wxDash",0},
|
{ "_long","_wxDash",0},
|
||||||
{ "_long","_unsigned_long",0},
|
{ "_long","_unsigned_long",0},
|
||||||
{ "_long","_signed_long",0},
|
{ "_long","_signed_long",0},
|
||||||
{ "_wxImageList","_class_wxImageList",0},
|
{ "_wxImageList","_class_wxImageList",0},
|
||||||
|
{ "_wxDataObjectSimple","_class_wxDataObjectSimple",0},
|
||||||
{ "_wxDropFilesEvent","_class_wxDropFilesEvent",0},
|
{ "_wxDropFilesEvent","_class_wxDropFilesEvent",0},
|
||||||
{ "_wxBitmapButton","_class_wxBitmapButton",0},
|
{ "_wxBitmapButton","_class_wxBitmapButton",0},
|
||||||
{ "_class_wxSizer","_class_wxStaticBoxSizer",SwigwxStaticBoxSizerTowxSizer},
|
{ "_class_wxSizer","_class_wxStaticBoxSizer",SwigwxStaticBoxSizerTowxSizer},
|
||||||
@@ -1458,10 +1467,13 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxSizer","_wxPySizer",SwigwxPySizerTowxSizer},
|
{ "_class_wxSizer","_wxPySizer",SwigwxPySizerTowxSizer},
|
||||||
{ "_class_wxSizer","_wxSizer",0},
|
{ "_class_wxSizer","_wxSizer",0},
|
||||||
{ "_class_wxAcceleratorTable","_wxAcceleratorTable",0},
|
{ "_class_wxAcceleratorTable","_wxAcceleratorTable",0},
|
||||||
|
{ "_class_wxClipboard","_wxClipboard",0},
|
||||||
{ "_class_wxGauge","_wxGauge",0},
|
{ "_class_wxGauge","_wxGauge",0},
|
||||||
{ "_wxDC","_class_wxDC",0},
|
{ "_wxDC","_class_wxDC",0},
|
||||||
{ "_wxSizerItem","_class_wxSizerItem",0},
|
{ "_wxSizerItem","_class_wxSizerItem",0},
|
||||||
|
{ "_class_wxBitmapDataObject","_wxBitmapDataObject",0},
|
||||||
{ "_wxSpinEvent","_class_wxSpinEvent",0},
|
{ "_wxSpinEvent","_class_wxSpinEvent",0},
|
||||||
|
{ "_size_t","_wxCoord",0},
|
||||||
{ "_size_t","_wxPrintQuality",0},
|
{ "_size_t","_wxPrintQuality",0},
|
||||||
{ "_size_t","_unsigned_int",0},
|
{ "_size_t","_unsigned_int",0},
|
||||||
{ "_size_t","_int",0},
|
{ "_size_t","_int",0},
|
||||||
@@ -1481,14 +1493,20 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPyEvent","_class_wxPyEvent",0},
|
{ "_wxPyEvent","_class_wxPyEvent",0},
|
||||||
{ "_wxTextCtrl","_class_wxTextCtrl",0},
|
{ "_wxTextCtrl","_class_wxTextCtrl",0},
|
||||||
{ "_class_wxMask","_wxMask",0},
|
{ "_class_wxMask","_wxMask",0},
|
||||||
|
{ "_wxTextDataObject","_class_wxTextDataObject",0},
|
||||||
{ "_class_wxKeyEvent","_wxKeyEvent",0},
|
{ "_class_wxKeyEvent","_wxKeyEvent",0},
|
||||||
{ "_wxColour","_class_wxColour",0},
|
{ "_wxColour","_class_wxColour",0},
|
||||||
{ "_class_wxDialog","_wxDialog",0},
|
{ "_class_wxDialog","_wxDialog",0},
|
||||||
|
{ "_class_wxFileDataObject","_wxFileDataObject",0},
|
||||||
{ "_wxIdleEvent","_class_wxIdleEvent",0},
|
{ "_wxIdleEvent","_class_wxIdleEvent",0},
|
||||||
{ "_class_wxUpdateUIEvent","_wxUpdateUIEvent",0},
|
{ "_class_wxUpdateUIEvent","_wxUpdateUIEvent",0},
|
||||||
|
{ "_class_wxDataObject","_wxDataObject",0},
|
||||||
{ "_wxStaticLine","_class_wxStaticLine",0},
|
{ "_wxStaticLine","_class_wxStaticLine",0},
|
||||||
{ "_wxBrush","_class_wxBrush",0},
|
{ "_wxBrush","_class_wxBrush",0},
|
||||||
|
{ "_wxDataFormat","_class_wxDataFormat",0},
|
||||||
|
{ "_class_wxDataObjectSimple","_wxDataObjectSimple",0},
|
||||||
{ "_wxShowEvent","_class_wxShowEvent",0},
|
{ "_wxShowEvent","_class_wxShowEvent",0},
|
||||||
|
{ "_uint","_wxCoord",0},
|
||||||
{ "_uint","_wxPrintQuality",0},
|
{ "_uint","_wxPrintQuality",0},
|
||||||
{ "_uint","_size_t",0},
|
{ "_uint","_size_t",0},
|
||||||
{ "_uint","_unsigned_int",0},
|
{ "_uint","_unsigned_int",0},
|
||||||
@@ -1517,17 +1535,21 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxPyEvent","_wxPyEvent",0},
|
{ "_class_wxPyEvent","_wxPyEvent",0},
|
||||||
{ "_class_wxIconizeEvent","_wxIconizeEvent",0},
|
{ "_class_wxIconizeEvent","_wxIconizeEvent",0},
|
||||||
{ "_class_wxStaticBitmap","_wxStaticBitmap",0},
|
{ "_class_wxStaticBitmap","_wxStaticBitmap",0},
|
||||||
|
{ "_wxDropTarget","_class_wxDropTarget",0},
|
||||||
{ "_class_wxStaticLine","_wxStaticLine",0},
|
{ "_class_wxStaticLine","_wxStaticLine",0},
|
||||||
{ "_wxScrollEvent","_class_wxScrollEvent",0},
|
{ "_wxScrollEvent","_class_wxScrollEvent",0},
|
||||||
|
{ "_EBool","_wxCoord",0},
|
||||||
{ "_EBool","_wxPrintQuality",0},
|
{ "_EBool","_wxPrintQuality",0},
|
||||||
{ "_EBool","_signed_int",0},
|
{ "_EBool","_signed_int",0},
|
||||||
{ "_EBool","_int",0},
|
{ "_EBool","_int",0},
|
||||||
{ "_EBool","_wxWindowID",0},
|
{ "_EBool","_wxWindowID",0},
|
||||||
{ "_class_wxRegion","_wxRegion",0},
|
{ "_class_wxRegion","_wxRegion",0},
|
||||||
|
{ "_class_wxDataFormat","_wxDataFormat",0},
|
||||||
{ "_class_wxDropFilesEvent","_wxDropFilesEvent",0},
|
{ "_class_wxDropFilesEvent","_wxDropFilesEvent",0},
|
||||||
{ "_wxWindowDestroyEvent","_class_wxWindowDestroyEvent",0},
|
{ "_wxWindowDestroyEvent","_class_wxWindowDestroyEvent",0},
|
||||||
{ "_wxStaticText","_class_wxStaticText",0},
|
{ "_wxStaticText","_class_wxStaticText",0},
|
||||||
{ "_wxFont","_class_wxFont",0},
|
{ "_wxFont","_class_wxFont",0},
|
||||||
|
{ "_class_wxPyDropTarget","_wxPyDropTarget",0},
|
||||||
{ "_wxCloseEvent","_class_wxCloseEvent",0},
|
{ "_wxCloseEvent","_class_wxCloseEvent",0},
|
||||||
{ "_unsigned_long","_wxDash",0},
|
{ "_unsigned_long","_wxDash",0},
|
||||||
{ "_unsigned_long","_long",0},
|
{ "_unsigned_long","_long",0},
|
||||||
@@ -1545,12 +1567,14 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxCheckBox","_wxCheckBox",0},
|
{ "_class_wxCheckBox","_wxCheckBox",0},
|
||||||
{ "_wxComboBox","_class_wxComboBox",0},
|
{ "_wxComboBox","_class_wxComboBox",0},
|
||||||
{ "_wxRadioButton","_class_wxRadioButton",0},
|
{ "_wxRadioButton","_class_wxRadioButton",0},
|
||||||
|
{ "_signed_int","_wxCoord",0},
|
||||||
{ "_signed_int","_wxPrintQuality",0},
|
{ "_signed_int","_wxPrintQuality",0},
|
||||||
{ "_signed_int","_EBool",0},
|
{ "_signed_int","_EBool",0},
|
||||||
{ "_signed_int","_wxWindowID",0},
|
{ "_signed_int","_wxWindowID",0},
|
||||||
{ "_signed_int","_int",0},
|
{ "_signed_int","_int",0},
|
||||||
{ "_class_wxTextCtrl","_wxTextCtrl",0},
|
{ "_class_wxTextCtrl","_wxTextCtrl",0},
|
||||||
{ "_wxLayoutConstraints","_class_wxLayoutConstraints",0},
|
{ "_wxLayoutConstraints","_class_wxLayoutConstraints",0},
|
||||||
|
{ "_class_wxTextDataObject","_wxTextDataObject",0},
|
||||||
{ "_wxMenu","_class_wxMenu",0},
|
{ "_wxMenu","_class_wxMenu",0},
|
||||||
{ "_class_wxMoveEvent","_wxMoveEvent",0},
|
{ "_class_wxMoveEvent","_wxMoveEvent",0},
|
||||||
{ "_wxListBox","_class_wxListBox",0},
|
{ "_wxListBox","_class_wxListBox",0},
|
||||||
@@ -1558,16 +1582,20 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_WXTYPE","_short",0},
|
{ "_WXTYPE","_short",0},
|
||||||
{ "_WXTYPE","_signed_short",0},
|
{ "_WXTYPE","_signed_short",0},
|
||||||
{ "_WXTYPE","_unsigned_short",0},
|
{ "_WXTYPE","_unsigned_short",0},
|
||||||
|
{ "_class_wxDropTarget","_wxDropTarget",0},
|
||||||
{ "_class_wxBrush","_wxBrush",0},
|
{ "_class_wxBrush","_wxBrush",0},
|
||||||
{ "_unsigned_short","_WXTYPE",0},
|
{ "_unsigned_short","_WXTYPE",0},
|
||||||
{ "_unsigned_short","_short",0},
|
{ "_unsigned_short","_short",0},
|
||||||
{ "_class_wxWindow","_wxWindow",0},
|
{ "_class_wxWindow","_wxWindow",0},
|
||||||
{ "_class_wxStaticText","_wxStaticText",0},
|
{ "_class_wxStaticText","_wxStaticText",0},
|
||||||
{ "_class_wxFont","_wxFont",0},
|
{ "_class_wxFont","_wxFont",0},
|
||||||
|
{ "_wxClipboard","_class_wxClipboard",0},
|
||||||
{ "_class_wxPyValidator","_wxPyValidator",0},
|
{ "_class_wxPyValidator","_wxPyValidator",0},
|
||||||
{ "_class_wxCloseEvent","_wxCloseEvent",0},
|
{ "_class_wxCloseEvent","_wxCloseEvent",0},
|
||||||
|
{ "_wxBusyInfo","_class_wxBusyInfo",0},
|
||||||
{ "_class_wxMenuEvent","_wxMenuEvent",0},
|
{ "_class_wxMenuEvent","_wxMenuEvent",0},
|
||||||
{ "_wxPaletteChangedEvent","_class_wxPaletteChangedEvent",0},
|
{ "_wxPaletteChangedEvent","_class_wxPaletteChangedEvent",0},
|
||||||
|
{ "_class_wxPyBitmapDataObject","_wxPyBitmapDataObject",0},
|
||||||
{ "_wxClientDC","_class_wxClientDC",0},
|
{ "_wxClientDC","_class_wxClientDC",0},
|
||||||
{ "_wxMouseEvent","_class_wxMouseEvent",0},
|
{ "_wxMouseEvent","_class_wxMouseEvent",0},
|
||||||
{ "_class_wxPoint","_wxPoint",0},
|
{ "_class_wxPoint","_wxPoint",0},
|
||||||
@@ -1579,6 +1607,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_signed_short","_WXTYPE",0},
|
{ "_signed_short","_WXTYPE",0},
|
||||||
{ "_signed_short","_short",0},
|
{ "_signed_short","_short",0},
|
||||||
{ "_wxMemoryDC","_class_wxMemoryDC",0},
|
{ "_wxMemoryDC","_class_wxMemoryDC",0},
|
||||||
|
{ "_wxPyTextDataObject","_class_wxPyTextDataObject",0},
|
||||||
{ "_wxPaintDC","_class_wxPaintDC",0},
|
{ "_wxPaintDC","_class_wxPaintDC",0},
|
||||||
{ "_class_wxWindowDC","_wxWindowDC",0},
|
{ "_class_wxWindowDC","_wxWindowDC",0},
|
||||||
{ "_class_wxFocusEvent","_wxFocusEvent",0},
|
{ "_class_wxFocusEvent","_wxFocusEvent",0},
|
||||||
@@ -1586,11 +1615,13 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxAcceleratorEntry","_wxAcceleratorEntry",0},
|
{ "_class_wxAcceleratorEntry","_wxAcceleratorEntry",0},
|
||||||
{ "_class_wxCursor","_wxCursor",0},
|
{ "_class_wxCursor","_wxCursor",0},
|
||||||
{ "_wxPostScriptDC","_class_wxPostScriptDC",0},
|
{ "_wxPostScriptDC","_class_wxPostScriptDC",0},
|
||||||
|
{ "_wxPyFileDropTarget","_class_wxPyFileDropTarget",0},
|
||||||
{ "_wxScrolledWindow","_class_wxScrolledWindow",0},
|
{ "_wxScrolledWindow","_class_wxScrolledWindow",0},
|
||||||
{ "_unsigned_char","_byte",0},
|
{ "_unsigned_char","_byte",0},
|
||||||
{ "_class_wxMenu","_wxMenu",0},
|
{ "_class_wxMenu","_wxMenu",0},
|
||||||
{ "_wxControl","_class_wxControl",0},
|
{ "_wxControl","_class_wxControl",0},
|
||||||
{ "_class_wxListBox","_wxListBox",0},
|
{ "_class_wxListBox","_wxListBox",0},
|
||||||
|
{ "_unsigned_int","_wxCoord",0},
|
||||||
{ "_unsigned_int","_wxPrintQuality",0},
|
{ "_unsigned_int","_wxPrintQuality",0},
|
||||||
{ "_unsigned_int","_size_t",0},
|
{ "_unsigned_int","_size_t",0},
|
||||||
{ "_unsigned_int","_uint",0},
|
{ "_unsigned_int","_uint",0},
|
||||||
@@ -1603,6 +1634,8 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_short","_unsigned_short",0},
|
{ "_short","_unsigned_short",0},
|
||||||
{ "_short","_signed_short",0},
|
{ "_short","_signed_short",0},
|
||||||
{ "_class_wxStaticBox","_wxStaticBox",0},
|
{ "_class_wxStaticBox","_wxStaticBox",0},
|
||||||
|
{ "_class_wxPyDataObjectSimple","_wxPyDataObjectSimple",0},
|
||||||
|
{ "_class_wxPyDropSource","_wxPyDropSource",0},
|
||||||
{ "_class_wxScrollEvent","_wxScrollEvent",0},
|
{ "_class_wxScrollEvent","_wxScrollEvent",0},
|
||||||
{ "_wxJoystickEvent","_class_wxJoystickEvent",0},
|
{ "_wxJoystickEvent","_class_wxJoystickEvent",0},
|
||||||
{ "_class_wxChoice","_wxChoice",0},
|
{ "_class_wxChoice","_wxChoice",0},
|
||||||
@@ -1610,6 +1643,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxImageList","_wxImageList",0},
|
{ "_class_wxImageList","_wxImageList",0},
|
||||||
{ "_class_wxBitmapButton","_wxBitmapButton",0},
|
{ "_class_wxBitmapButton","_wxBitmapButton",0},
|
||||||
{ "_class_wxPaletteChangedEvent","_wxPaletteChangedEvent",0},
|
{ "_class_wxPaletteChangedEvent","_wxPaletteChangedEvent",0},
|
||||||
|
{ "_wxWindowID","_wxCoord",0},
|
||||||
{ "_wxWindowID","_wxPrintQuality",0},
|
{ "_wxWindowID","_wxPrintQuality",0},
|
||||||
{ "_wxWindowID","_size_t",0},
|
{ "_wxWindowID","_size_t",0},
|
||||||
{ "_wxWindowID","_EBool",0},
|
{ "_wxWindowID","_EBool",0},
|
||||||
@@ -1619,6 +1653,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxWindowID","_unsigned_int",0},
|
{ "_wxWindowID","_unsigned_int",0},
|
||||||
{ "_class_wxScrollWinEvent","_wxScrollWinEvent",0},
|
{ "_class_wxScrollWinEvent","_wxScrollWinEvent",0},
|
||||||
{ "_class_wxSizerItem","_wxSizerItem",0},
|
{ "_class_wxSizerItem","_wxSizerItem",0},
|
||||||
|
{ "_int","_wxCoord",0},
|
||||||
{ "_int","_wxPrintQuality",0},
|
{ "_int","_wxPrintQuality",0},
|
||||||
{ "_int","_size_t",0},
|
{ "_int","_size_t",0},
|
||||||
{ "_int","_EBool",0},
|
{ "_int","_EBool",0},
|
||||||
@@ -1634,9 +1669,11 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxButton","_class_wxButton",0},
|
{ "_wxButton","_class_wxButton",0},
|
||||||
{ "_wxSize","_class_wxSize",0},
|
{ "_wxSize","_class_wxSize",0},
|
||||||
{ "_wxRegionIterator","_class_wxRegionIterator",0},
|
{ "_wxRegionIterator","_class_wxRegionIterator",0},
|
||||||
|
{ "_class_wxPyTextDataObject","_wxPyTextDataObject",0},
|
||||||
{ "_wxStaticBoxSizer","_class_wxStaticBoxSizer",0},
|
{ "_wxStaticBoxSizer","_class_wxStaticBoxSizer",0},
|
||||||
{ "_class_wxPaintDC","_wxPaintDC",0},
|
{ "_class_wxPaintDC","_wxPaintDC",0},
|
||||||
{ "_class_wxSysColourChangedEvent","_wxSysColourChangedEvent",0},
|
{ "_class_wxSysColourChangedEvent","_wxSysColourChangedEvent",0},
|
||||||
|
{ "_class_wxPyFileDropTarget","_wxPyFileDropTarget",0},
|
||||||
{ "_class_wxInitDialogEvent","_wxInitDialogEvent",0},
|
{ "_class_wxInitDialogEvent","_wxInitDialogEvent",0},
|
||||||
{ "_class_wxComboBox","_wxComboBox",0},
|
{ "_class_wxComboBox","_wxComboBox",0},
|
||||||
{ "_class_wxRadioButton","_wxRadioButton",0},
|
{ "_class_wxRadioButton","_wxRadioButton",0},
|
||||||
@@ -1650,7 +1687,16 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxScreenDC","_wxScreenDC",0},
|
{ "_class_wxScreenDC","_wxScreenDC",0},
|
||||||
{ "_wxPalette","_class_wxPalette",0},
|
{ "_wxPalette","_class_wxPalette",0},
|
||||||
{ "_class_wxIdleEvent","_wxIdleEvent",0},
|
{ "_class_wxIdleEvent","_wxIdleEvent",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","_wxPrintQuality",0},
|
||||||
{ "_wxEraseEvent","_class_wxEraseEvent",0},
|
{ "_wxEraseEvent","_class_wxEraseEvent",0},
|
||||||
|
{ "_wxDataObjectComposite","_class_wxDataObjectComposite",0},
|
||||||
{ "_class_wxJoystickEvent","_wxJoystickEvent",0},
|
{ "_class_wxJoystickEvent","_wxJoystickEvent",0},
|
||||||
{ "_wxRegion","_class_wxRegion",0},
|
{ "_wxRegion","_class_wxRegion",0},
|
||||||
{ "_wxSizer","_class_wxStaticBoxSizer",SwigwxStaticBoxSizerTowxSizer},
|
{ "_wxSizer","_class_wxStaticBoxSizer",SwigwxStaticBoxSizerTowxSizer},
|
||||||
@@ -1661,15 +1707,19 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxSizer","_wxPySizer",SwigwxPySizerTowxSizer},
|
{ "_wxSizer","_wxPySizer",SwigwxPySizerTowxSizer},
|
||||||
{ "_wxSizer","_class_wxSizer",0},
|
{ "_wxSizer","_class_wxSizer",0},
|
||||||
{ "_class_wxShowEvent","_wxShowEvent",0},
|
{ "_class_wxShowEvent","_wxShowEvent",0},
|
||||||
|
{ "_wxPyDropTarget","_class_wxPyDropTarget",0},
|
||||||
{ "_wxActivateEvent","_class_wxActivateEvent",0},
|
{ "_wxActivateEvent","_class_wxActivateEvent",0},
|
||||||
{ "_wxGauge","_class_wxGauge",0},
|
{ "_wxGauge","_class_wxGauge",0},
|
||||||
{ "_class_wxCheckListBox","_wxCheckListBox",0},
|
{ "_class_wxCheckListBox","_wxCheckListBox",0},
|
||||||
|
{ "_class_wxBusyInfo","_wxBusyInfo",0},
|
||||||
{ "_class_wxCommandEvent","_wxCommandEvent",0},
|
{ "_class_wxCommandEvent","_wxCommandEvent",0},
|
||||||
{ "_class_wxClientDC","_wxClientDC",0},
|
{ "_class_wxClientDC","_wxClientDC",0},
|
||||||
{ "_class_wxSizeEvent","_wxSizeEvent",0},
|
{ "_class_wxSizeEvent","_wxSizeEvent",0},
|
||||||
|
{ "_wxCustomDataObject","_class_wxCustomDataObject",0},
|
||||||
{ "_class_wxSize","_wxSize",0},
|
{ "_class_wxSize","_wxSize",0},
|
||||||
{ "_class_wxBitmap","_wxBitmap",0},
|
{ "_class_wxBitmap","_wxBitmap",0},
|
||||||
{ "_class_wxMemoryDC","_wxMemoryDC",0},
|
{ "_class_wxMemoryDC","_wxMemoryDC",0},
|
||||||
|
{ "_wxPyTextDropTarget","_class_wxPyTextDropTarget",0},
|
||||||
{ "_wxMenuBar","_class_wxMenuBar",0},
|
{ "_wxMenuBar","_class_wxMenuBar",0},
|
||||||
{ "_wxEvtHandler","_class_wxEvtHandler",0},
|
{ "_wxEvtHandler","_class_wxEvtHandler",0},
|
||||||
{ "_wxMenuItem","_class_wxMenuItem",0},
|
{ "_wxMenuItem","_class_wxMenuItem",0},
|
||||||
@@ -1680,7 +1730,9 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxKeyEvent","_class_wxKeyEvent",0},
|
{ "_wxKeyEvent","_class_wxKeyEvent",0},
|
||||||
{ "_wxMoveEvent","_class_wxMoveEvent",0},
|
{ "_wxMoveEvent","_class_wxMoveEvent",0},
|
||||||
{ "_class_wxPalette","_wxPalette",0},
|
{ "_class_wxPalette","_wxPalette",0},
|
||||||
|
{ "_wxFileDataObject","_class_wxFileDataObject",0},
|
||||||
{ "_class_wxEraseEvent","_wxEraseEvent",0},
|
{ "_class_wxEraseEvent","_wxEraseEvent",0},
|
||||||
|
{ "_class_wxDataObjectComposite","_wxDataObjectComposite",0},
|
||||||
{ "_wxWindow","_class_wxWindow",0},
|
{ "_wxWindow","_class_wxWindow",0},
|
||||||
{ "_class_wxWindowDestroyEvent","_wxWindowDestroyEvent",0},
|
{ "_class_wxWindowDestroyEvent","_wxWindowDestroyEvent",0},
|
||||||
{0,0,0}};
|
{0,0,0}};
|
||||||
|
@@ -7,6 +7,8 @@ from windows import *
|
|||||||
|
|
||||||
from gdi import *
|
from gdi import *
|
||||||
|
|
||||||
|
from clip_dnd import *
|
||||||
|
|
||||||
from controls import *
|
from controls import *
|
||||||
|
|
||||||
from events import *
|
from events import *
|
||||||
|
@@ -2093,7 +2093,10 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxActivateEvent","_wxActivateEvent",0},
|
{ "_class_wxActivateEvent","_wxActivateEvent",0},
|
||||||
{ "_signed_long","_long",0},
|
{ "_signed_long","_long",0},
|
||||||
{ "_wxMenuEvent","_class_wxMenuEvent",0},
|
{ "_wxMenuEvent","_class_wxMenuEvent",0},
|
||||||
|
{ "_wxPyBitmapDataObject","_class_wxPyBitmapDataObject",0},
|
||||||
|
{ "_wxBitmapDataObject","_class_wxBitmapDataObject",0},
|
||||||
{ "_class_wxPyCommandEvent","_wxPyCommandEvent",0},
|
{ "_class_wxPyCommandEvent","_wxPyCommandEvent",0},
|
||||||
|
{ "_wxPrintQuality","_wxCoord",0},
|
||||||
{ "_wxPrintQuality","_int",0},
|
{ "_wxPrintQuality","_int",0},
|
||||||
{ "_wxPrintQuality","_signed_int",0},
|
{ "_wxPrintQuality","_signed_int",0},
|
||||||
{ "_wxPrintQuality","_unsigned_int",0},
|
{ "_wxPrintQuality","_unsigned_int",0},
|
||||||
@@ -2101,7 +2104,9 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPrintQuality","_uint",0},
|
{ "_wxPrintQuality","_uint",0},
|
||||||
{ "_wxPrintQuality","_EBool",0},
|
{ "_wxPrintQuality","_EBool",0},
|
||||||
{ "_wxPrintQuality","_size_t",0},
|
{ "_wxPrintQuality","_size_t",0},
|
||||||
|
{ "_class_wxCustomDataObject","_wxCustomDataObject",0},
|
||||||
{ "_class_wxRegionIterator","_wxRegionIterator",0},
|
{ "_class_wxRegionIterator","_wxRegionIterator",0},
|
||||||
|
{ "_class_wxPyTextDropTarget","_wxPyTextDropTarget",0},
|
||||||
{ "_class_wxMenuBar","_wxMenuBar",0},
|
{ "_class_wxMenuBar","_wxMenuBar",0},
|
||||||
{ "_class_wxEvtHandler","_class_wxToolBar",SwigwxToolBarTowxEvtHandler},
|
{ "_class_wxEvtHandler","_class_wxToolBar",SwigwxToolBarTowxEvtHandler},
|
||||||
{ "_class_wxEvtHandler","_wxToolBar",SwigwxToolBarTowxEvtHandler},
|
{ "_class_wxEvtHandler","_wxToolBar",SwigwxToolBarTowxEvtHandler},
|
||||||
@@ -2116,19 +2121,26 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPen","_class_wxPen",0},
|
{ "_wxPen","_class_wxPen",0},
|
||||||
{ "_wxUpdateUIEvent","_class_wxUpdateUIEvent",0},
|
{ "_wxUpdateUIEvent","_class_wxUpdateUIEvent",0},
|
||||||
{ "_byte","_unsigned_char",0},
|
{ "_byte","_unsigned_char",0},
|
||||||
|
{ "_wxDataObject","_class_wxDataObject",0},
|
||||||
{ "_wxStaticBox","_class_wxStaticBox",0},
|
{ "_wxStaticBox","_class_wxStaticBox",0},
|
||||||
|
{ "_wxPyDataObjectSimple","_class_wxPyDataObjectSimple",0},
|
||||||
|
{ "_wxPyDropSource","_class_wxPyDropSource",0},
|
||||||
{ "_wxChoice","_class_wxChoice",0},
|
{ "_wxChoice","_class_wxChoice",0},
|
||||||
{ "_wxSlider","_class_wxSlider",0},
|
{ "_wxSlider","_class_wxSlider",0},
|
||||||
{ "_long","_wxDash",0},
|
{ "_long","_wxDash",0},
|
||||||
{ "_long","_unsigned_long",0},
|
{ "_long","_unsigned_long",0},
|
||||||
{ "_long","_signed_long",0},
|
{ "_long","_signed_long",0},
|
||||||
{ "_wxImageList","_class_wxImageList",0},
|
{ "_wxImageList","_class_wxImageList",0},
|
||||||
|
{ "_wxDataObjectSimple","_class_wxDataObjectSimple",0},
|
||||||
{ "_wxDropFilesEvent","_class_wxDropFilesEvent",0},
|
{ "_wxDropFilesEvent","_class_wxDropFilesEvent",0},
|
||||||
{ "_wxBitmapButton","_class_wxBitmapButton",0},
|
{ "_wxBitmapButton","_class_wxBitmapButton",0},
|
||||||
{ "_class_wxAcceleratorTable","_wxAcceleratorTable",0},
|
{ "_class_wxAcceleratorTable","_wxAcceleratorTable",0},
|
||||||
|
{ "_class_wxClipboard","_wxClipboard",0},
|
||||||
{ "_class_wxGauge","_wxGauge",0},
|
{ "_class_wxGauge","_wxGauge",0},
|
||||||
{ "_wxDC","_class_wxDC",0},
|
{ "_wxDC","_class_wxDC",0},
|
||||||
|
{ "_class_wxBitmapDataObject","_wxBitmapDataObject",0},
|
||||||
{ "_wxSpinEvent","_class_wxSpinEvent",0},
|
{ "_wxSpinEvent","_class_wxSpinEvent",0},
|
||||||
|
{ "_size_t","_wxCoord",0},
|
||||||
{ "_size_t","_wxPrintQuality",0},
|
{ "_size_t","_wxPrintQuality",0},
|
||||||
{ "_size_t","_unsigned_int",0},
|
{ "_size_t","_unsigned_int",0},
|
||||||
{ "_size_t","_int",0},
|
{ "_size_t","_int",0},
|
||||||
@@ -2148,15 +2160,21 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPyEvent","_class_wxPyEvent",0},
|
{ "_wxPyEvent","_class_wxPyEvent",0},
|
||||||
{ "_wxTextCtrl","_class_wxTextCtrl",0},
|
{ "_wxTextCtrl","_class_wxTextCtrl",0},
|
||||||
{ "_class_wxMask","_wxMask",0},
|
{ "_class_wxMask","_wxMask",0},
|
||||||
|
{ "_wxTextDataObject","_class_wxTextDataObject",0},
|
||||||
{ "_class_wxKeyEvent","_wxKeyEvent",0},
|
{ "_class_wxKeyEvent","_wxKeyEvent",0},
|
||||||
{ "_wxColour","_class_wxColour",0},
|
{ "_wxColour","_class_wxColour",0},
|
||||||
{ "_class_wxDialog","_wxDialog",0},
|
{ "_class_wxDialog","_wxDialog",0},
|
||||||
|
{ "_class_wxFileDataObject","_wxFileDataObject",0},
|
||||||
{ "_wxIdleEvent","_class_wxIdleEvent",0},
|
{ "_wxIdleEvent","_class_wxIdleEvent",0},
|
||||||
{ "_class_wxUpdateUIEvent","_wxUpdateUIEvent",0},
|
{ "_class_wxUpdateUIEvent","_wxUpdateUIEvent",0},
|
||||||
{ "_wxToolBar","_class_wxToolBar",0},
|
{ "_wxToolBar","_class_wxToolBar",0},
|
||||||
|
{ "_class_wxDataObject","_wxDataObject",0},
|
||||||
{ "_wxStaticLine","_class_wxStaticLine",0},
|
{ "_wxStaticLine","_class_wxStaticLine",0},
|
||||||
{ "_wxBrush","_class_wxBrush",0},
|
{ "_wxBrush","_class_wxBrush",0},
|
||||||
|
{ "_wxDataFormat","_class_wxDataFormat",0},
|
||||||
|
{ "_class_wxDataObjectSimple","_wxDataObjectSimple",0},
|
||||||
{ "_wxShowEvent","_class_wxShowEvent",0},
|
{ "_wxShowEvent","_class_wxShowEvent",0},
|
||||||
|
{ "_uint","_wxCoord",0},
|
||||||
{ "_uint","_wxPrintQuality",0},
|
{ "_uint","_wxPrintQuality",0},
|
||||||
{ "_uint","_size_t",0},
|
{ "_uint","_size_t",0},
|
||||||
{ "_uint","_unsigned_int",0},
|
{ "_uint","_unsigned_int",0},
|
||||||
@@ -2184,17 +2202,21 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxIconizeEvent","_wxIconizeEvent",0},
|
{ "_class_wxIconizeEvent","_wxIconizeEvent",0},
|
||||||
{ "_class_wxStaticBitmap","_wxStaticBitmap",0},
|
{ "_class_wxStaticBitmap","_wxStaticBitmap",0},
|
||||||
{ "_class_wxToolBar","_wxToolBar",0},
|
{ "_class_wxToolBar","_wxToolBar",0},
|
||||||
|
{ "_wxDropTarget","_class_wxDropTarget",0},
|
||||||
{ "_class_wxStaticLine","_wxStaticLine",0},
|
{ "_class_wxStaticLine","_wxStaticLine",0},
|
||||||
{ "_wxScrollEvent","_class_wxScrollEvent",0},
|
{ "_wxScrollEvent","_class_wxScrollEvent",0},
|
||||||
|
{ "_EBool","_wxCoord",0},
|
||||||
{ "_EBool","_wxPrintQuality",0},
|
{ "_EBool","_wxPrintQuality",0},
|
||||||
{ "_EBool","_signed_int",0},
|
{ "_EBool","_signed_int",0},
|
||||||
{ "_EBool","_int",0},
|
{ "_EBool","_int",0},
|
||||||
{ "_EBool","_wxWindowID",0},
|
{ "_EBool","_wxWindowID",0},
|
||||||
{ "_class_wxRegion","_wxRegion",0},
|
{ "_class_wxRegion","_wxRegion",0},
|
||||||
|
{ "_class_wxDataFormat","_wxDataFormat",0},
|
||||||
{ "_class_wxDropFilesEvent","_wxDropFilesEvent",0},
|
{ "_class_wxDropFilesEvent","_wxDropFilesEvent",0},
|
||||||
{ "_wxWindowDestroyEvent","_class_wxWindowDestroyEvent",0},
|
{ "_wxWindowDestroyEvent","_class_wxWindowDestroyEvent",0},
|
||||||
{ "_wxStaticText","_class_wxStaticText",0},
|
{ "_wxStaticText","_class_wxStaticText",0},
|
||||||
{ "_wxFont","_class_wxFont",0},
|
{ "_wxFont","_class_wxFont",0},
|
||||||
|
{ "_class_wxPyDropTarget","_wxPyDropTarget",0},
|
||||||
{ "_wxCloseEvent","_class_wxCloseEvent",0},
|
{ "_wxCloseEvent","_class_wxCloseEvent",0},
|
||||||
{ "_unsigned_long","_wxDash",0},
|
{ "_unsigned_long","_wxDash",0},
|
||||||
{ "_unsigned_long","_long",0},
|
{ "_unsigned_long","_long",0},
|
||||||
@@ -2212,12 +2234,14 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxCheckBox","_wxCheckBox",0},
|
{ "_class_wxCheckBox","_wxCheckBox",0},
|
||||||
{ "_wxComboBox","_class_wxComboBox",0},
|
{ "_wxComboBox","_class_wxComboBox",0},
|
||||||
{ "_wxRadioButton","_class_wxRadioButton",0},
|
{ "_wxRadioButton","_class_wxRadioButton",0},
|
||||||
|
{ "_signed_int","_wxCoord",0},
|
||||||
{ "_signed_int","_wxPrintQuality",0},
|
{ "_signed_int","_wxPrintQuality",0},
|
||||||
{ "_signed_int","_EBool",0},
|
{ "_signed_int","_EBool",0},
|
||||||
{ "_signed_int","_wxWindowID",0},
|
{ "_signed_int","_wxWindowID",0},
|
||||||
{ "_signed_int","_int",0},
|
{ "_signed_int","_int",0},
|
||||||
{ "_class_wxTextCtrl","_wxTextCtrl",0},
|
{ "_class_wxTextCtrl","_wxTextCtrl",0},
|
||||||
{ "_wxLayoutConstraints","_class_wxLayoutConstraints",0},
|
{ "_wxLayoutConstraints","_class_wxLayoutConstraints",0},
|
||||||
|
{ "_class_wxTextDataObject","_wxTextDataObject",0},
|
||||||
{ "_wxMenu","_class_wxMenu",0},
|
{ "_wxMenu","_class_wxMenu",0},
|
||||||
{ "_class_wxMoveEvent","_wxMoveEvent",0},
|
{ "_class_wxMoveEvent","_wxMoveEvent",0},
|
||||||
{ "_wxListBox","_class_wxListBox",0},
|
{ "_wxListBox","_class_wxListBox",0},
|
||||||
@@ -2225,6 +2249,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_WXTYPE","_short",0},
|
{ "_WXTYPE","_short",0},
|
||||||
{ "_WXTYPE","_signed_short",0},
|
{ "_WXTYPE","_signed_short",0},
|
||||||
{ "_WXTYPE","_unsigned_short",0},
|
{ "_WXTYPE","_unsigned_short",0},
|
||||||
|
{ "_class_wxDropTarget","_wxDropTarget",0},
|
||||||
{ "_class_wxBrush","_wxBrush",0},
|
{ "_class_wxBrush","_wxBrush",0},
|
||||||
{ "_unsigned_short","_WXTYPE",0},
|
{ "_unsigned_short","_WXTYPE",0},
|
||||||
{ "_unsigned_short","_short",0},
|
{ "_unsigned_short","_short",0},
|
||||||
@@ -2235,10 +2260,13 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxWindow","_wxWindow",0},
|
{ "_class_wxWindow","_wxWindow",0},
|
||||||
{ "_class_wxStaticText","_wxStaticText",0},
|
{ "_class_wxStaticText","_wxStaticText",0},
|
||||||
{ "_class_wxFont","_wxFont",0},
|
{ "_class_wxFont","_wxFont",0},
|
||||||
|
{ "_wxClipboard","_class_wxClipboard",0},
|
||||||
{ "_class_wxPyValidator","_wxPyValidator",0},
|
{ "_class_wxPyValidator","_wxPyValidator",0},
|
||||||
{ "_class_wxCloseEvent","_wxCloseEvent",0},
|
{ "_class_wxCloseEvent","_wxCloseEvent",0},
|
||||||
|
{ "_wxBusyInfo","_class_wxBusyInfo",0},
|
||||||
{ "_class_wxMenuEvent","_wxMenuEvent",0},
|
{ "_class_wxMenuEvent","_wxMenuEvent",0},
|
||||||
{ "_wxPaletteChangedEvent","_class_wxPaletteChangedEvent",0},
|
{ "_wxPaletteChangedEvent","_class_wxPaletteChangedEvent",0},
|
||||||
|
{ "_class_wxPyBitmapDataObject","_wxPyBitmapDataObject",0},
|
||||||
{ "_wxClientDC","_class_wxClientDC",0},
|
{ "_wxClientDC","_class_wxClientDC",0},
|
||||||
{ "_wxMouseEvent","_class_wxMouseEvent",0},
|
{ "_wxMouseEvent","_class_wxMouseEvent",0},
|
||||||
{ "_class_wxPoint","_wxPoint",0},
|
{ "_class_wxPoint","_wxPoint",0},
|
||||||
@@ -2247,6 +2275,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_signed_short","_WXTYPE",0},
|
{ "_signed_short","_WXTYPE",0},
|
||||||
{ "_signed_short","_short",0},
|
{ "_signed_short","_short",0},
|
||||||
{ "_wxMemoryDC","_class_wxMemoryDC",0},
|
{ "_wxMemoryDC","_class_wxMemoryDC",0},
|
||||||
|
{ "_wxPyTextDataObject","_class_wxPyTextDataObject",0},
|
||||||
{ "_wxPaintDC","_class_wxPaintDC",0},
|
{ "_wxPaintDC","_class_wxPaintDC",0},
|
||||||
{ "_class_wxWindowDC","_wxWindowDC",0},
|
{ "_class_wxWindowDC","_wxWindowDC",0},
|
||||||
{ "_class_wxFocusEvent","_wxFocusEvent",0},
|
{ "_class_wxFocusEvent","_wxFocusEvent",0},
|
||||||
@@ -2256,6 +2285,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxAcceleratorEntry","_wxAcceleratorEntry",0},
|
{ "_class_wxAcceleratorEntry","_wxAcceleratorEntry",0},
|
||||||
{ "_class_wxCursor","_wxCursor",0},
|
{ "_class_wxCursor","_wxCursor",0},
|
||||||
{ "_wxPostScriptDC","_class_wxPostScriptDC",0},
|
{ "_wxPostScriptDC","_class_wxPostScriptDC",0},
|
||||||
|
{ "_wxPyFileDropTarget","_class_wxPyFileDropTarget",0},
|
||||||
{ "_wxScrolledWindow","_class_wxScrolledWindow",0},
|
{ "_wxScrolledWindow","_class_wxScrolledWindow",0},
|
||||||
{ "_unsigned_char","_byte",0},
|
{ "_unsigned_char","_byte",0},
|
||||||
{ "_class_wxMenu","_wxMenu",0},
|
{ "_class_wxMenu","_wxMenu",0},
|
||||||
@@ -2263,6 +2293,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxControl","_wxToolBar",SwigwxToolBarTowxControl},
|
{ "_wxControl","_wxToolBar",SwigwxToolBarTowxControl},
|
||||||
{ "_wxControl","_class_wxControl",0},
|
{ "_wxControl","_class_wxControl",0},
|
||||||
{ "_class_wxListBox","_wxListBox",0},
|
{ "_class_wxListBox","_wxListBox",0},
|
||||||
|
{ "_unsigned_int","_wxCoord",0},
|
||||||
{ "_unsigned_int","_wxPrintQuality",0},
|
{ "_unsigned_int","_wxPrintQuality",0},
|
||||||
{ "_unsigned_int","_size_t",0},
|
{ "_unsigned_int","_size_t",0},
|
||||||
{ "_unsigned_int","_uint",0},
|
{ "_unsigned_int","_uint",0},
|
||||||
@@ -2275,6 +2306,8 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_short","_unsigned_short",0},
|
{ "_short","_unsigned_short",0},
|
||||||
{ "_short","_signed_short",0},
|
{ "_short","_signed_short",0},
|
||||||
{ "_class_wxStaticBox","_wxStaticBox",0},
|
{ "_class_wxStaticBox","_wxStaticBox",0},
|
||||||
|
{ "_class_wxPyDataObjectSimple","_wxPyDataObjectSimple",0},
|
||||||
|
{ "_class_wxPyDropSource","_wxPyDropSource",0},
|
||||||
{ "_class_wxScrollEvent","_wxScrollEvent",0},
|
{ "_class_wxScrollEvent","_wxScrollEvent",0},
|
||||||
{ "_wxJoystickEvent","_class_wxJoystickEvent",0},
|
{ "_wxJoystickEvent","_class_wxJoystickEvent",0},
|
||||||
{ "_class_wxChoice","_wxChoice",0},
|
{ "_class_wxChoice","_wxChoice",0},
|
||||||
@@ -2282,6 +2315,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxImageList","_wxImageList",0},
|
{ "_class_wxImageList","_wxImageList",0},
|
||||||
{ "_class_wxBitmapButton","_wxBitmapButton",0},
|
{ "_class_wxBitmapButton","_wxBitmapButton",0},
|
||||||
{ "_class_wxPaletteChangedEvent","_wxPaletteChangedEvent",0},
|
{ "_class_wxPaletteChangedEvent","_wxPaletteChangedEvent",0},
|
||||||
|
{ "_wxWindowID","_wxCoord",0},
|
||||||
{ "_wxWindowID","_wxPrintQuality",0},
|
{ "_wxWindowID","_wxPrintQuality",0},
|
||||||
{ "_wxWindowID","_size_t",0},
|
{ "_wxWindowID","_size_t",0},
|
||||||
{ "_wxWindowID","_EBool",0},
|
{ "_wxWindowID","_EBool",0},
|
||||||
@@ -2290,6 +2324,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxWindowID","_signed_int",0},
|
{ "_wxWindowID","_signed_int",0},
|
||||||
{ "_wxWindowID","_unsigned_int",0},
|
{ "_wxWindowID","_unsigned_int",0},
|
||||||
{ "_class_wxScrollWinEvent","_wxScrollWinEvent",0},
|
{ "_class_wxScrollWinEvent","_wxScrollWinEvent",0},
|
||||||
|
{ "_int","_wxCoord",0},
|
||||||
{ "_int","_wxPrintQuality",0},
|
{ "_int","_wxPrintQuality",0},
|
||||||
{ "_int","_size_t",0},
|
{ "_int","_size_t",0},
|
||||||
{ "_int","_EBool",0},
|
{ "_int","_EBool",0},
|
||||||
@@ -2305,8 +2340,10 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxButton","_class_wxButton",0},
|
{ "_wxButton","_class_wxButton",0},
|
||||||
{ "_wxSize","_class_wxSize",0},
|
{ "_wxSize","_class_wxSize",0},
|
||||||
{ "_wxRegionIterator","_class_wxRegionIterator",0},
|
{ "_wxRegionIterator","_class_wxRegionIterator",0},
|
||||||
|
{ "_class_wxPyTextDataObject","_wxPyTextDataObject",0},
|
||||||
{ "_class_wxPaintDC","_wxPaintDC",0},
|
{ "_class_wxPaintDC","_wxPaintDC",0},
|
||||||
{ "_class_wxSysColourChangedEvent","_wxSysColourChangedEvent",0},
|
{ "_class_wxSysColourChangedEvent","_wxSysColourChangedEvent",0},
|
||||||
|
{ "_class_wxPyFileDropTarget","_wxPyFileDropTarget",0},
|
||||||
{ "_class_wxInitDialogEvent","_wxInitDialogEvent",0},
|
{ "_class_wxInitDialogEvent","_wxInitDialogEvent",0},
|
||||||
{ "_class_wxComboBox","_wxComboBox",0},
|
{ "_class_wxComboBox","_wxComboBox",0},
|
||||||
{ "_class_wxRadioButton","_wxRadioButton",0},
|
{ "_class_wxRadioButton","_wxRadioButton",0},
|
||||||
@@ -2322,19 +2359,32 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxScreenDC","_wxScreenDC",0},
|
{ "_class_wxScreenDC","_wxScreenDC",0},
|
||||||
{ "_wxPalette","_class_wxPalette",0},
|
{ "_wxPalette","_class_wxPalette",0},
|
||||||
{ "_class_wxIdleEvent","_wxIdleEvent",0},
|
{ "_class_wxIdleEvent","_wxIdleEvent",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","_wxPrintQuality",0},
|
||||||
{ "_wxEraseEvent","_class_wxEraseEvent",0},
|
{ "_wxEraseEvent","_class_wxEraseEvent",0},
|
||||||
|
{ "_wxDataObjectComposite","_class_wxDataObjectComposite",0},
|
||||||
{ "_class_wxJoystickEvent","_wxJoystickEvent",0},
|
{ "_class_wxJoystickEvent","_wxJoystickEvent",0},
|
||||||
{ "_wxRegion","_class_wxRegion",0},
|
{ "_wxRegion","_class_wxRegion",0},
|
||||||
{ "_class_wxShowEvent","_wxShowEvent",0},
|
{ "_class_wxShowEvent","_wxShowEvent",0},
|
||||||
|
{ "_wxPyDropTarget","_class_wxPyDropTarget",0},
|
||||||
{ "_wxActivateEvent","_class_wxActivateEvent",0},
|
{ "_wxActivateEvent","_class_wxActivateEvent",0},
|
||||||
{ "_wxGauge","_class_wxGauge",0},
|
{ "_wxGauge","_class_wxGauge",0},
|
||||||
{ "_class_wxCheckListBox","_wxCheckListBox",0},
|
{ "_class_wxCheckListBox","_wxCheckListBox",0},
|
||||||
|
{ "_class_wxBusyInfo","_wxBusyInfo",0},
|
||||||
{ "_class_wxCommandEvent","_wxCommandEvent",0},
|
{ "_class_wxCommandEvent","_wxCommandEvent",0},
|
||||||
{ "_class_wxClientDC","_wxClientDC",0},
|
{ "_class_wxClientDC","_wxClientDC",0},
|
||||||
{ "_class_wxSizeEvent","_wxSizeEvent",0},
|
{ "_class_wxSizeEvent","_wxSizeEvent",0},
|
||||||
|
{ "_wxCustomDataObject","_class_wxCustomDataObject",0},
|
||||||
{ "_class_wxSize","_wxSize",0},
|
{ "_class_wxSize","_wxSize",0},
|
||||||
{ "_class_wxBitmap","_wxBitmap",0},
|
{ "_class_wxBitmap","_wxBitmap",0},
|
||||||
{ "_class_wxMemoryDC","_wxMemoryDC",0},
|
{ "_class_wxMemoryDC","_wxMemoryDC",0},
|
||||||
|
{ "_wxPyTextDropTarget","_class_wxPyTextDropTarget",0},
|
||||||
{ "_wxMenuBar","_class_wxMenuBar",0},
|
{ "_wxMenuBar","_class_wxMenuBar",0},
|
||||||
{ "_wxEvtHandler","_class_wxToolBar",SwigwxToolBarTowxEvtHandler},
|
{ "_wxEvtHandler","_class_wxToolBar",SwigwxToolBarTowxEvtHandler},
|
||||||
{ "_wxEvtHandler","_wxToolBar",SwigwxToolBarTowxEvtHandler},
|
{ "_wxEvtHandler","_wxToolBar",SwigwxToolBarTowxEvtHandler},
|
||||||
@@ -2349,7 +2399,9 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxKeyEvent","_class_wxKeyEvent",0},
|
{ "_wxKeyEvent","_class_wxKeyEvent",0},
|
||||||
{ "_wxMoveEvent","_class_wxMoveEvent",0},
|
{ "_wxMoveEvent","_class_wxMoveEvent",0},
|
||||||
{ "_class_wxPalette","_wxPalette",0},
|
{ "_class_wxPalette","_wxPalette",0},
|
||||||
|
{ "_wxFileDataObject","_class_wxFileDataObject",0},
|
||||||
{ "_class_wxEraseEvent","_wxEraseEvent",0},
|
{ "_class_wxEraseEvent","_wxEraseEvent",0},
|
||||||
|
{ "_class_wxDataObjectComposite","_wxDataObjectComposite",0},
|
||||||
{ "_wxWindow","_class_wxToolBar",SwigwxToolBarTowxWindow},
|
{ "_wxWindow","_class_wxToolBar",SwigwxToolBarTowxWindow},
|
||||||
{ "_wxWindow","_wxToolBar",SwigwxToolBarTowxWindow},
|
{ "_wxWindow","_wxToolBar",SwigwxToolBarTowxWindow},
|
||||||
{ "_wxWindow","_class_wxStatusBar",SwigwxStatusBarTowxWindow},
|
{ "_wxWindow","_class_wxStatusBar",SwigwxStatusBarTowxWindow},
|
||||||
|
@@ -7,6 +7,8 @@ from windows import *
|
|||||||
|
|
||||||
from gdi import *
|
from gdi import *
|
||||||
|
|
||||||
|
from clip_dnd import *
|
||||||
|
|
||||||
from controls import *
|
from controls import *
|
||||||
|
|
||||||
from events import *
|
from events import *
|
||||||
|
File diff suppressed because it is too large
Load Diff
@@ -4,6 +4,8 @@ import windowsc
|
|||||||
from misc import *
|
from misc import *
|
||||||
|
|
||||||
from gdi import *
|
from gdi import *
|
||||||
|
|
||||||
|
from clip_dnd import *
|
||||||
import wx
|
import wx
|
||||||
|
|
||||||
def wxDLG_PNT(win, point_or_x, y=None):
|
def wxDLG_PNT(win, point_or_x, y=None):
|
||||||
@@ -192,6 +194,9 @@ class wxWindowPtr(wxEvtHandlerPtr):
|
|||||||
val = apply(windowsc.wxWindow_GetGrandParent,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxWindow_GetGrandParent,(self,) + _args, _kwargs)
|
||||||
if val: val = wxWindowPtr(val)
|
if val: val = wxWindowPtr(val)
|
||||||
return val
|
return val
|
||||||
|
def GetHandle(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxWindow_GetHandle,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
def GetId(self, *_args, **_kwargs):
|
def GetId(self, *_args, **_kwargs):
|
||||||
val = apply(windowsc.wxWindow_GetId,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxWindow_GetId,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
@@ -450,6 +455,14 @@ class wxWindowPtr(wxEvtHandlerPtr):
|
|||||||
def SetValidator(self, *_args, **_kwargs):
|
def SetValidator(self, *_args, **_kwargs):
|
||||||
val = apply(windowsc.wxWindow_SetValidator,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxWindow_SetValidator,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
|
def SetDropTarget(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxWindow_SetDropTarget,(self,) + _args, _kwargs)
|
||||||
|
_args[0].thisown = 0
|
||||||
|
return val
|
||||||
|
def GetDropTarget(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxWindow_GetDropTarget,(self,) + _args, _kwargs)
|
||||||
|
if val: val = wxDropTargetPtr(val)
|
||||||
|
return val
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
return "<C wxWindow instance at %s>" % (self.this,)
|
return "<C wxWindow instance at %s>" % (self.this,)
|
||||||
class wxWindow(wxWindowPtr):
|
class wxWindow(wxWindowPtr):
|
||||||
@@ -612,46 +625,102 @@ class wxMenuPtr(wxEvtHandlerPtr):
|
|||||||
def Check(self, *_args, **_kwargs):
|
def Check(self, *_args, **_kwargs):
|
||||||
val = apply(windowsc.wxMenu_Check,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxMenu_Check,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
|
def IsChecked(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenu_IsChecked,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
def Enable(self, *_args, **_kwargs):
|
def Enable(self, *_args, **_kwargs):
|
||||||
val = apply(windowsc.wxMenu_Enable,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxMenu_Enable,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
|
def IsEnabled(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenu_IsEnabled,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
def FindItem(self, *_args, **_kwargs):
|
def FindItem(self, *_args, **_kwargs):
|
||||||
val = apply(windowsc.wxMenu_FindItem,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxMenu_FindItem,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
|
def FindItemById(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenu_FindItemById,(self,) + _args, _kwargs)
|
||||||
|
if val: val = wxMenuItemPtr(val)
|
||||||
|
return val
|
||||||
def GetTitle(self, *_args, **_kwargs):
|
def GetTitle(self, *_args, **_kwargs):
|
||||||
val = apply(windowsc.wxMenu_GetTitle,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxMenu_GetTitle,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
def SetTitle(self, *_args, **_kwargs):
|
def SetTitle(self, *_args, **_kwargs):
|
||||||
val = apply(windowsc.wxMenu_SetTitle,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxMenu_SetTitle,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
def FindItemForId(self, *_args, **_kwargs):
|
|
||||||
val = apply(windowsc.wxMenu_FindItemForId,(self,) + _args, _kwargs)
|
|
||||||
if val: val = wxMenuItemPtr(val)
|
|
||||||
return val
|
|
||||||
def GetHelpString(self, *_args, **_kwargs):
|
|
||||||
val = apply(windowsc.wxMenu_GetHelpString,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def GetLabel(self, *_args, **_kwargs):
|
def GetLabel(self, *_args, **_kwargs):
|
||||||
val = apply(windowsc.wxMenu_GetLabel,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxMenu_GetLabel,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
def SetHelpString(self, *_args, **_kwargs):
|
|
||||||
val = apply(windowsc.wxMenu_SetHelpString,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def IsChecked(self, *_args, **_kwargs):
|
|
||||||
val = apply(windowsc.wxMenu_IsChecked,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def IsEnabled(self, *_args, **_kwargs):
|
|
||||||
val = apply(windowsc.wxMenu_IsEnabled,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def SetLabel(self, *_args, **_kwargs):
|
def SetLabel(self, *_args, **_kwargs):
|
||||||
val = apply(windowsc.wxMenu_SetLabel,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxMenu_SetLabel,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
|
def GetHelpString(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenu_GetHelpString,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def SetHelpString(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenu_SetHelpString,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
def UpdateUI(self, *_args, **_kwargs):
|
def UpdateUI(self, *_args, **_kwargs):
|
||||||
val = apply(windowsc.wxMenu_UpdateUI,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxMenu_UpdateUI,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
|
def Delete(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenu_Delete,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def DeleteItem(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenu_DeleteItem,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def Insert(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenu_Insert,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def Remove(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenu_Remove,(self,) + _args, _kwargs)
|
||||||
|
if val: val = wxMenuItemPtr(val)
|
||||||
|
return val
|
||||||
|
def RemoveItem(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenu_RemoveItem,(self,) + _args, _kwargs)
|
||||||
|
if val: val = wxMenuItemPtr(val)
|
||||||
|
return val
|
||||||
def Destroy(self, *_args, **_kwargs):
|
def Destroy(self, *_args, **_kwargs):
|
||||||
val = apply(windowsc.wxMenu_Destroy,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxMenu_Destroy,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
|
def DestroyId(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenu_DestroyId,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def DestroyItem(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenu_DestroyItem,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def GetMenuItemCount(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenu_GetMenuItemCount,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def GetMenuItems(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenu_GetMenuItems,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def SetEventHandler(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenu_SetEventHandler,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def GetEventHandler(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenu_GetEventHandler,(self,) + _args, _kwargs)
|
||||||
|
if val: val = wxEvtHandlerPtr(val)
|
||||||
|
return val
|
||||||
|
def SetInvokingWindow(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenu_SetInvokingWindow,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def GetInvokingWindow(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenu_GetInvokingWindow,(self,) + _args, _kwargs)
|
||||||
|
if val: val = wxWindowPtr(val)
|
||||||
|
return val
|
||||||
|
def GetStyle(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenu_GetStyle,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def IsAttached(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenu_IsAttached,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def SetParent(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenu_SetParent,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def GetParent(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenu_GetParent,(self,) + _args, _kwargs)
|
||||||
|
if val: val = wxMenuPtr(val)
|
||||||
|
return val
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
return "<C wxMenu instance at %s>" % (self.this,)
|
return "<C wxMenu instance at %s>" % (self.this,)
|
||||||
class wxMenu(wxMenuPtr):
|
class wxMenu(wxMenuPtr):
|
||||||
@@ -662,52 +731,15 @@ class wxMenu(wxMenuPtr):
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
class wxMenuBarPtr(wxEvtHandlerPtr):
|
class wxMenuBarPtr(wxWindowPtr):
|
||||||
def __init__(self,this):
|
def __init__(self,this):
|
||||||
self.this = this
|
self.this = this
|
||||||
self.thisown = 0
|
self.thisown = 0
|
||||||
def Append(self, *_args, **_kwargs):
|
def Append(self, *_args, **_kwargs):
|
||||||
val = apply(windowsc.wxMenuBar_Append,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxMenuBar_Append,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
def Check(self, *_args, **_kwargs):
|
def Insert(self, *_args, **_kwargs):
|
||||||
val = apply(windowsc.wxMenuBar_Check,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxMenuBar_Insert,(self,) + _args, _kwargs)
|
||||||
return val
|
|
||||||
def Checked(self, *_args, **_kwargs):
|
|
||||||
val = apply(windowsc.wxMenuBar_Checked,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def Enable(self, *_args, **_kwargs):
|
|
||||||
val = apply(windowsc.wxMenuBar_Enable,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def Enabled(self, *_args, **_kwargs):
|
|
||||||
val = apply(windowsc.wxMenuBar_Enabled,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def FindMenuItem(self, *_args, **_kwargs):
|
|
||||||
val = apply(windowsc.wxMenuBar_FindMenuItem,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def FindItemForId(self, *_args, **_kwargs):
|
|
||||||
val = apply(windowsc.wxMenuBar_FindItemForId,(self,) + _args, _kwargs)
|
|
||||||
if val: val = wxMenuItemPtr(val)
|
|
||||||
return val
|
|
||||||
def SetLabel(self, *_args, **_kwargs):
|
|
||||||
val = apply(windowsc.wxMenuBar_SetLabel,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def EnableTop(self, *_args, **_kwargs):
|
|
||||||
val = apply(windowsc.wxMenuBar_EnableTop,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def GetHelpString(self, *_args, **_kwargs):
|
|
||||||
val = apply(windowsc.wxMenuBar_GetHelpString,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def GetLabel(self, *_args, **_kwargs):
|
|
||||||
val = apply(windowsc.wxMenuBar_GetLabel,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def SetHelpString(self, *_args, **_kwargs):
|
|
||||||
val = apply(windowsc.wxMenuBar_SetHelpString,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def GetLabelTop(self, *_args, **_kwargs):
|
|
||||||
val = apply(windowsc.wxMenuBar_GetLabelTop,(self,) + _args, _kwargs)
|
|
||||||
return val
|
|
||||||
def SetLabelTop(self, *_args, **_kwargs):
|
|
||||||
val = apply(windowsc.wxMenuBar_SetLabelTop,(self,) + _args, _kwargs)
|
|
||||||
return val
|
return val
|
||||||
def GetMenuCount(self, *_args, **_kwargs):
|
def GetMenuCount(self, *_args, **_kwargs):
|
||||||
val = apply(windowsc.wxMenuBar_GetMenuCount,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxMenuBar_GetMenuCount,(self,) + _args, _kwargs)
|
||||||
@@ -716,8 +748,53 @@ class wxMenuBarPtr(wxEvtHandlerPtr):
|
|||||||
val = apply(windowsc.wxMenuBar_GetMenu,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxMenuBar_GetMenu,(self,) + _args, _kwargs)
|
||||||
if val: val = wxMenuPtr(val)
|
if val: val = wxMenuPtr(val)
|
||||||
return val
|
return val
|
||||||
def Refresh(self, *_args, **_kwargs):
|
def Replace(self, *_args, **_kwargs):
|
||||||
val = apply(windowsc.wxMenuBar_Refresh,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxMenuBar_Replace,(self,) + _args, _kwargs)
|
||||||
|
if val: val = wxMenuPtr(val)
|
||||||
|
return val
|
||||||
|
def Remove(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenuBar_Remove,(self,) + _args, _kwargs)
|
||||||
|
if val: val = wxMenuPtr(val)
|
||||||
|
return val
|
||||||
|
def EnableTop(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenuBar_EnableTop,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def SetLabelTop(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenuBar_SetLabelTop,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def GetLabelTop(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenuBar_GetLabelTop,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def FindMenuItem(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenuBar_FindMenuItem,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def FindItemById(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenuBar_FindItemById,(self,) + _args, _kwargs)
|
||||||
|
if val: val = wxMenuItemPtr(val)
|
||||||
|
return val
|
||||||
|
def Enable(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenuBar_Enable,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def Check(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenuBar_Check,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def IsChecked(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenuBar_IsChecked,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def IsEnabled(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenuBar_IsEnabled,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def SetLabel(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenuBar_SetLabel,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def GetLabel(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenuBar_GetLabel,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def SetHelpString(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenuBar_SetHelpString,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def GetHelpString(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenuBar_GetHelpString,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
return "<C wxMenuBar instance at %s>" % (self.this,)
|
return "<C wxMenuBar instance at %s>" % (self.this,)
|
||||||
@@ -733,42 +810,71 @@ class wxMenuItemPtr :
|
|||||||
def __init__(self,this):
|
def __init__(self,this):
|
||||||
self.this = this
|
self.this = this
|
||||||
self.thisown = 0
|
self.thisown = 0
|
||||||
|
def GetMenu(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenuItem_GetMenu,(self,) + _args, _kwargs)
|
||||||
|
if val: val = wxMenuPtr(val)
|
||||||
|
return val
|
||||||
|
def SetId(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenuItem_SetId,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def GetId(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenuItem_GetId,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
def IsSeparator(self, *_args, **_kwargs):
|
def IsSeparator(self, *_args, **_kwargs):
|
||||||
val = apply(windowsc.wxMenuItem_IsSeparator,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxMenuItem_IsSeparator,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
def IsEnabled(self, *_args, **_kwargs):
|
def SetText(self, *_args, **_kwargs):
|
||||||
val = apply(windowsc.wxMenuItem_IsEnabled,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxMenuItem_SetText,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
def IsChecked(self, *_args, **_kwargs):
|
def GetLabel(self, *_args, **_kwargs):
|
||||||
val = apply(windowsc.wxMenuItem_IsChecked,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxMenuItem_GetLabel,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def GetText(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenuItem_GetText,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def SetCheckable(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenuItem_SetCheckable,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
def IsCheckable(self, *_args, **_kwargs):
|
def IsCheckable(self, *_args, **_kwargs):
|
||||||
val = apply(windowsc.wxMenuItem_IsCheckable,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxMenuItem_IsCheckable,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
def GetId(self, *_args, **_kwargs):
|
def IsSubMenu(self, *_args, **_kwargs):
|
||||||
val = apply(windowsc.wxMenuItem_GetId,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxMenuItem_IsSubMenu,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def SetSubMenu(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenuItem_SetSubMenu,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
def GetSubMenu(self, *_args, **_kwargs):
|
def GetSubMenu(self, *_args, **_kwargs):
|
||||||
val = apply(windowsc.wxMenuItem_GetSubMenu,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxMenuItem_GetSubMenu,(self,) + _args, _kwargs)
|
||||||
if val: val = wxMenuPtr(val)
|
if val: val = wxMenuPtr(val)
|
||||||
return val
|
return val
|
||||||
def SetName(self, *_args, **_kwargs):
|
def Enable(self, *_args, **_kwargs):
|
||||||
val = apply(windowsc.wxMenuItem_SetName,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxMenuItem_Enable,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
def GetName(self, *_args, **_kwargs):
|
def IsEnabled(self, *_args, **_kwargs):
|
||||||
val = apply(windowsc.wxMenuItem_GetName,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxMenuItem_IsEnabled,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
def GetHelp(self, *_args, **_kwargs):
|
def Check(self, *_args, **_kwargs):
|
||||||
val = apply(windowsc.wxMenuItem_GetHelp,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxMenuItem_Check,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def IsChecked(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenuItem_IsChecked,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def Toggle(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenuItem_Toggle,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
def SetHelp(self, *_args, **_kwargs):
|
def SetHelp(self, *_args, **_kwargs):
|
||||||
val = apply(windowsc.wxMenuItem_SetHelp,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxMenuItem_SetHelp,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
def Enable(self, *_args, **_kwargs):
|
def GetHelp(self, *_args, **_kwargs):
|
||||||
val = apply(windowsc.wxMenuItem_Enable,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxMenuItem_GetHelp,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
def Check(self, *_args, **_kwargs):
|
def GetAccel(self, *_args, **_kwargs):
|
||||||
val = apply(windowsc.wxMenuItem_Check,(self,) + _args, _kwargs)
|
val = apply(windowsc.wxMenuItem_GetAccel,(self,) + _args, _kwargs)
|
||||||
|
if val: val = wxAcceleratorEntryPtr(val)
|
||||||
|
return val
|
||||||
|
def SetAccel(self, *_args, **_kwargs):
|
||||||
|
val = apply(windowsc.wxMenuItem_SetAccel,(self,) + _args, _kwargs)
|
||||||
return val
|
return val
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
return "<C wxMenuItem instance at %s>" % (self.this,)
|
return "<C wxMenuItem instance at %s>" % (self.this,)
|
||||||
|
@@ -5168,7 +5168,10 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxActivateEvent","_wxActivateEvent",0},
|
{ "_class_wxActivateEvent","_wxActivateEvent",0},
|
||||||
{ "_signed_long","_long",0},
|
{ "_signed_long","_long",0},
|
||||||
{ "_wxMenuEvent","_class_wxMenuEvent",0},
|
{ "_wxMenuEvent","_class_wxMenuEvent",0},
|
||||||
|
{ "_wxPyBitmapDataObject","_class_wxPyBitmapDataObject",0},
|
||||||
|
{ "_wxBitmapDataObject","_class_wxBitmapDataObject",0},
|
||||||
{ "_class_wxPyCommandEvent","_wxPyCommandEvent",0},
|
{ "_class_wxPyCommandEvent","_wxPyCommandEvent",0},
|
||||||
|
{ "_wxPrintQuality","_wxCoord",0},
|
||||||
{ "_wxPrintQuality","_int",0},
|
{ "_wxPrintQuality","_int",0},
|
||||||
{ "_wxPrintQuality","_signed_int",0},
|
{ "_wxPrintQuality","_signed_int",0},
|
||||||
{ "_wxPrintQuality","_unsigned_int",0},
|
{ "_wxPrintQuality","_unsigned_int",0},
|
||||||
@@ -5176,7 +5179,9 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPrintQuality","_uint",0},
|
{ "_wxPrintQuality","_uint",0},
|
||||||
{ "_wxPrintQuality","_EBool",0},
|
{ "_wxPrintQuality","_EBool",0},
|
||||||
{ "_wxPrintQuality","_size_t",0},
|
{ "_wxPrintQuality","_size_t",0},
|
||||||
|
{ "_class_wxCustomDataObject","_wxCustomDataObject",0},
|
||||||
{ "_class_wxRegionIterator","_wxRegionIterator",0},
|
{ "_class_wxRegionIterator","_wxRegionIterator",0},
|
||||||
|
{ "_class_wxPyTextDropTarget","_wxPyTextDropTarget",0},
|
||||||
{ "_class_wxMenuBar","_wxMenuBar",0},
|
{ "_class_wxMenuBar","_wxMenuBar",0},
|
||||||
{ "_class_wxEvtHandler","_class_wxSplitterWindow",SwigwxSplitterWindowTowxEvtHandler},
|
{ "_class_wxEvtHandler","_class_wxSplitterWindow",SwigwxSplitterWindowTowxEvtHandler},
|
||||||
{ "_class_wxEvtHandler","_wxSplitterWindow",SwigwxSplitterWindowTowxEvtHandler},
|
{ "_class_wxEvtHandler","_wxSplitterWindow",SwigwxSplitterWindowTowxEvtHandler},
|
||||||
@@ -5196,7 +5201,10 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPen","_class_wxPen",0},
|
{ "_wxPen","_class_wxPen",0},
|
||||||
{ "_wxUpdateUIEvent","_class_wxUpdateUIEvent",0},
|
{ "_wxUpdateUIEvent","_class_wxUpdateUIEvent",0},
|
||||||
{ "_byte","_unsigned_char",0},
|
{ "_byte","_unsigned_char",0},
|
||||||
|
{ "_wxDataObject","_class_wxDataObject",0},
|
||||||
{ "_wxStaticBox","_class_wxStaticBox",0},
|
{ "_wxStaticBox","_class_wxStaticBox",0},
|
||||||
|
{ "_wxPyDataObjectSimple","_class_wxPyDataObjectSimple",0},
|
||||||
|
{ "_wxPyDropSource","_class_wxPyDropSource",0},
|
||||||
{ "_wxChoice","_class_wxChoice",0},
|
{ "_wxChoice","_class_wxChoice",0},
|
||||||
{ "_wxSlider","_class_wxSlider",0},
|
{ "_wxSlider","_class_wxSlider",0},
|
||||||
{ "_wxNotebookEvent","_class_wxNotebookEvent",0},
|
{ "_wxNotebookEvent","_class_wxNotebookEvent",0},
|
||||||
@@ -5204,12 +5212,16 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_long","_unsigned_long",0},
|
{ "_long","_unsigned_long",0},
|
||||||
{ "_long","_signed_long",0},
|
{ "_long","_signed_long",0},
|
||||||
{ "_wxImageList","_class_wxImageList",0},
|
{ "_wxImageList","_class_wxImageList",0},
|
||||||
|
{ "_wxDataObjectSimple","_class_wxDataObjectSimple",0},
|
||||||
{ "_wxDropFilesEvent","_class_wxDropFilesEvent",0},
|
{ "_wxDropFilesEvent","_class_wxDropFilesEvent",0},
|
||||||
{ "_wxBitmapButton","_class_wxBitmapButton",0},
|
{ "_wxBitmapButton","_class_wxBitmapButton",0},
|
||||||
{ "_class_wxAcceleratorTable","_wxAcceleratorTable",0},
|
{ "_class_wxAcceleratorTable","_wxAcceleratorTable",0},
|
||||||
|
{ "_class_wxClipboard","_wxClipboard",0},
|
||||||
{ "_class_wxGauge","_wxGauge",0},
|
{ "_class_wxGauge","_wxGauge",0},
|
||||||
{ "_wxDC","_class_wxDC",0},
|
{ "_wxDC","_class_wxDC",0},
|
||||||
|
{ "_class_wxBitmapDataObject","_wxBitmapDataObject",0},
|
||||||
{ "_wxSpinEvent","_class_wxSpinEvent",0},
|
{ "_wxSpinEvent","_class_wxSpinEvent",0},
|
||||||
|
{ "_size_t","_wxCoord",0},
|
||||||
{ "_size_t","_wxPrintQuality",0},
|
{ "_size_t","_wxPrintQuality",0},
|
||||||
{ "_size_t","_unsigned_int",0},
|
{ "_size_t","_unsigned_int",0},
|
||||||
{ "_size_t","_int",0},
|
{ "_size_t","_int",0},
|
||||||
@@ -5230,16 +5242,22 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPyEvent","_class_wxPyEvent",0},
|
{ "_wxPyEvent","_class_wxPyEvent",0},
|
||||||
{ "_wxTextCtrl","_class_wxTextCtrl",0},
|
{ "_wxTextCtrl","_class_wxTextCtrl",0},
|
||||||
{ "_class_wxMask","_wxMask",0},
|
{ "_class_wxMask","_wxMask",0},
|
||||||
|
{ "_wxTextDataObject","_class_wxTextDataObject",0},
|
||||||
{ "_class_wxKeyEvent","_wxKeyEvent",0},
|
{ "_class_wxKeyEvent","_wxKeyEvent",0},
|
||||||
{ "_class_wxGrid","_wxGrid",0},
|
{ "_class_wxGrid","_wxGrid",0},
|
||||||
{ "_wxColour","_class_wxColour",0},
|
{ "_wxColour","_class_wxColour",0},
|
||||||
{ "_class_wxDialog","_wxDialog",0},
|
{ "_class_wxDialog","_wxDialog",0},
|
||||||
|
{ "_class_wxFileDataObject","_wxFileDataObject",0},
|
||||||
{ "_wxIdleEvent","_class_wxIdleEvent",0},
|
{ "_wxIdleEvent","_class_wxIdleEvent",0},
|
||||||
{ "_class_wxUpdateUIEvent","_wxUpdateUIEvent",0},
|
{ "_class_wxUpdateUIEvent","_wxUpdateUIEvent",0},
|
||||||
|
{ "_class_wxDataObject","_wxDataObject",0},
|
||||||
{ "_wxStaticLine","_class_wxStaticLine",0},
|
{ "_wxStaticLine","_class_wxStaticLine",0},
|
||||||
{ "_wxBrush","_class_wxBrush",0},
|
{ "_wxBrush","_class_wxBrush",0},
|
||||||
{ "_class_wxNotebookEvent","_wxNotebookEvent",0},
|
{ "_class_wxNotebookEvent","_wxNotebookEvent",0},
|
||||||
|
{ "_wxDataFormat","_class_wxDataFormat",0},
|
||||||
|
{ "_class_wxDataObjectSimple","_wxDataObjectSimple",0},
|
||||||
{ "_wxShowEvent","_class_wxShowEvent",0},
|
{ "_wxShowEvent","_class_wxShowEvent",0},
|
||||||
|
{ "_uint","_wxCoord",0},
|
||||||
{ "_uint","_wxPrintQuality",0},
|
{ "_uint","_wxPrintQuality",0},
|
||||||
{ "_uint","_size_t",0},
|
{ "_uint","_size_t",0},
|
||||||
{ "_uint","_unsigned_int",0},
|
{ "_uint","_unsigned_int",0},
|
||||||
@@ -5279,17 +5297,21 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxPyEvent","_wxPyEvent",0},
|
{ "_class_wxPyEvent","_wxPyEvent",0},
|
||||||
{ "_class_wxIconizeEvent","_wxIconizeEvent",0},
|
{ "_class_wxIconizeEvent","_wxIconizeEvent",0},
|
||||||
{ "_class_wxStaticBitmap","_wxStaticBitmap",0},
|
{ "_class_wxStaticBitmap","_wxStaticBitmap",0},
|
||||||
|
{ "_wxDropTarget","_class_wxDropTarget",0},
|
||||||
{ "_class_wxStaticLine","_wxStaticLine",0},
|
{ "_class_wxStaticLine","_wxStaticLine",0},
|
||||||
{ "_wxScrollEvent","_class_wxScrollEvent",0},
|
{ "_wxScrollEvent","_class_wxScrollEvent",0},
|
||||||
|
{ "_EBool","_wxCoord",0},
|
||||||
{ "_EBool","_wxPrintQuality",0},
|
{ "_EBool","_wxPrintQuality",0},
|
||||||
{ "_EBool","_signed_int",0},
|
{ "_EBool","_signed_int",0},
|
||||||
{ "_EBool","_int",0},
|
{ "_EBool","_int",0},
|
||||||
{ "_EBool","_wxWindowID",0},
|
{ "_EBool","_wxWindowID",0},
|
||||||
{ "_class_wxRegion","_wxRegion",0},
|
{ "_class_wxRegion","_wxRegion",0},
|
||||||
|
{ "_class_wxDataFormat","_wxDataFormat",0},
|
||||||
{ "_class_wxDropFilesEvent","_wxDropFilesEvent",0},
|
{ "_class_wxDropFilesEvent","_wxDropFilesEvent",0},
|
||||||
{ "_wxWindowDestroyEvent","_class_wxWindowDestroyEvent",0},
|
{ "_wxWindowDestroyEvent","_class_wxWindowDestroyEvent",0},
|
||||||
{ "_wxStaticText","_class_wxStaticText",0},
|
{ "_wxStaticText","_class_wxStaticText",0},
|
||||||
{ "_wxFont","_class_wxFont",0},
|
{ "_wxFont","_class_wxFont",0},
|
||||||
|
{ "_class_wxPyDropTarget","_wxPyDropTarget",0},
|
||||||
{ "_wxCloseEvent","_class_wxCloseEvent",0},
|
{ "_wxCloseEvent","_class_wxCloseEvent",0},
|
||||||
{ "_class_wxSplitterEvent","_wxSplitterEvent",0},
|
{ "_class_wxSplitterEvent","_wxSplitterEvent",0},
|
||||||
{ "_wxNotebook","_class_wxNotebook",0},
|
{ "_wxNotebook","_class_wxNotebook",0},
|
||||||
@@ -5311,12 +5333,14 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxCheckBox","_wxCheckBox",0},
|
{ "_class_wxCheckBox","_wxCheckBox",0},
|
||||||
{ "_wxComboBox","_class_wxComboBox",0},
|
{ "_wxComboBox","_class_wxComboBox",0},
|
||||||
{ "_wxRadioButton","_class_wxRadioButton",0},
|
{ "_wxRadioButton","_class_wxRadioButton",0},
|
||||||
|
{ "_signed_int","_wxCoord",0},
|
||||||
{ "_signed_int","_wxPrintQuality",0},
|
{ "_signed_int","_wxPrintQuality",0},
|
||||||
{ "_signed_int","_EBool",0},
|
{ "_signed_int","_EBool",0},
|
||||||
{ "_signed_int","_wxWindowID",0},
|
{ "_signed_int","_wxWindowID",0},
|
||||||
{ "_signed_int","_int",0},
|
{ "_signed_int","_int",0},
|
||||||
{ "_class_wxTextCtrl","_wxTextCtrl",0},
|
{ "_class_wxTextCtrl","_wxTextCtrl",0},
|
||||||
{ "_wxLayoutConstraints","_class_wxLayoutConstraints",0},
|
{ "_wxLayoutConstraints","_class_wxLayoutConstraints",0},
|
||||||
|
{ "_class_wxTextDataObject","_wxTextDataObject",0},
|
||||||
{ "_wxMenu","_class_wxMenu",0},
|
{ "_wxMenu","_class_wxMenu",0},
|
||||||
{ "_class_wxMoveEvent","_wxMoveEvent",0},
|
{ "_class_wxMoveEvent","_wxMoveEvent",0},
|
||||||
{ "_wxListBox","_class_wxListBox",0},
|
{ "_wxListBox","_class_wxListBox",0},
|
||||||
@@ -5324,6 +5348,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_WXTYPE","_short",0},
|
{ "_WXTYPE","_short",0},
|
||||||
{ "_WXTYPE","_signed_short",0},
|
{ "_WXTYPE","_signed_short",0},
|
||||||
{ "_WXTYPE","_unsigned_short",0},
|
{ "_WXTYPE","_unsigned_short",0},
|
||||||
|
{ "_class_wxDropTarget","_wxDropTarget",0},
|
||||||
{ "_class_wxBrush","_wxBrush",0},
|
{ "_class_wxBrush","_wxBrush",0},
|
||||||
{ "_unsigned_short","_WXTYPE",0},
|
{ "_unsigned_short","_WXTYPE",0},
|
||||||
{ "_unsigned_short","_short",0},
|
{ "_unsigned_short","_short",0},
|
||||||
@@ -5337,10 +5362,13 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxSplitterWindow","_class_wxSplitterWindow",0},
|
{ "_wxSplitterWindow","_class_wxSplitterWindow",0},
|
||||||
{ "_class_wxStaticText","_wxStaticText",0},
|
{ "_class_wxStaticText","_wxStaticText",0},
|
||||||
{ "_class_wxFont","_wxFont",0},
|
{ "_class_wxFont","_wxFont",0},
|
||||||
|
{ "_wxClipboard","_class_wxClipboard",0},
|
||||||
{ "_class_wxPyValidator","_wxPyValidator",0},
|
{ "_class_wxPyValidator","_wxPyValidator",0},
|
||||||
{ "_class_wxCloseEvent","_wxCloseEvent",0},
|
{ "_class_wxCloseEvent","_wxCloseEvent",0},
|
||||||
|
{ "_wxBusyInfo","_class_wxBusyInfo",0},
|
||||||
{ "_class_wxMenuEvent","_wxMenuEvent",0},
|
{ "_class_wxMenuEvent","_wxMenuEvent",0},
|
||||||
{ "_wxPaletteChangedEvent","_class_wxPaletteChangedEvent",0},
|
{ "_wxPaletteChangedEvent","_class_wxPaletteChangedEvent",0},
|
||||||
|
{ "_class_wxPyBitmapDataObject","_wxPyBitmapDataObject",0},
|
||||||
{ "_wxClientDC","_class_wxClientDC",0},
|
{ "_wxClientDC","_class_wxClientDC",0},
|
||||||
{ "_wxMouseEvent","_class_wxMouseEvent",0},
|
{ "_wxMouseEvent","_class_wxMouseEvent",0},
|
||||||
{ "_class_wxPoint","_wxPoint",0},
|
{ "_class_wxPoint","_wxPoint",0},
|
||||||
@@ -5350,6 +5378,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_signed_short","_WXTYPE",0},
|
{ "_signed_short","_WXTYPE",0},
|
||||||
{ "_signed_short","_short",0},
|
{ "_signed_short","_short",0},
|
||||||
{ "_wxMemoryDC","_class_wxMemoryDC",0},
|
{ "_wxMemoryDC","_class_wxMemoryDC",0},
|
||||||
|
{ "_wxPyTextDataObject","_class_wxPyTextDataObject",0},
|
||||||
{ "_wxPaintDC","_class_wxPaintDC",0},
|
{ "_wxPaintDC","_class_wxPaintDC",0},
|
||||||
{ "_class_wxWindowDC","_wxWindowDC",0},
|
{ "_class_wxWindowDC","_wxWindowDC",0},
|
||||||
{ "_class_wxFocusEvent","_wxFocusEvent",0},
|
{ "_class_wxFocusEvent","_wxFocusEvent",0},
|
||||||
@@ -5357,6 +5386,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxAcceleratorEntry","_wxAcceleratorEntry",0},
|
{ "_class_wxAcceleratorEntry","_wxAcceleratorEntry",0},
|
||||||
{ "_class_wxCursor","_wxCursor",0},
|
{ "_class_wxCursor","_wxCursor",0},
|
||||||
{ "_wxPostScriptDC","_class_wxPostScriptDC",0},
|
{ "_wxPostScriptDC","_class_wxPostScriptDC",0},
|
||||||
|
{ "_wxPyFileDropTarget","_class_wxPyFileDropTarget",0},
|
||||||
{ "_wxScrolledWindow","_class_wxScrolledWindow",0},
|
{ "_wxScrolledWindow","_class_wxScrolledWindow",0},
|
||||||
{ "_unsigned_char","_byte",0},
|
{ "_unsigned_char","_byte",0},
|
||||||
{ "_class_wxMenu","_wxMenu",0},
|
{ "_class_wxMenu","_wxMenu",0},
|
||||||
@@ -5364,6 +5394,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxControl","_wxNotebook",SwigwxNotebookTowxControl},
|
{ "_wxControl","_wxNotebook",SwigwxNotebookTowxControl},
|
||||||
{ "_wxControl","_class_wxControl",0},
|
{ "_wxControl","_class_wxControl",0},
|
||||||
{ "_class_wxListBox","_wxListBox",0},
|
{ "_class_wxListBox","_wxListBox",0},
|
||||||
|
{ "_unsigned_int","_wxCoord",0},
|
||||||
{ "_unsigned_int","_wxPrintQuality",0},
|
{ "_unsigned_int","_wxPrintQuality",0},
|
||||||
{ "_unsigned_int","_size_t",0},
|
{ "_unsigned_int","_size_t",0},
|
||||||
{ "_unsigned_int","_uint",0},
|
{ "_unsigned_int","_uint",0},
|
||||||
@@ -5376,6 +5407,8 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_short","_unsigned_short",0},
|
{ "_short","_unsigned_short",0},
|
||||||
{ "_short","_signed_short",0},
|
{ "_short","_signed_short",0},
|
||||||
{ "_class_wxStaticBox","_wxStaticBox",0},
|
{ "_class_wxStaticBox","_wxStaticBox",0},
|
||||||
|
{ "_class_wxPyDataObjectSimple","_wxPyDataObjectSimple",0},
|
||||||
|
{ "_class_wxPyDropSource","_wxPyDropSource",0},
|
||||||
{ "_class_wxScrollEvent","_wxScrollEvent",0},
|
{ "_class_wxScrollEvent","_wxScrollEvent",0},
|
||||||
{ "_wxJoystickEvent","_class_wxJoystickEvent",0},
|
{ "_wxJoystickEvent","_class_wxJoystickEvent",0},
|
||||||
{ "_class_wxChoice","_wxChoice",0},
|
{ "_class_wxChoice","_wxChoice",0},
|
||||||
@@ -5384,6 +5417,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxBitmapButton","_wxBitmapButton",0},
|
{ "_class_wxBitmapButton","_wxBitmapButton",0},
|
||||||
{ "_class_wxPaletteChangedEvent","_wxPaletteChangedEvent",0},
|
{ "_class_wxPaletteChangedEvent","_wxPaletteChangedEvent",0},
|
||||||
{ "_class_wxNotebook","_wxNotebook",0},
|
{ "_class_wxNotebook","_wxNotebook",0},
|
||||||
|
{ "_wxWindowID","_wxCoord",0},
|
||||||
{ "_wxWindowID","_wxPrintQuality",0},
|
{ "_wxWindowID","_wxPrintQuality",0},
|
||||||
{ "_wxWindowID","_size_t",0},
|
{ "_wxWindowID","_size_t",0},
|
||||||
{ "_wxWindowID","_EBool",0},
|
{ "_wxWindowID","_EBool",0},
|
||||||
@@ -5392,6 +5426,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxWindowID","_signed_int",0},
|
{ "_wxWindowID","_signed_int",0},
|
||||||
{ "_wxWindowID","_unsigned_int",0},
|
{ "_wxWindowID","_unsigned_int",0},
|
||||||
{ "_class_wxScrollWinEvent","_wxScrollWinEvent",0},
|
{ "_class_wxScrollWinEvent","_wxScrollWinEvent",0},
|
||||||
|
{ "_int","_wxCoord",0},
|
||||||
{ "_int","_wxPrintQuality",0},
|
{ "_int","_wxPrintQuality",0},
|
||||||
{ "_int","_size_t",0},
|
{ "_int","_size_t",0},
|
||||||
{ "_int","_EBool",0},
|
{ "_int","_EBool",0},
|
||||||
@@ -5407,8 +5442,10 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxButton","_class_wxButton",0},
|
{ "_wxButton","_class_wxButton",0},
|
||||||
{ "_wxSize","_class_wxSize",0},
|
{ "_wxSize","_class_wxSize",0},
|
||||||
{ "_wxRegionIterator","_class_wxRegionIterator",0},
|
{ "_wxRegionIterator","_class_wxRegionIterator",0},
|
||||||
|
{ "_class_wxPyTextDataObject","_wxPyTextDataObject",0},
|
||||||
{ "_class_wxPaintDC","_wxPaintDC",0},
|
{ "_class_wxPaintDC","_wxPaintDC",0},
|
||||||
{ "_class_wxSysColourChangedEvent","_wxSysColourChangedEvent",0},
|
{ "_class_wxSysColourChangedEvent","_wxSysColourChangedEvent",0},
|
||||||
|
{ "_class_wxPyFileDropTarget","_wxPyFileDropTarget",0},
|
||||||
{ "_class_wxInitDialogEvent","_wxInitDialogEvent",0},
|
{ "_class_wxInitDialogEvent","_wxInitDialogEvent",0},
|
||||||
{ "_class_wxComboBox","_wxComboBox",0},
|
{ "_class_wxComboBox","_wxComboBox",0},
|
||||||
{ "_class_wxRadioButton","_wxRadioButton",0},
|
{ "_class_wxRadioButton","_wxRadioButton",0},
|
||||||
@@ -5424,14 +5461,25 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxScreenDC","_wxScreenDC",0},
|
{ "_class_wxScreenDC","_wxScreenDC",0},
|
||||||
{ "_wxPalette","_class_wxPalette",0},
|
{ "_wxPalette","_class_wxPalette",0},
|
||||||
{ "_class_wxIdleEvent","_wxIdleEvent",0},
|
{ "_class_wxIdleEvent","_wxIdleEvent",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","_wxPrintQuality",0},
|
||||||
{ "_wxEraseEvent","_class_wxEraseEvent",0},
|
{ "_wxEraseEvent","_class_wxEraseEvent",0},
|
||||||
|
{ "_wxDataObjectComposite","_class_wxDataObjectComposite",0},
|
||||||
{ "_class_wxJoystickEvent","_wxJoystickEvent",0},
|
{ "_class_wxJoystickEvent","_wxJoystickEvent",0},
|
||||||
{ "_wxRegion","_class_wxRegion",0},
|
{ "_wxRegion","_class_wxRegion",0},
|
||||||
{ "_class_wxSplitterWindow","_wxSplitterWindow",0},
|
{ "_class_wxSplitterWindow","_wxSplitterWindow",0},
|
||||||
{ "_class_wxShowEvent","_wxShowEvent",0},
|
{ "_class_wxShowEvent","_wxShowEvent",0},
|
||||||
|
{ "_wxPyDropTarget","_class_wxPyDropTarget",0},
|
||||||
{ "_wxActivateEvent","_class_wxActivateEvent",0},
|
{ "_wxActivateEvent","_class_wxActivateEvent",0},
|
||||||
{ "_wxGauge","_class_wxGauge",0},
|
{ "_wxGauge","_class_wxGauge",0},
|
||||||
{ "_class_wxCheckListBox","_wxCheckListBox",0},
|
{ "_class_wxCheckListBox","_wxCheckListBox",0},
|
||||||
|
{ "_class_wxBusyInfo","_wxBusyInfo",0},
|
||||||
{ "_class_wxGridEvent","_wxGridEvent",0},
|
{ "_class_wxGridEvent","_wxGridEvent",0},
|
||||||
{ "_class_wxCommandEvent","_class_wxSplitterEvent",SwigwxSplitterEventTowxCommandEvent},
|
{ "_class_wxCommandEvent","_class_wxSplitterEvent",SwigwxSplitterEventTowxCommandEvent},
|
||||||
{ "_class_wxCommandEvent","_wxSplitterEvent",SwigwxSplitterEventTowxCommandEvent},
|
{ "_class_wxCommandEvent","_wxSplitterEvent",SwigwxSplitterEventTowxCommandEvent},
|
||||||
@@ -5440,10 +5488,12 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxCommandEvent","_wxCommandEvent",0},
|
{ "_class_wxCommandEvent","_wxCommandEvent",0},
|
||||||
{ "_class_wxClientDC","_wxClientDC",0},
|
{ "_class_wxClientDC","_wxClientDC",0},
|
||||||
{ "_class_wxSizeEvent","_wxSizeEvent",0},
|
{ "_class_wxSizeEvent","_wxSizeEvent",0},
|
||||||
|
{ "_wxCustomDataObject","_class_wxCustomDataObject",0},
|
||||||
{ "_class_wxGridCell","_wxGridCell",0},
|
{ "_class_wxGridCell","_wxGridCell",0},
|
||||||
{ "_class_wxSize","_wxSize",0},
|
{ "_class_wxSize","_wxSize",0},
|
||||||
{ "_class_wxBitmap","_wxBitmap",0},
|
{ "_class_wxBitmap","_wxBitmap",0},
|
||||||
{ "_class_wxMemoryDC","_wxMemoryDC",0},
|
{ "_class_wxMemoryDC","_wxMemoryDC",0},
|
||||||
|
{ "_wxPyTextDropTarget","_class_wxPyTextDropTarget",0},
|
||||||
{ "_wxMenuBar","_class_wxMenuBar",0},
|
{ "_wxMenuBar","_class_wxMenuBar",0},
|
||||||
{ "_wxEvtHandler","_class_wxSplitterWindow",SwigwxSplitterWindowTowxEvtHandler},
|
{ "_wxEvtHandler","_class_wxSplitterWindow",SwigwxSplitterWindowTowxEvtHandler},
|
||||||
{ "_wxEvtHandler","_wxSplitterWindow",SwigwxSplitterWindowTowxEvtHandler},
|
{ "_wxEvtHandler","_wxSplitterWindow",SwigwxSplitterWindowTowxEvtHandler},
|
||||||
@@ -5460,7 +5510,9 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxKeyEvent","_class_wxKeyEvent",0},
|
{ "_wxKeyEvent","_class_wxKeyEvent",0},
|
||||||
{ "_wxMoveEvent","_class_wxMoveEvent",0},
|
{ "_wxMoveEvent","_class_wxMoveEvent",0},
|
||||||
{ "_class_wxPalette","_wxPalette",0},
|
{ "_class_wxPalette","_wxPalette",0},
|
||||||
|
{ "_wxFileDataObject","_class_wxFileDataObject",0},
|
||||||
{ "_class_wxEraseEvent","_wxEraseEvent",0},
|
{ "_class_wxEraseEvent","_wxEraseEvent",0},
|
||||||
|
{ "_class_wxDataObjectComposite","_wxDataObjectComposite",0},
|
||||||
{ "_wxWindow","_class_wxSplitterWindow",SwigwxSplitterWindowTowxWindow},
|
{ "_wxWindow","_class_wxSplitterWindow",SwigwxSplitterWindowTowxWindow},
|
||||||
{ "_wxWindow","_wxSplitterWindow",SwigwxSplitterWindowTowxWindow},
|
{ "_wxWindow","_wxSplitterWindow",SwigwxSplitterWindowTowxWindow},
|
||||||
{ "_wxWindow","_class_wxNotebook",SwigwxNotebookTowxWindow},
|
{ "_wxWindow","_class_wxNotebook",SwigwxNotebookTowxWindow},
|
||||||
|
@@ -7,6 +7,8 @@ from gdi import *
|
|||||||
|
|
||||||
from windows import *
|
from windows import *
|
||||||
|
|
||||||
|
from clip_dnd import *
|
||||||
|
|
||||||
from controls import *
|
from controls import *
|
||||||
|
|
||||||
from events import *
|
from events import *
|
||||||
|
@@ -1745,7 +1745,10 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxActivateEvent","_wxActivateEvent",0},
|
{ "_class_wxActivateEvent","_wxActivateEvent",0},
|
||||||
{ "_signed_long","_long",0},
|
{ "_signed_long","_long",0},
|
||||||
{ "_wxMenuEvent","_class_wxMenuEvent",0},
|
{ "_wxMenuEvent","_class_wxMenuEvent",0},
|
||||||
|
{ "_wxPyBitmapDataObject","_class_wxPyBitmapDataObject",0},
|
||||||
|
{ "_wxBitmapDataObject","_class_wxBitmapDataObject",0},
|
||||||
{ "_class_wxPyCommandEvent","_wxPyCommandEvent",0},
|
{ "_class_wxPyCommandEvent","_wxPyCommandEvent",0},
|
||||||
|
{ "_wxPrintQuality","_wxCoord",0},
|
||||||
{ "_wxPrintQuality","_int",0},
|
{ "_wxPrintQuality","_int",0},
|
||||||
{ "_wxPrintQuality","_signed_int",0},
|
{ "_wxPrintQuality","_signed_int",0},
|
||||||
{ "_wxPrintQuality","_unsigned_int",0},
|
{ "_wxPrintQuality","_unsigned_int",0},
|
||||||
@@ -1753,7 +1756,9 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPrintQuality","_uint",0},
|
{ "_wxPrintQuality","_uint",0},
|
||||||
{ "_wxPrintQuality","_EBool",0},
|
{ "_wxPrintQuality","_EBool",0},
|
||||||
{ "_wxPrintQuality","_size_t",0},
|
{ "_wxPrintQuality","_size_t",0},
|
||||||
|
{ "_class_wxCustomDataObject","_wxCustomDataObject",0},
|
||||||
{ "_class_wxRegionIterator","_wxRegionIterator",0},
|
{ "_class_wxRegionIterator","_wxRegionIterator",0},
|
||||||
|
{ "_class_wxPyTextDropTarget","_wxPyTextDropTarget",0},
|
||||||
{ "_class_wxMenuBar","_wxMenuBar",0},
|
{ "_class_wxMenuBar","_wxMenuBar",0},
|
||||||
{ "_class_wxEvtHandler","_class_wxSashLayoutWindow",SwigwxSashLayoutWindowTowxEvtHandler},
|
{ "_class_wxEvtHandler","_class_wxSashLayoutWindow",SwigwxSashLayoutWindowTowxEvtHandler},
|
||||||
{ "_class_wxEvtHandler","_wxSashLayoutWindow",SwigwxSashLayoutWindowTowxEvtHandler},
|
{ "_class_wxEvtHandler","_wxSashLayoutWindow",SwigwxSashLayoutWindowTowxEvtHandler},
|
||||||
@@ -1769,7 +1774,10 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPen","_class_wxPen",0},
|
{ "_wxPen","_class_wxPen",0},
|
||||||
{ "_wxUpdateUIEvent","_class_wxUpdateUIEvent",0},
|
{ "_wxUpdateUIEvent","_class_wxUpdateUIEvent",0},
|
||||||
{ "_byte","_unsigned_char",0},
|
{ "_byte","_unsigned_char",0},
|
||||||
|
{ "_wxDataObject","_class_wxDataObject",0},
|
||||||
{ "_wxStaticBox","_class_wxStaticBox",0},
|
{ "_wxStaticBox","_class_wxStaticBox",0},
|
||||||
|
{ "_wxPyDataObjectSimple","_class_wxPyDataObjectSimple",0},
|
||||||
|
{ "_wxPyDropSource","_class_wxPyDropSource",0},
|
||||||
{ "_wxChoice","_class_wxChoice",0},
|
{ "_wxChoice","_class_wxChoice",0},
|
||||||
{ "_wxSlider","_class_wxSlider",0},
|
{ "_wxSlider","_class_wxSlider",0},
|
||||||
{ "_wxNotebookEvent","_class_wxNotebookEvent",0},
|
{ "_wxNotebookEvent","_class_wxNotebookEvent",0},
|
||||||
@@ -1777,17 +1785,21 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_long","_unsigned_long",0},
|
{ "_long","_unsigned_long",0},
|
||||||
{ "_long","_signed_long",0},
|
{ "_long","_signed_long",0},
|
||||||
{ "_wxImageList","_class_wxImageList",0},
|
{ "_wxImageList","_class_wxImageList",0},
|
||||||
|
{ "_wxDataObjectSimple","_class_wxDataObjectSimple",0},
|
||||||
{ "_wxDropFilesEvent","_class_wxDropFilesEvent",0},
|
{ "_wxDropFilesEvent","_class_wxDropFilesEvent",0},
|
||||||
{ "_wxBitmapButton","_class_wxBitmapButton",0},
|
{ "_wxBitmapButton","_class_wxBitmapButton",0},
|
||||||
{ "_wxSashWindow","_class_wxSashLayoutWindow",SwigwxSashLayoutWindowTowxSashWindow},
|
{ "_wxSashWindow","_class_wxSashLayoutWindow",SwigwxSashLayoutWindowTowxSashWindow},
|
||||||
{ "_wxSashWindow","_wxSashLayoutWindow",SwigwxSashLayoutWindowTowxSashWindow},
|
{ "_wxSashWindow","_wxSashLayoutWindow",SwigwxSashLayoutWindowTowxSashWindow},
|
||||||
{ "_wxSashWindow","_class_wxSashWindow",0},
|
{ "_wxSashWindow","_class_wxSashWindow",0},
|
||||||
{ "_class_wxAcceleratorTable","_wxAcceleratorTable",0},
|
{ "_class_wxAcceleratorTable","_wxAcceleratorTable",0},
|
||||||
|
{ "_class_wxClipboard","_wxClipboard",0},
|
||||||
{ "_class_wxGauge","_wxGauge",0},
|
{ "_class_wxGauge","_wxGauge",0},
|
||||||
{ "_class_wxSashEvent","_wxSashEvent",0},
|
{ "_class_wxSashEvent","_wxSashEvent",0},
|
||||||
{ "_wxDC","_class_wxDC",0},
|
{ "_wxDC","_class_wxDC",0},
|
||||||
|
{ "_class_wxBitmapDataObject","_wxBitmapDataObject",0},
|
||||||
{ "_wxSpinEvent","_class_wxSpinEvent",0},
|
{ "_wxSpinEvent","_class_wxSpinEvent",0},
|
||||||
{ "_wxSashLayoutWindow","_class_wxSashLayoutWindow",0},
|
{ "_wxSashLayoutWindow","_class_wxSashLayoutWindow",0},
|
||||||
|
{ "_size_t","_wxCoord",0},
|
||||||
{ "_size_t","_wxPrintQuality",0},
|
{ "_size_t","_wxPrintQuality",0},
|
||||||
{ "_size_t","_unsigned_int",0},
|
{ "_size_t","_unsigned_int",0},
|
||||||
{ "_size_t","_int",0},
|
{ "_size_t","_int",0},
|
||||||
@@ -1807,22 +1819,28 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPyEvent","_class_wxPyEvent",0},
|
{ "_wxPyEvent","_class_wxPyEvent",0},
|
||||||
{ "_wxTextCtrl","_class_wxTextCtrl",0},
|
{ "_wxTextCtrl","_class_wxTextCtrl",0},
|
||||||
{ "_class_wxMask","_wxMask",0},
|
{ "_class_wxMask","_wxMask",0},
|
||||||
|
{ "_wxTextDataObject","_class_wxTextDataObject",0},
|
||||||
{ "_class_wxKeyEvent","_wxKeyEvent",0},
|
{ "_class_wxKeyEvent","_wxKeyEvent",0},
|
||||||
{ "_class_wxGrid","_wxGrid",0},
|
{ "_class_wxGrid","_wxGrid",0},
|
||||||
{ "_wxColour","_class_wxColour",0},
|
{ "_wxColour","_class_wxColour",0},
|
||||||
{ "_class_wxDialog","_wxDialog",0},
|
{ "_class_wxDialog","_wxDialog",0},
|
||||||
|
{ "_class_wxFileDataObject","_wxFileDataObject",0},
|
||||||
{ "_wxIdleEvent","_class_wxIdleEvent",0},
|
{ "_wxIdleEvent","_class_wxIdleEvent",0},
|
||||||
{ "_class_wxUpdateUIEvent","_wxUpdateUIEvent",0},
|
{ "_class_wxUpdateUIEvent","_wxUpdateUIEvent",0},
|
||||||
{ "_wxToolBar","_class_wxToolBar",0},
|
{ "_wxToolBar","_class_wxToolBar",0},
|
||||||
|
{ "_class_wxDataObject","_wxDataObject",0},
|
||||||
{ "_wxStaticLine","_class_wxStaticLine",0},
|
{ "_wxStaticLine","_class_wxStaticLine",0},
|
||||||
{ "_class_wxLayoutAlgorithm","_wxLayoutAlgorithm",0},
|
{ "_class_wxLayoutAlgorithm","_wxLayoutAlgorithm",0},
|
||||||
{ "_wxBrush","_class_wxBrush",0},
|
{ "_wxBrush","_class_wxBrush",0},
|
||||||
{ "_class_wxNotebookEvent","_wxNotebookEvent",0},
|
{ "_class_wxNotebookEvent","_wxNotebookEvent",0},
|
||||||
{ "_wxMiniFrame","_class_wxMiniFrame",0},
|
{ "_wxMiniFrame","_class_wxMiniFrame",0},
|
||||||
|
{ "_wxDataFormat","_class_wxDataFormat",0},
|
||||||
|
{ "_class_wxDataObjectSimple","_wxDataObjectSimple",0},
|
||||||
{ "_class_wxSashWindow","_class_wxSashLayoutWindow",SwigwxSashLayoutWindowTowxSashWindow},
|
{ "_class_wxSashWindow","_class_wxSashLayoutWindow",SwigwxSashLayoutWindowTowxSashWindow},
|
||||||
{ "_class_wxSashWindow","_wxSashLayoutWindow",SwigwxSashLayoutWindowTowxSashWindow},
|
{ "_class_wxSashWindow","_wxSashLayoutWindow",SwigwxSashLayoutWindowTowxSashWindow},
|
||||||
{ "_class_wxSashWindow","_wxSashWindow",0},
|
{ "_class_wxSashWindow","_wxSashWindow",0},
|
||||||
{ "_wxShowEvent","_class_wxShowEvent",0},
|
{ "_wxShowEvent","_class_wxShowEvent",0},
|
||||||
|
{ "_uint","_wxCoord",0},
|
||||||
{ "_uint","_wxPrintQuality",0},
|
{ "_uint","_wxPrintQuality",0},
|
||||||
{ "_uint","_size_t",0},
|
{ "_uint","_size_t",0},
|
||||||
{ "_uint","_unsigned_int",0},
|
{ "_uint","_unsigned_int",0},
|
||||||
@@ -1862,18 +1880,22 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxStaticBitmap","_wxStaticBitmap",0},
|
{ "_class_wxStaticBitmap","_wxStaticBitmap",0},
|
||||||
{ "_wxMDIChildFrame","_class_wxMDIChildFrame",0},
|
{ "_wxMDIChildFrame","_class_wxMDIChildFrame",0},
|
||||||
{ "_class_wxToolBar","_wxToolBar",0},
|
{ "_class_wxToolBar","_wxToolBar",0},
|
||||||
|
{ "_wxDropTarget","_class_wxDropTarget",0},
|
||||||
{ "_class_wxStaticLine","_wxStaticLine",0},
|
{ "_class_wxStaticLine","_wxStaticLine",0},
|
||||||
{ "_wxScrollEvent","_class_wxScrollEvent",0},
|
{ "_wxScrollEvent","_class_wxScrollEvent",0},
|
||||||
{ "_wxCalculateLayoutEvent","_class_wxCalculateLayoutEvent",0},
|
{ "_wxCalculateLayoutEvent","_class_wxCalculateLayoutEvent",0},
|
||||||
|
{ "_EBool","_wxCoord",0},
|
||||||
{ "_EBool","_wxPrintQuality",0},
|
{ "_EBool","_wxPrintQuality",0},
|
||||||
{ "_EBool","_signed_int",0},
|
{ "_EBool","_signed_int",0},
|
||||||
{ "_EBool","_int",0},
|
{ "_EBool","_int",0},
|
||||||
{ "_EBool","_wxWindowID",0},
|
{ "_EBool","_wxWindowID",0},
|
||||||
{ "_class_wxRegion","_wxRegion",0},
|
{ "_class_wxRegion","_wxRegion",0},
|
||||||
|
{ "_class_wxDataFormat","_wxDataFormat",0},
|
||||||
{ "_class_wxDropFilesEvent","_wxDropFilesEvent",0},
|
{ "_class_wxDropFilesEvent","_wxDropFilesEvent",0},
|
||||||
{ "_wxWindowDestroyEvent","_class_wxWindowDestroyEvent",0},
|
{ "_wxWindowDestroyEvent","_class_wxWindowDestroyEvent",0},
|
||||||
{ "_wxStaticText","_class_wxStaticText",0},
|
{ "_wxStaticText","_class_wxStaticText",0},
|
||||||
{ "_wxFont","_class_wxFont",0},
|
{ "_wxFont","_class_wxFont",0},
|
||||||
|
{ "_class_wxPyDropTarget","_wxPyDropTarget",0},
|
||||||
{ "_wxCloseEvent","_class_wxCloseEvent",0},
|
{ "_wxCloseEvent","_class_wxCloseEvent",0},
|
||||||
{ "_class_wxSplitterEvent","_wxSplitterEvent",0},
|
{ "_class_wxSplitterEvent","_wxSplitterEvent",0},
|
||||||
{ "_wxNotebook","_class_wxNotebook",0},
|
{ "_wxNotebook","_class_wxNotebook",0},
|
||||||
@@ -1894,12 +1916,14 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxCheckBox","_wxCheckBox",0},
|
{ "_class_wxCheckBox","_wxCheckBox",0},
|
||||||
{ "_wxComboBox","_class_wxComboBox",0},
|
{ "_wxComboBox","_class_wxComboBox",0},
|
||||||
{ "_wxRadioButton","_class_wxRadioButton",0},
|
{ "_wxRadioButton","_class_wxRadioButton",0},
|
||||||
|
{ "_signed_int","_wxCoord",0},
|
||||||
{ "_signed_int","_wxPrintQuality",0},
|
{ "_signed_int","_wxPrintQuality",0},
|
||||||
{ "_signed_int","_EBool",0},
|
{ "_signed_int","_EBool",0},
|
||||||
{ "_signed_int","_wxWindowID",0},
|
{ "_signed_int","_wxWindowID",0},
|
||||||
{ "_signed_int","_int",0},
|
{ "_signed_int","_int",0},
|
||||||
{ "_class_wxTextCtrl","_wxTextCtrl",0},
|
{ "_class_wxTextCtrl","_wxTextCtrl",0},
|
||||||
{ "_wxLayoutConstraints","_class_wxLayoutConstraints",0},
|
{ "_wxLayoutConstraints","_class_wxLayoutConstraints",0},
|
||||||
|
{ "_class_wxTextDataObject","_wxTextDataObject",0},
|
||||||
{ "_wxMenu","_class_wxMenu",0},
|
{ "_wxMenu","_class_wxMenu",0},
|
||||||
{ "_class_wxMoveEvent","_wxMoveEvent",0},
|
{ "_class_wxMoveEvent","_wxMoveEvent",0},
|
||||||
{ "_wxListBox","_class_wxListBox",0},
|
{ "_wxListBox","_class_wxListBox",0},
|
||||||
@@ -1908,6 +1932,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_WXTYPE","_short",0},
|
{ "_WXTYPE","_short",0},
|
||||||
{ "_WXTYPE","_signed_short",0},
|
{ "_WXTYPE","_signed_short",0},
|
||||||
{ "_WXTYPE","_unsigned_short",0},
|
{ "_WXTYPE","_unsigned_short",0},
|
||||||
|
{ "_class_wxDropTarget","_wxDropTarget",0},
|
||||||
{ "_class_wxMDIClientWindow","_wxMDIClientWindow",0},
|
{ "_class_wxMDIClientWindow","_wxMDIClientWindow",0},
|
||||||
{ "_class_wxBrush","_wxBrush",0},
|
{ "_class_wxBrush","_wxBrush",0},
|
||||||
{ "_unsigned_short","_WXTYPE",0},
|
{ "_unsigned_short","_WXTYPE",0},
|
||||||
@@ -1920,11 +1945,14 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxSplitterWindow","_class_wxSplitterWindow",0},
|
{ "_wxSplitterWindow","_class_wxSplitterWindow",0},
|
||||||
{ "_class_wxStaticText","_wxStaticText",0},
|
{ "_class_wxStaticText","_wxStaticText",0},
|
||||||
{ "_class_wxFont","_wxFont",0},
|
{ "_class_wxFont","_wxFont",0},
|
||||||
|
{ "_wxClipboard","_class_wxClipboard",0},
|
||||||
{ "_class_wxPyValidator","_wxPyValidator",0},
|
{ "_class_wxPyValidator","_wxPyValidator",0},
|
||||||
{ "_class_wxCloseEvent","_wxCloseEvent",0},
|
{ "_class_wxCloseEvent","_wxCloseEvent",0},
|
||||||
{ "_wxSashEvent","_class_wxSashEvent",0},
|
{ "_wxSashEvent","_class_wxSashEvent",0},
|
||||||
|
{ "_wxBusyInfo","_class_wxBusyInfo",0},
|
||||||
{ "_class_wxMenuEvent","_wxMenuEvent",0},
|
{ "_class_wxMenuEvent","_wxMenuEvent",0},
|
||||||
{ "_wxPaletteChangedEvent","_class_wxPaletteChangedEvent",0},
|
{ "_wxPaletteChangedEvent","_class_wxPaletteChangedEvent",0},
|
||||||
|
{ "_class_wxPyBitmapDataObject","_wxPyBitmapDataObject",0},
|
||||||
{ "_wxClientDC","_class_wxClientDC",0},
|
{ "_wxClientDC","_class_wxClientDC",0},
|
||||||
{ "_wxMouseEvent","_class_wxMouseEvent",0},
|
{ "_wxMouseEvent","_class_wxMouseEvent",0},
|
||||||
{ "_class_wxPoint","_wxPoint",0},
|
{ "_class_wxPoint","_wxPoint",0},
|
||||||
@@ -1934,6 +1962,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_signed_short","_WXTYPE",0},
|
{ "_signed_short","_WXTYPE",0},
|
||||||
{ "_signed_short","_short",0},
|
{ "_signed_short","_short",0},
|
||||||
{ "_wxMemoryDC","_class_wxMemoryDC",0},
|
{ "_wxMemoryDC","_class_wxMemoryDC",0},
|
||||||
|
{ "_wxPyTextDataObject","_class_wxPyTextDataObject",0},
|
||||||
{ "_wxPaintDC","_class_wxPaintDC",0},
|
{ "_wxPaintDC","_class_wxPaintDC",0},
|
||||||
{ "_class_wxWindowDC","_wxWindowDC",0},
|
{ "_class_wxWindowDC","_wxWindowDC",0},
|
||||||
{ "_class_wxFocusEvent","_wxFocusEvent",0},
|
{ "_class_wxFocusEvent","_wxFocusEvent",0},
|
||||||
@@ -1943,11 +1972,13 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxAcceleratorEntry","_wxAcceleratorEntry",0},
|
{ "_class_wxAcceleratorEntry","_wxAcceleratorEntry",0},
|
||||||
{ "_class_wxCursor","_wxCursor",0},
|
{ "_class_wxCursor","_wxCursor",0},
|
||||||
{ "_wxPostScriptDC","_class_wxPostScriptDC",0},
|
{ "_wxPostScriptDC","_class_wxPostScriptDC",0},
|
||||||
|
{ "_wxPyFileDropTarget","_class_wxPyFileDropTarget",0},
|
||||||
{ "_wxScrolledWindow","_class_wxScrolledWindow",0},
|
{ "_wxScrolledWindow","_class_wxScrolledWindow",0},
|
||||||
{ "_unsigned_char","_byte",0},
|
{ "_unsigned_char","_byte",0},
|
||||||
{ "_class_wxMenu","_wxMenu",0},
|
{ "_class_wxMenu","_wxMenu",0},
|
||||||
{ "_wxControl","_class_wxControl",0},
|
{ "_wxControl","_class_wxControl",0},
|
||||||
{ "_class_wxListBox","_wxListBox",0},
|
{ "_class_wxListBox","_wxListBox",0},
|
||||||
|
{ "_unsigned_int","_wxCoord",0},
|
||||||
{ "_unsigned_int","_wxPrintQuality",0},
|
{ "_unsigned_int","_wxPrintQuality",0},
|
||||||
{ "_unsigned_int","_size_t",0},
|
{ "_unsigned_int","_size_t",0},
|
||||||
{ "_unsigned_int","_uint",0},
|
{ "_unsigned_int","_uint",0},
|
||||||
@@ -1962,6 +1993,8 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_short","_signed_short",0},
|
{ "_short","_signed_short",0},
|
||||||
{ "_class_wxStaticBox","_wxStaticBox",0},
|
{ "_class_wxStaticBox","_wxStaticBox",0},
|
||||||
{ "_wxLayoutAlgorithm","_class_wxLayoutAlgorithm",0},
|
{ "_wxLayoutAlgorithm","_class_wxLayoutAlgorithm",0},
|
||||||
|
{ "_class_wxPyDataObjectSimple","_wxPyDataObjectSimple",0},
|
||||||
|
{ "_class_wxPyDropSource","_wxPyDropSource",0},
|
||||||
{ "_class_wxScrollEvent","_wxScrollEvent",0},
|
{ "_class_wxScrollEvent","_wxScrollEvent",0},
|
||||||
{ "_wxJoystickEvent","_class_wxJoystickEvent",0},
|
{ "_wxJoystickEvent","_class_wxJoystickEvent",0},
|
||||||
{ "_class_wxChoice","_wxChoice",0},
|
{ "_class_wxChoice","_wxChoice",0},
|
||||||
@@ -1972,6 +2005,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxFrame","_class_wxFrame",0},
|
{ "_wxFrame","_class_wxFrame",0},
|
||||||
{ "_class_wxPaletteChangedEvent","_wxPaletteChangedEvent",0},
|
{ "_class_wxPaletteChangedEvent","_wxPaletteChangedEvent",0},
|
||||||
{ "_class_wxNotebook","_wxNotebook",0},
|
{ "_class_wxNotebook","_wxNotebook",0},
|
||||||
|
{ "_wxWindowID","_wxCoord",0},
|
||||||
{ "_wxWindowID","_wxPrintQuality",0},
|
{ "_wxWindowID","_wxPrintQuality",0},
|
||||||
{ "_wxWindowID","_size_t",0},
|
{ "_wxWindowID","_size_t",0},
|
||||||
{ "_wxWindowID","_EBool",0},
|
{ "_wxWindowID","_EBool",0},
|
||||||
@@ -1980,6 +2014,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxWindowID","_signed_int",0},
|
{ "_wxWindowID","_signed_int",0},
|
||||||
{ "_wxWindowID","_unsigned_int",0},
|
{ "_wxWindowID","_unsigned_int",0},
|
||||||
{ "_class_wxScrollWinEvent","_wxScrollWinEvent",0},
|
{ "_class_wxScrollWinEvent","_wxScrollWinEvent",0},
|
||||||
|
{ "_int","_wxCoord",0},
|
||||||
{ "_int","_wxPrintQuality",0},
|
{ "_int","_wxPrintQuality",0},
|
||||||
{ "_int","_size_t",0},
|
{ "_int","_size_t",0},
|
||||||
{ "_int","_EBool",0},
|
{ "_int","_EBool",0},
|
||||||
@@ -1995,9 +2030,11 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxButton","_class_wxButton",0},
|
{ "_wxButton","_class_wxButton",0},
|
||||||
{ "_wxSize","_class_wxSize",0},
|
{ "_wxSize","_class_wxSize",0},
|
||||||
{ "_wxRegionIterator","_class_wxRegionIterator",0},
|
{ "_wxRegionIterator","_class_wxRegionIterator",0},
|
||||||
|
{ "_class_wxPyTextDataObject","_wxPyTextDataObject",0},
|
||||||
{ "_class_wxMDIParentFrame","_wxMDIParentFrame",0},
|
{ "_class_wxMDIParentFrame","_wxMDIParentFrame",0},
|
||||||
{ "_class_wxPaintDC","_wxPaintDC",0},
|
{ "_class_wxPaintDC","_wxPaintDC",0},
|
||||||
{ "_class_wxSysColourChangedEvent","_wxSysColourChangedEvent",0},
|
{ "_class_wxSysColourChangedEvent","_wxSysColourChangedEvent",0},
|
||||||
|
{ "_class_wxPyFileDropTarget","_wxPyFileDropTarget",0},
|
||||||
{ "_class_wxInitDialogEvent","_wxInitDialogEvent",0},
|
{ "_class_wxInitDialogEvent","_wxInitDialogEvent",0},
|
||||||
{ "_class_wxComboBox","_wxComboBox",0},
|
{ "_class_wxComboBox","_wxComboBox",0},
|
||||||
{ "_class_wxRadioButton","_wxRadioButton",0},
|
{ "_class_wxRadioButton","_wxRadioButton",0},
|
||||||
@@ -2011,25 +2048,38 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxScreenDC","_wxScreenDC",0},
|
{ "_class_wxScreenDC","_wxScreenDC",0},
|
||||||
{ "_wxPalette","_class_wxPalette",0},
|
{ "_wxPalette","_class_wxPalette",0},
|
||||||
{ "_class_wxIdleEvent","_wxIdleEvent",0},
|
{ "_class_wxIdleEvent","_wxIdleEvent",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","_wxPrintQuality",0},
|
||||||
{ "_wxEraseEvent","_class_wxEraseEvent",0},
|
{ "_wxEraseEvent","_class_wxEraseEvent",0},
|
||||||
|
{ "_wxDataObjectComposite","_class_wxDataObjectComposite",0},
|
||||||
{ "_class_wxJoystickEvent","_wxJoystickEvent",0},
|
{ "_class_wxJoystickEvent","_wxJoystickEvent",0},
|
||||||
{ "_class_wxMiniFrame","_wxMiniFrame",0},
|
{ "_class_wxMiniFrame","_wxMiniFrame",0},
|
||||||
{ "_wxRegion","_class_wxRegion",0},
|
{ "_wxRegion","_class_wxRegion",0},
|
||||||
{ "_class_wxSplitterWindow","_wxSplitterWindow",0},
|
{ "_class_wxSplitterWindow","_wxSplitterWindow",0},
|
||||||
{ "_class_wxShowEvent","_wxShowEvent",0},
|
{ "_class_wxShowEvent","_wxShowEvent",0},
|
||||||
|
{ "_wxPyDropTarget","_class_wxPyDropTarget",0},
|
||||||
{ "_wxActivateEvent","_class_wxActivateEvent",0},
|
{ "_wxActivateEvent","_class_wxActivateEvent",0},
|
||||||
{ "_wxGauge","_class_wxGauge",0},
|
{ "_wxGauge","_class_wxGauge",0},
|
||||||
{ "_class_wxCheckListBox","_wxCheckListBox",0},
|
{ "_class_wxCheckListBox","_wxCheckListBox",0},
|
||||||
|
{ "_class_wxBusyInfo","_wxBusyInfo",0},
|
||||||
{ "_class_wxGridEvent","_wxGridEvent",0},
|
{ "_class_wxGridEvent","_wxGridEvent",0},
|
||||||
{ "_class_wxCommandEvent","_class_wxSashEvent",SwigwxSashEventTowxCommandEvent},
|
{ "_class_wxCommandEvent","_class_wxSashEvent",SwigwxSashEventTowxCommandEvent},
|
||||||
{ "_class_wxCommandEvent","_wxSashEvent",SwigwxSashEventTowxCommandEvent},
|
{ "_class_wxCommandEvent","_wxSashEvent",SwigwxSashEventTowxCommandEvent},
|
||||||
{ "_class_wxCommandEvent","_wxCommandEvent",0},
|
{ "_class_wxCommandEvent","_wxCommandEvent",0},
|
||||||
{ "_class_wxClientDC","_wxClientDC",0},
|
{ "_class_wxClientDC","_wxClientDC",0},
|
||||||
{ "_class_wxSizeEvent","_wxSizeEvent",0},
|
{ "_class_wxSizeEvent","_wxSizeEvent",0},
|
||||||
|
{ "_wxCustomDataObject","_class_wxCustomDataObject",0},
|
||||||
{ "_class_wxGridCell","_wxGridCell",0},
|
{ "_class_wxGridCell","_wxGridCell",0},
|
||||||
{ "_class_wxSize","_wxSize",0},
|
{ "_class_wxSize","_wxSize",0},
|
||||||
{ "_class_wxBitmap","_wxBitmap",0},
|
{ "_class_wxBitmap","_wxBitmap",0},
|
||||||
{ "_class_wxMemoryDC","_wxMemoryDC",0},
|
{ "_class_wxMemoryDC","_wxMemoryDC",0},
|
||||||
|
{ "_wxPyTextDropTarget","_class_wxPyTextDropTarget",0},
|
||||||
{ "_wxMenuBar","_class_wxMenuBar",0},
|
{ "_wxMenuBar","_class_wxMenuBar",0},
|
||||||
{ "_wxEvtHandler","_class_wxSashLayoutWindow",SwigwxSashLayoutWindowTowxEvtHandler},
|
{ "_wxEvtHandler","_class_wxSashLayoutWindow",SwigwxSashLayoutWindowTowxEvtHandler},
|
||||||
{ "_wxEvtHandler","_wxSashLayoutWindow",SwigwxSashLayoutWindowTowxEvtHandler},
|
{ "_wxEvtHandler","_wxSashLayoutWindow",SwigwxSashLayoutWindowTowxEvtHandler},
|
||||||
@@ -2044,9 +2094,11 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxKeyEvent","_class_wxKeyEvent",0},
|
{ "_wxKeyEvent","_class_wxKeyEvent",0},
|
||||||
{ "_wxMoveEvent","_class_wxMoveEvent",0},
|
{ "_wxMoveEvent","_class_wxMoveEvent",0},
|
||||||
{ "_class_wxPalette","_wxPalette",0},
|
{ "_class_wxPalette","_wxPalette",0},
|
||||||
|
{ "_wxFileDataObject","_class_wxFileDataObject",0},
|
||||||
{ "_class_wxQueryLayoutInfoEvent","_wxQueryLayoutInfoEvent",0},
|
{ "_class_wxQueryLayoutInfoEvent","_wxQueryLayoutInfoEvent",0},
|
||||||
{ "_class_wxEraseEvent","_wxEraseEvent",0},
|
{ "_class_wxEraseEvent","_wxEraseEvent",0},
|
||||||
{ "_wxMDIClientWindow","_class_wxMDIClientWindow",0},
|
{ "_wxMDIClientWindow","_class_wxMDIClientWindow",0},
|
||||||
|
{ "_class_wxDataObjectComposite","_wxDataObjectComposite",0},
|
||||||
{ "_wxWindow","_class_wxSashLayoutWindow",SwigwxSashLayoutWindowTowxWindow},
|
{ "_wxWindow","_class_wxSashLayoutWindow",SwigwxSashLayoutWindowTowxWindow},
|
||||||
{ "_wxWindow","_wxSashLayoutWindow",SwigwxSashLayoutWindowTowxWindow},
|
{ "_wxWindow","_wxSashLayoutWindow",SwigwxSashLayoutWindowTowxWindow},
|
||||||
{ "_wxWindow","_class_wxSashWindow",SwigwxSashWindowTowxWindow},
|
{ "_wxWindow","_class_wxSashWindow",SwigwxSashWindowTowxWindow},
|
||||||
|
@@ -7,6 +7,8 @@ from gdi import *
|
|||||||
|
|
||||||
from windows import *
|
from windows import *
|
||||||
|
|
||||||
|
from clip_dnd import *
|
||||||
|
|
||||||
from windows2 import *
|
from windows2 import *
|
||||||
|
|
||||||
from controls import *
|
from controls import *
|
||||||
|
@@ -614,11 +614,9 @@ PyObject *ptrfree(PyObject *_PTRVALUE) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
class __wxPyCleanup {
|
void wxApp_CleanUp() {
|
||||||
public:
|
wxApp::CleanUp();
|
||||||
__wxPyCleanup() { }
|
}
|
||||||
~__wxPyCleanup() { wxApp::CleanUp(); }
|
|
||||||
};
|
|
||||||
|
|
||||||
extern "C" SWIGEXPORT(void) initwindowsc();
|
extern "C" SWIGEXPORT(void) initwindowsc();
|
||||||
extern "C" SWIGEXPORT(void) initwindows2c();
|
extern "C" SWIGEXPORT(void) initwindows2c();
|
||||||
@@ -636,6 +634,7 @@ extern "C" SWIGEXPORT(void) initwindows3c();
|
|||||||
extern "C" SWIGEXPORT(void) initimagec();
|
extern "C" SWIGEXPORT(void) initimagec();
|
||||||
extern "C" SWIGEXPORT(void) initprintfwc();
|
extern "C" SWIGEXPORT(void) initprintfwc();
|
||||||
extern "C" SWIGEXPORT(void) initsizersc();
|
extern "C" SWIGEXPORT(void) initsizersc();
|
||||||
|
extern "C" SWIGEXPORT(void) initclip_dndc();
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
@@ -862,6 +861,23 @@ static PyObject *_wrap_wxPyDefaultSize_get() {
|
|||||||
return pyobj;
|
return pyobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static PyObject *_wrap_wxApp_CleanUp(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
|
PyObject * _resultobj;
|
||||||
|
char *_kwnames[] = { NULL };
|
||||||
|
|
||||||
|
self = self;
|
||||||
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,":wxApp_CleanUp",_kwnames))
|
||||||
|
return NULL;
|
||||||
|
{
|
||||||
|
wxPy_BEGIN_ALLOW_THREADS;
|
||||||
|
wxApp_CleanUp();
|
||||||
|
|
||||||
|
wxPy_END_ALLOW_THREADS;
|
||||||
|
} Py_INCREF(Py_None);
|
||||||
|
_resultobj = Py_None;
|
||||||
|
return _resultobj;
|
||||||
|
}
|
||||||
|
|
||||||
static void *SwigwxPyAppTowxEvtHandler(void *ptr) {
|
static void *SwigwxPyAppTowxEvtHandler(void *ptr) {
|
||||||
wxPyApp *src;
|
wxPyApp *src;
|
||||||
wxEvtHandler *dest;
|
wxEvtHandler *dest;
|
||||||
@@ -1516,61 +1532,7 @@ static PyObject *_wrap_wxPyApp_GetStdIcon(PyObject *self, PyObject *args, PyObje
|
|||||||
return _resultobj;
|
return _resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
#define new___wxPyCleanup() (new __wxPyCleanup())
|
|
||||||
static PyObject *_wrap_new___wxPyCleanup(PyObject *self, PyObject *args, PyObject *kwargs) {
|
|
||||||
PyObject * _resultobj;
|
|
||||||
__wxPyCleanup * _result;
|
|
||||||
char *_kwnames[] = { NULL };
|
|
||||||
char _ptemp[128];
|
|
||||||
|
|
||||||
self = self;
|
|
||||||
if(!PyArg_ParseTupleAndKeywords(args,kwargs,":new___wxPyCleanup",_kwnames))
|
|
||||||
return NULL;
|
|
||||||
{
|
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
|
||||||
_result = (__wxPyCleanup *)new___wxPyCleanup();
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
|
||||||
} if (_result) {
|
|
||||||
SWIG_MakePtr(_ptemp, (char *) _result,"___wxPyCleanup_p");
|
|
||||||
_resultobj = Py_BuildValue("s",_ptemp);
|
|
||||||
} else {
|
|
||||||
Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
}
|
|
||||||
return _resultobj;
|
|
||||||
}
|
|
||||||
|
|
||||||
#define delete___wxPyCleanup(_swigobj) (delete _swigobj)
|
|
||||||
static PyObject *_wrap_delete___wxPyCleanup(PyObject *self, PyObject *args, PyObject *kwargs) {
|
|
||||||
PyObject * _resultobj;
|
|
||||||
__wxPyCleanup * _arg0;
|
|
||||||
PyObject * _argo0 = 0;
|
|
||||||
char *_kwnames[] = { "self", NULL };
|
|
||||||
|
|
||||||
self = self;
|
|
||||||
if(!PyArg_ParseTupleAndKeywords(args,kwargs,"O:delete___wxPyCleanup",_kwnames,&_argo0))
|
|
||||||
return NULL;
|
|
||||||
if (_argo0) {
|
|
||||||
if (_argo0 == Py_None) { _arg0 = NULL; }
|
|
||||||
else if (SWIG_GetPtrObj(_argo0,(void **) &_arg0,"___wxPyCleanup_p")) {
|
|
||||||
PyErr_SetString(PyExc_TypeError,"Type error in argument 1 of delete___wxPyCleanup. Expected ___wxPyCleanup_p.");
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
{
|
|
||||||
wxPy_BEGIN_ALLOW_THREADS;
|
|
||||||
delete___wxPyCleanup(_arg0);
|
|
||||||
|
|
||||||
wxPy_END_ALLOW_THREADS;
|
|
||||||
} Py_INCREF(Py_None);
|
|
||||||
_resultobj = Py_None;
|
|
||||||
return _resultobj;
|
|
||||||
}
|
|
||||||
|
|
||||||
static PyMethodDef wxcMethods[] = {
|
static PyMethodDef wxcMethods[] = {
|
||||||
{ "delete___wxPyCleanup", (PyCFunction) _wrap_delete___wxPyCleanup, METH_VARARGS | METH_KEYWORDS },
|
|
||||||
{ "new___wxPyCleanup", (PyCFunction) _wrap_new___wxPyCleanup, METH_VARARGS | METH_KEYWORDS },
|
|
||||||
{ "wxPyApp_GetStdIcon", (PyCFunction) _wrap_wxPyApp_GetStdIcon, METH_VARARGS | METH_KEYWORDS },
|
{ "wxPyApp_GetStdIcon", (PyCFunction) _wrap_wxPyApp_GetStdIcon, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "wxPyApp_SetVendorName", (PyCFunction) _wrap_wxPyApp_SetVendorName, METH_VARARGS | METH_KEYWORDS },
|
{ "wxPyApp_SetVendorName", (PyCFunction) _wrap_wxPyApp_SetVendorName, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "wxPyApp_SetTopWindow", (PyCFunction) _wrap_wxPyApp_SetTopWindow, METH_VARARGS | METH_KEYWORDS },
|
{ "wxPyApp_SetTopWindow", (PyCFunction) _wrap_wxPyApp_SetTopWindow, METH_VARARGS | METH_KEYWORDS },
|
||||||
@@ -1592,6 +1554,7 @@ static PyMethodDef wxcMethods[] = {
|
|||||||
{ "wxPyApp_GetAppName", (PyCFunction) _wrap_wxPyApp_GetAppName, METH_VARARGS | METH_KEYWORDS },
|
{ "wxPyApp_GetAppName", (PyCFunction) _wrap_wxPyApp_GetAppName, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "delete_wxPyApp", (PyCFunction) _wrap_delete_wxPyApp, METH_VARARGS | METH_KEYWORDS },
|
{ "delete_wxPyApp", (PyCFunction) _wrap_delete_wxPyApp, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "new_wxPyApp", (PyCFunction) _wrap_new_wxPyApp, METH_VARARGS | METH_KEYWORDS },
|
{ "new_wxPyApp", (PyCFunction) _wrap_new_wxPyApp, METH_VARARGS | METH_KEYWORDS },
|
||||||
|
{ "wxApp_CleanUp", (PyCFunction) _wrap_wxApp_CleanUp, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "_wxSetDictionary", (PyCFunction) __wxSetDictionary, METH_VARARGS | METH_KEYWORDS },
|
{ "_wxSetDictionary", (PyCFunction) __wxSetDictionary, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "_wxStart", (PyCFunction) __wxStart, METH_VARARGS | METH_KEYWORDS },
|
{ "_wxStart", (PyCFunction) __wxStart, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ "ptrmap", (PyCFunction) _wrap_ptrmap, METH_VARARGS | METH_KEYWORDS },
|
{ "ptrmap", (PyCFunction) _wrap_ptrmap, METH_VARARGS | METH_KEYWORDS },
|
||||||
@@ -1616,9 +1579,12 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_signed_long","_long",0},
|
{ "_signed_long","_long",0},
|
||||||
{ "_wxMenuEvent","_class_wxMenuEvent",0},
|
{ "_wxMenuEvent","_class_wxMenuEvent",0},
|
||||||
{ "_class_wxJPEGHandler","_wxJPEGHandler",0},
|
{ "_class_wxJPEGHandler","_wxJPEGHandler",0},
|
||||||
|
{ "_wxPyBitmapDataObject","_class_wxPyBitmapDataObject",0},
|
||||||
|
{ "_wxBitmapDataObject","_class_wxBitmapDataObject",0},
|
||||||
{ "_class_wxPyCommandEvent","_wxPyCommandEvent",0},
|
{ "_class_wxPyCommandEvent","_wxPyCommandEvent",0},
|
||||||
{ "_wxBMPHandler","_class_wxBMPHandler",0},
|
{ "_wxBMPHandler","_class_wxBMPHandler",0},
|
||||||
{ "_wxImage","_class_wxImage",0},
|
{ "_wxImage","_class_wxImage",0},
|
||||||
|
{ "_wxPrintQuality","_wxCoord",0},
|
||||||
{ "_wxPrintQuality","_int",0},
|
{ "_wxPrintQuality","_int",0},
|
||||||
{ "_wxPrintQuality","_signed_int",0},
|
{ "_wxPrintQuality","_signed_int",0},
|
||||||
{ "_wxPrintQuality","_unsigned_int",0},
|
{ "_wxPrintQuality","_unsigned_int",0},
|
||||||
@@ -1626,9 +1592,10 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPrintQuality","_uint",0},
|
{ "_wxPrintQuality","_uint",0},
|
||||||
{ "_wxPrintQuality","_EBool",0},
|
{ "_wxPrintQuality","_EBool",0},
|
||||||
{ "_wxPrintQuality","_size_t",0},
|
{ "_wxPrintQuality","_size_t",0},
|
||||||
|
{ "_class_wxCustomDataObject","_wxCustomDataObject",0},
|
||||||
{ "_wxFontData","_class_wxFontData",0},
|
{ "_wxFontData","_class_wxFontData",0},
|
||||||
{ "___wxPyCleanup","_class___wxPyCleanup",0},
|
|
||||||
{ "_class_wxRegionIterator","_wxRegionIterator",0},
|
{ "_class_wxRegionIterator","_wxRegionIterator",0},
|
||||||
|
{ "_class_wxPyTextDropTarget","_wxPyTextDropTarget",0},
|
||||||
{ "_class_wxMenuBar","_wxMenuBar",0},
|
{ "_class_wxMenuBar","_wxMenuBar",0},
|
||||||
{ "_class_wxPyTreeItemData","_wxPyTreeItemData",0},
|
{ "_class_wxPyTreeItemData","_wxPyTreeItemData",0},
|
||||||
{ "_class_wxStaticBoxSizer","_wxStaticBoxSizer",0},
|
{ "_class_wxStaticBoxSizer","_wxStaticBoxSizer",0},
|
||||||
@@ -1653,7 +1620,11 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPen","_class_wxPen",0},
|
{ "_wxPen","_class_wxPen",0},
|
||||||
{ "_wxUpdateUIEvent","_class_wxUpdateUIEvent",0},
|
{ "_wxUpdateUIEvent","_class_wxUpdateUIEvent",0},
|
||||||
{ "_byte","_unsigned_char",0},
|
{ "_byte","_unsigned_char",0},
|
||||||
|
{ "_wxDataObject","_class_wxDataObject",0},
|
||||||
|
{ "_class_wxPyFontEnumerator","_wxPyFontEnumerator",0},
|
||||||
{ "_wxStaticBox","_class_wxStaticBox",0},
|
{ "_wxStaticBox","_class_wxStaticBox",0},
|
||||||
|
{ "_wxPyDataObjectSimple","_class_wxPyDataObjectSimple",0},
|
||||||
|
{ "_wxPyDropSource","_class_wxPyDropSource",0},
|
||||||
{ "_wxChoice","_class_wxChoice",0},
|
{ "_wxChoice","_class_wxChoice",0},
|
||||||
{ "_wxSlider","_class_wxSlider",0},
|
{ "_wxSlider","_class_wxSlider",0},
|
||||||
{ "_wxNotebookEvent","_class_wxNotebookEvent",0},
|
{ "_wxNotebookEvent","_class_wxNotebookEvent",0},
|
||||||
@@ -1662,16 +1633,19 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_long","_unsigned_long",0},
|
{ "_long","_unsigned_long",0},
|
||||||
{ "_long","_signed_long",0},
|
{ "_long","_signed_long",0},
|
||||||
{ "_wxImageList","_class_wxImageList",0},
|
{ "_wxImageList","_class_wxImageList",0},
|
||||||
|
{ "_wxDataObjectSimple","_class_wxDataObjectSimple",0},
|
||||||
{ "_wxDropFilesEvent","_class_wxDropFilesEvent",0},
|
{ "_wxDropFilesEvent","_class_wxDropFilesEvent",0},
|
||||||
{ "_wxBitmapButton","_class_wxBitmapButton",0},
|
{ "_wxBitmapButton","_class_wxBitmapButton",0},
|
||||||
{ "_wxSashWindow","_class_wxSashWindow",0},
|
{ "_wxSashWindow","_class_wxSashWindow",0},
|
||||||
{ "_class_wxSizer","_wxSizer",0},
|
{ "_class_wxSizer","_wxSizer",0},
|
||||||
{ "_class_wxPrintDialogData","_wxPrintDialogData",0},
|
{ "_class_wxPrintDialogData","_wxPrintDialogData",0},
|
||||||
{ "_class_wxAcceleratorTable","_wxAcceleratorTable",0},
|
{ "_class_wxAcceleratorTable","_wxAcceleratorTable",0},
|
||||||
|
{ "_class_wxClipboard","_wxClipboard",0},
|
||||||
{ "_class_wxGauge","_wxGauge",0},
|
{ "_class_wxGauge","_wxGauge",0},
|
||||||
{ "_class_wxSashEvent","_wxSashEvent",0},
|
{ "_class_wxSashEvent","_wxSashEvent",0},
|
||||||
{ "_wxDC","_class_wxDC",0},
|
{ "_wxDC","_class_wxDC",0},
|
||||||
{ "_wxSizerItem","_class_wxSizerItem",0},
|
{ "_wxSizerItem","_class_wxSizerItem",0},
|
||||||
|
{ "_class_wxBitmapDataObject","_wxBitmapDataObject",0},
|
||||||
{ "_wxListEvent","_class_wxListEvent",0},
|
{ "_wxListEvent","_class_wxListEvent",0},
|
||||||
{ "_class_wxSingleChoiceDialog","_wxSingleChoiceDialog",0},
|
{ "_class_wxSingleChoiceDialog","_wxSingleChoiceDialog",0},
|
||||||
{ "_wxProgressDialog","_class_wxProgressDialog",0},
|
{ "_wxProgressDialog","_class_wxProgressDialog",0},
|
||||||
@@ -1679,6 +1653,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPrintPreview","_class_wxPrintPreview",0},
|
{ "_wxPrintPreview","_class_wxPrintPreview",0},
|
||||||
{ "_wxSpinEvent","_class_wxSpinEvent",0},
|
{ "_wxSpinEvent","_class_wxSpinEvent",0},
|
||||||
{ "_wxSashLayoutWindow","_class_wxSashLayoutWindow",0},
|
{ "_wxSashLayoutWindow","_class_wxSashLayoutWindow",0},
|
||||||
|
{ "_size_t","_wxCoord",0},
|
||||||
{ "_size_t","_wxPrintQuality",0},
|
{ "_size_t","_wxPrintQuality",0},
|
||||||
{ "_size_t","_unsigned_int",0},
|
{ "_size_t","_unsigned_int",0},
|
||||||
{ "_size_t","_int",0},
|
{ "_size_t","_int",0},
|
||||||
@@ -1701,17 +1676,21 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxPyEvent","_class_wxPyEvent",0},
|
{ "_wxPyEvent","_class_wxPyEvent",0},
|
||||||
{ "_wxTextCtrl","_class_wxTextCtrl",0},
|
{ "_wxTextCtrl","_class_wxTextCtrl",0},
|
||||||
{ "_class_wxMask","_wxMask",0},
|
{ "_class_wxMask","_wxMask",0},
|
||||||
{ "_class_wxToolTip","_wxToolTip",0},
|
{ "_wxTextDataObject","_class_wxTextDataObject",0},
|
||||||
{ "_class_wxKeyEvent","_wxKeyEvent",0},
|
{ "_class_wxKeyEvent","_wxKeyEvent",0},
|
||||||
|
{ "_class_wxToolTip","_wxToolTip",0},
|
||||||
{ "_class_wxGrid","_wxGrid",0},
|
{ "_class_wxGrid","_wxGrid",0},
|
||||||
{ "_class_wxPNGHandler","_wxPNGHandler",0},
|
{ "_class_wxPNGHandler","_wxPNGHandler",0},
|
||||||
{ "_wxColour","_class_wxColour",0},
|
{ "_wxColour","_class_wxColour",0},
|
||||||
{ "_class_wxDialog","_wxDialog",0},
|
{ "_class_wxDialog","_wxDialog",0},
|
||||||
|
{ "_wxBusyCursor","_class_wxBusyCursor",0},
|
||||||
{ "_wxPageSetupDialog","_class_wxPageSetupDialog",0},
|
{ "_wxPageSetupDialog","_class_wxPageSetupDialog",0},
|
||||||
{ "_class_wxPrinter","_wxPrinter",0},
|
{ "_class_wxPrinter","_wxPrinter",0},
|
||||||
|
{ "_class_wxFileDataObject","_wxFileDataObject",0},
|
||||||
{ "_wxIdleEvent","_class_wxIdleEvent",0},
|
{ "_wxIdleEvent","_class_wxIdleEvent",0},
|
||||||
{ "_class_wxUpdateUIEvent","_wxUpdateUIEvent",0},
|
{ "_class_wxUpdateUIEvent","_wxUpdateUIEvent",0},
|
||||||
{ "_wxToolBar","_class_wxToolBar",0},
|
{ "_wxToolBar","_class_wxToolBar",0},
|
||||||
|
{ "_class_wxDataObject","_wxDataObject",0},
|
||||||
{ "_wxCaret","_class_wxCaret",0},
|
{ "_wxCaret","_class_wxCaret",0},
|
||||||
{ "_wxStaticLine","_class_wxStaticLine",0},
|
{ "_wxStaticLine","_class_wxStaticLine",0},
|
||||||
{ "_class_wxLayoutAlgorithm","_wxLayoutAlgorithm",0},
|
{ "_class_wxLayoutAlgorithm","_wxLayoutAlgorithm",0},
|
||||||
@@ -1719,8 +1698,11 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxMiniFrame","_class_wxMiniFrame",0},
|
{ "_wxMiniFrame","_class_wxMiniFrame",0},
|
||||||
{ "_class_wxNotebookEvent","_wxNotebookEvent",0},
|
{ "_class_wxNotebookEvent","_wxNotebookEvent",0},
|
||||||
{ "_class_wxPyPrintout","_wxPyPrintout",0},
|
{ "_class_wxPyPrintout","_wxPyPrintout",0},
|
||||||
|
{ "_wxDataFormat","_class_wxDataFormat",0},
|
||||||
|
{ "_class_wxDataObjectSimple","_wxDataObjectSimple",0},
|
||||||
{ "_class_wxSashWindow","_wxSashWindow",0},
|
{ "_class_wxSashWindow","_wxSashWindow",0},
|
||||||
{ "_wxShowEvent","_class_wxShowEvent",0},
|
{ "_wxShowEvent","_class_wxShowEvent",0},
|
||||||
|
{ "_uint","_wxCoord",0},
|
||||||
{ "_uint","_wxPrintQuality",0},
|
{ "_uint","_wxPrintQuality",0},
|
||||||
{ "_uint","_size_t",0},
|
{ "_uint","_size_t",0},
|
||||||
{ "_uint","_unsigned_int",0},
|
{ "_uint","_unsigned_int",0},
|
||||||
@@ -1742,7 +1724,6 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxFontData","_wxFontData",0},
|
{ "_class_wxFontData","_wxFontData",0},
|
||||||
{ "_class_wxPNMHandler","_wxPNMHandler",0},
|
{ "_class_wxPNMHandler","_wxPNMHandler",0},
|
||||||
{ "_wxBoxSizer","_class_wxBoxSizer",0},
|
{ "_wxBoxSizer","_class_wxBoxSizer",0},
|
||||||
{ "_class___wxPyCleanup","___wxPyCleanup",0},
|
|
||||||
{ "_wxBitmap","_class_wxBitmap",0},
|
{ "_wxBitmap","_class_wxBitmap",0},
|
||||||
{ "_wxPrintDialog","_class_wxPrintDialog",0},
|
{ "_wxPrintDialog","_class_wxPrintDialog",0},
|
||||||
{ "_wxPyTimer","_class_wxPyTimer",0},
|
{ "_wxPyTimer","_class_wxPyTimer",0},
|
||||||
@@ -1760,22 +1741,27 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxTextEntryDialog","_class_wxTextEntryDialog",0},
|
{ "_wxTextEntryDialog","_class_wxTextEntryDialog",0},
|
||||||
{ "_class_wxIconizeEvent","_wxIconizeEvent",0},
|
{ "_class_wxIconizeEvent","_wxIconizeEvent",0},
|
||||||
{ "_class_wxStaticBitmap","_wxStaticBitmap",0},
|
{ "_class_wxStaticBitmap","_wxStaticBitmap",0},
|
||||||
|
{ "_class_wxBusyCursor","_wxBusyCursor",0},
|
||||||
{ "_wxMDIChildFrame","_class_wxMDIChildFrame",0},
|
{ "_wxMDIChildFrame","_class_wxMDIChildFrame",0},
|
||||||
{ "_wxListItem","_class_wxListItem",0},
|
{ "_wxListItem","_class_wxListItem",0},
|
||||||
{ "_class_wxToolBar","_wxToolBar",0},
|
{ "_class_wxToolBar","_wxToolBar",0},
|
||||||
|
{ "_wxDropTarget","_class_wxDropTarget",0},
|
||||||
{ "_class_wxStaticLine","_wxStaticLine",0},
|
{ "_class_wxStaticLine","_wxStaticLine",0},
|
||||||
{ "_wxScrollEvent","_class_wxScrollEvent",0},
|
{ "_wxScrollEvent","_class_wxScrollEvent",0},
|
||||||
{ "_wxCalculateLayoutEvent","_class_wxCalculateLayoutEvent",0},
|
{ "_wxCalculateLayoutEvent","_class_wxCalculateLayoutEvent",0},
|
||||||
|
{ "_EBool","_wxCoord",0},
|
||||||
{ "_EBool","_wxPrintQuality",0},
|
{ "_EBool","_wxPrintQuality",0},
|
||||||
{ "_EBool","_signed_int",0},
|
{ "_EBool","_signed_int",0},
|
||||||
{ "_EBool","_int",0},
|
{ "_EBool","_int",0},
|
||||||
{ "_EBool","_wxWindowID",0},
|
{ "_EBool","_wxWindowID",0},
|
||||||
{ "_class_wxRegion","_wxRegion",0},
|
{ "_class_wxRegion","_wxRegion",0},
|
||||||
|
{ "_class_wxDataFormat","_wxDataFormat",0},
|
||||||
{ "_class_wxDropFilesEvent","_wxDropFilesEvent",0},
|
{ "_class_wxDropFilesEvent","_wxDropFilesEvent",0},
|
||||||
{ "_wxWindowDestroyEvent","_class_wxWindowDestroyEvent",0},
|
{ "_wxWindowDestroyEvent","_class_wxWindowDestroyEvent",0},
|
||||||
{ "_class_wxPreviewFrame","_wxPreviewFrame",0},
|
{ "_class_wxPreviewFrame","_wxPreviewFrame",0},
|
||||||
{ "_wxStaticText","_class_wxStaticText",0},
|
{ "_wxStaticText","_class_wxStaticText",0},
|
||||||
{ "_wxFont","_class_wxFont",0},
|
{ "_wxFont","_class_wxFont",0},
|
||||||
|
{ "_class_wxPyDropTarget","_wxPyDropTarget",0},
|
||||||
{ "_wxCloseEvent","_class_wxCloseEvent",0},
|
{ "_wxCloseEvent","_class_wxCloseEvent",0},
|
||||||
{ "_class_wxSplitterEvent","_wxSplitterEvent",0},
|
{ "_class_wxSplitterEvent","_wxSplitterEvent",0},
|
||||||
{ "_wxNotebook","_class_wxNotebook",0},
|
{ "_wxNotebook","_class_wxNotebook",0},
|
||||||
@@ -1801,12 +1787,14 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxComboBox","_class_wxComboBox",0},
|
{ "_wxComboBox","_class_wxComboBox",0},
|
||||||
{ "_wxRadioButton","_class_wxRadioButton",0},
|
{ "_wxRadioButton","_class_wxRadioButton",0},
|
||||||
{ "_class_wxMessageDialog","_wxMessageDialog",0},
|
{ "_class_wxMessageDialog","_wxMessageDialog",0},
|
||||||
|
{ "_signed_int","_wxCoord",0},
|
||||||
{ "_signed_int","_wxPrintQuality",0},
|
{ "_signed_int","_wxPrintQuality",0},
|
||||||
{ "_signed_int","_EBool",0},
|
{ "_signed_int","_EBool",0},
|
||||||
{ "_signed_int","_wxWindowID",0},
|
{ "_signed_int","_wxWindowID",0},
|
||||||
{ "_signed_int","_int",0},
|
{ "_signed_int","_int",0},
|
||||||
{ "_class_wxTextCtrl","_wxTextCtrl",0},
|
{ "_class_wxTextCtrl","_wxTextCtrl",0},
|
||||||
{ "_wxLayoutConstraints","_class_wxLayoutConstraints",0},
|
{ "_wxLayoutConstraints","_class_wxLayoutConstraints",0},
|
||||||
|
{ "_class_wxTextDataObject","_wxTextDataObject",0},
|
||||||
{ "_wxMenu","_class_wxMenu",0},
|
{ "_wxMenu","_class_wxMenu",0},
|
||||||
{ "_class_wxMoveEvent","_wxMoveEvent",0},
|
{ "_class_wxMoveEvent","_wxMoveEvent",0},
|
||||||
{ "_wxListBox","_class_wxListBox",0},
|
{ "_wxListBox","_class_wxListBox",0},
|
||||||
@@ -1816,6 +1804,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_WXTYPE","_signed_short",0},
|
{ "_WXTYPE","_signed_short",0},
|
||||||
{ "_WXTYPE","_unsigned_short",0},
|
{ "_WXTYPE","_unsigned_short",0},
|
||||||
{ "_wxFileDialog","_class_wxFileDialog",0},
|
{ "_wxFileDialog","_class_wxFileDialog",0},
|
||||||
|
{ "_class_wxDropTarget","_wxDropTarget",0},
|
||||||
{ "_class_wxCaret","_wxCaret",0},
|
{ "_class_wxCaret","_wxCaret",0},
|
||||||
{ "_class_wxMDIClientWindow","_wxMDIClientWindow",0},
|
{ "_class_wxMDIClientWindow","_wxMDIClientWindow",0},
|
||||||
{ "_class_wxBrush","_wxBrush",0},
|
{ "_class_wxBrush","_wxBrush",0},
|
||||||
@@ -1826,11 +1815,14 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxStaticText","_wxStaticText",0},
|
{ "_class_wxStaticText","_wxStaticText",0},
|
||||||
{ "_wxPrintDialogData","_class_wxPrintDialogData",0},
|
{ "_wxPrintDialogData","_class_wxPrintDialogData",0},
|
||||||
{ "_class_wxFont","_wxFont",0},
|
{ "_class_wxFont","_wxFont",0},
|
||||||
|
{ "_wxClipboard","_class_wxClipboard",0},
|
||||||
{ "_class_wxPyValidator","_wxPyValidator",0},
|
{ "_class_wxPyValidator","_wxPyValidator",0},
|
||||||
{ "_class_wxCloseEvent","_wxCloseEvent",0},
|
{ "_class_wxCloseEvent","_wxCloseEvent",0},
|
||||||
{ "_wxSashEvent","_class_wxSashEvent",0},
|
{ "_wxSashEvent","_class_wxSashEvent",0},
|
||||||
|
{ "_wxBusyInfo","_class_wxBusyInfo",0},
|
||||||
{ "_class_wxMenuEvent","_wxMenuEvent",0},
|
{ "_class_wxMenuEvent","_wxMenuEvent",0},
|
||||||
{ "_wxPaletteChangedEvent","_class_wxPaletteChangedEvent",0},
|
{ "_wxPaletteChangedEvent","_class_wxPaletteChangedEvent",0},
|
||||||
|
{ "_class_wxPyBitmapDataObject","_wxPyBitmapDataObject",0},
|
||||||
{ "_wxClientDC","_class_wxClientDC",0},
|
{ "_wxClientDC","_class_wxClientDC",0},
|
||||||
{ "_wxMouseEvent","_class_wxMouseEvent",0},
|
{ "_wxMouseEvent","_class_wxMouseEvent",0},
|
||||||
{ "_wxListCtrl","_class_wxListCtrl",0},
|
{ "_wxListCtrl","_class_wxListCtrl",0},
|
||||||
@@ -1843,6 +1835,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_signed_short","_WXTYPE",0},
|
{ "_signed_short","_WXTYPE",0},
|
||||||
{ "_signed_short","_short",0},
|
{ "_signed_short","_short",0},
|
||||||
{ "_wxMemoryDC","_class_wxMemoryDC",0},
|
{ "_wxMemoryDC","_class_wxMemoryDC",0},
|
||||||
|
{ "_wxPyTextDataObject","_class_wxPyTextDataObject",0},
|
||||||
{ "_class_wxPrintDialog","_wxPrintDialog",0},
|
{ "_class_wxPrintDialog","_wxPrintDialog",0},
|
||||||
{ "_wxPaintDC","_class_wxPaintDC",0},
|
{ "_wxPaintDC","_class_wxPaintDC",0},
|
||||||
{ "_class_wxWindowDC","_wxWindowDC",0},
|
{ "_class_wxWindowDC","_wxWindowDC",0},
|
||||||
@@ -1853,6 +1846,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxAcceleratorEntry","_wxAcceleratorEntry",0},
|
{ "_class_wxAcceleratorEntry","_wxAcceleratorEntry",0},
|
||||||
{ "_class_wxCursor","_wxCursor",0},
|
{ "_class_wxCursor","_wxCursor",0},
|
||||||
{ "_wxPostScriptDC","_class_wxPostScriptDC",0},
|
{ "_wxPostScriptDC","_class_wxPostScriptDC",0},
|
||||||
|
{ "_wxPyFileDropTarget","_class_wxPyFileDropTarget",0},
|
||||||
{ "_class_wxImageHandler","_wxImageHandler",0},
|
{ "_class_wxImageHandler","_wxImageHandler",0},
|
||||||
{ "_wxScrolledWindow","_class_wxScrolledWindow",0},
|
{ "_wxScrolledWindow","_class_wxScrolledWindow",0},
|
||||||
{ "_wxTreeItemId","_class_wxTreeItemId",0},
|
{ "_wxTreeItemId","_class_wxTreeItemId",0},
|
||||||
@@ -1860,6 +1854,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxMenu","_wxMenu",0},
|
{ "_class_wxMenu","_wxMenu",0},
|
||||||
{ "_wxControl","_class_wxControl",0},
|
{ "_wxControl","_class_wxControl",0},
|
||||||
{ "_class_wxListBox","_wxListBox",0},
|
{ "_class_wxListBox","_wxListBox",0},
|
||||||
|
{ "_unsigned_int","_wxCoord",0},
|
||||||
{ "_unsigned_int","_wxPrintQuality",0},
|
{ "_unsigned_int","_wxPrintQuality",0},
|
||||||
{ "_unsigned_int","_size_t",0},
|
{ "_unsigned_int","_size_t",0},
|
||||||
{ "_unsigned_int","_uint",0},
|
{ "_unsigned_int","_uint",0},
|
||||||
@@ -1876,6 +1871,8 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_short","_signed_short",0},
|
{ "_short","_signed_short",0},
|
||||||
{ "_class_wxStaticBox","_wxStaticBox",0},
|
{ "_class_wxStaticBox","_wxStaticBox",0},
|
||||||
{ "_wxLayoutAlgorithm","_class_wxLayoutAlgorithm",0},
|
{ "_wxLayoutAlgorithm","_class_wxLayoutAlgorithm",0},
|
||||||
|
{ "_class_wxPyDataObjectSimple","_wxPyDataObjectSimple",0},
|
||||||
|
{ "_class_wxPyDropSource","_wxPyDropSource",0},
|
||||||
{ "_class_wxScrollEvent","_wxScrollEvent",0},
|
{ "_class_wxScrollEvent","_wxScrollEvent",0},
|
||||||
{ "_wxJoystickEvent","_class_wxJoystickEvent",0},
|
{ "_wxJoystickEvent","_class_wxJoystickEvent",0},
|
||||||
{ "_class_wxChoice","_wxChoice",0},
|
{ "_class_wxChoice","_wxChoice",0},
|
||||||
@@ -1888,6 +1885,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxPaletteChangedEvent","_wxPaletteChangedEvent",0},
|
{ "_class_wxPaletteChangedEvent","_wxPaletteChangedEvent",0},
|
||||||
{ "_class_wxNotebook","_wxNotebook",0},
|
{ "_class_wxNotebook","_wxNotebook",0},
|
||||||
{ "_wxJPEGHandler","_class_wxJPEGHandler",0},
|
{ "_wxJPEGHandler","_class_wxJPEGHandler",0},
|
||||||
|
{ "_wxWindowID","_wxCoord",0},
|
||||||
{ "_wxWindowID","_wxPrintQuality",0},
|
{ "_wxWindowID","_wxPrintQuality",0},
|
||||||
{ "_wxWindowID","_size_t",0},
|
{ "_wxWindowID","_size_t",0},
|
||||||
{ "_wxWindowID","_EBool",0},
|
{ "_wxWindowID","_EBool",0},
|
||||||
@@ -1897,6 +1895,7 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxWindowID","_unsigned_int",0},
|
{ "_wxWindowID","_unsigned_int",0},
|
||||||
{ "_class_wxScrollWinEvent","_wxScrollWinEvent",0},
|
{ "_class_wxScrollWinEvent","_wxScrollWinEvent",0},
|
||||||
{ "_class_wxSizerItem","_wxSizerItem",0},
|
{ "_class_wxSizerItem","_wxSizerItem",0},
|
||||||
|
{ "_int","_wxCoord",0},
|
||||||
{ "_int","_wxPrintQuality",0},
|
{ "_int","_wxPrintQuality",0},
|
||||||
{ "_int","_size_t",0},
|
{ "_int","_size_t",0},
|
||||||
{ "_int","_EBool",0},
|
{ "_int","_EBool",0},
|
||||||
@@ -1915,11 +1914,13 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxPyApp","_wxPyApp",0},
|
{ "_class_wxPyApp","_wxPyApp",0},
|
||||||
{ "_wxSize","_class_wxSize",0},
|
{ "_wxSize","_class_wxSize",0},
|
||||||
{ "_wxRegionIterator","_class_wxRegionIterator",0},
|
{ "_wxRegionIterator","_class_wxRegionIterator",0},
|
||||||
|
{ "_class_wxPyTextDataObject","_wxPyTextDataObject",0},
|
||||||
{ "_class_wxMDIParentFrame","_wxMDIParentFrame",0},
|
{ "_class_wxMDIParentFrame","_wxMDIParentFrame",0},
|
||||||
{ "_wxPyTreeItemData","_class_wxPyTreeItemData",0},
|
{ "_wxPyTreeItemData","_class_wxPyTreeItemData",0},
|
||||||
{ "_wxStaticBoxSizer","_class_wxStaticBoxSizer",0},
|
{ "_wxStaticBoxSizer","_class_wxStaticBoxSizer",0},
|
||||||
{ "_class_wxPaintDC","_wxPaintDC",0},
|
{ "_class_wxPaintDC","_wxPaintDC",0},
|
||||||
{ "_class_wxSysColourChangedEvent","_wxSysColourChangedEvent",0},
|
{ "_class_wxSysColourChangedEvent","_wxSysColourChangedEvent",0},
|
||||||
|
{ "_class_wxPyFileDropTarget","_wxPyFileDropTarget",0},
|
||||||
{ "_class_wxInitDialogEvent","_wxInitDialogEvent",0},
|
{ "_class_wxInitDialogEvent","_wxInitDialogEvent",0},
|
||||||
{ "_class_wxComboBox","_wxComboBox",0},
|
{ "_class_wxComboBox","_wxComboBox",0},
|
||||||
{ "_class_wxRadioButton","_wxRadioButton",0},
|
{ "_class_wxRadioButton","_wxRadioButton",0},
|
||||||
@@ -1936,7 +1937,16 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_class_wxPageSetupDialog","_wxPageSetupDialog",0},
|
{ "_class_wxPageSetupDialog","_wxPageSetupDialog",0},
|
||||||
{ "_wxPalette","_class_wxPalette",0},
|
{ "_wxPalette","_class_wxPalette",0},
|
||||||
{ "_class_wxIdleEvent","_wxIdleEvent",0},
|
{ "_class_wxIdleEvent","_wxIdleEvent",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","_wxPrintQuality",0},
|
||||||
{ "_wxEraseEvent","_class_wxEraseEvent",0},
|
{ "_wxEraseEvent","_class_wxEraseEvent",0},
|
||||||
|
{ "_wxDataObjectComposite","_class_wxDataObjectComposite",0},
|
||||||
{ "_class_wxJoystickEvent","_wxJoystickEvent",0},
|
{ "_class_wxJoystickEvent","_wxJoystickEvent",0},
|
||||||
{ "_class_wxMiniFrame","_wxMiniFrame",0},
|
{ "_class_wxMiniFrame","_wxMiniFrame",0},
|
||||||
{ "_wxFontDialog","_class_wxFontDialog",0},
|
{ "_wxFontDialog","_class_wxFontDialog",0},
|
||||||
@@ -1946,18 +1956,22 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxSizer","_class_wxSizer",0},
|
{ "_wxSizer","_class_wxSizer",0},
|
||||||
{ "_class_wxShowEvent","_wxShowEvent",0},
|
{ "_class_wxShowEvent","_wxShowEvent",0},
|
||||||
{ "_class_wxPCXHandler","_wxPCXHandler",0},
|
{ "_class_wxPCXHandler","_wxPCXHandler",0},
|
||||||
|
{ "_wxPyDropTarget","_class_wxPyDropTarget",0},
|
||||||
{ "_wxActivateEvent","_class_wxActivateEvent",0},
|
{ "_wxActivateEvent","_class_wxActivateEvent",0},
|
||||||
{ "_wxGauge","_class_wxGauge",0},
|
{ "_wxGauge","_class_wxGauge",0},
|
||||||
{ "_class_wxCheckListBox","_wxCheckListBox",0},
|
{ "_class_wxCheckListBox","_wxCheckListBox",0},
|
||||||
|
{ "_class_wxBusyInfo","_wxBusyInfo",0},
|
||||||
{ "_class_wxGridEvent","_wxGridEvent",0},
|
{ "_class_wxGridEvent","_wxGridEvent",0},
|
||||||
{ "_class_wxCommandEvent","_wxCommandEvent",0},
|
{ "_class_wxCommandEvent","_wxCommandEvent",0},
|
||||||
{ "_class_wxClientDC","_wxClientDC",0},
|
{ "_class_wxClientDC","_wxClientDC",0},
|
||||||
{ "_class_wxSizeEvent","_wxSizeEvent",0},
|
{ "_class_wxSizeEvent","_wxSizeEvent",0},
|
||||||
{ "_class_wxListCtrl","_wxListCtrl",0},
|
{ "_class_wxListCtrl","_wxListCtrl",0},
|
||||||
|
{ "_wxCustomDataObject","_class_wxCustomDataObject",0},
|
||||||
{ "_class_wxGridCell","_wxGridCell",0},
|
{ "_class_wxGridCell","_wxGridCell",0},
|
||||||
{ "_class_wxSize","_wxSize",0},
|
{ "_class_wxSize","_wxSize",0},
|
||||||
{ "_class_wxBitmap","_wxBitmap",0},
|
{ "_class_wxBitmap","_wxBitmap",0},
|
||||||
{ "_class_wxMemoryDC","_wxMemoryDC",0},
|
{ "_class_wxMemoryDC","_wxMemoryDC",0},
|
||||||
|
{ "_wxPyTextDropTarget","_class_wxPyTextDropTarget",0},
|
||||||
{ "_wxMenuBar","_class_wxMenuBar",0},
|
{ "_wxMenuBar","_class_wxMenuBar",0},
|
||||||
{ "_wxTreeEvent","_class_wxTreeEvent",0},
|
{ "_wxTreeEvent","_class_wxTreeEvent",0},
|
||||||
{ "_wxDirDialog","_class_wxDirDialog",0},
|
{ "_wxDirDialog","_class_wxDirDialog",0},
|
||||||
@@ -1977,9 +1991,12 @@ static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {
|
|||||||
{ "_wxColourData","_class_wxColourData",0},
|
{ "_wxColourData","_class_wxColourData",0},
|
||||||
{ "_wxPageSetupDialogData","_class_wxPageSetupDialogData",0},
|
{ "_wxPageSetupDialogData","_class_wxPageSetupDialogData",0},
|
||||||
{ "_class_wxPalette","_wxPalette",0},
|
{ "_class_wxPalette","_wxPalette",0},
|
||||||
|
{ "_wxFileDataObject","_class_wxFileDataObject",0},
|
||||||
{ "_class_wxQueryLayoutInfoEvent","_wxQueryLayoutInfoEvent",0},
|
{ "_class_wxQueryLayoutInfoEvent","_wxQueryLayoutInfoEvent",0},
|
||||||
{ "_class_wxEraseEvent","_wxEraseEvent",0},
|
{ "_class_wxEraseEvent","_wxEraseEvent",0},
|
||||||
|
{ "_wxPyFontEnumerator","_class_wxPyFontEnumerator",0},
|
||||||
{ "_wxMDIClientWindow","_class_wxMDIClientWindow",0},
|
{ "_wxMDIClientWindow","_class_wxMDIClientWindow",0},
|
||||||
|
{ "_class_wxDataObjectComposite","_wxDataObjectComposite",0},
|
||||||
{ "_class_wxFontDialog","_wxFontDialog",0},
|
{ "_class_wxFontDialog","_wxFontDialog",0},
|
||||||
{ "_wxWindow","_class_wxWindow",0},
|
{ "_wxWindow","_class_wxWindow",0},
|
||||||
{ "_class_wxWindowDestroyEvent","_wxWindowDestroyEvent",0},
|
{ "_class_wxWindowDestroyEvent","_wxWindowDestroyEvent",0},
|
||||||
@@ -2102,6 +2119,7 @@ SWIGEXPORT(void) initwxc() {
|
|||||||
PyDict_SetItemString(d,"wxSB_HORIZONTAL", PyInt_FromLong((long) wxSB_HORIZONTAL));
|
PyDict_SetItemString(d,"wxSB_HORIZONTAL", PyInt_FromLong((long) wxSB_HORIZONTAL));
|
||||||
PyDict_SetItemString(d,"wxSB_VERTICAL", PyInt_FromLong((long) wxSB_VERTICAL));
|
PyDict_SetItemString(d,"wxSB_VERTICAL", PyInt_FromLong((long) wxSB_VERTICAL));
|
||||||
PyDict_SetItemString(d,"wxST_SIZEGRIP", PyInt_FromLong((long) wxST_SIZEGRIP));
|
PyDict_SetItemString(d,"wxST_SIZEGRIP", PyInt_FromLong((long) wxST_SIZEGRIP));
|
||||||
|
PyDict_SetItemString(d,"wxST_NO_AUTORESIZE", PyInt_FromLong((long) wxST_NO_AUTORESIZE));
|
||||||
PyDict_SetItemString(d,"wxBU_AUTODRAW", PyInt_FromLong((long) wxBU_AUTODRAW));
|
PyDict_SetItemString(d,"wxBU_AUTODRAW", PyInt_FromLong((long) wxBU_AUTODRAW));
|
||||||
PyDict_SetItemString(d,"wxBU_NOAUTODRAW", PyInt_FromLong((long) wxBU_NOAUTODRAW));
|
PyDict_SetItemString(d,"wxBU_NOAUTODRAW", PyInt_FromLong((long) wxBU_NOAUTODRAW));
|
||||||
PyDict_SetItemString(d,"wxTR_HAS_BUTTONS", PyInt_FromLong((long) wxTR_HAS_BUTTONS));
|
PyDict_SetItemString(d,"wxTR_HAS_BUTTONS", PyInt_FromLong((long) wxTR_HAS_BUTTONS));
|
||||||
@@ -2240,6 +2258,7 @@ SWIGEXPORT(void) initwxc() {
|
|||||||
PyDict_SetItemString(d,"wxSAVE", PyInt_FromLong((long) wxSAVE));
|
PyDict_SetItemString(d,"wxSAVE", PyInt_FromLong((long) wxSAVE));
|
||||||
PyDict_SetItemString(d,"wxHIDE_READONLY", PyInt_FromLong((long) wxHIDE_READONLY));
|
PyDict_SetItemString(d,"wxHIDE_READONLY", PyInt_FromLong((long) wxHIDE_READONLY));
|
||||||
PyDict_SetItemString(d,"wxOVERWRITE_PROMPT", PyInt_FromLong((long) wxOVERWRITE_PROMPT));
|
PyDict_SetItemString(d,"wxOVERWRITE_PROMPT", PyInt_FromLong((long) wxOVERWRITE_PROMPT));
|
||||||
|
PyDict_SetItemString(d,"wxFILE_MUST_EXIST", PyInt_FromLong((long) wxFILE_MUST_EXIST));
|
||||||
PyDict_SetItemString(d,"wxACCEL_ALT", PyInt_FromLong((long) wxACCEL_ALT));
|
PyDict_SetItemString(d,"wxACCEL_ALT", PyInt_FromLong((long) wxACCEL_ALT));
|
||||||
PyDict_SetItemString(d,"wxACCEL_CTRL", PyInt_FromLong((long) wxACCEL_CTRL));
|
PyDict_SetItemString(d,"wxACCEL_CTRL", PyInt_FromLong((long) wxACCEL_CTRL));
|
||||||
PyDict_SetItemString(d,"wxACCEL_SHIFT", PyInt_FromLong((long) wxACCEL_SHIFT));
|
PyDict_SetItemString(d,"wxACCEL_SHIFT", PyInt_FromLong((long) wxACCEL_SHIFT));
|
||||||
@@ -2626,6 +2645,9 @@ SWIGEXPORT(void) initwxc() {
|
|||||||
PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_SEL_CHANGED", PyInt_FromLong((long) wxEVT_COMMAND_TREE_SEL_CHANGED));
|
PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_SEL_CHANGED", PyInt_FromLong((long) wxEVT_COMMAND_TREE_SEL_CHANGED));
|
||||||
PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_SEL_CHANGING", PyInt_FromLong((long) wxEVT_COMMAND_TREE_SEL_CHANGING));
|
PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_SEL_CHANGING", PyInt_FromLong((long) wxEVT_COMMAND_TREE_SEL_CHANGING));
|
||||||
PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_KEY_DOWN", PyInt_FromLong((long) wxEVT_COMMAND_TREE_KEY_DOWN));
|
PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_KEY_DOWN", PyInt_FromLong((long) wxEVT_COMMAND_TREE_KEY_DOWN));
|
||||||
|
PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_ITEM_ACTIVATED", PyInt_FromLong((long) wxEVT_COMMAND_TREE_ITEM_ACTIVATED));
|
||||||
|
PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK", PyInt_FromLong((long) wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK));
|
||||||
|
PyDict_SetItemString(d,"wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK", PyInt_FromLong((long) wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK));
|
||||||
PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_BEGIN_DRAG", PyInt_FromLong((long) wxEVT_COMMAND_LIST_BEGIN_DRAG));
|
PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_BEGIN_DRAG", PyInt_FromLong((long) wxEVT_COMMAND_LIST_BEGIN_DRAG));
|
||||||
PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_BEGIN_RDRAG", PyInt_FromLong((long) wxEVT_COMMAND_LIST_BEGIN_RDRAG));
|
PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_BEGIN_RDRAG", PyInt_FromLong((long) wxEVT_COMMAND_LIST_BEGIN_RDRAG));
|
||||||
PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT", PyInt_FromLong((long) wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT));
|
PyDict_SetItemString(d,"wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT", PyInt_FromLong((long) wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT));
|
||||||
@@ -2679,6 +2701,7 @@ SWIGEXPORT(void) initwxc() {
|
|||||||
initimagec();
|
initimagec();
|
||||||
initprintfwc();
|
initprintfwc();
|
||||||
initsizersc();
|
initsizersc();
|
||||||
|
initclip_dndc();
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
for (i = 0; _swig_mapping[i].n1; i++)
|
for (i = 0; _swig_mapping[i].n1; i++)
|
||||||
|
@@ -9,6 +9,8 @@ from windows import *
|
|||||||
|
|
||||||
from gdi import *
|
from gdi import *
|
||||||
|
|
||||||
|
from clip_dnd import *
|
||||||
|
|
||||||
from events import *
|
from events import *
|
||||||
|
|
||||||
from mdi import *
|
from mdi import *
|
||||||
@@ -108,23 +110,6 @@ class wxPyApp(wxPyAppPtr):
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
class __wxPyCleanupPtr :
|
|
||||||
def __init__(self,this):
|
|
||||||
self.this = this
|
|
||||||
self.thisown = 0
|
|
||||||
def __del__(self,wxc=wxc):
|
|
||||||
if self.thisown == 1 :
|
|
||||||
wxc.delete___wxPyCleanup(self)
|
|
||||||
def __repr__(self):
|
|
||||||
return "<C __wxPyCleanup instance at %s>" % (self.this,)
|
|
||||||
class __wxPyCleanup(__wxPyCleanupPtr):
|
|
||||||
def __init__(self,*_args,**_kwargs):
|
|
||||||
self.this = apply(wxc.new___wxPyCleanup,_args,_kwargs)
|
|
||||||
self.thisown = 1
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#-------------- FUNCTION WRAPPERS ------------------
|
#-------------- FUNCTION WRAPPERS ------------------
|
||||||
@@ -147,6 +132,8 @@ _wxStart = wxc._wxStart
|
|||||||
|
|
||||||
_wxSetDictionary = wxc._wxSetDictionary
|
_wxSetDictionary = wxc._wxSetDictionary
|
||||||
|
|
||||||
|
wxApp_CleanUp = wxc.wxApp_CleanUp
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#-------------- VARIABLE WRAPPERS ------------------
|
#-------------- VARIABLE WRAPPERS ------------------
|
||||||
@@ -258,6 +245,7 @@ wxSL_SELRANGE = wxc.wxSL_SELRANGE
|
|||||||
wxSB_HORIZONTAL = wxc.wxSB_HORIZONTAL
|
wxSB_HORIZONTAL = wxc.wxSB_HORIZONTAL
|
||||||
wxSB_VERTICAL = wxc.wxSB_VERTICAL
|
wxSB_VERTICAL = wxc.wxSB_VERTICAL
|
||||||
wxST_SIZEGRIP = wxc.wxST_SIZEGRIP
|
wxST_SIZEGRIP = wxc.wxST_SIZEGRIP
|
||||||
|
wxST_NO_AUTORESIZE = wxc.wxST_NO_AUTORESIZE
|
||||||
wxBU_AUTODRAW = wxc.wxBU_AUTODRAW
|
wxBU_AUTODRAW = wxc.wxBU_AUTODRAW
|
||||||
wxBU_NOAUTODRAW = wxc.wxBU_NOAUTODRAW
|
wxBU_NOAUTODRAW = wxc.wxBU_NOAUTODRAW
|
||||||
wxTR_HAS_BUTTONS = wxc.wxTR_HAS_BUTTONS
|
wxTR_HAS_BUTTONS = wxc.wxTR_HAS_BUTTONS
|
||||||
@@ -396,6 +384,7 @@ wxOPEN = wxc.wxOPEN
|
|||||||
wxSAVE = wxc.wxSAVE
|
wxSAVE = wxc.wxSAVE
|
||||||
wxHIDE_READONLY = wxc.wxHIDE_READONLY
|
wxHIDE_READONLY = wxc.wxHIDE_READONLY
|
||||||
wxOVERWRITE_PROMPT = wxc.wxOVERWRITE_PROMPT
|
wxOVERWRITE_PROMPT = wxc.wxOVERWRITE_PROMPT
|
||||||
|
wxFILE_MUST_EXIST = wxc.wxFILE_MUST_EXIST
|
||||||
wxACCEL_ALT = wxc.wxACCEL_ALT
|
wxACCEL_ALT = wxc.wxACCEL_ALT
|
||||||
wxACCEL_CTRL = wxc.wxACCEL_CTRL
|
wxACCEL_CTRL = wxc.wxACCEL_CTRL
|
||||||
wxACCEL_SHIFT = wxc.wxACCEL_SHIFT
|
wxACCEL_SHIFT = wxc.wxACCEL_SHIFT
|
||||||
@@ -782,6 +771,9 @@ wxEVT_COMMAND_TREE_ITEM_COLLAPSING = wxc.wxEVT_COMMAND_TREE_ITEM_COLLAPSING
|
|||||||
wxEVT_COMMAND_TREE_SEL_CHANGED = wxc.wxEVT_COMMAND_TREE_SEL_CHANGED
|
wxEVT_COMMAND_TREE_SEL_CHANGED = wxc.wxEVT_COMMAND_TREE_SEL_CHANGED
|
||||||
wxEVT_COMMAND_TREE_SEL_CHANGING = wxc.wxEVT_COMMAND_TREE_SEL_CHANGING
|
wxEVT_COMMAND_TREE_SEL_CHANGING = wxc.wxEVT_COMMAND_TREE_SEL_CHANGING
|
||||||
wxEVT_COMMAND_TREE_KEY_DOWN = wxc.wxEVT_COMMAND_TREE_KEY_DOWN
|
wxEVT_COMMAND_TREE_KEY_DOWN = wxc.wxEVT_COMMAND_TREE_KEY_DOWN
|
||||||
|
wxEVT_COMMAND_TREE_ITEM_ACTIVATED = wxc.wxEVT_COMMAND_TREE_ITEM_ACTIVATED
|
||||||
|
wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK = wxc.wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
|
||||||
|
wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK = wxc.wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK
|
||||||
wxEVT_COMMAND_LIST_BEGIN_DRAG = wxc.wxEVT_COMMAND_LIST_BEGIN_DRAG
|
wxEVT_COMMAND_LIST_BEGIN_DRAG = wxc.wxEVT_COMMAND_LIST_BEGIN_DRAG
|
||||||
wxEVT_COMMAND_LIST_BEGIN_RDRAG = wxc.wxEVT_COMMAND_LIST_BEGIN_RDRAG
|
wxEVT_COMMAND_LIST_BEGIN_RDRAG = wxc.wxEVT_COMMAND_LIST_BEGIN_RDRAG
|
||||||
wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT = wxc.wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
|
wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT = wxc.wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
|
||||||
@@ -1289,6 +1281,15 @@ def EVT_TREE_KEY_DOWN(win, id, func):
|
|||||||
def EVT_TREE_DELETE_ITEM(win, id, func):
|
def EVT_TREE_DELETE_ITEM(win, id, func):
|
||||||
win.Connect(id, -1, wxEVT_COMMAND_TREE_DELETE_ITEM, func)
|
win.Connect(id, -1, wxEVT_COMMAND_TREE_DELETE_ITEM, func)
|
||||||
|
|
||||||
|
def EVT_TREE_ITEM_ACTIVATED(win, id, func):
|
||||||
|
win.Connect(id, -1, wxEVT_COMMAND_TREE_ITEM_ACTIVATED, func)
|
||||||
|
|
||||||
|
def EVT_TREE_ITEM_RIGHT_CLICK(win, id, func):
|
||||||
|
win.Connect(id, -1, wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK, func)
|
||||||
|
|
||||||
|
def EVT_TREE_ITEM_MIDDLE_CLICK(win, id, func):
|
||||||
|
win.Connect(id, -1, wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK, func)
|
||||||
|
|
||||||
|
|
||||||
# wxSpinButton
|
# wxSpinButton
|
||||||
def EVT_SPIN_UP(win, id, func):
|
def EVT_SPIN_UP(win, id, func):
|
||||||
@@ -1589,7 +1590,16 @@ class wxApp(wxPyApp):
|
|||||||
|
|
||||||
#----------------------------------------------------------------------------
|
#----------------------------------------------------------------------------
|
||||||
# DO NOT hold any other references to this object. This is how we know when
|
# DO NOT hold any other references to this object. This is how we know when
|
||||||
# to cleanup system resources that wxWin is holding...
|
# to cleanup system resources that wxWin is holding. When this module is
|
||||||
|
# unloaded, the refcount on __cleanMeUp goes to zero and it calls the
|
||||||
|
# wxApp_CleanUp function.
|
||||||
|
|
||||||
|
class __wxPyCleanup:
|
||||||
|
def __init__(self):
|
||||||
|
self.cleanup = wxc.wxApp_CleanUp
|
||||||
|
def __del__(self):
|
||||||
|
self.cleanup()
|
||||||
|
|
||||||
__cleanMeUp = __wxPyCleanup()
|
__cleanMeUp = __wxPyCleanup()
|
||||||
#----------------------------------------------------------------------------
|
#----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user