]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/gtk1/gauge.cpp
Listctrl updates
[wxWidgets.git] / src / gtk1 / gauge.cpp
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: gauge.cpp
3// Purpose:
4// Author: Robert Roebling
5// Id: $Id$
6// Copyright: (c) 1998 Robert Roebling
7// Licence: wxWindows licence
8/////////////////////////////////////////////////////////////////////////////
9
10#ifdef __GNUG__
11#pragma implementation "gauge.h"
12#endif
13
14#include "wx/gauge.h"
15
16//-----------------------------------------------------------------------------
17// wxGauge
18//-----------------------------------------------------------------------------
19
20IMPLEMENT_DYNAMIC_CLASS(wxGauge,wxControl)
21
22bool wxGauge::Create( wxWindow *parent, wxWindowID id, int range,
23 const wxPoint& pos, const wxSize& size,
24 long style, const wxValidator& validator, const wxString& name )
25{
26 m_needParent = TRUE;
27
28 PreCreation( parent, id, pos, size, style, name );
29
30 SetValidator( validator );
31
32 m_rangeMax = range;
33 m_gaugePos = 0;
34 m_useProgressBar = TRUE;
35
36 m_widget = gtk_progress_bar_new();
37
38 m_parent->AddChild( this );
39
40 (m_parent->m_insertCallback)( m_parent, this );
41
42 PostCreation();
43
44 Show( TRUE );
45
46 return TRUE;
47}
48
49void wxGauge::SetRange( int r )
50{
51 m_rangeMax = r;
52 if (m_gaugePos > m_rangeMax) m_gaugePos = m_rangeMax;
53
54 gtk_progress_bar_update( GTK_PROGRESS_BAR(m_widget), ((float)m_gaugePos)/m_rangeMax );
55}
56
57void wxGauge::SetValue( int pos )
58{
59 m_gaugePos = pos;
60 if (m_gaugePos > m_rangeMax) m_gaugePos = m_rangeMax;
61
62 gtk_progress_bar_update( GTK_PROGRESS_BAR(m_widget), ((float)m_gaugePos)/m_rangeMax );
63}
64
65int wxGauge::GetRange(void) const
66{
67 return m_rangeMax;
68}
69
70int wxGauge::GetValue(void) const
71{
72 return m_gaugePos;
73}
74
75void wxGauge::ApplyWidgetStyle()
76{
77 SetWidgetStyle();
78 gtk_widget_set_style( m_widget, m_widgetStyle );
79}
80