+ 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);
+ }