]> git.saurik.com Git - wxWidgets.git/blame - include/wx/mac/scrolbar.h
blind attempt to fix wxMac compilation (__UNIX__ defined on OS X?)
[wxWidgets.git] / include / wx / mac / scrolbar.h
CommitLineData
0dbd6262
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: scrollbar.h
3// Purpose: wxScrollBar class
a31a5f85 4// Author: Stefan Csomor
0dbd6262 5// Modified by:
a31a5f85 6// Created: 1998-01-01
0dbd6262 7// RCS-ID: $Id$
a31a5f85 8// Copyright: (c) Stefan Csomor
e40298d5 9// Licence: wxWindows licence
0dbd6262
SC
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_SCROLBAR_H_
13#define _WX_SCROLBAR_H_
14
12028905 15#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
0dbd6262
SC
16#pragma interface "scrolbar.h"
17#endif
18
19#include "wx/control.h"
20
c4e41ce3 21WXDLLEXPORT_DATA(extern const wxChar*) wxScrollBarNameStr;
0dbd6262
SC
22
23// Scrollbar item
24class WXDLLEXPORT wxScrollBar: public wxControl
25{
26 DECLARE_DYNAMIC_CLASS(wxScrollBar)
27
28public:
29 inline wxScrollBar() { m_pageSize = 0; m_viewSize = 0; m_objectSize = 0; }
30 ~wxScrollBar();
31
32 inline wxScrollBar(wxWindow *parent, wxWindowID id,
33 const wxPoint& pos = wxDefaultPosition,
34 const wxSize& size = wxDefaultSize,
35 long style = wxSB_HORIZONTAL,
36 const wxValidator& validator = wxDefaultValidator,
37 const wxString& name = wxScrollBarNameStr)
38 {
39 Create(parent, id, pos, size, style, validator, name);
40 }
41 bool Create(wxWindow *parent, wxWindowID id,
42 const wxPoint& pos = wxDefaultPosition,
43 const wxSize& size = wxDefaultSize,
44 long style = wxSB_HORIZONTAL,
45 const wxValidator& validator = wxDefaultValidator,
46 const wxString& name = wxScrollBarNameStr);
47
48 int GetThumbPosition() const ;
9e336cc2
SC
49 inline int GetThumbSize() const { return m_viewSize; }
50 inline int GetPageSize() const { return m_pageSize; }
0dbd6262
SC
51 inline int GetRange() const { return m_objectSize; }
52
c5fe0dcc
RD
53 bool IsVertical() const { return (m_windowStyle & wxVERTICAL) != 0; }
54
0dbd6262
SC
55 virtual void SetThumbPosition(int viewStart);
56 virtual void SetScrollbar(int position, int thumbSize, int range, int pageSize,
57 bool refresh = TRUE);
58
59 void Command(wxCommandEvent& event);
69b85ca4 60 virtual void MacHandleControlClick( WXWidget control , wxInt16 controlpart , bool mouseStillDown ) ;
0dbd6262
SC
61
62protected:
63 int m_pageSize;
64 int m_viewSize;
65 int m_objectSize;
66
67DECLARE_EVENT_TABLE()
68};
69
70#endif
71 // _WX_SCROLBAR_H_