1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/os2/slider.cpp
4 // Author: David Webster
8 // Copyright: (c) David Webster
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
23 #include "wx/scrolwin.h"
28 #include "wx/slider.h"
29 #include "wx/os2/private.h"
31 IMPLEMENT_DYNAMIC_CLASS(wxSlider
, wxControl
)
43 } // end of wxSlider::wxSlider
48 ::WinDestroyWindow((HWND
)m_hStaticMin
);
50 ::WinDestroyWindow((HWND
)m_hStaticMax
);
52 ::WinDestroyWindow((HWND
)m_hStaticValue
);
53 } // end of wxSlider::~wxSlider
55 void wxSlider::AdjustSubControls( int nX
,
59 int WXUNUSED(nSizeFlags
) )
63 int nCx
; // slider,min,max sizes
67 wxFont vFont
= this->GetFont();
69 wxGetCharSize( GetHWND()
75 if ((m_windowStyle
& wxSL_VERTICAL
) != wxSL_VERTICAL
)
77 if (m_windowStyle
& wxSL_LABELS
)
82 ::WinQueryWindowText((HWND
)m_hStaticMin
, 300, (PSZ
)zBuf
);
83 GetTextExtent(zBuf
, &nMinLen
, &nCyf
, NULL
, NULL
, &vFont
);
85 ::WinQueryWindowText((HWND
)m_hStaticMax
, 300, (PSZ
)zBuf
);
86 GetTextExtent(zBuf
, &nMaxLen
, &nCyf
, NULL
, NULL
, &vFont
);
90 int nNewWidth
= wxMax(nMinLen
, nMaxLen
);
91 int nValueHeight
= nCyf
;
93 ::WinSetWindowPos( (HWND
)m_hStaticValue
95 ,(LONG
)nXOffset
- (nNewWidth
+ nCx
+ nMinLen
+ nCx
)
102 ::WinSetWindowPos( (HWND
)m_hStaticMin
104 ,(LONG
)nXOffset
- (nMinLen
+ nCx
)
110 nXOffset
+= nWidth
+ nCx
;
112 ::WinSetWindowPos( (HWND
)m_hStaticMax
118 ,SWP_ZORDER
| SWP_SHOW
125 // Now deal with a vertical slider
128 if (m_windowStyle
& wxSL_LABELS
)
133 ::WinQueryWindowText((HWND
)m_hStaticMin
, 300, (PSZ
)zBuf
);
134 GetTextExtent(zBuf
, &nMinLen
, &nCyf
, NULL
, NULL
, &vFont
);
136 ::WinQueryWindowText((HWND
)m_hStaticMax
, 300, (PSZ
)zBuf
);
137 GetTextExtent(zBuf
, &nMaxLen
, &nCyf
, NULL
, NULL
, &vFont
);
141 int nNewWidth
= (wxMax(nMinLen
, nMaxLen
));
143 ::WinSetWindowPos( (HWND
)m_hStaticValue
146 ,(LONG
)nYOffset
+ nHeight
+ nCyf
152 ::WinSetWindowPos( (HWND
)m_hStaticMax
155 ,(LONG
)nYOffset
+ nHeight
160 ::WinSetWindowPos( (HWND
)m_hStaticMin
163 ,(LONG
)nYOffset
- nCyf
170 } // end of wxSlider::AdjustSubControls
172 void wxSlider::ClearSel()
174 } // end of wxSlider::ClearSel
176 void wxSlider::ClearTicks()
178 } // end of wxSlider::ClearTicks
180 void wxSlider::Command (
181 wxCommandEvent
& rEvent
184 SetValue(rEvent
.GetInt());
185 ProcessCommand(rEvent
);
186 } // end of wxSlider::Command
188 bool wxSlider::ContainsHWND(
192 return ( hWnd
== GetStaticMin() ||
193 hWnd
== GetStaticMax() ||
194 hWnd
== GetEditValue()
196 } // end of wxSlider::ContainsHWND
198 bool wxSlider::Create(
204 , const wxPoint
& rPos
205 , const wxSize
& rSize
207 , const wxValidator
& rValidator
208 , const wxString
& rsName
213 int nWidth
= rSize
.x
;
214 int nHeight
= rSize
.y
;
220 SetValidator(rValidator
);
223 pParent
->AddChild(this);
224 SetBackgroundColour(pParent
->GetBackgroundColour()) ;
225 SetForegroundColour(pParent
->GetForegroundColour()) ;
232 m_windowStyle
= lStyle
;
236 m_windowId
= (int)NewControlId();
240 if (m_windowStyle
& wxCLIP_SIBLINGS
)
241 lMsStyle
|= WS_CLIPSIBLINGS
;
243 if (m_windowStyle
& wxSL_LABELS
)
245 lMsStyle
|= WS_VISIBLE
| SS_TEXT
| DT_VCENTER
;
247 m_hStaticValue
= (WXHWND
)::WinCreateWindow( (HWND
)GetHwndOf(pParent
) // Parent window handle
248 ,WC_STATIC
// Window class
249 ,(PSZ
)NULL
// Initial Text
250 ,(ULONG
)lMsStyle
// Style flags
251 ,0L, 0L, 0L, 0L // Origin -- 0 size
252 ,(HWND
)GetHwndOf(pParent
) // owner window handle (same as parent
253 ,HWND_TOP
// initial z position
254 ,(ULONG
)NewControlId() // Window identifier
255 ,NULL
// no control data
256 ,NULL
// no Presentation parameters
260 // Now create min static control
262 wxSprintf(wxBuffer
, wxT("%d"), nMinValue
);
263 lWstyle
= SS_TEXT
|DT_LEFT
|WS_VISIBLE
;
264 if (m_windowStyle
& wxCLIP_SIBLINGS
)
265 lWstyle
|= WS_CLIPSIBLINGS
;
267 m_hStaticMin
= (WXHWND
)::WinCreateWindow( (HWND
)GetHwndOf(pParent
) // Parent window handle
268 ,WC_STATIC
// Window class
269 ,(PSZ
)wxBuffer
// Initial Text
270 ,(ULONG
)lWstyle
// Style flags
271 ,0L, 0L, 0L, 0L // Origin -- 0 size
272 ,(HWND
)GetHwndOf(pParent
) // owner window handle (same as parent
273 ,HWND_TOP
// initial z position
274 ,(ULONG
)NewControlId() // Window identifier
275 ,NULL
// no control data
276 ,NULL
// no Presentation parameters
283 vSlData
.cbSize
= sizeof(SLDCDATA
);
284 if (m_windowStyle
& wxSL_VERTICAL
)
285 lMsStyle
= SLS_VERTICAL
| SLS_HOMEBOTTOM
| WS_VISIBLE
| WS_TABSTOP
;
287 lMsStyle
= SLS_HORIZONTAL
| SLS_HOMELEFT
| WS_VISIBLE
| WS_TABSTOP
;
289 if (m_windowStyle
& wxCLIP_SIBLINGS
)
290 lMsStyle
|= WS_CLIPSIBLINGS
;
292 if (m_windowStyle
& wxSL_AUTOTICKS
)
294 vSlData
.usScale1Spacing
= 0;
295 vSlData
.usScale2Spacing
= 0;
298 if (m_windowStyle
& wxSL_LEFT
)
299 lMsStyle
|= SLS_PRIMARYSCALE2
; // if SLS_VERTICAL then SCALE2 is to the left
300 else if (m_windowStyle
& wxSL_RIGHT
)
301 lMsStyle
|= SLS_PRIMARYSCALE1
; // if SLS_VERTICAL then SCALE2 is to the right
302 else if (m_windowStyle
& wxSL_TOP
)
303 lMsStyle
|= SLS_PRIMARYSCALE1
; // if SLS_HORIZONTAL then SCALE1 is to the top
304 else if (m_windowStyle
& wxSL_BOTTOM
)
305 lMsStyle
|= SLS_PRIMARYSCALE2
; // if SLS_HORIZONTAL then SCALE1 is to the bottom
306 else if ( m_windowStyle
& wxSL_BOTH
)
307 lMsStyle
|= SLS_PRIMARYSCALE1
| SLS_PRIMARYSCALE2
;
309 lMsStyle
|= SLS_PRIMARYSCALE2
;
310 lMsStyle
|= SLS_RIBBONSTRIP
;
312 m_nPageSize
= ((nMaxValue
- nMinValue
)/10);
313 vSlData
.usScale1Increments
= (USHORT
)m_nPageSize
;
314 vSlData
.usScale2Increments
= (USHORT
)m_nPageSize
;
316 HWND hScrollBar
= ::WinCreateWindow( (HWND
)GetHwndOf(pParent
) // Parent window handle
317 ,WC_SLIDER
// Window class
318 ,(PSZ
)wxBuffer
// Initial Text
319 ,(ULONG
)lMsStyle
// Style flags
320 ,0L, 0L, 0L, 0L // Origin -- 0 size
321 ,(HWND
)GetHwndOf(pParent
) // owner window handle (same as parent
322 ,HWND_BOTTOM
// initial z position
323 ,(HMENU
)m_windowId
// Window identifier
324 ,&vSlData
// Slider control data
325 ,NULL
// no Presentation parameters
327 m_nRangeMax
= nMaxValue
;
328 m_nRangeMin
= nMinValue
;
331 // Set the size of the ticks ... default to 6 pixels
333 ::WinSendMsg( hScrollBar
335 ,MPFROM2SHORT(SMA_SETALLTICKS
, (USHORT
)12)
339 // Set the position to the initial value
341 ::WinSendMsg( hScrollBar
343 ,MPFROM2SHORT(SMA_SLIDERARMPOSITION
, SMA_RANGEVALUE
)
347 m_hWnd
= (WXHWND
)hScrollBar
;
348 SubclassWin(GetHWND());
349 ::WinSetWindowText((HWND
)m_hWnd
, "");
351 SetFont(*wxSMALL_FONT
);
352 if (m_windowStyle
& wxSL_LABELS
)
355 // Finally, create max value static item
357 wxSprintf(wxBuffer
, wxT("%d"), nMaxValue
);
358 lWstyle
= SS_TEXT
|DT_LEFT
|WS_VISIBLE
;
359 if (m_windowStyle
& wxCLIP_SIBLINGS
)
360 lMsStyle
|= WS_CLIPSIBLINGS
;
362 m_hStaticMax
= (WXHWND
)::WinCreateWindow( (HWND
)GetHwndOf(pParent
) // Parent window handle
363 ,WC_STATIC
// Window class
364 ,(PSZ
)wxBuffer
// Initial Text
365 ,(ULONG
)lWstyle
// Style flags
366 ,0L, 0L, 0L, 0L // Origin -- 0 size
367 ,(HWND
)GetHwndOf(pParent
) // owner window handle (same as parent
368 ,HWND_TOP
// initial z position
369 ,(ULONG
)NewControlId() // Window identifier
370 ,NULL
// no control data
371 ,NULL
// no Presentation parameters
375 if (GetFont().GetResourceHandle())
378 wxOS2SetFont( m_hStaticMin
382 wxOS2SetFont( m_hStaticMax
386 wxOS2SetFont( m_hStaticValue
400 m_nThumbLength
= SHORT1FROMMR(::WinSendMsg( GetHwnd()
402 ,MPFROM2SHORT( SMA_SLIDERARMDIMENSIONS
407 ) + 4; // for bordersizes
411 vColour
.Set(wxString(wxT("BLACK")));
413 LONG lColor
= (LONG
)vColour
.GetPixel();
415 ::WinSetPresParam( m_hStaticMin
420 ::WinSetPresParam( m_hStaticMax
425 ::WinSetPresParam( m_hStaticValue
430 ::WinSetPresParam( m_hWnd
435 lColor
= (LONG
)m_backgroundColour
.GetPixel();
436 ::WinSetPresParam( m_hStaticMin
441 ::WinSetPresParam( m_hStaticMax
446 ::WinSetPresParam( m_hStaticValue
451 ::WinSetPresParam( m_hWnd
456 vColour
.Set(wxString(wxT("BLUE")));
457 lColor
= (LONG
)vColour
.GetPixel();
458 ::WinSetPresParam( m_hWnd
459 ,PP_HILITEBACKGROUNDCOLOR
465 } // end of wxSlider::Create
467 void wxSlider::DoSetSize( int nX
,
475 int nWidth1
= nWidth
;
476 int nHeight1
= nHeight
;
479 int nCx
; // slider,min,max sizes
485 wxFont vFont
= this->GetFont();
488 // Adjust for OS/2's reverse coordinate system
490 wxWindowOS2
* pParent
= (wxWindowOS2
*)GetParent();
492 int nOS2Height
= nHeight
;
496 CacheBestSize(wxSize(nWidth
,nOS2Height
));
500 int nOS2ParentHeight
= GetOS2ParentHeight(pParent
);
502 nYOffset
= nOS2ParentHeight
- (nYOffset
+ nOS2Height
);
503 if (nY
!= wxDefaultCoord
)
504 nY1
= nOS2ParentHeight
- (nY1
+ nOS2Height
);
510 ::WinQueryWindowRect(HWND_DESKTOP
, &vRect
);
511 nYOffset
= vRect
.yTop
- (nYOffset
+ nOS2Height
);
512 if (nY
!= wxDefaultCoord
)
513 nY1
= vRect
.yTop
- (nY1
+ nOS2Height
);
515 m_nSizeFlags
= nSizeFlags
;
517 GetPosition( &nCurrentX
, &nCurrentY
);
518 if (nX
== -1 && !(nSizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
520 if (nY
== -1 && !(nSizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
523 AdjustForParentClientOrigin( nX1
527 wxGetCharSize( GetHWND()
533 if ((m_windowStyle
& wxSL_VERTICAL
) != wxSL_VERTICAL
)
535 if (m_windowStyle
& wxSL_LABELS
)
540 ::WinQueryWindowText((HWND
)m_hStaticMin
, 300, (PSZ
)zBuf
);
541 GetTextExtent(zBuf
, &nMinLen
, &nCyf
, NULL
, NULL
, &vFont
);
542 ::WinQueryWindowText((HWND
)m_hStaticMax
, 300, (PSZ
)zBuf
);
543 GetTextExtent(zBuf
, &nMaxLen
, &nCyf
, NULL
, NULL
, &vFont
);
547 int nNewWidth
= (wxMax(nMinLen
, nMaxLen
));
548 int nValueHeight
= nCyf
;
550 ::WinSetWindowPos( (HWND
)m_hStaticValue
553 ,(LONG
)nYOffset
- (LONG
)(nCyf
* 1.2)
556 ,SWP_ZORDER
| SWP_SIZE
| SWP_MOVE
| SWP_SHOW
558 nXOffset
+= nNewWidth
+ nCx
;
560 ::WinSetWindowPos( (HWND
)m_hStaticMin
563 ,(LONG
)nYOffset
- (LONG
)(nCyf
* 1.2)
566 ,SWP_ZORDER
| SWP_SIZE
| SWP_MOVE
| SWP_SHOW
568 nXOffset
+= nMinLen
+ nCx
;
570 int nSliderLength
= nWidth1
- nXOffset
- nMaxLen
- nCx
;
571 int nSliderHeight
= nHeight1
;
573 if (nSliderHeight
< 0)
577 // Slider must have a minimum/default length/height
579 if (nSliderLength
< 100)
582 ::WinSetWindowPos( GetHwnd()
588 ,SWP_ZORDER
| SWP_SIZE
| SWP_MOVE
| SWP_SHOW
590 ::WinQueryWindowPos(GetHwnd(), GetSwp());
591 ::WinSendMsg( GetHwnd()
593 ,MPFROM2SHORT( SMA_SHAFTDIMENSIONS
596 ,MPFROMLONG((ULONG
)(nSliderHeight
/2))
598 nXOffset
+= nSliderLength
+ nCx
;
600 ::WinSetWindowPos( (HWND
)m_hStaticMax
603 ,(LONG
)nYOffset
- (LONG
)(nCyf
* 1.2)
606 ,SWP_ZORDER
| SWP_SIZE
| SWP_MOVE
| SWP_SHOW
613 // If we're prepared to use the existing size, then...
615 if (nWidth
== -1 && nHeight
== -1 &&
616 ((nSizeFlags
& wxSIZE_AUTO
) != wxSIZE_AUTO
))
626 ::WinSetWindowPos( GetHwnd()
632 ,SWP_ZORDER
| SWP_SIZE
| SWP_MOVE
| SWP_SHOW
638 // Now deal with a vertical slider
642 if (m_windowStyle
& wxSL_LABELS
)
647 ::WinQueryWindowText((HWND
)m_hStaticMin
, 300, (PSZ
)zBuf
);
648 GetTextExtent(zBuf
, &nMinLen
, &nCyf
, NULL
, NULL
, &vFont
);
649 ::WinQueryWindowText((HWND
)m_hStaticMax
, 300, (PSZ
)zBuf
);
650 GetTextExtent(zBuf
, &nMaxLen
, &nCyf
, NULL
, NULL
, &vFont
);
653 int nNewWidth
= wxMax(nMinLen
, nMaxLen
);
654 int nValueHeight
= nCyf
;
656 ::WinSetWindowPos( (HWND
)m_hStaticValue
659 ,(LONG
)nYOffset
+ nHeight
662 ,SWP_ZORDER
| SWP_SIZE
| SWP_MOVE
| SWP_SHOW
666 ::WinSetWindowPos( (HWND
)m_hStaticMin
669 ,(LONG
)nYOffset
+ nHeight
- nCyf
672 ,SWP_ZORDER
| SWP_SIZE
| SWP_MOVE
| SWP_SHOW
676 int nSliderLength
= nHeight1
- (nUsedHeight
+ (2 * nCy
));
677 int nSliderWidth
= nWidth1
;
679 if (nSliderWidth
< 0)
683 // Slider must have a minimum/default length
685 if (nSliderLength
< 100)
688 ::WinSetWindowPos( GetHwnd()
691 ,(LONG
)nYOffset
+ nCyf
694 ,SWP_ZORDER
| SWP_SIZE
| SWP_MOVE
| SWP_SHOW
696 ::WinQueryWindowPos(GetHwnd(), GetSwp());
697 ::WinSendMsg( GetHwnd()
699 ,MPFROM2SHORT( SMA_SHAFTDIMENSIONS
702 ,MPFROMLONG((ULONG
)(nSliderWidth
/2))
704 nUsedHeight
+= nSliderLength
;
705 ::WinSetWindowPos( (HWND
)m_hStaticMax
708 ,(LONG
)nYOffset
- nCyf
711 ,SWP_ZORDER
| SWP_SIZE
| SWP_MOVE
| SWP_SHOW
718 // If we're prepared to use the existing size, then...
720 if (nWidth
== -1 && nHeight
== -1 &&
721 ((nSizeFlags
& wxSIZE_AUTO
) != wxSIZE_AUTO
))
731 ::WinSetWindowPos( GetHwnd()
737 ,SWP_ZORDER
| SWP_SIZE
| SWP_MOVE
| SWP_SHOW
741 } // end of void wxSlider::DoSetSize
743 int wxSlider::GetLineSize() const
746 } // end of wxSlider::GetLineSize
748 int wxSlider::GetPageSize() const
751 } // end of wxSlider::GetPageSize
753 void wxSlider::GetPosition(
758 wxWindowOS2
* pParent
= GetParent();
765 wxFindMaxSize( GetHWND()
770 wxFindMaxSize( m_hStaticMin
774 wxFindMaxSize( m_hStaticMax
778 wxFindMaxSize( m_hStaticValue
783 // Since we now have the absolute screen coords,
784 // if there's a parent we must subtract its top left corner
788 vPoint
.x
= vRect
.xLeft
;
789 vPoint
.y
= vRect
.yTop
;
795 ::WinQueryWindowPos((HWND
)pParent
->GetHWND(), &vSwp
);
801 // We may be faking the client origin.
802 // So a window that's really at (0, 30) may appear
803 // (to wxWin apps) to be at (0, 0).
807 wxPoint
vPt(GetParent()->GetClientAreaOrigin());
816 } // end of wxSlider::GetPosition
818 int wxSlider::GetSelEnd() const
821 } // end of wxSlider::GetSelEnd
823 int wxSlider::GetSelStart() const
826 } // end of wxSlider::GetSelStart
828 void wxSlider::DoGetSize(
836 } // end of wxSlider::DoGetSize
838 void wxSlider::GetSize(
850 wxFindMaxSize( GetHWND()
855 wxFindMaxSize( m_hStaticMin
859 wxFindMaxSize( m_hStaticMax
863 wxFindMaxSize( m_hStaticValue
867 *pnWidth
= vRect
.xRight
- vRect
.xLeft
;
869 *pnHeight
= vRect
.yTop
- vRect
.yBottom
;
870 } // end of wxSlider::GetSize
872 int wxSlider::GetThumbLength() const
874 return m_nThumbLength
;
875 } // end of wxSlider::GetThumbLength
877 int wxSlider::GetValue() const
879 int nPixelRange
= SHORT1FROMMR(::WinSendMsg( GetHwnd()
881 ,MPFROM2SHORT( SMA_SHAFTDIMENSIONS
887 double dPixelToRange
= (double)(nPixelRange
- m_nThumbLength
)/(double)(m_nRangeMax
- m_nRangeMin
);
889 int nPixelPos
= SHORT1FROMMR(::WinSendMsg( GetHwnd()
891 ,MPFROM2SHORT( SMA_SLIDERARMPOSITION
897 nNewPos
= (int)(nPixelPos
/dPixelToRange
);
898 if (nNewPos
> (m_nRangeMax
- m_nRangeMin
)/2)
901 } // end of wxSlider::GetValue
903 WXHBRUSH
wxSlider::OnCtlColor(
912 return (wxControl::OnCtlColor( hDC
920 } // end of wxSlider::OnCtlColor
922 bool wxSlider::OS2OnScroll( int WXUNUSED(nOrientation
),
924 WXWORD
WXUNUSED(wPos
),
925 WXHWND
WXUNUSED(hControl
) )
927 wxEventType eScrollEvent
= wxEVT_NULL
;
932 if (m_windowStyle
& wxSL_TOP
)
933 eScrollEvent
= wxEVT_SCROLL_TOP
;
934 else if (m_windowStyle
& wxSL_BOTTOM
)
935 eScrollEvent
= wxEVT_SCROLL_BOTTOM
;
938 case SLN_SLIDERTRACK
:
939 eScrollEvent
= wxEVT_SCROLL_THUMBTRACK
;
946 int nPixelRange
= SHORT1FROMMR(::WinSendMsg( GetHwnd()
947 , SLM_QUERYSLIDERINFO
948 , MPFROM2SHORT( SMA_SHAFTDIMENSIONS
, SMA_RANGEVALUE
)
952 m_dPixelToRange
= (double)(nPixelRange
- m_nThumbLength
)/(double)(m_nRangeMax
- m_nRangeMin
);
954 int nPixelPos
= SHORT1FROMMR(::WinSendMsg( GetHwnd()
955 , SLM_QUERYSLIDERINFO
956 , MPFROM2SHORT( SMA_SLIDERARMPOSITION
, SMA_RANGEVALUE
)
961 nNewPos
= (int)(nPixelPos
/m_dPixelToRange
);
962 if (nNewPos
> (m_nRangeMax
- m_nRangeMin
)/2)
964 if ((nNewPos
< GetMin()) || (nNewPos
> GetMax()))
967 // Out of range - but we did process it
973 wxScrollEvent
vEvent( eScrollEvent
, m_windowId
);
975 vEvent
.SetPosition(nNewPos
);
976 vEvent
.SetEventObject(this);
977 GetEventHandler()->ProcessEvent(vEvent
);
979 wxCommandEvent
vCevent( wxEVT_COMMAND_SLIDER_UPDATED
, GetId() );
981 vCevent
.SetInt(nNewPos
);
982 vCevent
.SetEventObject(this);
983 return (GetEventHandler()->ProcessEvent(vCevent
));
984 } // end of wxSlider::OS2OnScroll
986 void wxSlider::SetLineSize( int nLineSize
)
988 m_nLineSize
= nLineSize
;
989 } // end of wxSlider::SetLineSize
992 void wxSlider::SetPageSize( int nPageSize
)
994 m_nPageSize
= nPageSize
;
995 } // end of wxSlider::SetPageSize
997 void wxSlider::SetRange(
1004 m_nRangeMin
= nMinValue
;
1005 m_nRangeMax
= nMaxValue
;
1007 int nPixelRange
= SHORT1FROMMR(::WinSendMsg( GetHwnd()
1008 ,SLM_QUERYSLIDERINFO
1009 ,MPFROM2SHORT( SMA_SHAFTDIMENSIONS
1015 m_dPixelToRange
= (double)(nPixelRange
- m_nThumbLength
)/(double)(m_nRangeMax
- m_nRangeMin
);
1018 wxSprintf(zBuf
, wxT("%d"), m_nRangeMin
);
1019 ::WinSetWindowText((HWND
)m_hStaticMin
, (PSZ
)zBuf
);
1024 wxSprintf(zBuf
, wxT("%d"), m_nRangeMax
);
1025 ::WinSetWindowText((HWND
)m_hStaticMax
, (PSZ
)zBuf
);
1027 } // end of wxSlider::SetRange
1029 void wxSlider::SetSelection(
1030 int WXUNUSED(nMinPos
)
1031 , int WXUNUSED(nMaxPos
)
1034 } // end of wxSlider::SetSelection
1036 void wxSlider::SetThumbLength(
1042 m_nThumbLength
= SHORT1FROMMR(::WinSendMsg( GetHwnd()
1043 ,SLM_QUERYSLIDERINFO
1044 ,MPFROM2SHORT( SMA_SLIDERARMDIMENSIONS
1049 ) + 4; // for bordersizes
1050 nBreadth
= SHORT2FROMMR(::WinSendMsg( GetHwnd()
1051 ,SLM_QUERYSLIDERINFO
1052 ,MPFROM2SHORT( SMA_SLIDERARMDIMENSIONS
1058 ::WinSendMsg( GetHwnd()
1060 ,MPFROM2SHORT( SMA_SLIDERARMDIMENSIONS
1063 ,MPFROM2SHORT(nLen
, nBreadth
)
1065 m_nThumbLength
= nLen
+ 4; // Borders
1066 } // end of wxSlider::SetThumbLength
1068 void wxSlider::SetTick(
1072 nTickPos
= (int)(nTickPos
* m_dPixelToRange
);
1073 ::WinSendMsg( GetHwnd()
1075 ,MPFROMSHORT(nTickPos
)
1078 } // end of wxSlider::SetTick
1080 // For trackbars only
1081 void wxSlider::SetTickFreq( int n
, int WXUNUSED(nPos
) )
1084 WNDPARAMS vWndParams
;
1088 vSlData
.cbSize
= sizeof(SLDCDATA
);
1089 if (m_windowStyle
& wxSL_AUTOTICKS
)
1091 vSlData
.usScale1Spacing
= 0;
1092 vSlData
.usScale2Spacing
= 0;
1094 vSlData
.usScale1Increments
= (USHORT
)((m_nRangeMax
- m_nRangeMin
)/n
);
1095 vSlData
.usScale2Increments
= (USHORT
)((m_nRangeMax
- m_nRangeMin
)/n
);
1097 vWndParams
.fsStatus
= WPM_CTLDATA
;
1098 vWndParams
.cchText
= 0L;
1099 vWndParams
.pszText
= NULL
;
1100 vWndParams
.cbPresParams
= 0L;
1101 vWndParams
.pPresParams
= NULL
;
1102 vWndParams
.cbCtlData
= vSlData
.cbSize
;
1103 vWndParams
.pCtlData
= (PVOID
)&vSlData
;
1104 ::WinSendMsg(GetHwnd(), WM_SETWINDOWPARAMS
, (MPARAM
)&vWndParams
, (MPARAM
)0);
1105 for (i
= 1; i
< (m_nRangeMax
- m_nRangeMin
)/n
; i
++)
1107 nPixelPos
= (int)(i
* n
* m_dPixelToRange
);
1108 ::WinSendMsg( GetHwnd()
1110 ,MPFROMSHORT(nPixelPos
)
1114 } // end of wxSlider::SetTickFreq
1116 void wxSlider::SetValue(
1120 int nPixelRange
= SHORT1FROMMR(::WinSendMsg( GetHwnd()
1121 ,SLM_QUERYSLIDERINFO
1122 ,MPFROM2SHORT( SMA_SHAFTDIMENSIONS
1128 m_dPixelToRange
= (double)(nPixelRange
- m_nThumbLength
)/(double)(m_nRangeMax
- m_nRangeMin
);
1129 int nNewPos
= (int)(nValue
* m_dPixelToRange
);
1131 ::WinSendMsg( GetHwnd()
1133 ,MPFROM2SHORT( SMA_SLIDERARMPOSITION
1140 wxSprintf(wxBuffer
, wxT("%d"), nValue
);
1141 ::WinSetWindowText((HWND
)m_hStaticValue
, (PSZ
)wxBuffer
);
1143 } // end of wxSlider::SetValue
1145 bool wxSlider::Show(
1149 wxWindowOS2::Show(bShow
);
1151 ::WinShowWindow((HWND
)m_hStaticValue
, bShow
);
1153 ::WinShowWindow((HWND
)m_hStaticMin
, bShow
);
1155 ::WinShowWindow((HWND
)m_hStaticMax
, bShow
);
1157 } // end of wxSlider::Show
1159 #endif // wxUSE_SLIDER