+ void, DoGetPosition( int *OUTPUT, int *OUTPUT ) const,
+ "DoGetPosition() -> (x,y)");
+
+ wxSize DoGetVirtualSize() const;
+ wxSize DoGetBestSize() const;
+
+ void InitDialog();
+ bool TransferDataToWindow();
+ bool TransferDataFromWindow();
+ bool Validate();
+
+ bool AcceptsFocus() const;
+ bool AcceptsFocusFromKeyboard() const;
+ wxSize GetMaxSize() const;
+
+ void AddChild(wxWindow* child);
+ void RemoveChild(wxWindow* child);
+
+ bool ShouldInheritColours() const ;
+ wxVisualAttributes GetDefaultAttributes();
+
+ void OnInternalIdle();
+
+ %MAKE_BASE_FUNC(PyPanel, DoMoveWindow);
+ %MAKE_BASE_FUNC(PyPanel, DoSetSize);
+ %MAKE_BASE_FUNC(PyPanel, DoSetClientSize);
+ %MAKE_BASE_FUNC(PyPanel, DoSetVirtualSize);
+ %MAKE_BASE_FUNC(PyPanel, DoGetSize);
+ %MAKE_BASE_FUNC(PyPanel, DoGetClientSize);
+ %MAKE_BASE_FUNC(PyPanel, DoGetPosition);
+ %MAKE_BASE_FUNC(PyPanel, DoGetVirtualSize);
+ %MAKE_BASE_FUNC(PyPanel, DoGetBestSize);
+ %MAKE_BASE_FUNC(PyPanel, InitDialog);
+ %MAKE_BASE_FUNC(PyPanel, TransferDataToWindow);
+ %MAKE_BASE_FUNC(PyPanel, TransferDataFromWindow);
+ %MAKE_BASE_FUNC(PyPanel, Validate);
+ %MAKE_BASE_FUNC(PyPanel, AcceptsFocus);
+ %MAKE_BASE_FUNC(PyPanel, AcceptsFocusFromKeyboard);
+ %MAKE_BASE_FUNC(PyPanel, GetMaxSize);
+ %MAKE_BASE_FUNC(PyPanel, AddChild);
+ %MAKE_BASE_FUNC(PyPanel, RemoveChild);
+ %MAKE_BASE_FUNC(PyPanel, ShouldInheritColours);
+ %MAKE_BASE_FUNC(PyPanel, GetDefaultAttributes);
+ %MAKE_BASE_FUNC(PyPanel, OnInternalIdle);
+};
+
+//---------------------------------------------------------------------------
+// and for wxScrolledWindow
+
+%{ // C++ version of Python aware wxScrolledWindow
+class wxPyScrolledWindow : public wxScrolledWindow
+{
+ DECLARE_DYNAMIC_CLASS(wxPyScrolledWindow)
+public:
+ wxPyScrolledWindow() : wxScrolledWindow() {}
+ wxPyScrolledWindow(wxWindow* parent, const wxWindowID id,
+ const wxPoint& pos = wxDefaultPosition,
+ const wxSize& size = wxDefaultSize,
+ long style = 0,
+ const wxString& name = wxPyPanelNameStr)
+ : wxScrolledWindow(parent, id, pos, size, style, name) {}
+
+ void SetBestSize(const wxSize& size) { wxScrolledWindow::SetBestSize(size); }
+ bool DoEraseBackground(wxDC* dc) {
+#ifdef __WXMSW__
+ return wxWindow::DoEraseBackground(dc->GetHDC());
+#else
+ dc->SetBackground(wxBrush(GetBackgroundColour()));
+ dc->Clear();
+ return true;
+#endif
+ }
+
+ 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);
+
+ DEC_PYCALLBACK_VOID_WXWINBASE(AddChild);
+ DEC_PYCALLBACK_VOID_WXWINBASE(RemoveChild);
+
+ DEC_PYCALLBACK_BOOL_const(ShouldInheritColours);
+ DEC_PYCALLBACK_VIZATTR_(GetDefaultAttributes);
+
+ DEC_PYCALLBACK_BOOL_(HasTransparentBackground);
+
+ DEC_PYCALLBACK_VOID_(OnInternalIdle);
+
+ PYPRIVATE;
+};
+
+IMPLEMENT_DYNAMIC_CLASS(wxPyScrolledWindow, wxScrolledWindow);
+
+IMP_PYCALLBACK_VOID_INT4(wxPyScrolledWindow, wxScrolledWindow, DoMoveWindow);
+IMP_PYCALLBACK_VOID_INT5(wxPyScrolledWindow, wxScrolledWindow, DoSetSize);
+IMP_PYCALLBACK_VOID_INTINT(wxPyScrolledWindow, wxScrolledWindow, DoSetClientSize);
+IMP_PYCALLBACK_VOID_INTINT(wxPyScrolledWindow, wxScrolledWindow, DoSetVirtualSize);
+
+IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyScrolledWindow, wxScrolledWindow, DoGetSize);
+IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyScrolledWindow, wxScrolledWindow, DoGetClientSize);
+IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyScrolledWindow, wxScrolledWindow, DoGetPosition);
+
+IMP_PYCALLBACK_SIZE_const(wxPyScrolledWindow, wxScrolledWindow, DoGetVirtualSize);
+IMP_PYCALLBACK_SIZE_const(wxPyScrolledWindow, wxScrolledWindow, DoGetBestSize);