+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);
+
+ %pythoncode { SetBestSize = wx.Window.SetInitialSize }
+ 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);