]> git.saurik.com Git - wxWidgets.git/blame - wxPython/src/_scrolbar.i
added obsolescence note
[wxWidgets.git] / wxPython / src / _scrolbar.i
CommitLineData
d14a1e28
RD
1/////////////////////////////////////////////////////////////////////////////
2// Name: _scrolbar.i
3// Purpose: SWIG interface defs for wxScrollBar
4//
5// Author: Robin Dunn
6//
7// Created: 10-June-1998
8// RCS-ID: $Id$
9// Copyright: (c) 2003 by Total Control Software
10// Licence: wxWindows license
11/////////////////////////////////////////////////////////////////////////////
12
13// Not a %module
14
15
16//---------------------------------------------------------------------------
17
18%{
19 DECLARE_DEF_STRING(ScrollBarNameStr);
20%}
21
22//---------------------------------------------------------------------------
23%newgroup
24
25class wxScrollBar : public wxControl {
26public:
27 %addtofunc wxScrollBar "self._setOORInfo(self)"
28 %addtofunc wxScrollBar() ""
29
30 wxScrollBar(wxWindow* parent, wxWindowID id = -1,
31 const wxPoint& pos = wxDefaultPosition,
32 const wxSize& size = wxDefaultSize,
33 long style = wxSB_HORIZONTAL,
34 const wxValidator& validator = wxDefaultValidator,
35 const wxString& name = wxPyScrollBarNameStr);
36 %name(PreScrollBar)wxScrollBar();
37
38 bool Create(wxWindow* parent, wxWindowID id = -1,
39 const wxPoint& pos = wxDefaultPosition,
40 const wxSize& size = wxDefaultSize,
41 long style = wxSB_HORIZONTAL,
42 const wxValidator& validator = wxDefaultValidator,
43 const wxString& name = wxPyScrollBarNameStr);
44
45 virtual int GetThumbPosition() const;
46 virtual int GetThumbSize() const;
47 %pythoncode { GetThumbLength = GetThumbSize };
48 virtual int GetPageSize() const;
49 virtual int GetRange() const;
50
51 bool IsVertical() const { return (m_windowStyle & wxVERTICAL) != 0; }
52
53 virtual void SetThumbPosition(int viewStart);
54 virtual void SetScrollbar(int position, int thumbSize,
55 int range, int pageSize,
dd9f7fea 56 bool refresh = True);
d14a1e28
RD
57};
58
59//---------------------------------------------------------------------------