]> git.saurik.com Git - wxWidgets.git/blame - src/mac/gauge.cpp
Carbon Event Mouse Moved handler changes
[wxWidgets.git] / src / mac / gauge.cpp
CommitLineData
e9576ca5
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: gauge.cpp
3// Purpose: wxGauge class
a31a5f85 4// Author: Stefan Csomor
e9576ca5 5// Modified by:
a31a5f85 6// Created: 1998-01-01
e9576ca5 7// RCS-ID: $Id$
a31a5f85 8// Copyright: (c) Stefan Csomor
e40298d5 9// Licence: wxWindows licence
e9576ca5
SC
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
13#pragma implementation "gauge.h"
14#endif
15
16#include "wx/gauge.h"
17
2f1ae414 18#if !USE_SHARED_LIBRARY
e9576ca5 19IMPLEMENT_DYNAMIC_CLASS(wxGauge, wxControl)
2f1ae414 20#endif
e9576ca5 21
d497dca4 22#include "wx/mac/uma.h"
519cb848 23
e9576ca5
SC
24bool wxGauge::Create(wxWindow *parent, wxWindowID id,
25 int range,
26 const wxPoint& pos,
519cb848 27 const wxSize& s,
e9576ca5
SC
28 long style,
29 const wxValidator& validator,
30 const wxString& name)
31{
b45ed7a2
VZ
32 if ( !wxGaugeBase::Create(parent, id, range, pos, s, style, validator, name) )
33 return false;
34
e40298d5
JS
35 wxSize size = s ;
36 Rect bounds ;
37 Str255 title ;
38 m_rangeMax = range ;
39 m_gaugePos = 0 ;
40
41 if ( size.x == wxDefaultSize.x && size.y == wxDefaultSize.y)
42 {
43 size = wxSize( 200 , 16 ) ;
44 }
45
427ff662 46 MacPreControlCreate( parent , id , wxEmptyString , pos , size ,style & 0xE0FFFFFF /* no borders on mac */ , validator , name , &bounds , title ) ;
e40298d5
JS
47
48 m_macControl = ::NewControl( MAC_WXHWND(parent->MacGetRootWindow()) , &bounds , title , false , 0 , 0 , range,
49 kControlProgressBarProc , (long) this ) ;
50
51 MacPostControlCreate() ;
52
53 return TRUE;
e9576ca5
SC
54}
55
56void wxGauge::SetShadowWidth(int w)
57{
e9576ca5
SC
58}
59
60void wxGauge::SetBezelFace(int w)
61{
e9576ca5
SC
62}
63
64void wxGauge::SetRange(int r)
65{
66 m_rangeMax = r;
467e3168 67 ::SetControl32BitMaximum( (ControlHandle) m_macControl , m_rangeMax ) ;
e9576ca5
SC
68}
69
70void wxGauge::SetValue(int pos)
71{
72 m_gaugePos = pos;
e40298d5 73 ::SetControl32BitValue( (ControlHandle) m_macControl , m_gaugePos ) ;
e9576ca5
SC
74}
75
76int wxGauge::GetShadowWidth() const
77{
e9576ca5
SC
78 return 0;
79}
80
81int wxGauge::GetBezelFace() const
82{
e9576ca5
SC
83 return 0;
84}
85
86int wxGauge::GetRange() const
87{
88 return m_rangeMax;
89}
90
91int wxGauge::GetValue() const
92{
93 return m_gaugePos;
94}
95