]> git.saurik.com Git - wxWidgets.git/blame - src/mac/classic/slider.cpp
Take best fitting type for available memory measurement.
[wxWidgets.git] / src / mac / classic / slider.cpp
CommitLineData
2646f485
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: slider.cpp
3// Purpose: wxSlider
4// Author: Stefan Csomor
5// Modified by:
6// Created: 1998-01-01
7// RCS-ID: $Id$
8// Copyright: (c) Stefan Csomor
65571936 9// Licence: wxWindows licence
2646f485
SC
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
13#pragma implementation "slider.h"
14#endif
15
312ebad4
WS
16#include "wx/defs.h"
17
18#if wxUSE_SLIDER
19
2646f485
SC
20#include "wx/slider.h"
21#include "wx/mac/uma.h"
22
23#if !USE_SHARED_LIBRARY
24IMPLEMENT_DYNAMIC_CLASS(wxSlider, wxControl)
25
26BEGIN_EVENT_TABLE(wxSlider, wxControl)
27END_EVENT_TABLE()
28#endif
29
30 // The dimensions of the different styles of sliders (From Aqua document)
31#define wxSLIDER_DIMENSIONACROSS 15
32#define wxSLIDER_DIMENSIONACROSS_WITHTICKMARKS 24
33#define wxSLIDER_DIMENSIONACROSS_ARROW 18
312ebad4 34
2646f485
SC
35// Distance between slider and text
36#define wxSLIDER_BORDERTEXT 5
312ebad4 37
2646f485
SC
38/* NB! The default orientation for a slider is horizontal however if the user specifies
39 * some slider styles but dosen't specify the orientation we have to assume he wants a
40 * horizontal one. Therefore in this file when testing for the sliders orientation
41 * vertical is tested for if this is not set then we use the horizontal one
312ebad4 42 * eg. if(GetWindowStyle() & wxSL_VERTICAL) {} else { horizontal case }>
2646f485
SC
43 */
44
45 // Slider
46 wxSlider::wxSlider()
47{
48 m_pageSize = 1;
49 m_lineSize = 1;
50 m_rangeMax = 0;
51 m_rangeMin = 0;
52 m_tickFreq = 0;
53}
54
55extern ControlActionUPP wxMacLiveScrollbarActionUPP ;
56
57bool wxSlider::Create(wxWindow *parent, wxWindowID id,
58 int value, int minValue, int maxValue,
59 const wxPoint& pos,
60 const wxSize& size, long style,
61 const wxValidator& validator,
62 const wxString& name)
63{
64 if ( !wxControl::Create(parent, id, pos, size, style, validator, name) )
65 return false;
66
67 Rect bounds ;
68 Str255 title ;
69 SInt16 procID;
312ebad4 70
2646f485
SC
71 m_macMinimumStatic = NULL ;
72 m_macMaximumStatic = NULL ;
73 m_macValueStatic = NULL ;
312ebad4
WS
74
75
2646f485
SC
76 m_lineSize = 1;
77 m_tickFreq = 0;
312ebad4 78
2646f485
SC
79 m_rangeMax = maxValue;
80 m_rangeMin = minValue;
312ebad4 81
2646f485 82 m_pageSize = (int)((maxValue-minValue)/10);
312ebad4 83
2646f485
SC
84 MacPreControlCreate( parent, id, wxEmptyString, pos, size, style,
85 validator, name, &bounds, title );
312ebad4 86
2646f485
SC
87 procID = kControlSliderProc + kControlSliderLiveFeedback;
88 if(style & wxSL_AUTOTICKS) {
89 procID += kControlSliderHasTickMarks;
90 }
312ebad4
WS
91
92
6bc3b8e9 93 m_macControl = (WXWidget) ::NewControl( MAC_WXHWND(parent->MacGetRootWindow()), &bounds, title, false,
2646f485 94 value, minValue, maxValue, procID, (long) this);
312ebad4 95
2646f485 96 wxASSERT_MSG( (ControlHandle) m_macControl != NULL , wxT("No valid mac control") ) ;
312ebad4 97
2646f485 98 ::SetControlAction( (ControlHandle) m_macControl , wxMacLiveScrollbarActionUPP ) ;
312ebad4 99
2646f485
SC
100 if(style & wxSL_LABELS)
101 {
312ebad4
WS
102 m_macMinimumStatic = new wxStaticText( this, wxID_ANY, wxEmptyString );
103 m_macMaximumStatic = new wxStaticText( this, wxID_ANY, wxEmptyString );
104 m_macValueStatic = new wxStaticText( this, wxID_ANY, wxEmptyString );
2646f485
SC
105 SetRange(minValue, maxValue);
106 SetValue(value);
107 }
312ebad4 108
2646f485
SC
109 else {
110 m_macMinimumStatic = NULL ;
111 m_macMaximumStatic = NULL ;
112 m_macValueStatic = NULL ;
113 }
312ebad4 114
2646f485
SC
115 if(style & wxSL_VERTICAL) {
116 SetSizeHints(10, -1, 10, -1); // Forces SetSize to use the proper width
117 }
118 else {
119 SetSizeHints(-1, 10, -1, 10); // Forces SetSize to use the proper height
120 }
121 // NB! SetSizeHints is overloaded by wxSlider and will substitute 10 with the
122 // proper dimensions, it also means other people cannot bugger the slider with
123 // other values
312ebad4 124
2646f485 125 MacPostControlCreate() ;
312ebad4 126
2646f485
SC
127 return true;
128}
129
130wxSlider::~wxSlider()
131{
132}
133
134int wxSlider::GetValue() const
135{
136 return GetControl32BitValue( (ControlHandle) m_macControl) ;
137}
138
139void wxSlider::SetValue(int value)
140{
141 wxString valuestring ;
312ebad4 142 valuestring.Printf( wxT("%d") , value ) ;
2646f485
SC
143 if ( m_macValueStatic )
144 m_macValueStatic->SetLabel( valuestring ) ;
145 SetControl32BitValue( (ControlHandle) m_macControl , value ) ;
146}
147
148void wxSlider::SetRange(int minValue, int maxValue)
149{
150 wxString value;
312ebad4 151
2646f485
SC
152 m_rangeMin = minValue;
153 m_rangeMax = maxValue;
312ebad4 154
2646f485
SC
155 SetControl32BitMinimum( (ControlHandle) m_macControl, m_rangeMin);
156 SetControl32BitMaximum( (ControlHandle) m_macControl, m_rangeMax);
312ebad4 157
2646f485
SC
158 if(m_macMinimumStatic) {
159 value.Printf(wxT("%d"), m_rangeMin);
160 m_macMinimumStatic->SetLabel(value);
161 }
162 if(m_macMaximumStatic) {
163 value.Printf(wxT("%d"), m_rangeMax);
164 m_macMaximumStatic->SetLabel(value);
165 }
166 SetValue(m_rangeMin);
167}
168
169// For trackbars only
170void wxSlider::SetTickFreq(int n, int pos)
171{
172 // TODO
173 m_tickFreq = n;
174}
175
176void wxSlider::SetPageSize(int pageSize)
177{
178 // TODO
179 m_pageSize = pageSize;
180}
181
182int wxSlider::GetPageSize() const
183{
184 return m_pageSize;
185}
186
187void wxSlider::ClearSel()
188{
189 // TODO
190}
191
192void wxSlider::ClearTicks()
193{
194 // TODO
195}
196
197void wxSlider::SetLineSize(int lineSize)
198{
199 m_lineSize = lineSize;
200 // TODO
201}
202
203int wxSlider::GetLineSize() const
204{
205 // TODO
206 return 0;
207}
208
209int wxSlider::GetSelEnd() const
210{
211 // TODO
212 return 0;
213}
214
215int wxSlider::GetSelStart() const
216{
217 // TODO
218 return 0;
219}
220
221void wxSlider::SetSelection(int minPos, int maxPos)
222{
223 // TODO
224}
225
226void wxSlider::SetThumbLength(int len)
227{
228 // TODO
229}
230
231int wxSlider::GetThumbLength() const
232{
233 // TODO
234 return 0;
235}
236
237void wxSlider::SetTick(int tickPos)
238{
239 // TODO
240}
241
242void wxSlider::Command (wxCommandEvent & event)
243{
244 SetValue (event.GetInt());
245 ProcessCommand (event);
246}
247
312ebad4 248void wxSlider::MacHandleControlClick( WXWidget control , wxInt16 controlpart, bool mouseStillDown )
2646f485
SC
249{
250 SInt16 value = ::GetControl32BitValue( (ControlHandle) m_macControl ) ;
312ebad4
WS
251
252 SetValue( value ) ;
253
2646f485 254 wxEventType scrollEvent = wxEVT_NULL ;
312ebad4 255
2646f485
SC
256 if ( mouseStillDown )
257 scrollEvent = wxEVT_SCROLL_THUMBTRACK;
258 else
259 scrollEvent = wxEVT_SCROLL_THUMBRELEASE;
312ebad4 260
2646f485
SC
261 wxScrollEvent event(scrollEvent, m_windowId);
262 event.SetPosition(value);
263 event.SetEventObject( this );
264 GetEventHandler()->ProcessEvent(event);
312ebad4 265
2646f485
SC
266 wxCommandEvent cevent( wxEVT_COMMAND_SLIDER_UPDATED, m_windowId );
267 cevent.SetInt( value );
268 cevent.SetEventObject( this );
312ebad4 269
2646f485
SC
270 GetEventHandler()->ProcessEvent( cevent );
271}
272
273/* This is overloaded in wxSlider so that the proper width/height will always be used
274* for the slider different values would cause redrawing and mouse detection problems */
024f89f9
VS
275void wxSlider::DoSetSizeHints( int minW, int minH,
276 int maxW , int maxH ,
277 int incW , int incH )
2646f485
SC
278{
279 wxSize size = GetBestSize();
312ebad4 280
2646f485 281 if(GetWindowStyle() & wxSL_VERTICAL) {
024f89f9 282 wxWindow::DoSetSizeHints(size.x, minH, size.x, maxH, incW, incH);
2646f485
SC
283 }
284 else {
024f89f9 285 wxWindow::DoSetSizeHints(minW, size.y, maxW, size.y, incW, incH);
2646f485
SC
286 }
287}
288
289wxSize wxSlider::DoGetBestSize() const
290{
291 wxSize size;
292 int textwidth, textheight;
312ebad4 293
2646f485
SC
294 if(GetWindowStyle() & wxSL_LABELS)
295 {
296 wxString text;
297 int ht, wd;
312ebad4 298
2646f485
SC
299 // Get maximum text label width and height
300 text.Printf(wxT("%d"), m_rangeMin);
301 GetTextExtent(text, &textwidth, &textheight);
302 text.Printf(wxT("%d"), m_rangeMax);
303 GetTextExtent(text, &wd, &ht);
304 if(ht > textheight) {
305 textheight = ht;
306 }
307 if (wd > textwidth) {
308 textwidth = wd;
309 }
310 }
312ebad4 311
2646f485
SC
312 if(GetWindowStyle() & wxSL_VERTICAL)
313 {
314 if(GetWindowStyle() & wxSL_AUTOTICKS) {
315 size.x = wxSLIDER_DIMENSIONACROSS_WITHTICKMARKS;
316 }
317 else {
318 size.x = wxSLIDER_DIMENSIONACROSS_ARROW;
319 }
320 if(GetWindowStyle() & wxSL_LABELS) {
321 size.x += textwidth + wxSLIDER_BORDERTEXT;
322 }
323 size.y = 150;
324 }
325 else
326 {
327 if(GetWindowStyle() & wxSL_AUTOTICKS) {
328 size.y = wxSLIDER_DIMENSIONACROSS_WITHTICKMARKS;
329 }
330 else {
331 size.y = wxSLIDER_DIMENSIONACROSS_ARROW;
332 }
333 if(GetWindowStyle() & wxSL_LABELS) {
334 size.y += textheight + wxSLIDER_BORDERTEXT;
335 }
336 size.x = 150;
337 }
338 return size;
339}
340
341void wxSlider::DoSetSize(int x, int y, int width, int height, int sizeFlags)
342{
343 wxControl::DoSetSize( x, y , width , height ,sizeFlags ) ;
344}
345
312ebad4 346void wxSlider::MacUpdateDimensions()
2646f485
SC
347{
348 // actually in the current systems this should never be possible, but later reparenting
349 // may become a reality
312ebad4 350
2646f485
SC
351 if ( (ControlHandle) m_macControl == NULL )
352 return ;
312ebad4 353
2646f485
SC
354 if ( GetParent() == NULL )
355 return ;
312ebad4 356
2646f485
SC
357 WindowRef rootwindow = (WindowRef) MacGetRootWindow() ;
358 if ( rootwindow == NULL )
359 return ;
312ebad4 360
2646f485
SC
361 int xborder, yborder;
362 int minValWidth, maxValWidth, textwidth, textheight;
363 int sliderBreadth;
312ebad4 364
2646f485 365 xborder = yborder = 0;
312ebad4 366
2646f485
SC
367 if (GetWindowStyle() & wxSL_LABELS)
368 {
369 wxString text;
370 int ht;
312ebad4 371
2646f485
SC
372 // Get maximum text label width and height
373 text.Printf(wxT("%d"), m_rangeMin);
374 GetTextExtent(text, &minValWidth, &textheight);
375 text.Printf(wxT("%d"), m_rangeMax);
376 GetTextExtent(text, &maxValWidth, &ht);
377 if(ht > textheight) {
378 textheight = ht;
379 }
380 textwidth = (minValWidth > maxValWidth ? minValWidth : maxValWidth);
312ebad4 381
2646f485
SC
382 xborder = textwidth + wxSLIDER_BORDERTEXT;
383 yborder = textheight + wxSLIDER_BORDERTEXT;
312ebad4 384
2646f485
SC
385 // Get slider breadth
386 if(GetWindowStyle() & wxSL_AUTOTICKS) {
387 sliderBreadth = wxSLIDER_DIMENSIONACROSS_WITHTICKMARKS;
388 }
389 else {
390 sliderBreadth = wxSLIDER_DIMENSIONACROSS_ARROW;
391 }
312ebad4 392
2646f485
SC
393 if(GetWindowStyle() & wxSL_VERTICAL)
394 {
395 m_macMinimumStatic->Move(sliderBreadth + wxSLIDER_BORDERTEXT,
396 m_height - yborder - textheight);
397 m_macMaximumStatic->Move(sliderBreadth + wxSLIDER_BORDERTEXT, 0);
398 m_macValueStatic->Move(0, m_height - textheight);
399 }
400 else
401 {
402 m_macMinimumStatic->Move(0, sliderBreadth + wxSLIDER_BORDERTEXT);
403 m_macMaximumStatic->Move(m_width - xborder - maxValWidth / 2,
404 sliderBreadth + wxSLIDER_BORDERTEXT);
405 m_macValueStatic->Move(m_width - textwidth, 0);
406 }
407 }
312ebad4
WS
408
409 Rect oldBounds ;
410 GetControlBounds( (ControlHandle) m_macControl , &oldBounds ) ;
411
2646f485
SC
412 int new_x = m_x + MacGetLeftBorderSize() + m_macHorizontalBorder ;
413 int new_y = m_y + MacGetTopBorderSize() + m_macVerticalBorder ;
414 int new_width = m_width - MacGetLeftBorderSize() - MacGetRightBorderSize() - 2 * m_macHorizontalBorder - xborder ;
415 int new_height = m_height - MacGetTopBorderSize() - MacGetBottomBorderSize() - 2 * m_macVerticalBorder - yborder ;
312ebad4 416
2646f485
SC
417 GetParent()->MacWindowToRootWindow( & new_x , & new_y ) ;
418 bool doMove = new_x != oldBounds.left || new_y != oldBounds.top ;
419 bool doResize = ( oldBounds.right - oldBounds.left ) != new_width || (oldBounds.bottom - oldBounds.top ) != new_height ;
420 if ( doMove || doResize )
421 {
422 InvalWindowRect( rootwindow, &oldBounds ) ;
423 if ( doMove )
424 {
425 UMAMoveControl( (ControlHandle) m_macControl , new_x , new_y ) ;
426 }
427 if ( doResize )
428 {
429 UMASizeControl( (ControlHandle) m_macControl , new_width , new_height ) ;
430 }
431 }
432}
433
434void wxSlider::DoMoveWindow(int x, int y, int width, int height)
435{
436 wxControl::DoMoveWindow(x,y,width,height) ;
437}
312ebad4
WS
438
439#endif // wxUSE_SLIDER