1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
11 #pragma implementation "slider.h"
14 #include "wx/slider.h"
24 //-----------------------------------------------------------------------------
26 //-----------------------------------------------------------------------------
28 extern void wxapp_install_idle_handler();
31 //-----------------------------------------------------------------------------
33 //-----------------------------------------------------------------------------
35 extern bool g_blockEventsOnDrag
;
37 //-----------------------------------------------------------------------------
39 //-----------------------------------------------------------------------------
41 static void gtk_slider_callback( GtkAdjustment
*adjust
, wxSlider
*win
)
43 if (g_isIdle
) wxapp_install_idle_handler();
45 if (!win
->m_hasVMT
) return;
46 if (g_blockEventsOnDrag
) return;
48 float diff
= adjust
->value
- win
->m_oldPos
;
49 if (fabs(diff
) < 0.2) return;
51 win
->m_oldPos
= adjust
->value
;
53 GtkRange
*range
= GTK_RANGE( win
->m_widget
);
55 wxEventType command
= wxEVT_SCROLL_THUMBTRACK
;
56 if (range
->scroll_type
== GTK_SCROLL_STEP_BACKWARD
) command
= wxEVT_SCROLL_LINEUP
;
57 else if (range
->scroll_type
== GTK_SCROLL_STEP_FORWARD
) command
= wxEVT_SCROLL_LINEDOWN
;
58 else if (range
->scroll_type
== GTK_SCROLL_PAGE_BACKWARD
) command
= wxEVT_SCROLL_PAGEUP
;
59 else if (range
->scroll_type
== GTK_SCROLL_PAGE_FORWARD
) command
= wxEVT_SCROLL_PAGEDOWN
;
61 int value
= (int)ceil(adjust
->value
);
63 int orient
= wxHORIZONTAL
;
64 if (win
->GetWindowStyleFlag() & wxSB_VERTICAL
== wxSB_VERTICAL
) orient
= wxVERTICAL
;
66 wxScrollEvent
event( command
, win
->GetId(), value
, orient
);
67 event
.SetEventObject( win
);
68 win
->GetEventHandler()->ProcessEvent( event
);
70 wxCommandEvent
cevent( wxEVT_COMMAND_SLIDER_UPDATED
, win
->GetId() );
71 cevent
.SetEventObject( win
);
72 win
->GetEventHandler()->ProcessEvent( cevent
);
75 //-----------------------------------------------------------------------------
77 //-----------------------------------------------------------------------------
79 IMPLEMENT_DYNAMIC_CLASS(wxSlider
,wxControl
)
81 wxSlider::wxSlider(void)
85 wxSlider::~wxSlider(void)
89 bool wxSlider::Create(wxWindow
*parent
, wxWindowID id
,
90 int value
, int minValue
, int maxValue
,
91 const wxPoint
& pos
, const wxSize
& size
,
92 long style
, const wxValidator
& validator
, const wxString
& name
)
94 m_acceptsFocus
= TRUE
;
97 if (!PreCreation( parent
, pos
, size
) ||
98 !CreateBase( parent
, id
, pos
, size
, style
, validator
, name
))
100 wxFAIL_MSG( _T("wxSlider creation failed") );
106 if (style
& wxSL_VERTICAL
)
107 m_widget
= gtk_vscale_new( (GtkAdjustment
*) NULL
);
109 m_widget
= gtk_hscale_new( (GtkAdjustment
*) NULL
);
111 if (style
& wxSL_LABELS
)
113 gtk_scale_set_draw_value( GTK_SCALE( m_widget
), TRUE
);
115 /* labels need more space and too small window will
116 cause junk to appear on the dialog */
117 if (style
& wxSL_VERTICAL
)
137 gtk_scale_set_draw_value( GTK_SCALE( m_widget
), FALSE
);
139 m_adjust
= gtk_range_get_adjustment( GTK_RANGE(m_widget
) );
141 gtk_signal_connect( GTK_OBJECT(m_adjust
),
143 (GtkSignalFunc
) gtk_slider_callback
,
146 SetRange( minValue
, maxValue
);
149 m_parent
->DoAddChild( this );
153 SetBackgroundColour( parent
->GetBackgroundColour() );
160 int wxSlider::GetValue(void) const
162 return (int)(m_adjust
->value
+0.5);
165 void wxSlider::SetValue( int value
)
167 float fpos
= (float)value
;
169 if (fabs(fpos
-m_adjust
->value
) < 0.2) return;
171 m_adjust
->value
= fpos
;
173 gtk_signal_emit_by_name( GTK_OBJECT(m_adjust
), "value_changed" );
176 void wxSlider::SetRange( int minValue
, int maxValue
)
178 float fmin
= (float)minValue
;
179 float fmax
= (float)maxValue
;
181 if ((fabs(fmin
-m_adjust
->lower
) < 0.2) &&
182 (fabs(fmax
-m_adjust
->upper
) < 0.2))
187 m_adjust
->lower
= fmin
;
188 m_adjust
->upper
= fmax
;
190 gtk_signal_emit_by_name( GTK_OBJECT(m_adjust
), "changed" );
193 int wxSlider::GetMin(void) const
195 return (int)ceil(m_adjust
->lower
);
198 int wxSlider::GetMax(void) const
200 return (int)ceil(m_adjust
->upper
);
203 void wxSlider::SetPageSize( int pageSize
)
205 float fpage
= (float)pageSize
;
207 if (fabs(fpage
-m_adjust
->page_increment
) < 0.2) return;
209 m_adjust
->page_increment
= fpage
;
211 gtk_signal_emit_by_name( GTK_OBJECT(m_adjust
), "changed" );
214 int wxSlider::GetPageSize(void) const
216 return (int)ceil(m_adjust
->page_increment
);
219 void wxSlider::SetThumbLength( int len
)
221 float flen
= (float)len
;
223 if (fabs(flen
-m_adjust
->page_size
) < 0.2) return;
225 m_adjust
->page_size
= flen
;
227 gtk_signal_emit_by_name( GTK_OBJECT(m_adjust
), "changed" );
230 int wxSlider::GetThumbLength(void) const
232 return (int)ceil(m_adjust
->page_size
);
235 void wxSlider::SetLineSize( int WXUNUSED(lineSize
) )
239 int wxSlider::GetLineSize(void) const
244 void wxSlider::SetTick( int WXUNUSED(tickPos
) )
248 void wxSlider::SetTickFreq( int WXUNUSED(n
), int WXUNUSED(pos
) )
252 int wxSlider::GetTickFreq(void) const
257 void wxSlider::ClearTicks(void)
261 void wxSlider::SetSelection( int WXUNUSED(minPos
), int WXUNUSED(maxPos
) )
265 int wxSlider::GetSelEnd(void) const
270 int wxSlider::GetSelStart(void) const
275 void wxSlider::ClearSel(void)
279 bool wxSlider::IsOwnGtkWindow( GdkWindow
*window
)
281 GtkRange
*range
= GTK_RANGE(m_widget
);
282 return ( (window
== GTK_WIDGET(range
)->window
) ||
283 (window
== range
->trough
) ||
284 (window
== range
->slider
) ||
285 (window
== range
->step_forw
) ||
286 (window
== range
->step_back
) );
289 void wxSlider::ApplyWidgetStyle()
292 gtk_widget_set_style( m_widget
, m_widgetStyle
);