]>
Commit | Line | Data |
---|---|---|
1a56f55c RR |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: gauge.cpp | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
a81258be | 5 | // Id: $Id$ |
01111366 | 6 | // Copyright: (c) 1998 Robert Roebling |
4a0f7f3f | 7 | // Licence: wxWindows licence |
1a56f55c RR |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
14f355c2 | 10 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
1a56f55c RR |
11 | #pragma implementation "gauge.h" |
12 | #endif | |
13 | ||
14f355c2 VS |
14 | // For compilers that support precompilation, includes "wx.h". |
15 | #include "wx/wxprec.h" | |
16 | ||
1a56f55c | 17 | #include "wx/gauge.h" |
dcf924a3 RR |
18 | |
19 | #if wxUSE_GAUGE | |
20 | ||
55703c91 | 21 | #include <gtk/gtk.h> |
1a56f55c RR |
22 | |
23 | //----------------------------------------------------------------------------- | |
24 | // wxGauge | |
25 | //----------------------------------------------------------------------------- | |
26 | ||
2b5f62a0 | 27 | IMPLEMENT_DYNAMIC_CLASS(wxGauge, wxControl) |
1a56f55c | 28 | |
2b5f62a0 VZ |
29 | bool wxGauge::Create( wxWindow *parent, |
30 | wxWindowID id, | |
31 | int range, | |
32 | const wxPoint& pos, | |
33 | const wxSize& size, | |
34 | long style, | |
35 | const wxValidator& validator, | |
36 | const wxString& name ) | |
1a56f55c | 37 | { |
4dcaf11a | 38 | m_needParent = TRUE; |
4a0f7f3f | 39 | |
4dcaf11a RR |
40 | if (!PreCreation( parent, pos, size ) || |
41 | !CreateBase( parent, id, pos, size, style, validator, name )) | |
42 | { | |
223d09f6 | 43 | wxFAIL_MSG( wxT("wxGauge creation failed") ); |
4a0f7f3f | 44 | return FALSE; |
4dcaf11a | 45 | } |
6de97a3b | 46 | |
4dcaf11a | 47 | m_rangeMax = range; |
4a0f7f3f | 48 | |
4dcaf11a | 49 | m_widget = gtk_progress_bar_new(); |
2b5f62a0 VZ |
50 | if ( style & wxGA_VERTICAL ) |
51 | { | |
52 | gtk_progress_bar_set_orientation( GTK_PROGRESS_BAR(m_widget), | |
53 | GTK_PROGRESS_BOTTOM_TO_TOP ); | |
54 | } | |
4a0f7f3f | 55 | |
4dcaf11a | 56 | m_parent->DoAddChild( this ); |
4a0f7f3f | 57 | |
4dcaf11a | 58 | PostCreation(); |
4a0f7f3f | 59 | |
4dcaf11a | 60 | Show( TRUE ); |
4a0f7f3f | 61 | |
4dcaf11a | 62 | return TRUE; |
6de97a3b | 63 | } |
1a56f55c | 64 | |
2b5f62a0 VZ |
65 | void wxGauge::DoSetGauge() |
66 | { | |
67 | wxASSERT_MSG( 0 <= m_gaugePos && m_gaugePos <= m_rangeMax, | |
68 | _T("invalid gauge position in DoSetGauge()") ); | |
69 | ||
70 | gtk_progress_bar_update( GTK_PROGRESS_BAR(m_widget), | |
71 | m_rangeMax ? ((float)m_gaugePos)/m_rangeMax : 0.); | |
72 | } | |
73 | ||
74 | void wxGauge::SetRange( int range ) | |
1a56f55c | 75 | { |
2b5f62a0 VZ |
76 | m_rangeMax = range; |
77 | if (m_gaugePos > m_rangeMax) | |
78 | m_gaugePos = m_rangeMax; | |
4a0f7f3f | 79 | |
2b5f62a0 | 80 | DoSetGauge(); |
6de97a3b | 81 | } |
1a56f55c | 82 | |
debe6624 | 83 | void wxGauge::SetValue( int pos ) |
1a56f55c | 84 | { |
2b5f62a0 VZ |
85 | wxCHECK_RET( pos <= m_rangeMax, _T("invalid value in wxGauge::SetValue()") ); |
86 | ||
4dcaf11a | 87 | m_gaugePos = pos; |
4a0f7f3f | 88 | |
2b5f62a0 | 89 | DoSetGauge(); |
6de97a3b | 90 | } |
1a56f55c | 91 | |
4dcaf11a | 92 | int wxGauge::GetRange() const |
1a56f55c | 93 | { |
4dcaf11a | 94 | return m_rangeMax; |
6de97a3b | 95 | } |
1a56f55c | 96 | |
4dcaf11a | 97 | int wxGauge::GetValue() const |
1a56f55c | 98 | { |
4dcaf11a | 99 | return m_gaugePos; |
6de97a3b | 100 | } |
1a56f55c | 101 | |
58614078 RR |
102 | void wxGauge::ApplyWidgetStyle() |
103 | { | |
4dcaf11a RR |
104 | SetWidgetStyle(); |
105 | gtk_widget_set_style( m_widget, m_widgetStyle ); | |
58614078 RR |
106 | } |
107 | ||
4a0f7f3f VZ |
108 | #endif // wxUSE_GAUGE |
109 |