//---------------------------------------------------------------------------
%newgroup
+MustHaveApp(wxScrollBar);
+
class wxScrollBar : public wxControl {
public:
- %addtofunc wxScrollBar "self._setOORInfo(self)"
- %addtofunc wxScrollBar() ""
+ %pythonAppend wxScrollBar "self._setOORInfo(self)"
+ %pythonAppend wxScrollBar() ""
wxScrollBar(wxWindow* parent, wxWindowID id = -1,
const wxPoint& pos = wxDefaultPosition,
virtual void SetScrollbar(int position, int thumbSize,
int range, int pageSize,
bool refresh = True);
+
+ static wxVisualAttributes
+ GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
};
//---------------------------------------------------------------------------