]> git.saurik.com Git - wxWidgets.git/blame - include/wx/mac/classic/gauge.h
fixes to menu stock items support (patch 1547639)
[wxWidgets.git] / include / wx / mac / classic / gauge.h
CommitLineData
52479aef
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: gauge.h
3// Purpose: wxGauge class
4// Author: Stefan Csomor
5// Modified by:
6// Created: 1998-01-01
7// RCS-ID: $Id$
8// Copyright: (c) Stefan Csomor
65571936 9// Licence: wxWindows licence
52479aef
SC
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_GAUGE_H_
13#define _WX_GAUGE_H_
14
52479aef
SC
15#include "wx/control.h"
16
63ec432b 17WXDLLEXPORT_DATA(extern const wxChar) wxGaugeNameStr[];
52479aef
SC
18
19// Group box
20class WXDLLEXPORT wxGauge: public wxGaugeBase
21{
22 DECLARE_DYNAMIC_CLASS(wxGauge)
23 public:
24 inline wxGauge() { m_rangeMax = 0; m_gaugePos = 0; }
25
26 inline wxGauge(wxWindow *parent, wxWindowID id,
27 int range,
28 const wxPoint& pos = wxDefaultPosition,
29 const wxSize& size = wxDefaultSize,
30 long style = wxGA_HORIZONTAL,
31 const wxValidator& validator = wxDefaultValidator,
32 const wxString& name = wxGaugeNameStr)
33 {
34 Create(parent, id, range, pos, size, style, validator, name);
35 }
36
37 bool Create(wxWindow *parent, wxWindowID id,
38 int range,
39 const wxPoint& pos = wxDefaultPosition,
40 const wxSize& size = wxDefaultSize,
41 long style = wxGA_HORIZONTAL,
42 const wxValidator& validator = wxDefaultValidator,
43 const wxString& name = wxGaugeNameStr);
44
45 void SetShadowWidth(int w);
46 void SetBezelFace(int w);
47 void SetRange(int r);
48 void SetValue(int pos);
49
50 int GetShadowWidth() const ;
51 int GetBezelFace() const ;
52 int GetRange() const ;
53 int GetValue() const ;
54
55 virtual void Command(wxCommandEvent& WXUNUSED(event)) {} ;
56
57 protected:
58 int m_rangeMax;
59 int m_gaugePos;
60};
61
62#endif
63 // _WX_GAUGE_H_