Added wxPyWindow and wxPyControl which are just like their wx
counterparts except they allow some of the more common C++ virtual methods to be overridden in Python derived classes. Changed wxGenButton to derive from wxPyControl. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15760 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -94,6 +94,34 @@ the image data. (Patch #546009)
|
|||||||
Added a sample that shows how to embed wxPython in a wxWindows C++
|
Added a sample that shows how to embed wxPython in a wxWindows C++
|
||||||
application.
|
application.
|
||||||
|
|
||||||
|
Added wxPyWindow and wxPyControl which are just like their wx
|
||||||
|
counterparts except they allow some of the more common C++ virtual
|
||||||
|
methods to be overridden in Python derived classes. The methods
|
||||||
|
supported are:
|
||||||
|
|
||||||
|
DoMoveWindow
|
||||||
|
DoSetSize
|
||||||
|
DoSetClientSize
|
||||||
|
DoSetVirtualSize
|
||||||
|
DoGetSize
|
||||||
|
DoGetClientSize
|
||||||
|
DoGetPosition
|
||||||
|
DoGetVirtualSize
|
||||||
|
DoGetBestSize
|
||||||
|
InitDialog
|
||||||
|
TransferDataFromWindow
|
||||||
|
TransferDataToWindow
|
||||||
|
Validate
|
||||||
|
AcceptsFocus
|
||||||
|
AcceptsFocusFromKeyboard
|
||||||
|
GetMaxSize
|
||||||
|
|
||||||
|
If there are other methods that should be supported please let me
|
||||||
|
know.
|
||||||
|
|
||||||
|
Changed wxGenButton to derive from wxPyControl and overload
|
||||||
|
DoGetBestSize and AcceptsFocus.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
2.3.2.1
|
2.3.2.1
|
||||||
|
@@ -11,35 +11,42 @@ class TestPanel(wxPanel):
|
|||||||
wxPanel.__init__(self, parent, -1)
|
wxPanel.__init__(self, parent, -1)
|
||||||
self.log = log
|
self.log = log
|
||||||
|
|
||||||
b = wxButton(self, -1, "A real button", (10,10))
|
sizer = wxFlexGridSizer(1, 3, 20, 20)
|
||||||
|
b = wxButton(self, -1, "A real button")
|
||||||
b.SetDefault()
|
b.SetDefault()
|
||||||
EVT_BUTTON(self, b.GetId(), self.OnButton)
|
EVT_BUTTON(self, b.GetId(), self.OnButton)
|
||||||
b = wxButton(self, -1, "non-default", (140, 10))
|
sizer.Add(b)
|
||||||
EVT_BUTTON(self, b.GetId(), self.OnButton)
|
|
||||||
#wxTextCtrl(self, -1, "", (10,40))
|
|
||||||
|
|
||||||
b = wxGenButton(self, -1, 'Hello', (10,65))
|
b = wxButton(self, -1, "non-default")
|
||||||
EVT_BUTTON(self, b.GetId(), self.OnButton)
|
EVT_BUTTON(self, b.GetId(), self.OnButton)
|
||||||
b = wxGenButton(self, -1, 'disabled', (140,65))
|
sizer.Add(b)
|
||||||
|
sizer.Add(10,10)
|
||||||
|
|
||||||
|
b = wxGenButton(self, -1, 'Hello')
|
||||||
|
EVT_BUTTON(self, b.GetId(), self.OnButton)
|
||||||
|
sizer.Add(b)
|
||||||
|
|
||||||
|
b = wxGenButton(self, -1, 'disabled')
|
||||||
EVT_BUTTON(self, b.GetId(), self.OnButton)
|
EVT_BUTTON(self, b.GetId(), self.OnButton)
|
||||||
b.Enable(false)
|
b.Enable(false)
|
||||||
|
sizer.Add(b)
|
||||||
|
|
||||||
b = wxGenButton(self, -1, 'bigger', (250,50))
|
b = wxGenButton(self, -1, 'bigger')
|
||||||
EVT_BUTTON(self, b.GetId(), self.OnButton)
|
EVT_BUTTON(self, b.GetId(), self.OnBiggerButton)
|
||||||
b.SetFont(wxFont(20, wxSWISS, wxNORMAL, wxBOLD, false))
|
b.SetFont(wxFont(20, wxSWISS, wxNORMAL, wxBOLD, false))
|
||||||
b.SetBezelWidth(5)
|
b.SetBezelWidth(5)
|
||||||
b.SetBestSize()
|
###b.SetBestSize()
|
||||||
b.SetBackgroundColour(wxNamedColour("Navy"))
|
b.SetBackgroundColour("Navy")
|
||||||
b.SetForegroundColour(wxWHITE)
|
b.SetForegroundColour(wxWHITE)
|
||||||
#b.SetUseFocusIndicator(false)
|
|
||||||
b.SetToolTipString("This is a BIG button...")
|
b.SetToolTipString("This is a BIG button...")
|
||||||
|
sizer.Add(b, flag=wxADJUST_MINSIZE) # let the sizer set best size
|
||||||
|
|
||||||
bmp = images.getTest2Bitmap()
|
bmp = images.getTest2Bitmap()
|
||||||
b = wxGenBitmapButton(self, -1, bmp, (10, 130))
|
b = wxGenBitmapButton(self, -1, bmp)
|
||||||
EVT_BUTTON(self, b.GetId(), self.OnButton)
|
EVT_BUTTON(self, b.GetId(), self.OnButton)
|
||||||
|
sizer.Add(b)
|
||||||
|
|
||||||
|
b = wxGenBitmapButton(self, -1, None)
|
||||||
b = wxGenBitmapButton(self, -1, None, (140, 130))
|
|
||||||
EVT_BUTTON(self, b.GetId(), self.OnButton)
|
EVT_BUTTON(self, b.GetId(), self.OnButton)
|
||||||
bmp = images.getBulb1Bitmap()
|
bmp = images.getBulb1Bitmap()
|
||||||
mask = wxMaskColour(bmp, wxBLUE)
|
mask = wxMaskColour(bmp, wxBLUE)
|
||||||
@@ -50,12 +57,14 @@ class TestPanel(wxPanel):
|
|||||||
bmp.SetMask(mask)
|
bmp.SetMask(mask)
|
||||||
b.SetBitmapSelected(bmp)
|
b.SetBitmapSelected(bmp)
|
||||||
b.SetBestSize()
|
b.SetBestSize()
|
||||||
|
sizer.Add(b)
|
||||||
|
sizer.Add(10,10)
|
||||||
|
|
||||||
b = wxGenToggleButton(self, -1, "Toggle Button", (10, 230))
|
b = wxGenToggleButton(self, -1, "Toggle Button")
|
||||||
EVT_BUTTON(self, b.GetId(), self.OnToggleButton)
|
EVT_BUTTON(self, b.GetId(), self.OnToggleButton)
|
||||||
|
sizer.Add(b)
|
||||||
|
|
||||||
|
b = wxGenBitmapToggleButton(self, -1, None)
|
||||||
b = wxGenBitmapToggleButton(self, -1, None, (140, 230))
|
|
||||||
EVT_BUTTON(self, b.GetId(), self.OnToggleButton)
|
EVT_BUTTON(self, b.GetId(), self.OnToggleButton)
|
||||||
bmp = images.getBulb1Bitmap()
|
bmp = images.getBulb1Bitmap()
|
||||||
mask = wxMaskColour(bmp, wxBLUE)
|
mask = wxMaskColour(bmp, wxBLUE)
|
||||||
@@ -67,8 +76,9 @@ class TestPanel(wxPanel):
|
|||||||
b.SetBitmapSelected(bmp)
|
b.SetBitmapSelected(bmp)
|
||||||
b.SetToggle(true)
|
b.SetToggle(true)
|
||||||
b.SetBestSize()
|
b.SetBestSize()
|
||||||
|
sizer.Add(b)
|
||||||
|
|
||||||
b = wxGenBitmapTextButton(self, -1, None, "Bitmapped Text", (220, 230), size = (200, 45))
|
b = wxGenBitmapTextButton(self, -1, None, "Bitmapped Text", size = (200, 45))
|
||||||
EVT_BUTTON(self, b.GetId(), self.OnButton)
|
EVT_BUTTON(self, b.GetId(), self.OnButton)
|
||||||
bmp = images.getBulb1Bitmap()
|
bmp = images.getBulb1Bitmap()
|
||||||
mask = wxMaskColour(bmp, wxBLUE)
|
mask = wxMaskColour(bmp, wxBLUE)
|
||||||
@@ -80,11 +90,25 @@ class TestPanel(wxPanel):
|
|||||||
b.SetBitmapSelected(bmp)
|
b.SetBitmapSelected(bmp)
|
||||||
b.SetUseFocusIndicator(false)
|
b.SetUseFocusIndicator(false)
|
||||||
b.SetBestSize()
|
b.SetBestSize()
|
||||||
|
sizer.Add(b)
|
||||||
|
|
||||||
|
border = wxBoxSizer(wxVERTICAL)
|
||||||
|
border.Add(sizer, 0, wxALL, 25)
|
||||||
|
self.SetSizer(border)
|
||||||
|
|
||||||
|
|
||||||
def OnButton(self, event):
|
def OnButton(self, event):
|
||||||
self.log.WriteText("Button Clicked: %d\n" % event.GetId())
|
self.log.WriteText("Button Clicked: %d\n" % event.GetId())
|
||||||
|
|
||||||
|
|
||||||
|
def OnBiggerButton(self, event):
|
||||||
|
self.log.WriteText("Bigger Button Clicked: %d\n" % event.GetId())
|
||||||
|
b = event.GetEventObject()
|
||||||
|
txt = "big " + b.GetLabel()
|
||||||
|
b.SetLabel(txt)
|
||||||
|
self.GetSizer().Layout()
|
||||||
|
|
||||||
|
|
||||||
def OnToggleButton(self, event):
|
def OnToggleButton(self, event):
|
||||||
msg = (event.GetIsDown() and "on") or "off"
|
msg = (event.GetIsDown() and "on") or "off"
|
||||||
self.log.WriteText("Button %d Toggled: %s\n" % (event.GetId(), msg))
|
self.log.WriteText("Button %d Toggled: %s\n" % (event.GetId(), msg))
|
||||||
|
@@ -466,6 +466,133 @@ void wxPyCBH_delete(wxPyCallbackHelper* cbh);
|
|||||||
|
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
#define DEC_PYCALLBACK_VOID_INT4(CBNAME) \
|
||||||
|
void CBNAME(int a, int b, int c, int d); \
|
||||||
|
void base_##CBNAME(int a, int b, int c, int d);
|
||||||
|
|
||||||
|
|
||||||
|
#define IMP_PYCALLBACK_VOID_INT4(CLASS, PCLASS, CBNAME) \
|
||||||
|
void CLASS::CBNAME(int a, int b, int c, int d) { \
|
||||||
|
bool found; \
|
||||||
|
wxPyBeginBlockThreads(); \
|
||||||
|
if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
|
||||||
|
wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iiii)",a,b,c,d)); \
|
||||||
|
wxPyEndBlockThreads(); \
|
||||||
|
if (! found) \
|
||||||
|
PCLASS::CBNAME(a,b,c,d); \
|
||||||
|
} \
|
||||||
|
void CLASS::base_##CBNAME(int a, int b, int c, int d) { \
|
||||||
|
PCLASS::CBNAME(a,b,c,d); \
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------
|
||||||
|
#define DEC_PYCALLBACK_VOID_INT5(CBNAME) \
|
||||||
|
void CBNAME(int a, int b, int c, int d, int e); \
|
||||||
|
void base_##CBNAME(int a, int b, int c, int d, int e);
|
||||||
|
|
||||||
|
|
||||||
|
#define IMP_PYCALLBACK_VOID_INT5(CLASS, PCLASS, CBNAME) \
|
||||||
|
void CLASS::CBNAME(int a, int b, int c, int d, int e) { \
|
||||||
|
bool found; \
|
||||||
|
wxPyBeginBlockThreads(); \
|
||||||
|
if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
|
||||||
|
wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iiiii)",a,b,c,d,e)); \
|
||||||
|
wxPyEndBlockThreads(); \
|
||||||
|
if (! found) \
|
||||||
|
PCLASS::CBNAME(a,b,c,d,e); \
|
||||||
|
} \
|
||||||
|
void CLASS::base_##CBNAME(int a, int b, int c, int d, int e) { \
|
||||||
|
PCLASS::CBNAME(a,b,c,d,e); \
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
#define DEC_PYCALLBACK_VOID_INTPINTP_const(CBNAME) \
|
||||||
|
void CBNAME(int* a, int* b) const; \
|
||||||
|
void base_##CBNAME(int* a, int* b) const;
|
||||||
|
|
||||||
|
|
||||||
|
#define IMP_PYCALLBACK_VOID_INTPINTP_const(CLASS, PCLASS, CBNAME) \
|
||||||
|
void CLASS::CBNAME(int* a, int* b) const { \
|
||||||
|
const char* errmsg = #CBNAME " should return a 2-tuple of integers."; \
|
||||||
|
bool found; \
|
||||||
|
wxPyBeginBlockThreads(); \
|
||||||
|
if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
|
||||||
|
PyObject* ro; \
|
||||||
|
ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()")); \
|
||||||
|
if (ro) { \
|
||||||
|
if (PySequence_Check(ro) && PyObject_Length(ro) == 2) { \
|
||||||
|
PyObject* o1 = PySequence_GetItem(ro, 0); \
|
||||||
|
PyObject* o2 = PySequence_GetItem(ro, 1); \
|
||||||
|
if (PyNumber_Check(o1) && PyNumber_Check(o2)) { \
|
||||||
|
*a = PyInt_AsLong(o1); *b = PyInt_AsLong(o2); \
|
||||||
|
} \
|
||||||
|
else \
|
||||||
|
PyErr_SetString(PyExc_TypeError, errmsg); \
|
||||||
|
Py_DECREF(o1); \
|
||||||
|
Py_DECREF(o2); \
|
||||||
|
} \
|
||||||
|
else { \
|
||||||
|
PyErr_SetString(PyExc_TypeError, errmsg); \
|
||||||
|
} \
|
||||||
|
Py_DECREF(ro); \
|
||||||
|
} \
|
||||||
|
} \
|
||||||
|
wxPyEndBlockThreads(); \
|
||||||
|
if (! found) \
|
||||||
|
PCLASS::CBNAME(a,b); \
|
||||||
|
} \
|
||||||
|
void CLASS::base_##CBNAME(int* a, int* b) const { \
|
||||||
|
PCLASS::CBNAME(a,b); \
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
#define DEC_PYCALLBACK_SIZE_const(CBNAME) \
|
||||||
|
wxSize CBNAME() const; \
|
||||||
|
wxSize base_##CBNAME() const;
|
||||||
|
|
||||||
|
|
||||||
|
#define IMP_PYCALLBACK_SIZE_const(CLASS, PCLASS, CBNAME) \
|
||||||
|
wxSize CLASS::CBNAME() const { \
|
||||||
|
const char* errmsg = #CBNAME " should return a 2-tuple of integers."; \
|
||||||
|
bool found; wxSize rval(0,0); \
|
||||||
|
wxPyBeginBlockThreads(); \
|
||||||
|
if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
|
||||||
|
PyObject* ro; \
|
||||||
|
ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("()")); \
|
||||||
|
if (ro) { \
|
||||||
|
if (PySequence_Check(ro) && PyObject_Length(ro) == 2) { \
|
||||||
|
PyObject* o1 = PySequence_GetItem(ro, 0); \
|
||||||
|
PyObject* o2 = PySequence_GetItem(ro, 1); \
|
||||||
|
if (PyNumber_Check(o1) && PyNumber_Check(o2)) { \
|
||||||
|
rval = wxSize(PyInt_AsLong(o1), PyInt_AsLong(o2)); \
|
||||||
|
} \
|
||||||
|
else \
|
||||||
|
PyErr_SetString(PyExc_TypeError, errmsg); \
|
||||||
|
Py_DECREF(o1); \
|
||||||
|
Py_DECREF(o2); \
|
||||||
|
} \
|
||||||
|
else { \
|
||||||
|
PyErr_SetString(PyExc_TypeError, errmsg); \
|
||||||
|
} \
|
||||||
|
Py_DECREF(ro); \
|
||||||
|
} \
|
||||||
|
} \
|
||||||
|
wxPyEndBlockThreads(); \
|
||||||
|
if (! found) \
|
||||||
|
return PCLASS::CBNAME(); \
|
||||||
|
else \
|
||||||
|
return rval; \
|
||||||
|
} \
|
||||||
|
wxSize CLASS::base_##CBNAME() const { \
|
||||||
|
return PCLASS::CBNAME(); \
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------
|
||||||
|
|
||||||
#define DEC_PYCALLBACK_BOOL_INT(CBNAME) \
|
#define DEC_PYCALLBACK_BOOL_INT(CBNAME) \
|
||||||
bool CBNAME(int a); \
|
bool CBNAME(int a); \
|
||||||
bool base_##CBNAME(int a);
|
bool base_##CBNAME(int a);
|
||||||
@@ -1179,6 +1306,29 @@ void wxPyCBH_delete(wxPyCallbackHelper* cbh);
|
|||||||
|
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
#define DEC_PYCALLBACK_BOOL_const(CBNAME) \
|
||||||
|
bool CBNAME() const; \
|
||||||
|
bool base_##CBNAME() const;
|
||||||
|
|
||||||
|
|
||||||
|
#define IMP_PYCALLBACK_BOOL_const(CLASS, PCLASS, CBNAME) \
|
||||||
|
bool CLASS::CBNAME() const { \
|
||||||
|
bool rval=FALSE; \
|
||||||
|
bool found; \
|
||||||
|
wxPyBeginBlockThreads(); \
|
||||||
|
if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) \
|
||||||
|
rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("()")); \
|
||||||
|
wxPyEndBlockThreads(); \
|
||||||
|
if (! found) \
|
||||||
|
rval = PCLASS::CBNAME(); \
|
||||||
|
return rval; \
|
||||||
|
} \
|
||||||
|
bool CLASS::base_##CBNAME() const { \
|
||||||
|
return PCLASS::CBNAME(); \
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------
|
||||||
|
|
||||||
#define DEC_PYCALLBACK_DR_2WXCDR(CBNAME) \
|
#define DEC_PYCALLBACK_DR_2WXCDR(CBNAME) \
|
||||||
wxDragResult CBNAME(wxCoord x, wxCoord y, wxDragResult def); \
|
wxDragResult CBNAME(wxCoord x, wxCoord y, wxDragResult def); \
|
||||||
wxDragResult base_##CBNAME(wxCoord x, wxCoord y, wxDragResult def);
|
wxDragResult base_##CBNAME(wxCoord x, wxCoord y, wxDragResult def);
|
||||||
|
File diff suppressed because it is too large
Load Diff
@@ -284,6 +284,146 @@ class wxTaskBarIcon(wxTaskBarIconPtr):
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class wxPyWindowPtr(wxWindowPtr):
|
||||||
|
def __init__(self,this):
|
||||||
|
self.this = this
|
||||||
|
self.thisown = 0
|
||||||
|
def _setCallbackInfo(self, *_args, **_kwargs):
|
||||||
|
val = apply(windows2c.wxPyWindow__setCallbackInfo,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_DoMoveWindow(self, *_args, **_kwargs):
|
||||||
|
val = apply(windows2c.wxPyWindow_base_DoMoveWindow,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_DoSetSize(self, *_args, **_kwargs):
|
||||||
|
val = apply(windows2c.wxPyWindow_base_DoSetSize,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_DoSetClientSize(self, *_args, **_kwargs):
|
||||||
|
val = apply(windows2c.wxPyWindow_base_DoSetClientSize,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_DoSetVirtualSize(self, *_args, **_kwargs):
|
||||||
|
val = apply(windows2c.wxPyWindow_base_DoSetVirtualSize,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_DoGetSize(self, *_args, **_kwargs):
|
||||||
|
val = apply(windows2c.wxPyWindow_base_DoGetSize,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_DoGetClientSize(self, *_args, **_kwargs):
|
||||||
|
val = apply(windows2c.wxPyWindow_base_DoGetClientSize,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_DoGetPosition(self, *_args, **_kwargs):
|
||||||
|
val = apply(windows2c.wxPyWindow_base_DoGetPosition,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_DoGetVirtualSize(self, *_args, **_kwargs):
|
||||||
|
val = apply(windows2c.wxPyWindow_base_DoGetVirtualSize,(self,) + _args, _kwargs)
|
||||||
|
if val: val = wxSizePtr(val) ; val.thisown = 1
|
||||||
|
return val
|
||||||
|
def base_DoGetBestSize(self, *_args, **_kwargs):
|
||||||
|
val = apply(windows2c.wxPyWindow_base_DoGetBestSize,(self,) + _args, _kwargs)
|
||||||
|
if val: val = wxSizePtr(val) ; val.thisown = 1
|
||||||
|
return val
|
||||||
|
def base_InitDialog(self, *_args, **_kwargs):
|
||||||
|
val = apply(windows2c.wxPyWindow_base_InitDialog,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_TransferDataToWindow(self, *_args, **_kwargs):
|
||||||
|
val = apply(windows2c.wxPyWindow_base_TransferDataToWindow,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_TransferDataFromWindow(self, *_args, **_kwargs):
|
||||||
|
val = apply(windows2c.wxPyWindow_base_TransferDataFromWindow,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_Validate(self, *_args, **_kwargs):
|
||||||
|
val = apply(windows2c.wxPyWindow_base_Validate,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_AcceptsFocus(self, *_args, **_kwargs):
|
||||||
|
val = apply(windows2c.wxPyWindow_base_AcceptsFocus,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_AcceptsFocusFromKeyboard(self, *_args, **_kwargs):
|
||||||
|
val = apply(windows2c.wxPyWindow_base_AcceptsFocusFromKeyboard,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_GetMaxSize(self, *_args, **_kwargs):
|
||||||
|
val = apply(windows2c.wxPyWindow_base_GetMaxSize,(self,) + _args, _kwargs)
|
||||||
|
if val: val = wxSizePtr(val) ; val.thisown = 1
|
||||||
|
return val
|
||||||
|
def __repr__(self):
|
||||||
|
return "<C wxPyWindow instance at %s>" % (self.this,)
|
||||||
|
class wxPyWindow(wxPyWindowPtr):
|
||||||
|
def __init__(self,*_args,**_kwargs):
|
||||||
|
self.this = apply(windows2c.new_wxPyWindow,_args,_kwargs)
|
||||||
|
self.thisown = 1
|
||||||
|
self._setCallbackInfo(self, wxPyWindow)
|
||||||
|
self._setOORInfo(self)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class wxPyControlPtr(wxControlPtr):
|
||||||
|
def __init__(self,this):
|
||||||
|
self.this = this
|
||||||
|
self.thisown = 0
|
||||||
|
def _setCallbackInfo(self, *_args, **_kwargs):
|
||||||
|
val = apply(windows2c.wxPyControl__setCallbackInfo,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_DoMoveWindow(self, *_args, **_kwargs):
|
||||||
|
val = apply(windows2c.wxPyControl_base_DoMoveWindow,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_DoSetSize(self, *_args, **_kwargs):
|
||||||
|
val = apply(windows2c.wxPyControl_base_DoSetSize,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_DoSetClientSize(self, *_args, **_kwargs):
|
||||||
|
val = apply(windows2c.wxPyControl_base_DoSetClientSize,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_DoSetVirtualSize(self, *_args, **_kwargs):
|
||||||
|
val = apply(windows2c.wxPyControl_base_DoSetVirtualSize,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_DoGetSize(self, *_args, **_kwargs):
|
||||||
|
val = apply(windows2c.wxPyControl_base_DoGetSize,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_DoGetClientSize(self, *_args, **_kwargs):
|
||||||
|
val = apply(windows2c.wxPyControl_base_DoGetClientSize,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_DoGetPosition(self, *_args, **_kwargs):
|
||||||
|
val = apply(windows2c.wxPyControl_base_DoGetPosition,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_DoGetVirtualSize(self, *_args, **_kwargs):
|
||||||
|
val = apply(windows2c.wxPyControl_base_DoGetVirtualSize,(self,) + _args, _kwargs)
|
||||||
|
if val: val = wxSizePtr(val) ; val.thisown = 1
|
||||||
|
return val
|
||||||
|
def base_DoGetBestSize(self, *_args, **_kwargs):
|
||||||
|
val = apply(windows2c.wxPyControl_base_DoGetBestSize,(self,) + _args, _kwargs)
|
||||||
|
if val: val = wxSizePtr(val) ; val.thisown = 1
|
||||||
|
return val
|
||||||
|
def base_InitDialog(self, *_args, **_kwargs):
|
||||||
|
val = apply(windows2c.wxPyControl_base_InitDialog,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_TransferDataToWindow(self, *_args, **_kwargs):
|
||||||
|
val = apply(windows2c.wxPyControl_base_TransferDataToWindow,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_TransferDataFromWindow(self, *_args, **_kwargs):
|
||||||
|
val = apply(windows2c.wxPyControl_base_TransferDataFromWindow,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_Validate(self, *_args, **_kwargs):
|
||||||
|
val = apply(windows2c.wxPyControl_base_Validate,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_AcceptsFocus(self, *_args, **_kwargs):
|
||||||
|
val = apply(windows2c.wxPyControl_base_AcceptsFocus,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_AcceptsFocusFromKeyboard(self, *_args, **_kwargs):
|
||||||
|
val = apply(windows2c.wxPyControl_base_AcceptsFocusFromKeyboard,(self,) + _args, _kwargs)
|
||||||
|
return val
|
||||||
|
def base_GetMaxSize(self, *_args, **_kwargs):
|
||||||
|
val = apply(windows2c.wxPyControl_base_GetMaxSize,(self,) + _args, _kwargs)
|
||||||
|
if val: val = wxSizePtr(val) ; val.thisown = 1
|
||||||
|
return val
|
||||||
|
def __repr__(self):
|
||||||
|
return "<C wxPyControl instance at %s>" % (self.this,)
|
||||||
|
class wxPyControl(wxPyControlPtr):
|
||||||
|
def __init__(self,*_args,**_kwargs):
|
||||||
|
self.this = apply(windows2c.new_wxPyControl,_args,_kwargs)
|
||||||
|
self.thisown = 1
|
||||||
|
self._setCallbackInfo(self, wxPyControl)
|
||||||
|
self._setOORInfo(self)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#-------------- FUNCTION WRAPPERS ------------------
|
#-------------- FUNCTION WRAPPERS ------------------
|
||||||
|
@@ -31,6 +31,7 @@
|
|||||||
// Put some wx default wxChar* values into wxStrings.
|
// Put some wx default wxChar* values into wxStrings.
|
||||||
DECLARE_DEF_STRING(NOTEBOOK_NAME);
|
DECLARE_DEF_STRING(NOTEBOOK_NAME);
|
||||||
DECLARE_DEF_STRING(PanelNameStr);
|
DECLARE_DEF_STRING(PanelNameStr);
|
||||||
|
DECLARE_DEF_STRING(ControlNameStr);
|
||||||
|
|
||||||
static const wxChar* wxSplitterNameStr = wxT("splitter");
|
static const wxChar* wxSplitterNameStr = wxT("splitter");
|
||||||
DECLARE_DEF_STRING(SplitterNameStr);
|
DECLARE_DEF_STRING(SplitterNameStr);
|
||||||
@@ -304,69 +305,241 @@ public:
|
|||||||
// wxPyWindow derives from wxWindow and adds support for overriding many of
|
// wxPyWindow derives from wxWindow and adds support for overriding many of
|
||||||
// the virtual methods in Python derived classes.
|
// the virtual methods in Python derived classes.
|
||||||
|
|
||||||
// Do wxPyControl too.
|
// Which of these should be done???
|
||||||
|
|
||||||
// %{
|
|
||||||
// class wxPyWindow : public wxWindow
|
|
||||||
// {
|
|
||||||
// DECLARE_DYNAMIC_CLASS(wxPyWindow)
|
|
||||||
// public:
|
|
||||||
// wxPyWindow(wxWindow* parent, const wxWindowID id,
|
|
||||||
// const wxPoint& pos = wxDefaultPosition,
|
|
||||||
// const wxSize& size = wxDefaultSize,
|
|
||||||
// long style = 0,
|
|
||||||
// const wxString& name = wxPyPanelNameStr)
|
|
||||||
// : wxWindow(parent, id, pos, size, style, name) {}
|
|
||||||
|
|
||||||
|
|
||||||
// // Which of these should be done???
|
|
||||||
// DoSetSize
|
|
||||||
// DoGetSize
|
|
||||||
// DoSetClientSize
|
|
||||||
// DoGetClientSize
|
|
||||||
// DoGetPosition
|
|
||||||
// DoSetVirtualSize
|
|
||||||
// DoGetVirtualSize
|
|
||||||
|
|
||||||
// GetClientAreaOrigin
|
|
||||||
// Fit
|
|
||||||
// SetSizeHints
|
|
||||||
// SetVirtualSizeHints
|
|
||||||
// GetMaxSize
|
|
||||||
// Show
|
|
||||||
// Enable
|
|
||||||
// SetFocus
|
|
||||||
// SetFocusFromKbd
|
|
||||||
// AcceptsFocus
|
|
||||||
// AcceptsFocusFromKeyboard
|
|
||||||
// GetDefaultItem
|
|
||||||
// SetDefaultItem
|
|
||||||
// IsTopLevel
|
|
||||||
// AddChild
|
// AddChild
|
||||||
// RemoveChild
|
// Destroy
|
||||||
// Validate
|
// DoCaptureMouse
|
||||||
// TransferDataToWindow
|
// DoClientToScreen
|
||||||
// TransferDataFromWindow
|
// DoHitTest
|
||||||
// InitDialog
|
// DoMoveWindow
|
||||||
// SetBackgroundColour
|
// DoPopupMenu
|
||||||
// SetForegroundColour
|
// DoReleaseMouse
|
||||||
|
// DoScreenToClient
|
||||||
|
// DoSetToolTip
|
||||||
|
// Enable
|
||||||
|
// Fit
|
||||||
// GetCharHeight
|
// GetCharHeight
|
||||||
// GetCharWidth
|
// GetCharWidth
|
||||||
// DoClientToScreen
|
// GetClientAreaOrigin
|
||||||
// DoScreenToClient
|
// GetDefaultItem
|
||||||
// DoHitTest
|
// IsTopLevel
|
||||||
// DoPopupMenu
|
// RemoveChild
|
||||||
// DoSetToolTip
|
// SetBackgroundColour
|
||||||
// DoCaptureMouse
|
// SetDefaultItem
|
||||||
// DoReleaseMouse
|
// SetFocus
|
||||||
// DoMoveWindow
|
// SetFocusFromKbd
|
||||||
|
// SetForegroundColour
|
||||||
|
// SetSizeHints
|
||||||
|
// SetVirtualSizeHints
|
||||||
|
// Show
|
||||||
|
|
||||||
|
|
||||||
// PYPRIVATE;
|
%{ // C++ version of Python aware wxWindow
|
||||||
// };
|
class wxPyWindow : public wxWindow
|
||||||
|
{
|
||||||
|
DECLARE_DYNAMIC_CLASS(wxPyWindow)
|
||||||
|
public:
|
||||||
|
wxPyWindow() : wxWindow() {}
|
||||||
|
wxPyWindow(wxWindow* parent, const wxWindowID id,
|
||||||
|
const wxPoint& pos = wxDefaultPosition,
|
||||||
|
const wxSize& size = wxDefaultSize,
|
||||||
|
long style = 0,
|
||||||
|
const wxString& name = wxPyPanelNameStr)
|
||||||
|
: wxWindow(parent, id, pos, size, style, name) {}
|
||||||
|
|
||||||
|
|
||||||
// %}
|
DEC_PYCALLBACK_VOID_INT4(DoMoveWindow);
|
||||||
|
DEC_PYCALLBACK_VOID_INT5(DoSetSize);
|
||||||
|
DEC_PYCALLBACK_VOID_INTINT(DoSetClientSize);
|
||||||
|
DEC_PYCALLBACK_VOID_INTINT(DoSetVirtualSize);
|
||||||
|
|
||||||
|
DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetSize);
|
||||||
|
DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetClientSize);
|
||||||
|
DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetPosition);
|
||||||
|
|
||||||
|
DEC_PYCALLBACK_SIZE_const(DoGetVirtualSize);
|
||||||
|
DEC_PYCALLBACK_SIZE_const(DoGetBestSize);
|
||||||
|
|
||||||
|
DEC_PYCALLBACK__(InitDialog);
|
||||||
|
DEC_PYCALLBACK_BOOL_(TransferDataFromWindow);
|
||||||
|
DEC_PYCALLBACK_BOOL_(TransferDataToWindow);
|
||||||
|
DEC_PYCALLBACK_BOOL_(Validate);
|
||||||
|
|
||||||
|
DEC_PYCALLBACK_BOOL_const(AcceptsFocus);
|
||||||
|
DEC_PYCALLBACK_BOOL_const(AcceptsFocusFromKeyboard);
|
||||||
|
DEC_PYCALLBACK_SIZE_const(GetMaxSize);
|
||||||
|
|
||||||
|
PYPRIVATE;
|
||||||
|
};
|
||||||
|
|
||||||
|
IMPLEMENT_DYNAMIC_CLASS(wxPyWindow, wxWindow);
|
||||||
|
|
||||||
|
IMP_PYCALLBACK_VOID_INT4(wxPyWindow, wxWindow, DoMoveWindow);
|
||||||
|
IMP_PYCALLBACK_VOID_INT5(wxPyWindow, wxWindow, DoSetSize);
|
||||||
|
IMP_PYCALLBACK_VOID_INTINT(wxPyWindow, wxWindow, DoSetClientSize);
|
||||||
|
IMP_PYCALLBACK_VOID_INTINT(wxPyWindow, wxWindow, DoSetVirtualSize);
|
||||||
|
|
||||||
|
IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyWindow, wxWindow, DoGetSize);
|
||||||
|
IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyWindow, wxWindow, DoGetClientSize);
|
||||||
|
IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyWindow, wxWindow, DoGetPosition);
|
||||||
|
|
||||||
|
IMP_PYCALLBACK_SIZE_const(wxPyWindow, wxWindow, DoGetVirtualSize);
|
||||||
|
IMP_PYCALLBACK_SIZE_const(wxPyWindow, wxWindow, DoGetBestSize);
|
||||||
|
|
||||||
|
IMP_PYCALLBACK__(wxPyWindow, wxWindow, InitDialog);
|
||||||
|
IMP_PYCALLBACK_BOOL_(wxPyWindow, wxWindow, TransferDataFromWindow);
|
||||||
|
IMP_PYCALLBACK_BOOL_(wxPyWindow, wxWindow, TransferDataToWindow);
|
||||||
|
IMP_PYCALLBACK_BOOL_(wxPyWindow, wxWindow, Validate);
|
||||||
|
|
||||||
|
IMP_PYCALLBACK_BOOL_const(wxPyWindow, wxWindow, AcceptsFocus);
|
||||||
|
IMP_PYCALLBACK_BOOL_const(wxPyWindow, wxWindow, AcceptsFocusFromKeyboard);
|
||||||
|
IMP_PYCALLBACK_SIZE_const(wxPyWindow, wxWindow, GetMaxSize);
|
||||||
|
|
||||||
|
%}
|
||||||
|
|
||||||
|
// And now the one for SWIG to see
|
||||||
|
class wxPyWindow : public wxWindow
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
wxPyWindow(wxWindow* parent, const wxWindowID id,
|
||||||
|
const wxPoint& pos = wxDefaultPosition,
|
||||||
|
const wxSize& size = wxDefaultSize,
|
||||||
|
long style = 0,
|
||||||
|
const wxString& name = wxPyPanelNameStr);
|
||||||
|
|
||||||
|
void _setCallbackInfo(PyObject* self, PyObject* _class);
|
||||||
|
%pragma(python) addtomethod = "__init__:self._setCallbackInfo(self, wxPyWindow)"
|
||||||
|
%pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
|
||||||
|
|
||||||
|
|
||||||
|
void base_DoMoveWindow(int x, int y, int width, int height);
|
||||||
|
void base_DoSetSize(int x, int y, int width, int height,
|
||||||
|
int sizeFlags = wxSIZE_AUTO);
|
||||||
|
void base_DoSetClientSize(int width, int height);
|
||||||
|
void base_DoSetVirtualSize( int x, int y );
|
||||||
|
|
||||||
|
void base_DoGetSize( int *OUTPUT, int *OUTPUT ) const;
|
||||||
|
void base_DoGetClientSize( int *OUTPUT, int *OUTPUT ) const;
|
||||||
|
void base_DoGetPosition( int *OUTPUT, int *OUTPUT ) const;
|
||||||
|
|
||||||
|
wxSize base_DoGetVirtualSize() const;
|
||||||
|
wxSize base_DoGetBestSize() const;
|
||||||
|
|
||||||
|
void base_InitDialog();
|
||||||
|
bool base_TransferDataToWindow();
|
||||||
|
bool base_TransferDataFromWindow();
|
||||||
|
bool base_Validate();
|
||||||
|
|
||||||
|
bool base_AcceptsFocus() const;
|
||||||
|
bool base_AcceptsFocusFromKeyboard() const;
|
||||||
|
wxSize base_GetMaxSize() const;
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------
|
||||||
|
// Do the same thing for wxControl
|
||||||
|
|
||||||
|
|
||||||
|
%{ // C++ version of Python aware wxControl
|
||||||
|
class wxPyControl : public wxControl
|
||||||
|
{
|
||||||
|
DECLARE_DYNAMIC_CLASS(wxPyControl)
|
||||||
|
public:
|
||||||
|
wxPyControl() : wxControl() {}
|
||||||
|
wxPyControl(wxWindow* parent, const wxWindowID id,
|
||||||
|
const wxPoint& pos = wxDefaultPosition,
|
||||||
|
const wxSize& size = wxDefaultSize,
|
||||||
|
long style = 0,
|
||||||
|
const wxValidator& validator=wxDefaultValidator,
|
||||||
|
const wxString& name = wxPyControlNameStr)
|
||||||
|
: wxControl(parent, id, pos, size, style, validator, name) {}
|
||||||
|
|
||||||
|
|
||||||
|
DEC_PYCALLBACK_VOID_INT4(DoMoveWindow);
|
||||||
|
DEC_PYCALLBACK_VOID_INT5(DoSetSize);
|
||||||
|
DEC_PYCALLBACK_VOID_INTINT(DoSetClientSize);
|
||||||
|
DEC_PYCALLBACK_VOID_INTINT(DoSetVirtualSize);
|
||||||
|
|
||||||
|
DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetSize);
|
||||||
|
DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetClientSize);
|
||||||
|
DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetPosition);
|
||||||
|
|
||||||
|
DEC_PYCALLBACK_SIZE_const(DoGetVirtualSize);
|
||||||
|
DEC_PYCALLBACK_SIZE_const(DoGetBestSize);
|
||||||
|
|
||||||
|
DEC_PYCALLBACK__(InitDialog);
|
||||||
|
DEC_PYCALLBACK_BOOL_(TransferDataFromWindow);
|
||||||
|
DEC_PYCALLBACK_BOOL_(TransferDataToWindow);
|
||||||
|
DEC_PYCALLBACK_BOOL_(Validate);
|
||||||
|
|
||||||
|
DEC_PYCALLBACK_BOOL_const(AcceptsFocus);
|
||||||
|
DEC_PYCALLBACK_BOOL_const(AcceptsFocusFromKeyboard);
|
||||||
|
DEC_PYCALLBACK_SIZE_const(GetMaxSize);
|
||||||
|
|
||||||
|
PYPRIVATE;
|
||||||
|
};
|
||||||
|
|
||||||
|
IMPLEMENT_DYNAMIC_CLASS(wxPyControl, wxControl);
|
||||||
|
|
||||||
|
IMP_PYCALLBACK_VOID_INT4(wxPyControl, wxControl, DoMoveWindow);
|
||||||
|
IMP_PYCALLBACK_VOID_INT5(wxPyControl, wxControl, DoSetSize);
|
||||||
|
IMP_PYCALLBACK_VOID_INTINT(wxPyControl, wxControl, DoSetClientSize);
|
||||||
|
IMP_PYCALLBACK_VOID_INTINT(wxPyControl, wxControl, DoSetVirtualSize);
|
||||||
|
|
||||||
|
IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyControl, wxControl, DoGetSize);
|
||||||
|
IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyControl, wxControl, DoGetClientSize);
|
||||||
|
IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyControl, wxControl, DoGetPosition);
|
||||||
|
|
||||||
|
IMP_PYCALLBACK_SIZE_const(wxPyControl, wxControl, DoGetVirtualSize);
|
||||||
|
IMP_PYCALLBACK_SIZE_const(wxPyControl, wxControl, DoGetBestSize);
|
||||||
|
|
||||||
|
IMP_PYCALLBACK__(wxPyControl, wxControl, InitDialog);
|
||||||
|
IMP_PYCALLBACK_BOOL_(wxPyControl, wxControl, TransferDataFromWindow);
|
||||||
|
IMP_PYCALLBACK_BOOL_(wxPyControl, wxControl, TransferDataToWindow);
|
||||||
|
IMP_PYCALLBACK_BOOL_(wxPyControl, wxControl, Validate);
|
||||||
|
|
||||||
|
IMP_PYCALLBACK_BOOL_const(wxPyControl, wxControl, AcceptsFocus);
|
||||||
|
IMP_PYCALLBACK_BOOL_const(wxPyControl, wxControl, AcceptsFocusFromKeyboard);
|
||||||
|
IMP_PYCALLBACK_SIZE_const(wxPyControl, wxControl, GetMaxSize);
|
||||||
|
|
||||||
|
%}
|
||||||
|
|
||||||
|
// And now the one for SWIG to see
|
||||||
|
class wxPyControl : public wxControl
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
wxPyControl(wxWindow* parent, const wxWindowID id,
|
||||||
|
const wxPoint& pos = wxDefaultPosition,
|
||||||
|
const wxSize& size = wxDefaultSize,
|
||||||
|
long style = 0,
|
||||||
|
const wxValidator& validator=wxDefaultValidator,
|
||||||
|
const wxString& name = wxPyControlNameStr);
|
||||||
|
|
||||||
|
void _setCallbackInfo(PyObject* self, PyObject* _class);
|
||||||
|
%pragma(python) addtomethod = "__init__:self._setCallbackInfo(self, wxPyControl)"
|
||||||
|
%pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
|
||||||
|
|
||||||
|
|
||||||
|
void base_DoMoveWindow(int x, int y, int width, int height);
|
||||||
|
void base_DoSetSize(int x, int y, int width, int height,
|
||||||
|
int sizeFlags = wxSIZE_AUTO);
|
||||||
|
void base_DoSetClientSize(int width, int height);
|
||||||
|
void base_DoSetVirtualSize( int x, int y );
|
||||||
|
|
||||||
|
void base_DoGetSize( int *OUTPUT, int *OUTPUT ) const;
|
||||||
|
void base_DoGetClientSize( int *OUTPUT, int *OUTPUT ) const;
|
||||||
|
void base_DoGetPosition( int *OUTPUT, int *OUTPUT ) const;
|
||||||
|
|
||||||
|
wxSize base_DoGetVirtualSize() const;
|
||||||
|
wxSize base_DoGetBestSize() const;
|
||||||
|
|
||||||
|
void base_InitDialog();
|
||||||
|
bool base_TransferDataToWindow();
|
||||||
|
bool base_TransferDataFromWindow();
|
||||||
|
bool base_Validate();
|
||||||
|
|
||||||
|
bool base_AcceptsFocus() const;
|
||||||
|
bool base_AcceptsFocusFromKeyboard() const;
|
||||||
|
wxSize base_GetMaxSize() const;
|
||||||
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
|
@@ -52,7 +52,7 @@ class wxGenButtonEvent(wxPyCommandEvent):
|
|||||||
|
|
||||||
#----------------------------------------------------------------------
|
#----------------------------------------------------------------------
|
||||||
|
|
||||||
class wxGenButton(wxControl):
|
class wxGenButton(wxPyControl):
|
||||||
labelDelta = 1
|
labelDelta = 1
|
||||||
|
|
||||||
def __init__(self, parent, ID, label,
|
def __init__(self, parent, ID, label,
|
||||||
@@ -61,7 +61,7 @@ class wxGenButton(wxControl):
|
|||||||
name = "genbutton"):
|
name = "genbutton"):
|
||||||
if style == 0:
|
if style == 0:
|
||||||
style = wxNO_BORDER
|
style = wxNO_BORDER
|
||||||
wxControl.__init__(self, parent, ID, pos, size, style, validator, name)
|
wxPyControl.__init__(self, parent, ID, pos, size, style, validator, name)
|
||||||
|
|
||||||
self.up = true
|
self.up = true
|
||||||
self.bezelWidth = 2
|
self.bezelWidth = 2
|
||||||
@@ -79,6 +79,7 @@ class wxGenButton(wxControl):
|
|||||||
|
|
||||||
EVT_LEFT_DOWN(self, self.OnLeftDown)
|
EVT_LEFT_DOWN(self, self.OnLeftDown)
|
||||||
EVT_LEFT_UP(self, self.OnLeftUp)
|
EVT_LEFT_UP(self, self.OnLeftUp)
|
||||||
|
EVT_LEFT_DCLICK(self, self.OnLeftDown)
|
||||||
EVT_MOTION(self, self.OnMotion)
|
EVT_MOTION(self, self.OnMotion)
|
||||||
EVT_SET_FOCUS(self, self.OnGainFocus)
|
EVT_SET_FOCUS(self, self.OnGainFocus)
|
||||||
EVT_KILL_FOCUS(self, self.OnLoseFocus)
|
EVT_KILL_FOCUS(self, self.OnLoseFocus)
|
||||||
@@ -97,27 +98,38 @@ class wxGenButton(wxControl):
|
|||||||
size = wxSize(-1,-1)
|
size = wxSize(-1,-1)
|
||||||
if type(size) == type(()):
|
if type(size) == type(()):
|
||||||
size = wxSize(size[0], size[1])
|
size = wxSize(size[0], size[1])
|
||||||
|
size = wxSize(size.width, size.height) # make a copy
|
||||||
|
|
||||||
# make a new size so we don't mess with the one passed in
|
best = self.GetBestSize()
|
||||||
size = wxSize(size.width, size.height)
|
|
||||||
|
|
||||||
w, h, useMin = self._GetLabelSize()
|
|
||||||
defSize = wxButton_GetDefaultSize()
|
|
||||||
if size.width == -1:
|
if size.width == -1:
|
||||||
size.width = 12 + w
|
size.width = best.width
|
||||||
if useMin and size.width < defSize.width:
|
|
||||||
size.width = defSize.width
|
|
||||||
if size.height == -1:
|
if size.height == -1:
|
||||||
size.height = 11 + h
|
size.height = best.height
|
||||||
if useMin and size.height < defSize.height:
|
|
||||||
size.height = defSize.height
|
|
||||||
|
|
||||||
size.width = size.width + self.bezelWidth - 1
|
|
||||||
size.height = size.height + self.bezelWidth - 1
|
|
||||||
|
|
||||||
self.SetSize(size)
|
self.SetSize(size)
|
||||||
|
|
||||||
|
|
||||||
|
def DoGetBestSize(self):
|
||||||
|
"""Overridden base class virtual. Determines the best size of the
|
||||||
|
button based on the label and bezel size."""
|
||||||
|
w, h, useMin = self._GetLabelSize()
|
||||||
|
defSize = wxButton_GetDefaultSize()
|
||||||
|
width = 12 + w
|
||||||
|
if useMin and width < defSize.width:
|
||||||
|
width = defSize.width
|
||||||
|
height = 11 + h
|
||||||
|
if useMin and height < defSize.height:
|
||||||
|
height = defSize.height
|
||||||
|
width = width + self.bezelWidth - 1
|
||||||
|
height = height + self.bezelWidth - 1
|
||||||
|
return (width, height)
|
||||||
|
|
||||||
|
|
||||||
|
def AcceptsFocus(self):
|
||||||
|
"""Overridden base class virtual."""
|
||||||
|
return self.IsShown() and self.IsEnabled()
|
||||||
|
|
||||||
|
|
||||||
def SetBezelWidth(self, width):
|
def SetBezelWidth(self, width):
|
||||||
"""Set the width of the 3D effect"""
|
"""Set the width of the 3D effect"""
|
||||||
self.bezelWidth = width
|
self.bezelWidth = width
|
||||||
@@ -151,7 +163,8 @@ class wxGenButton(wxControl):
|
|||||||
|
|
||||||
|
|
||||||
def SetBackgroundColour(self, colour):
|
def SetBackgroundColour(self, colour):
|
||||||
wxControl.SetBackgroundColour(self, colour)
|
wxPyControl.SetBackgroundColour(self, colour)
|
||||||
|
colour = self.GetBackgroundColour()
|
||||||
|
|
||||||
# Calculate a new set of highlight and shadow colours based on
|
# Calculate a new set of highlight and shadow colours based on
|
||||||
# the new background colour. Works okay if the colour is dark...
|
# the new background colour. Works okay if the colour is dark...
|
||||||
@@ -174,6 +187,7 @@ class wxGenButton(wxControl):
|
|||||||
evt = wxGenButtonEvent(wxEVT_COMMAND_BUTTON_CLICKED, self.GetId())
|
evt = wxGenButtonEvent(wxEVT_COMMAND_BUTTON_CLICKED, self.GetId())
|
||||||
evt.SetIsDown(not self.up)
|
evt.SetIsDown(not self.up)
|
||||||
evt.SetButtonObj(self)
|
evt.SetButtonObj(self)
|
||||||
|
evt.SetEventObject(self)
|
||||||
self.GetEventHandler().ProcessEvent(evt)
|
self.GetEventHandler().ProcessEvent(evt)
|
||||||
|
|
||||||
|
|
||||||
@@ -263,6 +277,7 @@ class wxGenButton(wxControl):
|
|||||||
self.Refresh()
|
self.Refresh()
|
||||||
event.Skip()
|
event.Skip()
|
||||||
|
|
||||||
|
|
||||||
def OnMotion(self, event):
|
def OnMotion(self, event):
|
||||||
if not self.IsEnabled():
|
if not self.IsEnabled():
|
||||||
return
|
return
|
||||||
|
Reference in New Issue
Block a user