]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
de6185e2 | 2 | // Name: src/gtk/slider.cpp |
c801d85f KB |
3 | // Purpose: |
4 | // Author: Robert Roebling | |
f96aa4d9 RR |
5 | // Id: $Id$ |
6 | // Copyright: (c) 1998 Robert Roebling | |
65571936 | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
14f355c2 VS |
10 | // For compilers that support precompilation, includes "wx.h". |
11 | #include "wx/wxprec.h" | |
12 | ||
de6185e2 WS |
13 | #if wxUSE_SLIDER |
14 | ||
c801d85f | 15 | #include "wx/slider.h" |
dcf924a3 | 16 | |
de6185e2 WS |
17 | #ifndef WX_PRECOMP |
18 | #include "wx/utils.h" | |
23f826bd | 19 | #include "wx/math.h" |
de6185e2 | 20 | #endif |
dcf924a3 | 21 | |
a1abca32 | 22 | #include <gtk/gtk.h> |
385e8575 | 23 | #include "wx/gtk/private/gtk2-compat.h" |
83624f79 | 24 | |
66bd6b93 RR |
25 | //----------------------------------------------------------------------------- |
26 | // data | |
27 | //----------------------------------------------------------------------------- | |
28 | ||
1e6feb95 | 29 | extern bool g_blockEventsOnDrag; |
66bd6b93 | 30 | |
2b024653 VZ |
31 | // ---------------------------------------------------------------------------- |
32 | // helper functions | |
33 | // ---------------------------------------------------------------------------- | |
34 | ||
2b024653 VZ |
35 | // process a scroll event |
36 | static void | |
12a480c1 | 37 | ProcessScrollEvent(wxSlider *win, wxEventType evtType) |
2b024653 | 38 | { |
46c48053 VZ |
39 | const int orient = win->HasFlag(wxSL_VERTICAL) ? wxVERTICAL |
40 | : wxHORIZONTAL; | |
2b024653 | 41 | |
12a480c1 | 42 | const int value = win->GetValue(); |
2b024653 | 43 | |
46c48053 VZ |
44 | // if we have any "special" event (i.e. the value changed by a line or a |
45 | // page), send this specific event first | |
46 | if ( evtType != wxEVT_NULL ) | |
47 | { | |
48 | wxScrollEvent event( evtType, win->GetId(), value, orient ); | |
49 | event.SetEventObject( win ); | |
937013e0 | 50 | win->HandleWindowEvent( event ); |
46c48053 VZ |
51 | } |
52 | ||
53 | // but, in any case, except if we're dragging the slider (and so the change | |
54 | // is not definitive), send a generic "changed" event | |
8e3e14c4 VZ |
55 | if ( evtType != wxEVT_SCROLL_THUMBTRACK ) |
56 | { | |
46c48053 VZ |
57 | wxScrollEvent event(wxEVT_SCROLL_CHANGED, win->GetId(), value, orient); |
58 | event.SetEventObject( win ); | |
937013e0 | 59 | win->HandleWindowEvent( event ); |
8e3e14c4 VZ |
60 | } |
61 | ||
46c48053 VZ |
62 | // and also generate a command event for compatibility |
63 | wxCommandEvent event( wxEVT_COMMAND_SLIDER_UPDATED, win->GetId() ); | |
64 | event.SetEventObject( win ); | |
65 | event.SetInt( value ); | |
937013e0 | 66 | win->HandleWindowEvent( event ); |
2b024653 | 67 | } |
57a1fd73 | 68 | |
12a480c1 PC |
69 | static inline wxEventType GtkScrollTypeToWx(int scrollType) |
70 | { | |
71 | wxEventType eventType; | |
72 | switch (scrollType) | |
73 | { | |
74 | case GTK_SCROLL_STEP_BACKWARD: | |
75 | case GTK_SCROLL_STEP_LEFT: | |
76 | case GTK_SCROLL_STEP_UP: | |
77 | eventType = wxEVT_SCROLL_LINEUP; | |
78 | break; | |
79 | case GTK_SCROLL_STEP_DOWN: | |
80 | case GTK_SCROLL_STEP_FORWARD: | |
81 | case GTK_SCROLL_STEP_RIGHT: | |
82 | eventType = wxEVT_SCROLL_LINEDOWN; | |
83 | break; | |
84 | case GTK_SCROLL_PAGE_BACKWARD: | |
85 | case GTK_SCROLL_PAGE_LEFT: | |
86 | case GTK_SCROLL_PAGE_UP: | |
87 | eventType = wxEVT_SCROLL_PAGEUP; | |
88 | break; | |
89 | case GTK_SCROLL_PAGE_DOWN: | |
90 | case GTK_SCROLL_PAGE_FORWARD: | |
91 | case GTK_SCROLL_PAGE_RIGHT: | |
92 | eventType = wxEVT_SCROLL_PAGEDOWN; | |
93 | break; | |
94 | case GTK_SCROLL_START: | |
95 | eventType = wxEVT_SCROLL_TOP; | |
96 | break; | |
97 | case GTK_SCROLL_END: | |
98 | eventType = wxEVT_SCROLL_BOTTOM; | |
99 | break; | |
100 | case GTK_SCROLL_JUMP: | |
101 | eventType = wxEVT_SCROLL_THUMBTRACK; | |
102 | break; | |
103 | default: | |
9a83f860 | 104 | wxFAIL_MSG(wxT("Unknown GtkScrollType")); |
12a480c1 PC |
105 | eventType = wxEVT_NULL; |
106 | break; | |
107 | } | |
108 | return eventType; | |
109 | } | |
110 | ||
111 | // Determine if increment is the same as +/-x, allowing for some small | |
112 | // difference due to possible inexactness in floating point arithmetic | |
113 | static inline bool IsScrollIncrement(double increment, double x) | |
114 | { | |
115 | wxASSERT(increment > 0); | |
116 | const double tolerance = 1.0 / 1024; | |
117 | return fabs(increment - fabs(x)) < tolerance; | |
118 | } | |
119 | ||
c801d85f | 120 | //----------------------------------------------------------------------------- |
97b3455a | 121 | // "value_changed" |
c801d85f KB |
122 | //----------------------------------------------------------------------------- |
123 | ||
865bb325 | 124 | extern "C" { |
12a480c1 PC |
125 | static void |
126 | gtk_value_changed(GtkRange* range, wxSlider* win) | |
80810ca3 | 127 | { |
385e8575 | 128 | const double value = gtk_range_get_value(range); |
12a480c1 | 129 | const double oldPos = win->m_pos; |
385e8575 | 130 | win->m_pos = value; |
559f60ef | 131 | |
8ab75332 | 132 | if (g_blockEventsOnDrag) |
559f60ef PC |
133 | return; |
134 | ||
c092ed38 | 135 | if (win->GTKEventsDisabled()) |
12a480c1 PC |
136 | { |
137 | win->m_scrollEventType = GTK_SCROLL_NONE; | |
2b024653 | 138 | return; |
12a480c1 | 139 | } |
80810ca3 | 140 | |
12a480c1 PC |
141 | wxEventType eventType = wxEVT_NULL; |
142 | if (win->m_isScrolling) | |
143 | { | |
144 | eventType = wxEVT_SCROLL_THUMBTRACK; | |
145 | } | |
146 | else if (win->m_scrollEventType != GTK_SCROLL_NONE) | |
147 | { | |
148 | // Scroll event from "move-slider" (keyboard) | |
149 | eventType = GtkScrollTypeToWx(win->m_scrollEventType); | |
150 | } | |
151 | else if (win->m_mouseButtonDown) | |
152 | { | |
153 | // Difference from last change event | |
385e8575 | 154 | const double diff = value - oldPos; |
12a480c1 | 155 | const bool isDown = diff > 0; |
2d17d68f | 156 | |
385e8575 PC |
157 | GtkAdjustment* adj = gtk_range_get_adjustment(range); |
158 | if (IsScrollIncrement(gtk_adjustment_get_page_increment(adj), diff)) | |
12a480c1 PC |
159 | { |
160 | eventType = isDown ? wxEVT_SCROLL_PAGEDOWN : wxEVT_SCROLL_PAGEUP; | |
161 | } | |
385e8575 | 162 | else if (wxIsSameDouble(value, 0)) |
12a480c1 PC |
163 | { |
164 | eventType = wxEVT_SCROLL_PAGEUP; | |
165 | } | |
385e8575 | 166 | else if (wxIsSameDouble(value, gtk_adjustment_get_upper(adj))) |
12a480c1 PC |
167 | { |
168 | eventType = wxEVT_SCROLL_PAGEDOWN; | |
169 | } | |
170 | else | |
171 | { | |
172 | // Assume track event | |
173 | eventType = wxEVT_SCROLL_THUMBTRACK; | |
174 | // Remember that we're tracking | |
175 | win->m_isScrolling = true; | |
176 | } | |
177 | } | |
178 | ||
179 | win->m_scrollEventType = GTK_SCROLL_NONE; | |
180 | ||
181 | // If integral position has changed | |
385e8575 | 182 | if (wxRound(oldPos) != wxRound(value)) |
12a480c1 | 183 | { |
12a480c1 PC |
184 | ProcessScrollEvent(win, eventType); |
185 | win->m_needThumbRelease = eventType == wxEVT_SCROLL_THUMBTRACK; | |
186 | } | |
187 | } | |
188 | } | |
80810ca3 | 189 | |
12a480c1 PC |
190 | //----------------------------------------------------------------------------- |
191 | // "move_slider" (keyboard event) | |
192 | //----------------------------------------------------------------------------- | |
193 | ||
194 | extern "C" { | |
195 | static void | |
196 | gtk_move_slider(GtkRange*, GtkScrollType scrollType, wxSlider* win) | |
197 | { | |
198 | // Save keyboard scroll type for "value_changed" handler | |
199 | win->m_scrollEventType = scrollType; | |
200 | } | |
2b024653 | 201 | } |
80810ca3 | 202 | |
12a480c1 PC |
203 | //----------------------------------------------------------------------------- |
204 | // "button_press_event" | |
205 | //----------------------------------------------------------------------------- | |
206 | ||
207 | extern "C" { | |
208 | static gboolean | |
209 | gtk_button_press_event(GtkWidget*, GdkEventButton*, wxSlider* win) | |
2b024653 | 210 | { |
12a480c1 | 211 | win->m_mouseButtonDown = true; |
80810ca3 | 212 | |
12a480c1 PC |
213 | return false; |
214 | } | |
2b024653 | 215 | } |
80810ca3 | 216 | |
c918b2cd PC |
217 | //----------------------------------------------------------------------------- |
218 | // "event_after" | |
219 | //----------------------------------------------------------------------------- | |
220 | ||
12a480c1 | 221 | extern "C" { |
c918b2cd PC |
222 | static void |
223 | gtk_event_after(GtkRange* range, GdkEvent* event, wxSlider* win) | |
2b024653 | 224 | { |
c918b2cd | 225 | if (event->type == GDK_BUTTON_RELEASE) |
12a480c1 | 226 | { |
20c3174d | 227 | g_signal_handlers_block_by_func(range, (gpointer) gtk_event_after, win); |
c918b2cd PC |
228 | |
229 | if (win->m_needThumbRelease) | |
230 | { | |
231 | win->m_needThumbRelease = false; | |
232 | ProcessScrollEvent(win, wxEVT_SCROLL_THUMBRELEASE); | |
233 | } | |
234 | // Keep slider at an integral position | |
c092ed38 RR |
235 | win->GTKDisableEvents(); |
236 | gtk_range_set_value(GTK_RANGE (win->m_scale), win->GetValue()); | |
237 | win->GTKEnableEvents(); | |
12a480c1 | 238 | } |
12a480c1 PC |
239 | } |
240 | } | |
2b024653 | 241 | |
12a480c1 PC |
242 | //----------------------------------------------------------------------------- |
243 | // "button_release_event" | |
244 | //----------------------------------------------------------------------------- | |
2b024653 | 245 | |
12a480c1 PC |
246 | extern "C" { |
247 | static gboolean | |
c918b2cd | 248 | gtk_button_release_event(GtkRange* range, GdkEventButton*, wxSlider* win) |
12a480c1 PC |
249 | { |
250 | win->m_mouseButtonDown = false; | |
251 | if (win->m_isScrolling) | |
252 | { | |
c918b2cd | 253 | win->m_isScrolling = false; |
20c3174d | 254 | g_signal_handlers_unblock_by_func(range, (gpointer) gtk_event_after, win); |
12a480c1 PC |
255 | } |
256 | return false; | |
257 | } | |
6de97a3b | 258 | } |
2b024653 | 259 | |
12a480c1 PC |
260 | //----------------------------------------------------------------------------- |
261 | // "format_value" | |
262 | //----------------------------------------------------------------------------- | |
263 | ||
264 | extern "C" { | |
265 | static gchar* gtk_format_value(GtkScale*, double value, void*) | |
266 | { | |
267 | // Format value as nearest integer | |
23f826bd | 268 | return g_strdup_printf("%d", wxRound(value)); |
12a480c1 | 269 | } |
865bb325 | 270 | } |
c801d85f | 271 | |
97b3455a RR |
272 | //----------------------------------------------------------------------------- |
273 | // wxSlider | |
274 | //----------------------------------------------------------------------------- | |
275 | ||
12a480c1 PC |
276 | wxSlider::wxSlider() |
277 | { | |
8ab75332 PC |
278 | m_scale = NULL; |
279 | } | |
280 | ||
281 | wxSlider::~wxSlider() | |
282 | { | |
283 | if (m_scale && m_scale != m_widget) | |
284 | GTKDisconnect(m_scale); | |
12a480c1 PC |
285 | } |
286 | ||
e8375af8 VZ |
287 | bool wxSlider::Create(wxWindow *parent, |
288 | wxWindowID id, | |
289 | int value, | |
290 | int minValue, | |
291 | int maxValue, | |
292 | const wxPoint& pos, | |
293 | const wxSize& size, | |
294 | long style, | |
295 | const wxValidator& validator, | |
296 | const wxString& name) | |
c801d85f | 297 | { |
3824e0db VZ |
298 | m_pos = value; |
299 | m_scrollEventType = GTK_SCROLL_NONE; | |
8ab75332 PC |
300 | m_needThumbRelease = false; |
301 | m_blockScrollEvent = false; | |
3824e0db | 302 | |
4dcaf11a RR |
303 | if (!PreCreation( parent, pos, size ) || |
304 | !CreateBase( parent, id, pos, size, style, validator, name )) | |
305 | { | |
223d09f6 | 306 | wxFAIL_MSG( wxT("wxSlider creation failed") ); |
de6185e2 | 307 | return false; |
4dcaf11a | 308 | } |
eec4500d | 309 | |
6de97a3b | 310 | |
2e563988 | 311 | if (style & wxSL_VERTICAL) |
c092ed38 | 312 | m_scale = gtk_vscale_new( NULL ); |
19da4326 | 313 | else |
c092ed38 RR |
314 | m_scale = gtk_hscale_new( NULL ); |
315 | g_object_ref(m_scale); | |
80810ca3 | 316 | |
c092ed38 RR |
317 | if (style & wxSL_MIN_MAX_LABELS) |
318 | { | |
319 | gtk_widget_show( m_scale ); | |
eec4500d | 320 | |
c092ed38 RR |
321 | if (style & wxSL_VERTICAL) |
322 | m_widget = gtk_hbox_new(false, 0); | |
323 | else | |
324 | m_widget = gtk_vbox_new(false, 0); | |
325 | g_object_ref(m_widget); | |
c092ed38 RR |
326 | gtk_container_add( GTK_CONTAINER(m_widget), m_scale ); |
327 | ||
328 | GtkWidget *box; | |
329 | if (style & wxSL_VERTICAL) | |
330 | box = gtk_vbox_new(false,0); | |
331 | else | |
332 | box = gtk_hbox_new(false,0); | |
333 | g_object_ref(box); | |
334 | gtk_widget_show(box); | |
335 | gtk_container_add( GTK_CONTAINER(m_widget), box ); | |
eec4500d | 336 | |
c092ed38 RR |
337 | m_minLabel = gtk_label_new(NULL); |
338 | g_object_ref(m_minLabel); | |
339 | gtk_widget_show( m_minLabel ); | |
340 | gtk_container_add( GTK_CONTAINER(box), m_minLabel ); | |
341 | gtk_box_set_child_packing( GTK_BOX(box), m_minLabel, FALSE, FALSE, 0, GTK_PACK_START ); | |
eec4500d | 342 | |
c092ed38 RR |
343 | // expanding empty space between the min/max labels |
344 | GtkWidget *space = gtk_label_new(NULL); | |
345 | g_object_ref(space); | |
346 | gtk_widget_show( space ); | |
347 | gtk_container_add( GTK_CONTAINER(box), space ); | |
348 | gtk_box_set_child_packing( GTK_BOX(box), space, TRUE, FALSE, 0, GTK_PACK_START ); | |
eec4500d | 349 | |
c092ed38 RR |
350 | m_maxLabel = gtk_label_new(NULL); |
351 | g_object_ref(m_maxLabel); | |
352 | gtk_widget_show( m_maxLabel ); | |
353 | gtk_container_add( GTK_CONTAINER(box), m_maxLabel ); | |
354 | gtk_box_set_child_packing( GTK_BOX(box), m_maxLabel, FALSE, FALSE, 0, GTK_PACK_END ); | |
355 | } | |
356 | else | |
357 | { | |
358 | m_widget = m_scale; | |
359 | m_maxLabel = NULL; | |
360 | m_minLabel = NULL; | |
361 | } | |
eec4500d | 362 | |
c0a9fe92 VZ |
363 | const bool showValueLabel = (style & wxSL_VALUE_LABEL) != 0; |
364 | gtk_scale_set_draw_value(GTK_SCALE (m_scale), showValueLabel ); | |
365 | if ( showValueLabel ) | |
3312ee03 | 366 | { |
c0a9fe92 VZ |
367 | // position the label appropriately: notice that wxSL_DIRECTION flags |
368 | // specify the position of the ticks, not label, under MSW and so the | |
369 | // label is on the opposite side | |
370 | GtkPositionType posLabel; | |
371 | if ( style & wxSL_VERTICAL ) | |
372 | { | |
373 | if ( style & wxSL_LEFT ) | |
374 | posLabel = GTK_POS_RIGHT; | |
375 | else // if ( style & wxSL_RIGHT ) -- this is also the default | |
376 | posLabel = GTK_POS_LEFT; | |
377 | } | |
378 | else // horizontal slider | |
379 | { | |
380 | if ( style & wxSL_TOP ) | |
381 | posLabel = GTK_POS_BOTTOM; | |
382 | else // if ( style & wxSL_BOTTOM) -- this is again the default | |
383 | posLabel = GTK_POS_TOP; | |
384 | } | |
eec4500d | 385 | |
c0a9fe92 | 386 | gtk_scale_set_value_pos( GTK_SCALE(m_scale), posLabel ); |
f050bdbd | 387 | } |
eec4500d | 388 | |
12a480c1 | 389 | // Keep full precision in position value |
c092ed38 | 390 | gtk_scale_set_digits(GTK_SCALE (m_scale), -1); |
80810ca3 | 391 | |
1e219378 | 392 | if (style & wxSL_INVERSE) |
c092ed38 | 393 | gtk_range_set_inverted( GTK_RANGE(m_scale), TRUE ); |
1e219378 | 394 | |
c092ed38 RR |
395 | g_signal_connect(m_scale, "button_press_event", G_CALLBACK(gtk_button_press_event), this); |
396 | g_signal_connect(m_scale, "button_release_event", G_CALLBACK(gtk_button_release_event), this); | |
397 | g_signal_connect(m_scale, "move_slider", G_CALLBACK(gtk_move_slider), this); | |
398 | g_signal_connect(m_scale, "format_value", G_CALLBACK(gtk_format_value), NULL); | |
399 | g_signal_connect(m_scale, "value_changed", G_CALLBACK(gtk_value_changed), this); | |
400 | gulong handler_id = g_signal_connect(m_scale, "event_after", G_CALLBACK(gtk_event_after), this); | |
401 | g_signal_handler_block(m_scale, handler_id); | |
91b167dd | 402 | |
2d17d68f | 403 | SetRange( minValue, maxValue ); |
3824e0db VZ |
404 | |
405 | // don't call the public SetValue() as it won't do anything unless the | |
406 | // value really changed | |
407 | GTKSetValue( value ); | |
80810ca3 | 408 | |
f03fc89f | 409 | m_parent->DoAddChild( this ); |
80810ca3 | 410 | |
abdeb9e7 | 411 | PostCreation(size); |
80810ca3 | 412 | |
de6185e2 | 413 | return true; |
6de97a3b | 414 | } |
c801d85f | 415 | |
c092ed38 RR |
416 | void wxSlider::GTKDisableEvents() |
417 | { | |
418 | m_blockScrollEvent = true; | |
419 | } | |
420 | ||
421 | void wxSlider::GTKEnableEvents() | |
422 | { | |
423 | m_blockScrollEvent = false; | |
424 | } | |
425 | ||
426 | bool wxSlider::GTKEventsDisabled() const | |
427 | { | |
428 | return m_blockScrollEvent; | |
429 | } | |
430 | ||
1e1fafb9 | 431 | int wxSlider::GetValue() const |
c801d85f | 432 | { |
23f826bd | 433 | return wxRound(m_pos); |
6de97a3b | 434 | } |
c801d85f | 435 | |
debe6624 | 436 | void wxSlider::SetValue( int value ) |
c801d85f | 437 | { |
12a480c1 | 438 | if (GetValue() != value) |
3824e0db VZ |
439 | GTKSetValue(value); |
440 | } | |
441 | ||
442 | void wxSlider::GTKSetValue(int value) | |
443 | { | |
c092ed38 RR |
444 | GTKDisableEvents(); |
445 | gtk_range_set_value(GTK_RANGE (m_scale), value); | |
ba9eca1a PC |
446 | // GTK only updates value label if handle moves at least 1 pixel |
447 | gtk_widget_queue_draw(m_scale); | |
c092ed38 | 448 | GTKEnableEvents(); |
6de97a3b | 449 | } |
c801d85f | 450 | |
debe6624 | 451 | void wxSlider::SetRange( int minValue, int maxValue ) |
c801d85f | 452 | { |
c092ed38 | 453 | GTKDisableEvents(); |
908eeca8 RR |
454 | if (minValue == maxValue) |
455 | maxValue++; | |
c092ed38 RR |
456 | gtk_range_set_range(GTK_RANGE (m_scale), minValue, maxValue); |
457 | gtk_range_set_increments(GTK_RANGE (m_scale), 1, (maxValue - minValue + 9) / 10); | |
458 | GTKEnableEvents(); | |
eec4500d | 459 | |
c092ed38 RR |
460 | if (HasFlag(wxSL_MIN_MAX_LABELS)) |
461 | { | |
462 | wxString str; | |
eec4500d | 463 | |
c092ed38 RR |
464 | str.Printf( "%d", minValue ); |
465 | if (HasFlag(wxSL_INVERSE)) | |
466 | gtk_label_set_text( GTK_LABEL(m_maxLabel), str.utf8_str() ); | |
467 | else | |
468 | gtk_label_set_text( GTK_LABEL(m_minLabel), str.utf8_str() ); | |
eec4500d | 469 | |
c092ed38 RR |
470 | str.Printf( "%d", maxValue ); |
471 | if (HasFlag(wxSL_INVERSE)) | |
472 | gtk_label_set_text( GTK_LABEL(m_minLabel), str.utf8_str() ); | |
473 | else | |
474 | gtk_label_set_text( GTK_LABEL(m_maxLabel), str.utf8_str() ); | |
eec4500d | 475 | |
c092ed38 | 476 | } |
6de97a3b | 477 | } |
c801d85f | 478 | |
1e1fafb9 | 479 | int wxSlider::GetMin() const |
c801d85f | 480 | { |
385e8575 PC |
481 | GtkAdjustment* adj = gtk_range_get_adjustment(GTK_RANGE(m_scale)); |
482 | return int(gtk_adjustment_get_lower(adj)); | |
6de97a3b | 483 | } |
c801d85f | 484 | |
1e1fafb9 | 485 | int wxSlider::GetMax() const |
c801d85f | 486 | { |
385e8575 PC |
487 | GtkAdjustment* adj = gtk_range_get_adjustment(GTK_RANGE(m_scale)); |
488 | return int(gtk_adjustment_get_upper(adj)); | |
6de97a3b | 489 | } |
c801d85f | 490 | |
debe6624 | 491 | void wxSlider::SetPageSize( int pageSize ) |
c801d85f | 492 | { |
c092ed38 RR |
493 | GTKDisableEvents(); |
494 | gtk_range_set_increments(GTK_RANGE (m_scale), GetLineSize(), pageSize); | |
495 | GTKEnableEvents(); | |
6de97a3b | 496 | } |
c801d85f | 497 | |
1e1fafb9 | 498 | int wxSlider::GetPageSize() const |
c801d85f | 499 | { |
385e8575 PC |
500 | GtkAdjustment* adj = gtk_range_get_adjustment(GTK_RANGE(m_scale)); |
501 | return int(gtk_adjustment_get_page_increment(adj)); | |
6de97a3b | 502 | } |
c801d85f | 503 | |
12a480c1 PC |
504 | // GTK does not support changing the size of the slider |
505 | void wxSlider::SetThumbLength(int) | |
c801d85f | 506 | { |
6de97a3b | 507 | } |
c801d85f | 508 | |
1e1fafb9 | 509 | int wxSlider::GetThumbLength() const |
c801d85f | 510 | { |
12a480c1 | 511 | return 0; |
6de97a3b | 512 | } |
c801d85f | 513 | |
98a0564e | 514 | void wxSlider::SetLineSize( int lineSize ) |
c801d85f | 515 | { |
c092ed38 RR |
516 | GTKDisableEvents(); |
517 | gtk_range_set_increments(GTK_RANGE (m_scale), lineSize, GetPageSize()); | |
518 | GTKEnableEvents(); | |
6de97a3b | 519 | } |
c801d85f | 520 | |
1e1fafb9 | 521 | int wxSlider::GetLineSize() const |
c801d85f | 522 | { |
385e8575 PC |
523 | GtkAdjustment* adj = gtk_range_get_adjustment(GTK_RANGE(m_scale)); |
524 | return int(gtk_adjustment_get_step_increment(adj)); | |
6de97a3b | 525 | } |
c801d85f | 526 | |
ef5c70f9 | 527 | GdkWindow *wxSlider::GTKGetWindow(wxArrayGdkWindows& WXUNUSED(windows)) const |
b4071e91 | 528 | { |
9dc44eff PC |
529 | #ifdef __WXGTK3__ |
530 | // no access to internal GdkWindows | |
531 | return NULL; | |
532 | #else | |
c092ed38 | 533 | return GTK_RANGE(m_scale)->event_window; |
9dc44eff | 534 | #endif |
b4071e91 RR |
535 | } |
536 | ||
9d522606 RD |
537 | // static |
538 | wxVisualAttributes | |
539 | wxSlider::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant)) | |
540 | { | |
541 | return GetDefaultAttributesFromGTKWidget(gtk_vscale_new); | |
542 | } | |
543 | ||
de6185e2 | 544 | #endif // wxUSE_SLIDER |