1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
12 #pragma implementation "slider.h"
15 #include "wx/slider.h"
18 //-----------------------------------------------------------------------------
20 //-----------------------------------------------------------------------------
22 extern bool g_blockEventsOnDrag
;
24 //-----------------------------------------------------------------------------
26 //-----------------------------------------------------------------------------
28 static void gtk_slider_callback( GtkWidget
*WXUNUSED(widget
), wxSlider
*win
)
30 if (!win
->HasVMT()) return;
31 if (g_blockEventsOnDrag
) return;
33 float diff
= win
->m_adjust
->value
- win
->m_oldPos
;
34 if (fabs(diff
) < 0.2) return;
36 wxEventType command
= wxEVT_NULL
;
38 float line_step
= win
->m_adjust
->step_increment
;
39 float page_step
= win
->m_adjust
->page_increment
;
41 if (fabs(diff
-line_step
) < 0.2) command
= wxEVT_SCROLL_LINEDOWN
;
42 else if (fabs(diff
+line_step
) < 0.2) command
= wxEVT_SCROLL_LINEUP
;
43 else if (fabs(diff
-page_step
) < 0.2) command
= wxEVT_SCROLL_PAGEDOWN
;
44 else if (fabs(diff
+page_step
) < 0.2) command
= wxEVT_SCROLL_PAGEUP
;
45 else command
= wxEVT_SCROLL_THUMBTRACK
;
47 int value
= (int)(win
->m_adjust
->value
+0.5);
49 int orient
= wxHORIZONTAL
;
50 if (win
->GetWindowStyleFlag() & wxSB_VERTICAL
== wxSB_VERTICAL
) orient
= wxVERTICAL
;
52 wxScrollEvent
event( command
, win
->GetId(), value
, orient
);
53 event
.SetEventObject( win
);
54 win
->ProcessEvent( event
);
56 wxCommandEvent
cevent( wxEVT_COMMAND_SLIDER_UPDATED
, win
->GetId() );
57 cevent
.SetEventObject( win
);
58 win
->ProcessEvent( cevent
);
61 //-----------------------------------------------------------------------------
63 //-----------------------------------------------------------------------------
65 IMPLEMENT_DYNAMIC_CLASS(wxSlider
,wxControl
)
67 wxSlider::wxSlider(void)
71 wxSlider::~wxSlider(void)
75 bool wxSlider::Create(wxWindow
*parent
, wxWindowID id
,
76 int value
, int minValue
, int maxValue
,
77 const wxPoint
& pos
, const wxSize
& size
,
78 long style
, const wxValidator
& validator
, const wxString
& name
)
82 PreCreation( parent
, id
, pos
, size
, style
, name
);
84 SetValidator( validator
);
88 if (style
& wxSL_VERTICAL
== wxSL_VERTICAL
)
89 m_widget
= gtk_hscale_new( (GtkAdjustment
*) NULL
);
91 m_widget
= gtk_vscale_new( (GtkAdjustment
*) NULL
);
93 m_adjust
= gtk_range_get_adjustment( GTK_RANGE(m_widget
) );
95 gtk_signal_connect (GTK_OBJECT (m_adjust
), "value_changed",
96 (GtkSignalFunc
) gtk_slider_callback
, (gpointer
) this );
97 SetRange( minValue
, maxValue
);
102 SetBackgroundColour( parent
->GetBackgroundColour() );
109 int wxSlider::GetValue(void) const
111 return (int)(m_adjust
->value
+0.5);
114 void wxSlider::SetValue( int value
)
116 float fpos
= (float)value
;
118 if (fabs(fpos
-m_adjust
->value
) < 0.2) return;
119 m_adjust
->value
= fpos
;
121 gtk_signal_emit_by_name( GTK_OBJECT(m_adjust
), "value_changed" );
124 void wxSlider::SetRange( int minValue
, int maxValue
)
126 float fmin
= (float)minValue
;
127 float fmax
= (float)maxValue
;
129 if ((fabs(fmin
-m_adjust
->lower
) < 0.2) &&
130 (fabs(fmax
-m_adjust
->upper
) < 0.2))
133 m_adjust
->lower
= fmin
;
134 m_adjust
->upper
= fmax
;
136 gtk_signal_emit_by_name( GTK_OBJECT(m_adjust
), "changed" );
139 int wxSlider::GetMin(void) const
141 return (int)(m_adjust
->lower
+0.5);
144 int wxSlider::GetMax(void) const
146 return (int)(m_adjust
->upper
+0.5);
149 void wxSlider::SetPageSize( int pageSize
)
151 float fpage
= (float)pageSize
;
153 if (fabs(fpage
-m_adjust
->page_increment
) < 0.2) return;
155 m_adjust
->page_increment
= fpage
;
157 gtk_signal_emit_by_name( GTK_OBJECT(m_adjust
), "changed" );
160 int wxSlider::GetPageSize(void) const
162 return (int)(m_adjust
->page_increment
+0.5);
165 void wxSlider::SetThumbLength( int len
)
167 float flen
= (float)len
;
169 if (fabs(flen
-m_adjust
->page_size
) < 0.2) return;
171 m_adjust
->page_size
= flen
;
173 gtk_signal_emit_by_name( GTK_OBJECT(m_adjust
), "changed" );
176 int wxSlider::GetThumbLength(void) const
178 return (int)(m_adjust
->page_size
+0.5);
181 void wxSlider::SetLineSize( int WXUNUSED(lineSize
) )
185 int wxSlider::GetLineSize(void) const
190 // not supported in wxGTK (and GTK)
192 void wxSlider::GetSize( int *x
, int *y
) const
194 wxWindow::GetSize( x
, y
);
197 void wxSlider::SetSize( int x
, int y
, int width
, int height
, int sizeFlags
)
199 wxWindow::SetSize( x
, y
, width
, height
, sizeFlags
);
202 void wxSlider::GetPosition( int *x
, int *y
) const
204 wxWindow::GetPosition( x
, y
);
207 void wxSlider::SetTick( int WXUNUSED(tickPos
) )
211 void wxSlider::SetTickFreq( int WXUNUSED(n
), int WXUNUSED(pos
) )
215 int wxSlider::GetTickFreq(void) const
220 void wxSlider::ClearTicks(void)
224 void wxSlider::SetSelection( int WXUNUSED(minPos
), int WXUNUSED(maxPos
) )
228 int wxSlider::GetSelEnd(void) const
233 int wxSlider::GetSelStart(void) const
238 void wxSlider::ClearSel(void)
242 bool wxSlider::IsOwnGtkWindow( GdkWindow
*window
)
244 GtkRange
*range
= GTK_RANGE(m_widget
);
245 return ( (window
== GTK_WIDGET(range
)->window
) ||
246 (window
== range
->trough
) ||
247 (window
== range
->slider
) ||
248 (window
== range
->step_forw
) ||
249 (window
== range
->step_back
) );