]>
git.saurik.com Git - wxWidgets.git/blob - src/gtk/spinbutt.cpp
392310c3f9f1635a29c0bf7cadf8847b9e7b697c
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxSpinButton
7 // Copyright: (c) Robert Roebling
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
12 #pragma implementation "spinbutt.h"
15 #include "wx/spinbutt.h"
22 //-----------------------------------------------------------------------------
24 //-----------------------------------------------------------------------------
26 extern bool g_blockEventsOnDrag
;
28 //-----------------------------------------------------------------------------
30 //-----------------------------------------------------------------------------
32 static void gtk_spinbutt_callback( GtkWidget
*WXUNUSED(widget
), wxSpinButton
*win
)
34 if (!win
->HasVMT()) return;
35 if (g_blockEventsOnDrag
) return;
37 float diff
= win
->m_adjust
->value
- win
->m_oldPos
;
38 if (fabs(diff
) < 0.2) return;
39 win
->m_oldPos
= win
->m_adjust
->value
;
41 wxEventType command
= wxEVT_NULL
;
43 float line_step
= win
->m_adjust
->step_increment
;
44 float page_step
= win
->m_adjust
->page_increment
;
46 if (fabs(diff
-line_step
) < 0.2) command
= wxEVT_SCROLL_LINEDOWN
;
47 else if (fabs(diff
+line_step
) < 0.2) command
= wxEVT_SCROLL_LINEUP
;
48 else if (fabs(diff
-page_step
) < 0.2) command
= wxEVT_SCROLL_PAGEDOWN
;
49 else if (fabs(diff
+page_step
) < 0.2) command
= wxEVT_SCROLL_PAGEUP
;
50 else command
= wxEVT_SCROLL_THUMBTRACK
;
52 int value
= (int)(win
->m_adjust
->value
+0.5);
54 wxSpinEvent
event( command
, win
->GetId());
55 event
.SetPosition( value
);
56 event
.SetOrientation( wxVERTICAL
);
57 event
.SetEventObject( win
);
59 win
->GetEventHandler()->ProcessEvent( event
);
62 //-----------------------------------------------------------------------------
64 //-----------------------------------------------------------------------------
66 IMPLEMENT_DYNAMIC_CLASS(wxSpinButton
,wxControl
)
68 BEGIN_EVENT_TABLE(wxSpinButton
, wxControl
)
69 EVT_SIZE(wxSpinButton::OnSize
)
72 wxSpinButton::wxSpinButton()
76 bool wxSpinButton::Create(wxWindow
*parent
, wxWindowID id
, const wxPoint
& pos
, const wxSize
& size
,
77 long style
, const wxString
& name
)
81 wxSize new_size
= size
;
83 if (new_size
.y
== -1) new_size
.y
= 30;
85 PreCreation( parent
, id
, pos
, new_size
, style
, name
);
87 // SetValidator( validator );
91 m_adjust
= (GtkAdjustment
*) gtk_adjustment_new( 0.0, 0.0, 100.0, 1.0, 5.0, 0.0);
93 m_widget
= gtk_spin_button_new( m_adjust
, 0, 0 );
95 gtk_spin_button_set_wrap( GTK_SPIN_BUTTON(m_widget
), (m_windowStyle
& wxSP_WRAP
) );
97 gtk_signal_connect( GTK_OBJECT (m_adjust
),
99 (GtkSignalFunc
) gtk_spinbutt_callback
,
102 m_parent
->AddChild( this );
104 (m_parent
->m_insertCallback
)( m_parent
, this );
108 SetBackgroundColour( parent
->GetBackgroundColour() );
115 wxSpinButton::~wxSpinButton()
119 int wxSpinButton::GetMin() const
121 wxCHECK_MSG( (m_widget
!= NULL
), 0, "invalid spin button" );
123 return (int)(m_adjust
->lower
+0.5);
126 int wxSpinButton::GetMax() const
128 wxCHECK_MSG( (m_widget
!= NULL
), 0, "invalid spin button" );
130 return (int)(m_adjust
->upper
+0.5);
133 int wxSpinButton::GetValue() const
135 wxCHECK_MSG( (m_widget
!= NULL
), 0, "invalid spin button" );
137 return (int)(m_adjust
->value
+0.5);
140 void wxSpinButton::SetValue( int value
)
142 wxCHECK_RET( (m_widget
!= NULL
), "invalid spin button" );
144 float fpos
= (float)value
;
146 if (fabs(fpos
-m_adjust
->value
) < 0.2) return;
148 m_adjust
->value
= fpos
;
150 gtk_signal_emit_by_name( GTK_OBJECT(m_adjust
), "value_changed" );
153 void wxSpinButton::SetRange(int minVal
, int maxVal
)
155 wxCHECK_RET( (m_widget
!= NULL
), "invalid spin button" );
157 float fmin
= (float)minVal
;
158 float fmax
= (float)maxVal
;
160 if ((fabs(fmin
-m_adjust
->lower
) < 0.2) &&
161 (fabs(fmax
-m_adjust
->upper
) < 0.2))
166 m_adjust
->lower
= fmin
;
167 m_adjust
->upper
= fmax
;
169 gtk_signal_emit_by_name( GTK_OBJECT(m_adjust
), "changed" );
172 void wxSpinButton::OnSize( wxSizeEvent
&WXUNUSED(event
) )
174 wxCHECK_RET( (m_widget
!= NULL
), "invalid spin button" );
177 gtk_widget_set_usize( m_widget
, m_width
, m_height
);
180 bool wxSpinButton::IsOwnGtkWindow( GdkWindow
*window
)
182 return GTK_SPIN_BUTTON(m_widget
)->panel
== window
;
185 void wxSpinButton::ApplyWidgetStyle()
188 gtk_widget_set_style( m_widget
, m_widgetStyle
);
191 //-----------------------------------------------------------------------------
193 //-----------------------------------------------------------------------------
195 IMPLEMENT_DYNAMIC_CLASS(wxSpinEvent
, wxScrollEvent
)
197 wxSpinEvent::wxSpinEvent(wxEventType commandType
, int id
):
198 wxScrollEvent(commandType
, id
)