1 /////////////////////////////////////////////////////////////////////////////
2 // Name: msw/slider95.cpp
3 // Purpose: wxSlider95, using the Win95 trackbar control
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart 1998
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
13 // ============================================================================
15 // ============================================================================
17 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
18 #pragma implementation "slider95.h"
21 // ----------------------------------------------------------------------------
23 // ----------------------------------------------------------------------------
25 // For compilers that support precompilation, includes "wx.h".
26 #include "wx/wxprec.h"
38 #include "wx/slider.h"
39 #include "wx/msw/subwin.h"
41 #if !(defined(__GNUWIN32_OLD__) && !defined(__CYGWIN10__))
45 // ----------------------------------------------------------------------------
47 // ----------------------------------------------------------------------------
49 // indices of labels in wxSlider95::m_labels
58 // the gap between the slider and the labels, in pixels
59 static const int HGAP
= 5;
61 // ----------------------------------------------------------------------------
63 // ----------------------------------------------------------------------------
65 #if wxUSE_EXTENDED_RTTI
66 WX_DEFINE_FLAGS( wxSliderStyle
)
68 wxBEGIN_FLAGS( wxSliderStyle
)
69 // new style border flags, we put them first to
70 // use them for streaming out
71 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
72 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
73 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
74 wxFLAGS_MEMBER(wxBORDER_RAISED
)
75 wxFLAGS_MEMBER(wxBORDER_STATIC
)
76 wxFLAGS_MEMBER(wxBORDER_NONE
)
78 // old style border flags
79 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
80 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
81 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
82 wxFLAGS_MEMBER(wxRAISED_BORDER
)
83 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
84 wxFLAGS_MEMBER(wxBORDER
)
86 // standard window styles
87 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
88 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
89 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
90 wxFLAGS_MEMBER(wxWANTS_CHARS
)
91 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
92 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
93 wxFLAGS_MEMBER(wxVSCROLL
)
94 wxFLAGS_MEMBER(wxHSCROLL
)
96 wxFLAGS_MEMBER(wxSL_HORIZONTAL
)
97 wxFLAGS_MEMBER(wxSL_VERTICAL
)
98 wxFLAGS_MEMBER(wxSL_AUTOTICKS
)
99 wxFLAGS_MEMBER(wxSL_LABELS
)
100 wxFLAGS_MEMBER(wxSL_LEFT
)
101 wxFLAGS_MEMBER(wxSL_TOP
)
102 wxFLAGS_MEMBER(wxSL_RIGHT
)
103 wxFLAGS_MEMBER(wxSL_BOTTOM
)
104 wxFLAGS_MEMBER(wxSL_BOTH
)
105 wxFLAGS_MEMBER(wxSL_SELRANGE
)
106 wxFLAGS_MEMBER(wxSL_INVERSE
)
108 wxEND_FLAGS( wxSliderStyle
)
110 IMPLEMENT_DYNAMIC_CLASS_XTI(wxSlider95
, wxControl
,"wx/scrolbar.h")
112 wxBEGIN_PROPERTIES_TABLE(wxSlider95
)
113 wxEVENT_RANGE_PROPERTY( Scroll
, wxEVT_SCROLL_TOP
, wxEVT_SCROLL_ENDSCROLL
, wxScrollEvent
)
114 wxEVENT_PROPERTY( Updated
, wxEVT_COMMAND_SLIDER_UPDATED
, wxCommandEvent
)
116 wxPROPERTY( Value
, int , SetValue
, GetValue
, 0, 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
117 wxPROPERTY( Minimum
, int , SetMin
, GetMin
, 0 , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
118 wxPROPERTY( Maximum
, int , SetMax
, GetMax
, 0 , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
119 wxPROPERTY( PageSize
, int , SetPageSize
, GetLineSize
, 1 , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
120 wxPROPERTY( LineSize
, int , SetLineSize
, GetLineSize
, 1 , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
121 wxPROPERTY( ThumbLength
, int , SetThumbLength
, GetThumbLength
, 1 , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
122 wxPROPERTY_FLAGS( WindowStyle
, wxSliderStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
123 wxEND_PROPERTIES_TABLE()
125 wxBEGIN_HANDLERS_TABLE(wxSlider95
)
126 wxEND_HANDLERS_TABLE()
128 wxCONSTRUCTOR_8( wxSlider95
, wxWindow
* , Parent
, wxWindowID
, Id
, int , Value
, int , Minimum
, int , Maximum
, wxPoint
, Position
, wxSize
, Size
, long , WindowStyle
)
130 IMPLEMENT_DYNAMIC_CLASS(wxSlider95
, wxControl
)
133 // ============================================================================
134 // wxSlider95 implementation
135 // ============================================================================
137 // ----------------------------------------------------------------------------
139 // ----------------------------------------------------------------------------
141 void wxSlider95::Init()
153 wxSlider95::Create(wxWindow
*parent
,
161 const wxValidator
& validator
,
162 const wxString
& name
)
164 // initialize everything
165 if ( !CreateControl(parent
, id
, pos
, size
, style
, validator
, name
) )
168 // ensure that we have correct values for GetLabelsSize()
169 m_rangeMin
= minValue
;
170 m_rangeMax
= maxValue
;
172 // create the labels first, so that our DoGetBestSize() could take them
175 // note that we could simply create 3 wxStaticTexts here but it could
176 // result in some observable side effects at wx level (e.g. the parent of
177 // wxSlider would have 3 more children than expected) and so we prefer not
178 // to do it like this
179 if ( m_windowStyle
& wxSL_LABELS
)
181 m_labels
= new wxSubwindows(SliderLabel_Last
);
183 HWND hwndParent
= GetHwndOf(parent
);
184 for ( size_t n
= 0; n
< SliderLabel_Last
; n
++ )
186 (*m_labels
)[n
] = ::CreateWindow
190 WS_CHILD
| WS_VISIBLE
| SS_CENTER
,
193 (HMENU
)NewControlId(),
199 m_labels
->SetFont(GetFont());
202 // now create the main control too
203 if ( !MSWCreateControl(TRACKBAR_CLASS
, wxEmptyString
, pos
, size
) )
206 // and initialize everything
207 SetRange(minValue
, maxValue
);
209 SetPageSize((maxValue
- minValue
)/10);
211 // we need to position the labels correctly if we have them and if
212 // SetSize() hadn't been called before (when best size was determined by
213 // MSWCreateControl()) as in this case they haven't been put in place yet
214 if ( m_labels
&& size
.x
!= wxDefaultCoord
&& size
.y
!= wxDefaultCoord
)
222 WXDWORD
wxSlider95::MSWGetStyle(long style
, WXDWORD
*exstyle
) const
224 WXDWORD msStyle
= wxControl::MSWGetStyle(style
, exstyle
);
226 // TBS_HORZ is 0 anyhow, but do mention it explicitly for clarity
227 msStyle
|= style
& wxSL_VERTICAL
? TBS_VERT
: TBS_HORZ
;
229 if ( style
& wxSL_AUTOTICKS
)
230 msStyle
|= TBS_AUTOTICKS
;
232 // again, TBS_RIGHT is 0 but do include it for clarity
233 if ( style
& wxSL_LEFT
)
235 else if ( style
& wxSL_RIGHT
)
236 msStyle
|= TBS_RIGHT
;
237 else if ( style
& wxSL_TOP
)
239 else if ( style
& wxSL_BOTTOM
)
240 msStyle
|= TBS_BOTTOM
;
241 else if ( style
& wxSL_BOTH
)
243 else if ( !(style
& wxSL_AUTOTICKS
) )
244 msStyle
|= TBS_NOTICKS
;
246 if ( style
& wxSL_SELRANGE
)
247 msStyle
|= TBS_ENABLESELRANGE
;
252 wxSlider95::~wxSlider95()
257 // ----------------------------------------------------------------------------
259 // ----------------------------------------------------------------------------
261 bool wxSlider95::MSWOnScroll(int WXUNUSED(orientation
),
263 WXWORD
WXUNUSED(pos
),
266 wxEventType scrollEvent
;
270 scrollEvent
= wxEVT_SCROLL_TOP
;
274 scrollEvent
= wxEVT_SCROLL_BOTTOM
;
278 scrollEvent
= wxEVT_SCROLL_LINEUP
;
282 scrollEvent
= wxEVT_SCROLL_LINEDOWN
;
286 scrollEvent
= wxEVT_SCROLL_PAGEUP
;
290 scrollEvent
= wxEVT_SCROLL_PAGEDOWN
;
294 scrollEvent
= wxEVT_SCROLL_THUMBTRACK
;
297 case SB_THUMBPOSITION
:
298 scrollEvent
= wxEVT_SCROLL_THUMBRELEASE
;
302 scrollEvent
= wxEVT_SCROLL_ENDSCROLL
;
306 // unknown scroll event?
310 int newPos
= ValueInvertOrNot((int) ::SendMessage((HWND
) control
, TBM_GETPOS
, 0, 0));
311 if ( (newPos
< GetMin()) || (newPos
> GetMax()) )
313 // out of range - but we did process it
319 wxScrollEvent
event(scrollEvent
, m_windowId
);
320 event
.SetPosition(newPos
);
321 event
.SetEventObject( this );
322 GetEventHandler()->ProcessEvent(event
);
324 wxCommandEvent
cevent( wxEVT_COMMAND_SLIDER_UPDATED
, GetId() );
325 cevent
.SetInt( newPos
);
326 cevent
.SetEventObject( this );
328 return GetEventHandler()->ProcessEvent( cevent
);
331 void wxSlider95::Command (wxCommandEvent
& event
)
333 SetValue (event
.GetInt());
334 ProcessCommand (event
);
337 // ----------------------------------------------------------------------------
339 // ----------------------------------------------------------------------------
341 wxRect
wxSlider95::GetBoundingBox() const
343 // take care not to call our own functions which would call us recursively
345 wxSliderBase::DoGetPosition(&x
, &y
);
346 wxSliderBase::DoGetSize(&w
, &h
);
348 wxRect
rect(x
, y
, w
, h
);
351 wxRect lrect
= m_labels
->GetBoundingBox();
352 GetParent()->ScreenToClient(&lrect
.x
, &lrect
.y
);
359 void wxSlider95::DoGetSize(int *width
, int *height
) const
361 wxRect rect
= GetBoundingBox();
366 *height
= rect
.height
;
369 void wxSlider95::DoGetPosition(int *x
, int *y
) const
371 wxRect rect
= GetBoundingBox();
379 int wxSlider95::GetLabelsSize(int *width
) const
385 // find the max label width
386 int wLabelMin
, wLabelMax
;
387 GetTextExtent(Format(m_rangeMin
), &wLabelMin
, &cy
);
388 GetTextExtent(Format(m_rangeMax
), &wLabelMax
, &cy
);
390 *width
= wxMax(wLabelMin
, wLabelMax
);
394 cy
= GetCharHeight();
397 return EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy
);
400 void wxSlider95::DoMoveWindow(int x
, int y
, int width
, int height
)
402 // all complications below are because we need to position the labels,
403 // without them everything is easy
406 wxSliderBase::DoMoveWindow(x
, y
, width
, height
);
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
413 if ( HasFlag(wxSL_VERTICAL
) )
416 int hLabel
= GetLabelsSize(&wLabel
);
418 int xLabel
= HasFlag(wxSL_LEFT
) ? x
+ width
- wLabel
: x
;
420 // position all labels: min at the top, value in the middle and max at
422 ::MoveWindow((*m_labels
)[SliderLabel_Min
],
423 xLabel
, y
, wLabel
, hLabel
, TRUE
);
425 ::MoveWindow((*m_labels
)[SliderLabel_Value
],
426 xLabel
, y
+ (height
- hLabel
)/2, wLabel
, hLabel
, TRUE
);
428 ::MoveWindow((*m_labels
)[SliderLabel_Max
],
429 xLabel
, y
+ height
- hLabel
, wLabel
, hLabel
, TRUE
);
431 // position the slider itself along the left/right edge
432 ::MoveWindow(GetHwnd(),
433 HasFlag(wxSL_LEFT
) ? x
: x
+ wLabel
+ HGAP
,
435 width
- wLabel
- HGAP
,
442 int hLabel
= GetLabelsSize(&wLabel
);
444 int yLabel
= HasFlag(wxSL_TOP
) ? y
+ height
- hLabel
: y
;
446 // position all labels: min on the left, value in the middle and max to
448 ::MoveWindow((*m_labels
)[SliderLabel_Min
],
449 x
, yLabel
, wLabel
, hLabel
, TRUE
);
451 ::MoveWindow((*m_labels
)[SliderLabel_Value
],
452 x
+ (width
- wLabel
)/2, yLabel
, wLabel
, hLabel
, TRUE
);
454 ::MoveWindow((*m_labels
)[SliderLabel_Max
],
455 x
+ width
- wLabel
, yLabel
, wLabel
, hLabel
, TRUE
);
457 // position the slider itself along the top/bottom edge
458 ::MoveWindow(GetHwnd(),
460 HasFlag(wxSL_TOP
) ? y
: y
+ hLabel
,
467 wxSize
wxSlider95::DoGetBestSize() const
469 // these values are arbitrary
470 static const int length
= 100;
471 static const int thickness
= 26;
474 if ( HasFlag(wxSL_VERTICAL
) )
482 int hLabel
= GetLabelsSize(&wLabel
);
484 // account for the labels
485 size
.x
+= HGAP
+ wLabel
;
487 // labels are indented relative to the slider itself
498 // labels add extra height
499 size
.y
+= GetLabelsSize();
506 // ----------------------------------------------------------------------------
507 // slider-specific methods
508 // ----------------------------------------------------------------------------
510 int wxSlider95::GetValue() const
512 return ValueInvertOrNot(::SendMessage(GetHwnd(), TBM_GETPOS
, 0, 0));
515 void wxSlider95::SetValue(int value
)
517 ::SendMessage(GetHwnd(), TBM_SETPOS
, (WPARAM
)TRUE
, (LPARAM
)ValueInvertOrNot(value
));
521 ::SetWindowText((*m_labels
)[SliderLabel_Value
], Format(value
));
525 void wxSlider95::SetRange(int minValue
, int maxValue
)
527 m_rangeMin
= minValue
;
528 m_rangeMax
= maxValue
;
530 ::SendMessage(GetHwnd(), TBM_SETRANGE
, TRUE
, MAKELONG(minValue
, maxValue
));
534 ::SetWindowText((*m_labels
)[SliderLabel_Min
], Format(ValueInvertOrNot(m_rangeMin
)));
535 ::SetWindowText((*m_labels
)[SliderLabel_Max
], Format(ValueInvertOrNot(m_rangeMax
)));
539 void wxSlider95::SetTickFreq(int n
, int pos
)
542 ::SendMessage( GetHwnd(), TBM_SETTICFREQ
, (WPARAM
) n
, (LPARAM
) pos
);
545 void wxSlider95::SetPageSize(int pageSize
)
547 ::SendMessage( GetHwnd(), TBM_SETPAGESIZE
, (WPARAM
) 0, (LPARAM
) pageSize
);
548 m_pageSize
= pageSize
;
551 int wxSlider95::GetPageSize() const
556 void wxSlider95::ClearSel()
558 ::SendMessage(GetHwnd(), TBM_CLEARSEL
, (WPARAM
) TRUE
, (LPARAM
) 0);
561 void wxSlider95::ClearTicks()
563 ::SendMessage(GetHwnd(), TBM_CLEARTICS
, (WPARAM
) TRUE
, (LPARAM
) 0);
566 void wxSlider95::SetLineSize(int lineSize
)
568 m_lineSize
= lineSize
;
569 ::SendMessage(GetHwnd(), TBM_SETLINESIZE
, (WPARAM
) 0, (LPARAM
) lineSize
);
572 int wxSlider95::GetLineSize() const
574 return (int)::SendMessage(GetHwnd(), TBM_GETLINESIZE
, 0, 0);
577 int wxSlider95::GetSelEnd() const
579 return (int)::SendMessage(GetHwnd(), TBM_SETSELEND
, 0, 0);
582 int wxSlider95::GetSelStart() const
584 return (int)::SendMessage(GetHwnd(), TBM_GETSELSTART
, 0, 0);
587 void wxSlider95::SetSelection(int minPos
, int maxPos
)
589 ::SendMessage(GetHwnd(), TBM_SETSEL
,
590 (WPARAM
) TRUE
/* redraw */,
591 (LPARAM
) MAKELONG( minPos
, maxPos
) );
594 void wxSlider95::SetThumbLength(int len
)
596 ::SendMessage(GetHwnd(), TBM_SETTHUMBLENGTH
, (WPARAM
) len
, (LPARAM
) 0);
599 int wxSlider95::GetThumbLength() const
601 return (int)::SendMessage( GetHwnd(), TBM_GETTHUMBLENGTH
, 0, 0);
604 void wxSlider95::SetTick(int tickPos
)
606 ::SendMessage( GetHwnd(), TBM_SETTIC
, (WPARAM
) 0, (LPARAM
) tickPos
);
609 // ----------------------------------------------------------------------------
610 // composite control methods
611 // ----------------------------------------------------------------------------
613 WXHWND
wxSlider95::GetStaticMin() const
615 return m_labels
? (WXHWND
)(*m_labels
)[SliderLabel_Min
] : NULL
;
618 WXHWND
wxSlider95::GetStaticMax() const
620 return m_labels
? (WXHWND
)(*m_labels
)[SliderLabel_Max
] : NULL
;
623 WXHWND
wxSlider95::GetEditValue() const
625 return m_labels
? (WXHWND
)(*m_labels
)[SliderLabel_Value
] : NULL
;
628 WX_FORWARD_STD_METHODS_TO_SUBWINDOWS(wxSlider95
, wxSliderBase
, m_labels
)
630 #endif // wxUSE_SLIDER