X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e81b607b4322af54190484aa7ee34112337a344e..9ac884500ce30c58e24b0a6af1288b576d2e03e4:/wxPython/src/aui.i diff --git a/wxPython/src/aui.i b/wxPython/src/aui.i index 68202adbf1..59a55ed3f3 100755 --- a/wxPython/src/aui.i +++ b/wxPython/src/aui.i @@ -248,10 +248,22 @@ The following example shows a simple implementation that utilizes } } +%extend wxDockInfo { + ~wxDockInfo() {} +} + +%extend wxDockUIPart { + ~wxDockUIPart() {} +} + +%extend wxPaneButton { + ~wxPaneButton() {} +} + //--------------------------------------------------------------------------- %{ -// A wxDocArt lcass that knows how to forward virtuals to Python methods +// A wxDocArt class that knows how to forward virtuals to Python methods class wxPyDockArt : public wxDefaultDockArt { wxPyDockArt() : wxDefaultDockArt() {} @@ -423,11 +435,147 @@ methods to the Python methods implemented in the derived class.", ""); class wxPyDockArt : public wxDefaultDockArt { %pythonAppend wxPyDockArt "self._setCallbackInfo(self, PyDockArt)" - PyDocArt(); + wxPyDocArt(); + +}; + + +//--------------------------------------------------------------------------- + +%extend wxAuiMultiNotebook { + %property(PageCount, GetPageCount, doc="See `GetPageCount`"); + %property(Selection, GetSelection, SetSelection, doc="See `GetSelection` and `SetSelection`"); +} + + +%extend wxAuiNotebookEvent { + %property(OldSelection, GetOldSelection, SetOldSelection, doc="See `GetOldSelection` and `SetOldSelection`"); + %property(Selection, GetSelection, SetSelection, doc="See `GetSelection` and `SetSelection`"); +} + + +%extend wxAuiTabContainer { + %property(ActivePage, GetActivePage, SetActivePage, doc="See `GetActivePage` and `SetActivePage`"); + %property(PageCount, GetPageCount, doc="See `GetPageCount`"); + %property(Pages, GetPages, doc="See `GetPages`"); +} + + +%extend wxFrameManager { + %property(AllPanes, GetAllPanes, doc="See `GetAllPanes`"); + %property(ArtProvider, GetArtProvider, SetArtProvider, doc="See `GetArtProvider` and `SetArtProvider`"); + %property(Flags, GetFlags, SetFlags, doc="See `GetFlags` and `SetFlags`"); + %property(ManagedWindow, GetManagedWindow, SetManagedWindow, doc="See `GetManagedWindow` and `SetManagedWindow`"); +} + + +%extend wxFrameManagerEvent { + %property(Button, GetButton, SetButton, doc="See `GetButton` and `SetButton`"); + %property(DC, GetDC, SetDC, doc="See `GetDC` and `SetDC`"); + %property(Pane, GetPane, SetPane, doc="See `GetPane` and `SetPane`"); +} + + +//--------------------------------------------------------------------------- + +%{ +// A wxTabArt class that knows how to forward virtuals to Python methods +class wxPyTabArt : public wxDefaultTabArt +{ + wxPyTabArt() : wxDefaultTabArt() {} + + virtual void DrawBackground( wxDC* dc, + const wxRect& rect ) + { + bool found; + wxPyBlock_t blocked = wxPyBeginBlockThreads(); + if ((found = wxPyCBH_findCallback(m_myInst, "DrawBackground"))) { + PyObject* odc = wxPyMake_wxObject(dc, false); + PyObject* orect = wxPyConstructObject((void*)&rect, wxT("wxRect"), 0); + wxPyCBH_callCallback(m_myInst, Py_BuildValue("(OO)", odc, orect)); + Py_DECREF(odc); + Py_DECREF(orect); + } + wxPyEndBlockThreads(blocked); + if (!found) + wxDefaultTabArt::DrawBackground(dc, rect); + } + + virtual void DrawTab( wxDC* dc, + const wxRect& in_rect, + const wxString& caption, + bool active, + wxRect* out_rect, + int* x_extent) + { + bool found; + const char* errmsg = "DrawTab should return a sequence containing (out_rect, x_extent)"; + wxPyBlock_t blocked = wxPyBeginBlockThreads(); + if ((found = wxPyCBH_findCallback(m_myInst, "DrawTab"))) { + PyObject* odc = wxPyMake_wxObject(dc, false); + PyObject* orect = wxPyConstructObject((void*)&in_rect, wxT("wxRect"), 0); + PyObject* otext = wx2PyString(caption); + PyObject* ro; + ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(OOOi)", odc, orect, otext, (int)active)); + if (ro) { + if (PySequence_Check(ro) && PyObject_Length(ro) == 2) { + PyObject* o1 = PySequence_GetItem(ro, 0); + PyObject* o2 = PySequence_GetItem(ro, 1); + if (!wxRect_helper(o1, &out_rect)) + PyErr_SetString(PyExc_TypeError, errmsg); + else if (!PyInt_Check(o2)) + PyErr_SetString(PyExc_TypeError, errmsg); + else + *x_extent = PyInt_AsLong(o2); + + Py_DECREF(o1); + Py_DECREF(o2); + } + else { + PyErr_SetString(PyExc_TypeError, errmsg); + } + Py_DECREF(ro); + } + Py_DECREF(odc); + Py_DECREF(orect); + Py_DECREF(otext); + } + wxPyEndBlockThreads(blocked); + if (!found) + wxDefaultTabArt::DrawTab(dc, in_rect, caption, active, out_rect, x_extent); + } + + + DEC_PYCALLBACK__FONT(SetNormalFont); + DEC_PYCALLBACK__FONT(SetSelectedFont); + DEC_PYCALLBACK__FONT(SetMeasuringFont); + + PYPRIVATE; }; +IMP_PYCALLBACK__FONT(wxPyTabArt, wxDefaultTabArt, SetNormalFont); +IMP_PYCALLBACK__FONT(wxPyTabArt, wxDefaultTabArt, SetSelectedFont); +IMP_PYCALLBACK__FONT(wxPyTabArt, wxDefaultTabArt, SetMeasuringFont); + +%} + + +DocStr(wxPyTabArt, +"This version of the `TabArt` class has been instrumented to be +subclassable in Python and to reflect all calls to the C++ base class +methods to the Python methods implemented in the derived class.", ""); + +class wxPyTabArt : public wxDefaultTabArt +{ + %pythonAppend wxPyTabArt "self._setCallbackInfo(self, PyTabArt)" + wxPyTabArt(); + +}; + + +//--------------------------------------------------------------------------- #undef wxUSE_AUI #undef WXDLLIMPEXP_AUI