]> git.saurik.com Git - wxWidgets.git/blame - src/mac/carbon/gauge.cpp
ProcessXEvent now returns TRUE if processed, FALSE if not
[wxWidgets.git] / src / mac / carbon / gauge.cpp
CommitLineData
e9576ca5
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: gauge.cpp
3// Purpose: wxGauge class
4// Author: AUTHOR
5// Modified by:
6// Created: ??/??/98
7// RCS-ID: $Id$
8// Copyright: (c) AUTHOR
9// Licence: wxWindows licence
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{
519cb848
SC
32 wxSize size = s ;
33 Rect bounds ;
34 Str255 title ;
35 m_rangeMax = range ;
519cb848
SC
36
37 if ( size.x == wxDefaultSize.x && size.y == wxDefaultSize.y)
38 {
39 size = wxSize( 200 , 16 ) ;
40 }
41
2f1ae414 42 MacPreControlCreate( parent , id , "" , pos , size ,style & 0xE0FFFFFF /* no borders on mac */ , validator , name , &bounds , title ) ;
519cb848 43
76a5e5d2 44 m_macControl = ::NewControl( MAC_WXHWND(parent->MacGetRootWindow()) , &bounds , title , false , 0 , 0 , range,
519cb848
SC
45 kControlProgressBarProc , (long) this ) ;
46
47 MacPostControlCreate() ;
48
49 return TRUE;
e9576ca5
SC
50}
51
52void wxGauge::SetShadowWidth(int w)
53{
e9576ca5
SC
54}
55
56void wxGauge::SetBezelFace(int w)
57{
e9576ca5
SC
58}
59
60void wxGauge::SetRange(int r)
61{
62 m_rangeMax = r;
76a5e5d2 63 ::SetControlMaximum( (ControlHandle) m_macControl , m_rangeMax ) ;
e9576ca5
SC
64}
65
66void wxGauge::SetValue(int pos)
67{
68 m_gaugePos = pos;
76a5e5d2 69 ::SetControlValue( (ControlHandle) m_macControl , m_gaugePos ) ;
e9576ca5
SC
70}
71
72int wxGauge::GetShadowWidth() const
73{
e9576ca5
SC
74 return 0;
75}
76
77int wxGauge::GetBezelFace() const
78{
e9576ca5
SC
79 return 0;
80}
81
82int wxGauge::GetRange() const
83{
84 return m_rangeMax;
85}
86
87int wxGauge::GetValue() const
88{
89 return m_gaugePos;
90}
91