]>
git.saurik.com Git - wxWidgets.git/blob - src/gtk/gauge.cpp
1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
11 #pragma implementation "gauge.h"
18 //-----------------------------------------------------------------------------
20 //-----------------------------------------------------------------------------
22 IMPLEMENT_DYNAMIC_CLASS(wxGauge
,wxControl
)
24 bool wxGauge::Create( wxWindow
*parent
, wxWindowID id
, int range
,
25 const wxPoint
& pos
, const wxSize
& size
,
26 long style
, const wxValidator
& validator
, const wxString
& name
)
30 PreCreation( parent
, id
, pos
, size
, style
, name
);
32 SetValidator( validator
);
36 m_useProgressBar
= TRUE
;
38 m_widget
= gtk_progress_bar_new();
40 m_parent
->AddChild( this );
42 (m_parent
->m_insertCallback
)( m_parent
, this );
51 void wxGauge::SetRange( int r
)
54 if (m_gaugePos
> m_rangeMax
) m_gaugePos
= m_rangeMax
;
56 gtk_progress_bar_update( GTK_PROGRESS_BAR(m_widget
), ((float)m_gaugePos
)/m_rangeMax
);
59 void wxGauge::SetValue( int pos
)
62 if (m_gaugePos
> m_rangeMax
) m_gaugePos
= m_rangeMax
;
64 gtk_progress_bar_update( GTK_PROGRESS_BAR(m_widget
), ((float)m_gaugePos
)/m_rangeMax
);
67 int wxGauge::GetRange(void) const
72 int wxGauge::GetValue(void) const
77 void wxGauge::ApplyWidgetStyle()
80 gtk_widget_set_style( m_widget
, m_widgetStyle
);