]>
Commit | Line | Data |
---|---|---|
2bda0e17 | 1 | ///////////////////////////////////////////////////////////////////////////// |
851dee09 | 2 | // Name: src/msw/slider.cpp |
7d0d80bd | 3 | // Purpose: wxSlider, using the Win95 (and later) trackbar control |
2bda0e17 KB |
4 | // Author: Julian Smart |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
6181cef5 VZ |
8 | // Copyright: (c) Julian Smart 1998 |
9 | // Vadim Zeitlin 2004 | |
65571936 | 10 | // Licence: wxWindows licence |
2bda0e17 KB |
11 | ///////////////////////////////////////////////////////////////////////////// |
12 | ||
6181cef5 VZ |
13 | // ============================================================================ |
14 | // declarations | |
15 | // ============================================================================ | |
16 | ||
6181cef5 VZ |
17 | // ---------------------------------------------------------------------------- |
18 | // headers | |
19 | // ---------------------------------------------------------------------------- | |
20 | ||
2bda0e17 KB |
21 | // For compilers that support precompilation, includes "wx.h". |
22 | #include "wx/wxprec.h" | |
23 | ||
24 | #ifdef __BORLANDC__ | |
6181cef5 | 25 | #pragma hdrstop |
2bda0e17 KB |
26 | #endif |
27 | ||
1e6feb95 VZ |
28 | #if wxUSE_SLIDER |
29 | ||
f4da9a94 WS |
30 | #include "wx/slider.h" |
31 | ||
2bda0e17 | 32 | #ifndef WX_PRECOMP |
57bd4c60 | 33 | #include "wx/msw/wrapcctl.h" // include <commctrl.h> "properly" |
6181cef5 | 34 | #include "wx/brush.h" |
2bda0e17 KB |
35 | #endif |
36 | ||
6181cef5 | 37 | #include "wx/msw/subwin.h" |
2bda0e17 | 38 | |
6181cef5 VZ |
39 | // ---------------------------------------------------------------------------- |
40 | // constants | |
41 | // ---------------------------------------------------------------------------- | |
42 | ||
ce0ee9ae VZ |
43 | namespace |
44 | { | |
45 | ||
7d0d80bd | 46 | // indices of labels in wxSlider::m_labels |
6181cef5 VZ |
47 | enum |
48 | { | |
49 | SliderLabel_Min, | |
50 | SliderLabel_Max, | |
51 | SliderLabel_Value, | |
52 | SliderLabel_Last | |
53 | }; | |
54 | ||
ce0ee9ae VZ |
55 | // the gaps between the slider and the labels, in pixels |
56 | const int HGAP = 5; | |
57 | const int VGAP = 4; | |
58 | // the width of the borders including white space | |
59 | const int BORDERPAD = 8; | |
60 | // these 2 values are arbitrary: | |
61 | const int THUMB = 24; | |
62 | const int TICK = 8; | |
63 | ||
64 | } // anonymous namespace | |
6181cef5 | 65 | |
6181cef5 | 66 | // ============================================================================ |
7d0d80bd | 67 | // wxSlider implementation |
6181cef5 VZ |
68 | // ============================================================================ |
69 | ||
70 | // ---------------------------------------------------------------------------- | |
71 | // construction | |
72 | // ---------------------------------------------------------------------------- | |
73 | ||
7d0d80bd | 74 | void wxSlider::Init() |
2bda0e17 | 75 | { |
6181cef5 VZ |
76 | m_labels = NULL; |
77 | ||
5f605ccf VZ |
78 | m_pageSize = 1; |
79 | m_lineSize = 1; | |
80 | m_rangeMax = 0; | |
81 | m_rangeMin = 0; | |
82 | m_tickFreq = 0; | |
3c96417a VZ |
83 | |
84 | m_isDragging = false; | |
2bda0e17 KB |
85 | } |
86 | ||
ce0ee9ae VZ |
87 | bool wxSlider::Create(wxWindow *parent, |
88 | wxWindowID id, | |
89 | int value, | |
90 | int minValue, | |
91 | int maxValue, | |
92 | const wxPoint& pos, | |
93 | const wxSize& size, | |
94 | long style, | |
95 | const wxValidator& validator, | |
96 | const wxString& name) | |
2bda0e17 | 97 | { |
ce0ee9ae VZ |
98 | wxCHECK_MSG( minValue < maxValue, false, |
99 | wxT("Slider minimum must be strictly less than the maximum.") ); | |
100 | ||
10f80f9b VZ |
101 | // our styles are redundant: wxSL_LEFT/RIGHT imply wxSL_VERTICAL and |
102 | // wxSL_TOP/BOTTOM imply wxSL_HORIZONTAL, but for backwards compatibility | |
103 | // reasons we can't really change it, instead try to infer the orientation | |
104 | // from the flags given to us here | |
105 | switch ( style & (wxSL_LEFT | wxSL_RIGHT | wxSL_TOP | wxSL_BOTTOM) ) | |
106 | { | |
107 | case wxSL_LEFT: | |
108 | case wxSL_RIGHT: | |
109 | style |= wxSL_VERTICAL; | |
110 | break; | |
111 | ||
112 | case wxSL_TOP: | |
113 | case wxSL_BOTTOM: | |
114 | style |= wxSL_HORIZONTAL; | |
115 | break; | |
116 | ||
117 | case 0: | |
118 | // no specific direction, do we have at least the orientation? | |
119 | if ( !(style & (wxSL_HORIZONTAL | wxSL_VERTICAL)) ) | |
120 | { | |
121 | // no, choose default | |
122 | style |= wxSL_BOTTOM | wxSL_HORIZONTAL; | |
123 | } | |
124 | }; | |
125 | ||
d1103787 | 126 | wxASSERT_MSG( !(style & wxSL_VERTICAL) || !(style & wxSL_HORIZONTAL), |
9a83f860 | 127 | wxT("incompatible slider direction and orientation") ); |
10f80f9b VZ |
128 | |
129 | ||
6181cef5 VZ |
130 | // initialize everything |
131 | if ( !CreateControl(parent, id, pos, size, style, validator, name) ) | |
822e690b | 132 | return false; |
2bda0e17 | 133 | |
6181cef5 VZ |
134 | // ensure that we have correct values for GetLabelsSize() |
135 | m_rangeMin = minValue; | |
136 | m_rangeMax = maxValue; | |
5f605ccf | 137 | |
6181cef5 VZ |
138 | // create the labels first, so that our DoGetBestSize() could take them |
139 | // into account | |
140 | // | |
141 | // note that we could simply create 3 wxStaticTexts here but it could | |
142 | // result in some observable side effects at wx level (e.g. the parent of | |
143 | // wxSlider would have 3 more children than expected) and so we prefer not | |
144 | // to do it like this | |
5f605ccf VZ |
145 | if ( m_windowStyle & wxSL_LABELS ) |
146 | { | |
6181cef5 VZ |
147 | m_labels = new wxSubwindows(SliderLabel_Last); |
148 | ||
149 | HWND hwndParent = GetHwndOf(parent); | |
150 | for ( size_t n = 0; n < SliderLabel_Last; n++ ) | |
151 | { | |
52ca4ec4 VZ |
152 | wxWindowIDRef lblid = NewControlId(); |
153 | ||
154 | HWND wnd = ::CreateWindow | |
155 | ( | |
156 | wxT("STATIC"), | |
157 | NULL, | |
158 | WS_CHILD | WS_VISIBLE | SS_CENTER, | |
159 | 0, 0, 0, 0, | |
160 | hwndParent, | |
dca0f651 | 161 | (HMENU)wxUIntToPtr(lblid.GetValue()), |
52ca4ec4 VZ |
162 | wxGetInstance(), |
163 | NULL | |
164 | ); | |
165 | ||
166 | m_labels->Set(n, wnd, lblid); | |
6181cef5 | 167 | } |
6181cef5 | 168 | m_labels->SetFont(GetFont()); |
5f605ccf VZ |
169 | } |
170 | ||
6181cef5 VZ |
171 | // now create the main control too |
172 | if ( !MSWCreateControl(TRACKBAR_CLASS, wxEmptyString, pos, size) ) | |
173 | return false; | |
5f605ccf | 174 | |
6181cef5 VZ |
175 | // and initialize everything |
176 | SetRange(minValue, maxValue); | |
177 | SetValue(value); | |
5e9b8022 | 178 | SetPageSize( wxMax(1, (maxValue - minValue)/10) ); |
822e690b | 179 | |
8a8dcc34 VZ |
180 | // we need to position the labels correctly if we have them and if |
181 | // SetSize() hadn't been called before (when best size was determined by | |
182 | // MSWCreateControl()) as in this case they haven't been put in place yet | |
183 | if ( m_labels && size.x != wxDefaultCoord && size.y != wxDefaultCoord ) | |
184 | { | |
185 | SetSize(size); | |
186 | } | |
187 | ||
6181cef5 VZ |
188 | return true; |
189 | } | |
2bda0e17 | 190 | |
7d0d80bd | 191 | WXDWORD wxSlider::MSWGetStyle(long style, WXDWORD *exstyle) const |
6181cef5 VZ |
192 | { |
193 | WXDWORD msStyle = wxControl::MSWGetStyle(style, exstyle); | |
b0766406 | 194 | |
10f80f9b | 195 | // TBS_HORZ, TBS_RIGHT and TBS_BOTTOM are 0 but do include them for clarity |
6181cef5 VZ |
196 | msStyle |= style & wxSL_VERTICAL ? TBS_VERT : TBS_HORZ; |
197 | ||
10f80f9b | 198 | if ( style & wxSL_BOTH ) |
cbc6af74 VZ |
199 | { |
200 | // this fully specifies the style combined with TBS_VERT/HORZ above | |
5f605ccf | 201 | msStyle |= TBS_BOTH; |
cbc6af74 VZ |
202 | } |
203 | else // choose one direction | |
204 | { | |
205 | if ( style & wxSL_LEFT ) | |
206 | msStyle |= TBS_LEFT; | |
207 | else if ( style & wxSL_RIGHT ) | |
208 | msStyle |= TBS_RIGHT; | |
209 | else if ( style & wxSL_TOP ) | |
210 | msStyle |= TBS_TOP; | |
211 | else if ( style & wxSL_BOTTOM ) | |
212 | msStyle |= TBS_BOTTOM; | |
213 | } | |
10f80f9b VZ |
214 | |
215 | if ( style & wxSL_AUTOTICKS ) | |
216 | msStyle |= TBS_AUTOTICKS; | |
217 | else | |
5f605ccf | 218 | msStyle |= TBS_NOTICKS; |
2bda0e17 | 219 | |
6181cef5 | 220 | if ( style & wxSL_SELRANGE ) |
5f605ccf | 221 | msStyle |= TBS_ENABLESELRANGE; |
2bda0e17 | 222 | |
6181cef5 VZ |
223 | return msStyle; |
224 | } | |
7a5a5718 | 225 | |
7d0d80bd | 226 | wxSlider::~wxSlider() |
6181cef5 VZ |
227 | { |
228 | delete m_labels; | |
2bda0e17 KB |
229 | } |
230 | ||
6181cef5 VZ |
231 | // ---------------------------------------------------------------------------- |
232 | // event handling | |
233 | // ---------------------------------------------------------------------------- | |
234 | ||
7d0d80bd WS |
235 | bool wxSlider::MSWOnScroll(int WXUNUSED(orientation), |
236 | WXWORD wParam, | |
237 | WXWORD WXUNUSED(pos), | |
238 | WXHWND control) | |
2bda0e17 | 239 | { |
1e6feb95 | 240 | wxEventType scrollEvent; |
2bda0e17 KB |
241 | switch ( wParam ) |
242 | { | |
a23fd0e1 | 243 | case SB_TOP: |
a23fd0e1 VZ |
244 | scrollEvent = wxEVT_SCROLL_TOP; |
245 | break; | |
246 | ||
247 | case SB_BOTTOM: | |
a23fd0e1 VZ |
248 | scrollEvent = wxEVT_SCROLL_BOTTOM; |
249 | break; | |
250 | ||
251 | case SB_LINEUP: | |
a23fd0e1 VZ |
252 | scrollEvent = wxEVT_SCROLL_LINEUP; |
253 | break; | |
254 | ||
255 | case SB_LINEDOWN: | |
a23fd0e1 VZ |
256 | scrollEvent = wxEVT_SCROLL_LINEDOWN; |
257 | break; | |
258 | ||
259 | case SB_PAGEUP: | |
a23fd0e1 VZ |
260 | scrollEvent = wxEVT_SCROLL_PAGEUP; |
261 | break; | |
262 | ||
263 | case SB_PAGEDOWN: | |
a23fd0e1 VZ |
264 | scrollEvent = wxEVT_SCROLL_PAGEDOWN; |
265 | break; | |
266 | ||
267 | case SB_THUMBTRACK: | |
a23fd0e1 | 268 | scrollEvent = wxEVT_SCROLL_THUMBTRACK; |
3c96417a | 269 | m_isDragging = true; |
a23fd0e1 VZ |
270 | break; |
271 | ||
e8b669d3 | 272 | case SB_THUMBPOSITION: |
3c96417a VZ |
273 | if ( m_isDragging ) |
274 | { | |
275 | scrollEvent = wxEVT_SCROLL_THUMBRELEASE; | |
276 | m_isDragging = false; | |
277 | } | |
278 | else | |
279 | { | |
280 | // this seems to only happen when the mouse wheel is used: in | |
281 | // this case, as it might be unexpected to get THUMBRELEASE | |
282 | // without preceding THUMBTRACKs, we don't generate it at all | |
283 | // but generate CHANGED event because the control itself does | |
284 | // not send us SB_ENDSCROLL for whatever reason when mouse | |
285 | // wheel is used | |
286 | scrollEvent = wxEVT_SCROLL_CHANGED; | |
287 | } | |
e8b669d3 VZ |
288 | break; |
289 | ||
290 | case SB_ENDSCROLL: | |
cbc85508 | 291 | scrollEvent = wxEVT_SCROLL_CHANGED; |
e8b669d3 VZ |
292 | break; |
293 | ||
a23fd0e1 | 294 | default: |
1e6feb95 | 295 | // unknown scroll event? |
822e690b | 296 | return false; |
2bda0e17 KB |
297 | } |
298 | ||
01526d4f | 299 | int newPos = ValueInvertOrNot((int) ::SendMessage((HWND) control, TBM_GETPOS, 0, 0)); |
a23fd0e1 | 300 | if ( (newPos < GetMin()) || (newPos > GetMax()) ) |
2bda0e17 | 301 | { |
a23fd0e1 | 302 | // out of range - but we did process it |
822e690b | 303 | return true; |
a23fd0e1 | 304 | } |
2bda0e17 | 305 | |
a23fd0e1 | 306 | SetValue(newPos); |
2bda0e17 | 307 | |
a23fd0e1 VZ |
308 | wxScrollEvent event(scrollEvent, m_windowId); |
309 | event.SetPosition(newPos); | |
310 | event.SetEventObject( this ); | |
937013e0 | 311 | HandleWindowEvent(event); |
f3a65071 | 312 | |
a23fd0e1 | 313 | wxCommandEvent cevent( wxEVT_COMMAND_SLIDER_UPDATED, GetId() ); |
f6bcfd97 | 314 | cevent.SetInt( newPos ); |
a23fd0e1 | 315 | cevent.SetEventObject( this ); |
f3a65071 | 316 | |
937013e0 | 317 | return HandleWindowEvent( cevent ); |
2bda0e17 KB |
318 | } |
319 | ||
7d0d80bd | 320 | void wxSlider::Command (wxCommandEvent & event) |
2bda0e17 | 321 | { |
6181cef5 VZ |
322 | SetValue (event.GetInt()); |
323 | ProcessCommand (event); | |
2bda0e17 KB |
324 | } |
325 | ||
6181cef5 VZ |
326 | // ---------------------------------------------------------------------------- |
327 | // geometry stuff | |
328 | // ---------------------------------------------------------------------------- | |
2bda0e17 | 329 | |
7d0d80bd | 330 | wxRect wxSlider::GetBoundingBox() const |
2bda0e17 | 331 | { |
6181cef5 VZ |
332 | // take care not to call our own functions which would call us recursively |
333 | int x, y, w, h; | |
334 | wxSliderBase::DoGetPosition(&x, &y); | |
335 | wxSliderBase::DoGetSize(&w, &h); | |
5f605ccf | 336 | |
6181cef5 VZ |
337 | wxRect rect(x, y, w, h); |
338 | if ( m_labels ) | |
b5c45059 RD |
339 | { |
340 | wxRect lrect = m_labels->GetBoundingBox(); | |
341 | GetParent()->ScreenToClient(&lrect.x, &lrect.y); | |
342 | rect.Union(lrect); | |
343 | } | |
6181cef5 VZ |
344 | |
345 | return rect; | |
5f605ccf VZ |
346 | } |
347 | ||
7d0d80bd | 348 | void wxSlider::DoGetSize(int *width, int *height) const |
2bda0e17 | 349 | { |
6181cef5 | 350 | wxRect rect = GetBoundingBox(); |
5f605ccf | 351 | |
6819fb9b | 352 | if ( width ) |
6181cef5 | 353 | *width = rect.width; |
6819fb9b | 354 | if ( height ) |
6181cef5 | 355 | *height = rect.height; |
2bda0e17 KB |
356 | } |
357 | ||
7d0d80bd | 358 | void wxSlider::DoGetPosition(int *x, int *y) const |
2bda0e17 | 359 | { |
6181cef5 | 360 | wxRect rect = GetBoundingBox(); |
5f605ccf | 361 | |
6181cef5 VZ |
362 | if ( x ) |
363 | *x = rect.x; | |
364 | if ( y ) | |
365 | *y = rect.y; | |
366 | } | |
5f605ccf | 367 | |
ce0ee9ae | 368 | int wxSlider::GetLabelsSize(int *widthMin, int *widthMax) const |
6181cef5 | 369 | { |
ce0ee9ae | 370 | if ( widthMin && widthMax ) |
5f605ccf | 371 | { |
16e79d48 VZ |
372 | *widthMin = GetTextExtent(Format(m_rangeMin)).x; |
373 | *widthMax = GetTextExtent(Format(m_rangeMax)).x; | |
cac008ad DS |
374 | |
375 | if ( HasFlag(wxSL_INVERSE) ) | |
376 | { | |
377 | wxSwap(*widthMin, *widthMax); | |
378 | } | |
5f605ccf VZ |
379 | } |
380 | ||
ce0ee9ae | 381 | return HasFlag(wxSL_LABELS) ? GetCharHeight() : 0; |
2bda0e17 KB |
382 | } |
383 | ||
7d0d80bd | 384 | void wxSlider::DoMoveWindow(int x, int y, int width, int height) |
2bda0e17 | 385 | { |
6181cef5 VZ |
386 | // all complications below are because we need to position the labels, |
387 | // without them everything is easy | |
388 | if ( !m_labels ) | |
389 | { | |
390 | wxSliderBase::DoMoveWindow(x, y, width, height); | |
391 | return; | |
392 | } | |
2bda0e17 | 393 | |
5db90253 VZ |
394 | int minLabelWidth, |
395 | maxLabelWidth; | |
396 | const int labelHeight = GetLabelsSize(&minLabelWidth, &maxLabelWidth); | |
397 | const int longestLabelWidth = wxMax(minLabelWidth, maxLabelWidth); | |
16e79d48 VZ |
398 | if ( !HasFlag(wxSL_MIN_MAX_LABELS) ) |
399 | { | |
400 | minLabelWidth = | |
401 | maxLabelWidth = 0; | |
402 | } | |
ce0ee9ae | 403 | |
ce0ee9ae VZ |
404 | int tickOffset = 0; |
405 | if ( HasFlag(wxSL_TICKS)) | |
406 | tickOffset = TICK; | |
407 | if ( HasFlag(wxSL_BOTH)) | |
408 | tickOffset *= 2; | |
409 | ||
8a8dcc34 VZ |
410 | // be careful to position the slider itself after moving the labels as |
411 | // otherwise our GetBoundingBox(), which is called from WM_SIZE handler, | |
412 | // would return a wrong result and wrong size would be cached internally | |
6181cef5 VZ |
413 | if ( HasFlag(wxSL_VERTICAL) ) |
414 | { | |
4235f9f6 | 415 | int labelOffset = 0; |
ce0ee9ae | 416 | int holdTopX; |
ce0ee9ae | 417 | int holdBottomX; |
5db90253 VZ |
418 | int xLabel = (wxMax((THUMB + (BORDERPAD * 2)), longestLabelWidth) / 2) - |
419 | (longestLabelWidth / 2) + x; | |
ce0ee9ae VZ |
420 | if ( HasFlag(wxSL_LEFT) ) |
421 | { | |
4235f9f6 DS |
422 | holdTopX = xLabel; |
423 | holdBottomX = xLabel - (abs(maxLabelWidth - minLabelWidth) / 2); | |
ce0ee9ae VZ |
424 | } |
425 | else // wxSL_RIGHT | |
426 | { | |
4235f9f6 DS |
427 | holdTopX = xLabel + longestLabelWidth + (abs(maxLabelWidth - minLabelWidth) / 2); |
428 | holdBottomX = xLabel + longestLabelWidth; | |
429 | ||
430 | labelOffset = longestLabelWidth + HGAP; | |
431 | } | |
432 | ||
433 | if ( HasFlag(wxSL_MIN_MAX_LABELS) ) | |
434 | { | |
435 | if ( HasFlag(wxSL_INVERSE) ) | |
ce0ee9ae | 436 | { |
4235f9f6 | 437 | wxSwap(holdTopX, holdBottomX); |
ce0ee9ae | 438 | } |
4235f9f6 DS |
439 | |
440 | DoMoveSibling((HWND)(*m_labels)[SliderLabel_Min], | |
441 | holdTopX, | |
442 | y, | |
443 | minLabelWidth, labelHeight); | |
444 | DoMoveSibling((HWND)(*m_labels)[SliderLabel_Max], | |
445 | holdBottomX, | |
446 | y + height - labelHeight, | |
447 | maxLabelWidth, labelHeight); | |
448 | } | |
449 | ||
450 | if ( HasFlag(wxSL_VALUE_LABEL) ) | |
451 | { | |
452 | DoMoveSibling((HWND)(*m_labels)[SliderLabel_Value], | |
453 | x + ( HasFlag(wxSL_LEFT) ? THUMB + tickOffset + HGAP : 0 ), | |
ce0ee9ae | 454 | y + (height - labelHeight)/2, |
5db90253 | 455 | longestLabelWidth, labelHeight); |
ce0ee9ae | 456 | } |
8a8dcc34 VZ |
457 | |
458 | // position the slider itself along the left/right edge | |
ce0ee9ae VZ |
459 | wxSliderBase::DoMoveWindow( |
460 | x + labelOffset, | |
461 | y + labelHeight, | |
462 | THUMB + tickOffset + HGAP, | |
463 | height - (labelHeight * 2)); | |
a23fd0e1 | 464 | } |
6181cef5 | 465 | else // horizontal |
2bda0e17 | 466 | { |
ce0ee9ae VZ |
467 | int yLabelMinMax = |
468 | (y + ((THUMB + tickOffset) / 2)) - (labelHeight / 2); | |
469 | int xLabelValue = | |
5db90253 VZ |
470 | x + minLabelWidth + |
471 | ((width - (minLabelWidth + maxLabelWidth)) / 2) - | |
b748750e | 472 | (longestLabelWidth / 2); |
ce0ee9ae | 473 | |
c12d4e1d VZ |
474 | int ySlider = y; |
475 | ||
4235f9f6 | 476 | if ( HasFlag(wxSL_VALUE_LABEL) ) |
ce0ee9ae | 477 | { |
4235f9f6 DS |
478 | DoMoveSibling((HWND)(*m_labels)[SliderLabel_Value], |
479 | xLabelValue, | |
480 | y + (HasFlag(wxSL_BOTTOM) ? 0 : THUMB + tickOffset), | |
481 | longestLabelWidth, labelHeight); | |
c12d4e1d | 482 | |
4235f9f6 DS |
483 | if ( HasFlag(wxSL_BOTTOM) ) |
484 | { | |
c12d4e1d VZ |
485 | ySlider += labelHeight; |
486 | yLabelMinMax += labelHeight; | |
487 | } | |
c12d4e1d | 488 | } |
c12d4e1d | 489 | |
4235f9f6 DS |
490 | if ( HasFlag(wxSL_MIN_MAX_LABELS) ) |
491 | { | |
492 | DoMoveSibling((HWND)(*m_labels)[SliderLabel_Min], | |
493 | x, | |
494 | yLabelMinMax, | |
495 | minLabelWidth, labelHeight); | |
496 | DoMoveSibling((HWND)(*m_labels)[SliderLabel_Max], | |
497 | x + width - maxLabelWidth, | |
498 | yLabelMinMax, | |
499 | maxLabelWidth, labelHeight); | |
ce0ee9ae | 500 | } |
8a8dcc34 VZ |
501 | |
502 | // position the slider itself along the top/bottom edge | |
ce0ee9ae | 503 | wxSliderBase::DoMoveWindow( |
5db90253 | 504 | x + minLabelWidth + VGAP, |
c12d4e1d | 505 | ySlider, |
5db90253 | 506 | width - (minLabelWidth + maxLabelWidth + (VGAP*2)), |
ce0ee9ae | 507 | THUMB + tickOffset); |
8e44f3ca | 508 | } |
2bda0e17 KB |
509 | } |
510 | ||
7d0d80bd | 511 | wxSize wxSlider::DoGetBestSize() const |
7bdfb981 | 512 | { |
ce0ee9ae | 513 | // this value is arbitrary: |
6181cef5 | 514 | static const int length = 100; |
57f4f925 | 515 | |
cbc6af74 | 516 | int *width; |
6181cef5 VZ |
517 | wxSize size; |
518 | if ( HasFlag(wxSL_VERTICAL) ) | |
7bdfb981 | 519 | { |
ce0ee9ae | 520 | size.x = THUMB; |
6181cef5 | 521 | size.y = length; |
cbc6af74 | 522 | width = &size.x; |
57f4f925 | 523 | |
6181cef5 | 524 | if ( m_labels ) |
7bdfb981 | 525 | { |
ce0ee9ae VZ |
526 | int widthMin, |
527 | widthMax; | |
528 | int hLabel = GetLabelsSize(&widthMin, &widthMax); | |
7bdfb981 | 529 | |
6181cef5 | 530 | // account for the labels |
16e79d48 VZ |
531 | if ( HasFlag(wxSL_MIN_MAX_LABELS) ) |
532 | size.x += HGAP + wxMax(widthMin, widthMax); | |
6181cef5 VZ |
533 | |
534 | // labels are indented relative to the slider itself | |
535 | size.y += hLabel; | |
7bdfb981 RD |
536 | } |
537 | } | |
6181cef5 | 538 | else // horizontal |
7bdfb981 | 539 | { |
6181cef5 | 540 | size.x = length; |
ce0ee9ae | 541 | size.y = THUMB; |
cbc6af74 | 542 | width = &size.y; |
7bdfb981 | 543 | |
6181cef5 | 544 | if ( m_labels ) |
7bdfb981 | 545 | { |
ce0ee9ae | 546 | int labelSize = GetLabelsSize(); |
c12d4e1d VZ |
547 | |
548 | // Min/max labels are compensated by the ticks so we don't need | |
549 | // extra space for them if we're also showing ticks. | |
550 | if ( HasFlag(wxSL_MIN_MAX_LABELS) && !HasFlag(wxSL_TICKS) ) | |
ce0ee9ae | 551 | size.y += labelSize; |
c12d4e1d VZ |
552 | |
553 | // The value label is always on top of the control and so does need | |
554 | // extra space in any case. | |
ce0ee9ae | 555 | if ( HasFlag(wxSL_VALUE_LABEL) ) |
c12d4e1d | 556 | size.y += labelSize; |
7bdfb981 RD |
557 | } |
558 | } | |
6181cef5 | 559 | |
cbc6af74 VZ |
560 | // need extra space to show ticks |
561 | if ( HasFlag(wxSL_TICKS) ) | |
562 | { | |
ce0ee9ae | 563 | *width += TICK; |
cbc6af74 VZ |
564 | // and maybe twice as much if we show them on both sides |
565 | if ( HasFlag(wxSL_BOTH) ) | |
ce0ee9ae | 566 | *width += TICK; |
cbc6af74 | 567 | } |
6181cef5 | 568 | return size; |
7bdfb981 RD |
569 | } |
570 | ||
6181cef5 VZ |
571 | // ---------------------------------------------------------------------------- |
572 | // slider-specific methods | |
573 | // ---------------------------------------------------------------------------- | |
574 | ||
7d0d80bd | 575 | int wxSlider::GetValue() const |
6181cef5 | 576 | { |
01526d4f | 577 | return ValueInvertOrNot(::SendMessage(GetHwnd(), TBM_GETPOS, 0, 0)); |
6181cef5 VZ |
578 | } |
579 | ||
7d0d80bd | 580 | void wxSlider::SetValue(int value) |
6181cef5 | 581 | { |
01526d4f | 582 | ::SendMessage(GetHwnd(), TBM_SETPOS, (WPARAM)TRUE, (LPARAM)ValueInvertOrNot(value)); |
6181cef5 | 583 | |
ce0ee9ae | 584 | if ( m_labels ) |
6181cef5 | 585 | { |
e0a050e3 | 586 | ::SetWindowText((*m_labels)[SliderLabel_Value], Format(value).wx_str()); |
6181cef5 VZ |
587 | } |
588 | } | |
7bdfb981 | 589 | |
7d0d80bd | 590 | void wxSlider::SetRange(int minValue, int maxValue) |
2bda0e17 | 591 | { |
d383f40e VZ |
592 | // Remember the old logical value if we need to update the physical control |
593 | // value after changing its range in wxSL_INVERSE case (and avoid an | |
594 | // unnecessary call to GetValue() otherwise as it's just not needed). | |
595 | const int valueOld = HasFlag(wxSL_INVERSE) ? GetValue() : 0; | |
596 | ||
5f605ccf VZ |
597 | m_rangeMin = minValue; |
598 | m_rangeMax = maxValue; | |
599 | ||
b552060a WS |
600 | ::SendMessage(GetHwnd(), TBM_SETRANGEMIN, TRUE, m_rangeMin); |
601 | ::SendMessage(GetHwnd(), TBM_SETRANGEMAX, TRUE, m_rangeMax); | |
5f605ccf | 602 | |
ce0ee9ae | 603 | if ( m_labels ) |
5f605ccf | 604 | { |
e0a050e3 VS |
605 | ::SetWindowText((*m_labels)[SliderLabel_Min], |
606 | Format(ValueInvertOrNot(m_rangeMin)).wx_str()); | |
607 | ::SetWindowText((*m_labels)[SliderLabel_Max], | |
608 | Format(ValueInvertOrNot(m_rangeMax)).wx_str()); | |
5f605ccf | 609 | } |
d383f40e VZ |
610 | |
611 | // When emulating wxSL_INVERSE style in wxWidgets, we need to update the | |
612 | // value after changing the range to ensure that the value seen by the user | |
613 | // code, i.e. the one returned by GetValue(), does not change. | |
614 | if ( HasFlag(wxSL_INVERSE) ) | |
615 | { | |
616 | ::SendMessage(GetHwnd(), TBM_SETPOS, TRUE, ValueInvertOrNot(valueOld)); | |
617 | } | |
2bda0e17 KB |
618 | } |
619 | ||
0a12e013 | 620 | void wxSlider::DoSetTickFreq(int n) |
2bda0e17 | 621 | { |
6181cef5 | 622 | m_tickFreq = n; |
0a12e013 | 623 | ::SendMessage( GetHwnd(), TBM_SETTICFREQ, (WPARAM) n, (LPARAM) 0 ); |
2bda0e17 KB |
624 | } |
625 | ||
7d0d80bd | 626 | void wxSlider::SetPageSize(int pageSize) |
2bda0e17 | 627 | { |
6181cef5 VZ |
628 | ::SendMessage( GetHwnd(), TBM_SETPAGESIZE, (WPARAM) 0, (LPARAM) pageSize ); |
629 | m_pageSize = pageSize; | |
2bda0e17 KB |
630 | } |
631 | ||
7d0d80bd | 632 | int wxSlider::GetPageSize() const |
2bda0e17 | 633 | { |
6181cef5 | 634 | return m_pageSize; |
2bda0e17 KB |
635 | } |
636 | ||
7d0d80bd | 637 | void wxSlider::ClearSel() |
2bda0e17 | 638 | { |
6181cef5 | 639 | ::SendMessage(GetHwnd(), TBM_CLEARSEL, (WPARAM) TRUE, (LPARAM) 0); |
2bda0e17 KB |
640 | } |
641 | ||
7d0d80bd | 642 | void wxSlider::ClearTicks() |
2bda0e17 | 643 | { |
6181cef5 | 644 | ::SendMessage(GetHwnd(), TBM_CLEARTICS, (WPARAM) TRUE, (LPARAM) 0); |
2bda0e17 KB |
645 | } |
646 | ||
7d0d80bd | 647 | void wxSlider::SetLineSize(int lineSize) |
2bda0e17 | 648 | { |
5f605ccf | 649 | m_lineSize = lineSize; |
6181cef5 | 650 | ::SendMessage(GetHwnd(), TBM_SETLINESIZE, (WPARAM) 0, (LPARAM) lineSize); |
2bda0e17 KB |
651 | } |
652 | ||
7d0d80bd | 653 | int wxSlider::GetLineSize() const |
2bda0e17 | 654 | { |
6181cef5 | 655 | return (int)::SendMessage(GetHwnd(), TBM_GETLINESIZE, 0, 0); |
2bda0e17 KB |
656 | } |
657 | ||
7d0d80bd | 658 | int wxSlider::GetSelEnd() const |
2bda0e17 | 659 | { |
0a936028 | 660 | return (int)::SendMessage(GetHwnd(), TBM_GETSELEND, 0, 0); |
2bda0e17 KB |
661 | } |
662 | ||
7d0d80bd | 663 | int wxSlider::GetSelStart() const |
2bda0e17 | 664 | { |
6181cef5 | 665 | return (int)::SendMessage(GetHwnd(), TBM_GETSELSTART, 0, 0); |
2bda0e17 KB |
666 | } |
667 | ||
7d0d80bd | 668 | void wxSlider::SetSelection(int minPos, int maxPos) |
2bda0e17 | 669 | { |
5f605ccf | 670 | ::SendMessage(GetHwnd(), TBM_SETSEL, |
6181cef5 VZ |
671 | (WPARAM) TRUE /* redraw */, |
672 | (LPARAM) MAKELONG( minPos, maxPos) ); | |
2bda0e17 KB |
673 | } |
674 | ||
7d0d80bd | 675 | void wxSlider::SetThumbLength(int len) |
2bda0e17 | 676 | { |
6181cef5 | 677 | ::SendMessage(GetHwnd(), TBM_SETTHUMBLENGTH, (WPARAM) len, (LPARAM) 0); |
2bda0e17 KB |
678 | } |
679 | ||
7d0d80bd | 680 | int wxSlider::GetThumbLength() const |
2bda0e17 | 681 | { |
6bee5ffb | 682 | return (int)::SendMessage( GetHwnd(), TBM_GETTHUMBLENGTH, 0, 0); |
2bda0e17 KB |
683 | } |
684 | ||
7d0d80bd | 685 | void wxSlider::SetTick(int tickPos) |
2bda0e17 | 686 | { |
6bee5ffb | 687 | ::SendMessage( GetHwnd(), TBM_SETTIC, (WPARAM) 0, (LPARAM) tickPos ); |
2bda0e17 KB |
688 | } |
689 | ||
6181cef5 VZ |
690 | // ---------------------------------------------------------------------------- |
691 | // composite control methods | |
692 | // ---------------------------------------------------------------------------- | |
693 | ||
7d0d80bd | 694 | WXHWND wxSlider::GetStaticMin() const |
2bda0e17 | 695 | { |
6181cef5 | 696 | return m_labels ? (WXHWND)(*m_labels)[SliderLabel_Min] : NULL; |
2bda0e17 KB |
697 | } |
698 | ||
7d0d80bd | 699 | WXHWND wxSlider::GetStaticMax() const |
2bda0e17 | 700 | { |
6181cef5 | 701 | return m_labels ? (WXHWND)(*m_labels)[SliderLabel_Max] : NULL; |
2bda0e17 KB |
702 | } |
703 | ||
7d0d80bd | 704 | WXHWND wxSlider::GetEditValue() const |
2bda0e17 | 705 | { |
6181cef5 VZ |
706 | return m_labels ? (WXHWND)(*m_labels)[SliderLabel_Value] : NULL; |
707 | } | |
2bda0e17 | 708 | |
7d0d80bd | 709 | WX_FORWARD_STD_METHODS_TO_SUBWINDOWS(wxSlider, wxSliderBase, m_labels) |
8a8dcc34 | 710 | |
1e6feb95 | 711 | #endif // wxUSE_SLIDER |