+ 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);
+
+IMP_PYCALLBACK__(wxPyScrolledWindow, wxScrolledWindow, InitDialog);
+IMP_PYCALLBACK_BOOL_(wxPyScrolledWindow, wxScrolledWindow, TransferDataFromWindow);
+IMP_PYCALLBACK_BOOL_(wxPyScrolledWindow, wxScrolledWindow, TransferDataToWindow);
+IMP_PYCALLBACK_BOOL_(wxPyScrolledWindow, wxScrolledWindow, Validate);
+
+IMP_PYCALLBACK_BOOL_const(wxPyScrolledWindow, wxScrolledWindow, AcceptsFocus);
+IMP_PYCALLBACK_BOOL_const(wxPyScrolledWindow, wxScrolledWindow, AcceptsFocusFromKeyboard);
+IMP_PYCALLBACK_SIZE_const(wxPyScrolledWindow, wxScrolledWindow, GetMaxSize);
+
+IMP_PYCALLBACK_VOID_WXWINBASE(wxPyScrolledWindow, wxScrolledWindow, AddChild);
+IMP_PYCALLBACK_VOID_WXWINBASE(wxPyScrolledWindow, wxScrolledWindow, RemoveChild);
+
+IMP_PYCALLBACK_BOOL_const(wxPyScrolledWindow, wxScrolledWindow, ShouldInheritColours);
+IMP_PYCALLBACK_VIZATTR_(wxPyScrolledWindow, wxScrolledWindow, GetDefaultAttributes);
+
+IMP_PYCALLBACK_BOOL_(wxPyScrolledWindow, wxScrolledWindow, HasTransparentBackground);
+
+IMP_PYCALLBACK_VOID_(wxPyScrolledWindow, wxScrolledWindow, OnInternalIdle);
+%}
+
+// And now the one for SWIG to see
+MustHaveApp(wxPyScrolledWindow);
+class wxPyScrolledWindow : public wxScrolledWindow
+{
+public:
+ %pythonAppend wxPyScrolledWindow "self._setOORInfo(self); self._setCallbackInfo(self, PyScrolledWindow)"
+ %pythonAppend wxPyScrolledWindow() ""
+
+ wxPyScrolledWindow(wxWindow* parent, const wxWindowID id=-1,
+ const wxPoint& pos = wxDefaultPosition,
+ const wxSize& size = wxDefaultSize,
+ long style = 0,
+ const wxString& name = wxPyPanelNameStr);
+
+ %RenameCtor(PrePyScrolledWindow, wxPyScrolledWindow());
+
+ void _setCallbackInfo(PyObject* self, PyObject* _class);
+
+ void SetBestSize(const wxSize& size);
+ bool DoEraseBackground(wxDC* dc);
+
+ void DoMoveWindow(int x, int y, int width, int height);
+ void DoSetSize(int x, int y, int width, int height,
+ int sizeFlags = wxSIZE_AUTO);
+ void DoSetClientSize(int width, int height);
+ void DoSetVirtualSize( int x, int y );
+
+ DocDeclA(
+ void, DoGetSize( int *OUTPUT, int *OUTPUT ) const,
+ "DoGetSize() -> (width, height)");
+ DocDeclA(
+ void, DoGetClientSize( int *OUTPUT, int *OUTPUT ) const,
+ "DoGetClientSize() -> (width, height)");
+ DocDeclA(
+ 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(PyScrolledWindow, DoMoveWindow);
+ %MAKE_BASE_FUNC(PyScrolledWindow, DoSetSize);
+ %MAKE_BASE_FUNC(PyScrolledWindow, DoSetClientSize);
+ %MAKE_BASE_FUNC(PyScrolledWindow, DoSetVirtualSize);
+ %MAKE_BASE_FUNC(PyScrolledWindow, DoGetSize);
+ %MAKE_BASE_FUNC(PyScrolledWindow, DoGetClientSize);
+ %MAKE_BASE_FUNC(PyScrolledWindow, DoGetPosition);
+ %MAKE_BASE_FUNC(PyScrolledWindow, DoGetVirtualSize);
+ %MAKE_BASE_FUNC(PyScrolledWindow, DoGetBestSize);
+ %MAKE_BASE_FUNC(PyScrolledWindow, InitDialog);
+ %MAKE_BASE_FUNC(PyScrolledWindow, TransferDataToWindow);
+ %MAKE_BASE_FUNC(PyScrolledWindow, TransferDataFromWindow);
+ %MAKE_BASE_FUNC(PyScrolledWindow, Validate);
+ %MAKE_BASE_FUNC(PyScrolledWindow, AcceptsFocus);
+ %MAKE_BASE_FUNC(PyScrolledWindow, AcceptsFocusFromKeyboard);
+ %MAKE_BASE_FUNC(PyScrolledWindow, GetMaxSize);
+ %MAKE_BASE_FUNC(PyScrolledWindow, AddChild);
+ %MAKE_BASE_FUNC(PyScrolledWindow, RemoveChild);
+ %MAKE_BASE_FUNC(PyScrolledWindow, ShouldInheritColours);
+ %MAKE_BASE_FUNC(PyScrolledWindow, GetDefaultAttributes);
+ %MAKE_BASE_FUNC(PyScrolledWindow, OnInternalIdle);