1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxSlider95, using the Win95 trackbar control
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "slider95.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
31 #include "wx/msw/slider95.h"
32 #include "wx/msw/private.h"
34 #if (defined(__WIN95__) && !defined(__GNUWIN32__)) || defined(__TWIN32__)
38 #if !USE_SHARED_LIBRARY
39 IMPLEMENT_DYNAMIC_CLASS(wxSlider95
, wxControl
)
43 wxSlider95::wxSlider95()
55 bool wxSlider95::Create(wxWindow
*parent
, wxWindowID id
,
56 int value
, int minValue
, int maxValue
,
58 const wxSize
& size
, long style
,
59 const wxValidator
& validator
,
63 SetValidator(validator
);
65 if (parent
) parent
->AddChild(this);
66 SetBackgroundColour(parent
->GetBackgroundColour()) ;
67 SetForegroundColour(parent
->GetForegroundColour()) ;
74 m_windowStyle
= style
;
78 m_windowId
= (int)NewControlId();
89 if ( m_windowStyle
& wxSL_LABELS
)
91 msStyle
= WS_CHILD
| WS_VISIBLE
| WS_BORDER
| SS_CENTER
;
94 WXDWORD exStyle
= Determine3DEffects(WS_EX_CLIENTEDGE
, &want3D
) ;
96 m_staticValue
= (WXHWND
) CreateWindowEx(exStyle
, _T("STATIC"), NULL
,
98 0, 0, 0, 0, (HWND
) parent
->GetHWND(), (HMENU
)NewControlId(),
99 wxGetInstance(), NULL
);
101 // Now create min static control
102 wxSprintf(wxBuffer
, _T("%d"), minValue
);
103 m_staticMin
= (WXHWND
) CreateWindowEx(0, _T("STATIC"), wxBuffer
,
105 0, 0, 0, 0, (HWND
) parent
->GetHWND(), (HMENU
)NewControlId(),
106 wxGetInstance(), NULL
);
110 if (m_windowStyle
& wxSL_VERTICAL
)
111 msStyle
= TBS_VERT
| WS_CHILD
| WS_VISIBLE
| WS_TABSTOP
;
113 msStyle
= TBS_HORZ
| WS_CHILD
| WS_VISIBLE
| WS_TABSTOP
;
115 if ( m_windowStyle
& wxSL_AUTOTICKS
)
116 msStyle
|= TBS_AUTOTICKS
;
118 if ( m_windowStyle
& wxSL_LEFT
)
120 else if ( m_windowStyle
& wxSL_RIGHT
)
121 msStyle
|= TBS_RIGHT
;
122 else if ( m_windowStyle
& wxSL_TOP
)
124 else if ( m_windowStyle
& wxSL_BOTTOM
)
125 msStyle
|= TBS_BOTTOM
;
126 else if ( m_windowStyle
& wxSL_BOTH
)
128 else if ( ! (m_windowStyle
& wxSL_AUTOTICKS
) )
129 msStyle
|= TBS_NOTICKS
;
131 if ( m_windowStyle
& wxSL_SELRANGE
)
132 msStyle
|= TBS_ENABLESELRANGE
;
134 HWND scroll_bar
= CreateWindowEx(MakeExtendedStyle(m_windowStyle
), TRACKBAR_CLASS
, wxBuffer
,
136 0, 0, 0, 0, (HWND
) parent
->GetHWND(), (HMENU
)m_windowId
,
137 wxGetInstance(), NULL
);
139 m_rangeMax
= maxValue
;
140 m_rangeMin
= minValue
;
142 m_pageSize
= (int)((maxValue
-minValue
)/10);
144 ::SendMessage(scroll_bar
, TBM_SETRANGE
, TRUE
, MAKELONG(minValue
, maxValue
));
145 ::SendMessage(scroll_bar
, TBM_SETPOS
, TRUE
, (LPARAM
)value
);
146 ::SendMessage(scroll_bar
, TBM_SETPAGESIZE
, 0, (LPARAM
)m_pageSize
);
148 m_hWnd
= (WXHWND
)scroll_bar
;
150 SubclassWin(GetHWND());
152 SetWindowText((HWND
) m_hWnd
, _T(""));
154 SetFont(parent
->GetFont());
156 if ( m_windowStyle
& wxSL_LABELS
)
158 // Finally, create max value static item
159 wxSprintf(wxBuffer
, _T("%d"), maxValue
);
160 m_staticMax
= (WXHWND
) CreateWindowEx(0, _T("STATIC"), wxBuffer
,
162 0, 0, 0, 0, (HWND
) parent
->GetHWND(), (HMENU
)NewControlId(),
163 wxGetInstance(), NULL
);
168 if (GetFont().GetResourceHandle())
171 SendMessage((HWND
)m_staticMin
,WM_SETFONT
,
172 (WPARAM
)GetFont().GetResourceHandle(),0L);
174 SendMessage((HWND
)m_staticMax
,WM_SETFONT
,
175 (WPARAM
)GetFont().GetResourceHandle(),0L);
177 SendMessage((HWND
)m_staticValue
,WM_SETFONT
,
178 (WPARAM
)GetFont().GetResourceHandle(),0L);
183 SetSize(x
, y
, width
, height
);
189 bool wxSlider95::MSWOnScroll(int WXUNUSED(orientation
), WXWORD wParam
,
190 WXWORD pos
, WXHWND control
)
192 int position
= 0; // Dummy - not used in this mode
195 wxEventType scrollEvent
= wxEVT_NULL
;
199 nScrollInc
= m_rangeMax
- position
;
200 scrollEvent
= wxEVT_SCROLL_TOP
;
204 nScrollInc
= - position
;
205 scrollEvent
= wxEVT_SCROLL_BOTTOM
;
209 nScrollInc
= - GetLineSize();
210 scrollEvent
= wxEVT_SCROLL_LINEUP
;
214 nScrollInc
= GetLineSize();
215 scrollEvent
= wxEVT_SCROLL_LINEDOWN
;
219 nScrollInc
= -GetPageSize();
220 scrollEvent
= wxEVT_SCROLL_PAGEUP
;
224 nScrollInc
= GetPageSize();
225 scrollEvent
= wxEVT_SCROLL_PAGEDOWN
;
229 case SB_THUMBPOSITION
:
231 nScrollInc
= (signed short)pos
- position
;
233 nScrollInc
= pos
- position
;
235 scrollEvent
= wxEVT_SCROLL_THUMBTRACK
;
242 if ( nScrollInc
== 0 )
248 int newPos
= (int)::SendMessage((HWND
) control
, TBM_GETPOS
, 0, 0);
249 if ( (newPos
< GetMin()) || (newPos
> GetMax()) )
251 // out of range - but we did process it
257 wxScrollEvent
event(scrollEvent
, m_windowId
);
258 event
.SetPosition(newPos
);
259 event
.SetEventObject( this );
260 GetEventHandler()->ProcessEvent(event
);
262 wxCommandEvent
cevent( wxEVT_COMMAND_SLIDER_UPDATED
, GetId() );
263 cevent
.SetEventObject( this );
265 return GetEventHandler()->ProcessEvent( cevent
);
268 wxSlider95::~wxSlider95()
271 DestroyWindow((HWND
) m_staticMin
);
273 DestroyWindow((HWND
) m_staticMax
);
275 DestroyWindow((HWND
) m_staticValue
);
278 int wxSlider95::GetValue() const
280 return ::SendMessage(GetHwnd(), TBM_GETPOS
, 0, 0);
283 void wxSlider95::SetValue(int value
)
285 ::SendMessage(GetHwnd(), TBM_SETPOS
, (WPARAM
)TRUE
, (LPARAM
)value
);
288 wxSprintf(wxBuffer
, _T("%d"), value
);
289 SetWindowText((HWND
) m_staticValue
, wxBuffer
);
293 void wxSlider95::GetSize(int *width
, int *height
) const
296 rect
.left
= -1; rect
.right
= -1; rect
.top
= -1; rect
.bottom
= -1;
298 wxFindMaxSize(GetHWND(), &rect
);
301 wxFindMaxSize(m_staticMin
, &rect
);
303 wxFindMaxSize(m_staticMax
, &rect
);
305 wxFindMaxSize(m_staticValue
, &rect
);
307 *width
= rect
.right
- rect
.left
;
308 *height
= rect
.bottom
- rect
.top
;
311 void wxSlider95::GetPosition(int *x
, int *y
) const
313 wxWindow
*parent
= GetParent();
315 rect
.left
= -1; rect
.right
= -1; rect
.top
= -1; rect
.bottom
= -1;
317 wxFindMaxSize(GetHWND(), &rect
);
320 wxFindMaxSize(m_staticMin
, &rect
);
322 wxFindMaxSize(m_staticMax
, &rect
);
324 wxFindMaxSize(m_staticValue
, &rect
);
326 // Since we now have the absolute screen coords,
327 // if there's a parent we must subtract its top left corner
332 ::ScreenToClient((HWND
) parent
->GetHWND(), &point
);
334 // We may be faking the client origin.
335 // So a window that's really at (0, 30) may appear
336 // (to wxWin apps) to be at (0, 0).
339 wxPoint
pt(GetParent()->GetClientAreaOrigin());
347 // TODO one day, make sense of all this horros and replace it with a readable
349 void wxSlider95::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
356 int currentX
, currentY
;
357 GetPosition(¤tX
, ¤tY
);
358 if (x
== -1 || (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
360 if (y
== -1 || (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
363 AdjustForParentClientOrigin(x1
, y1
, sizeFlags
);
370 int cx
; // slider,min,max sizes
374 wxGetCharSize(GetHWND(), &cx
, &cy
, & this->GetFont());
376 if ((m_windowStyle
& wxSL_VERTICAL
) != wxSL_VERTICAL
)
378 if ( m_windowStyle
& wxSL_LABELS
)
382 GetWindowText((HWND
) m_staticMin
, buf
, 300);
383 GetTextExtent(buf
, &min_len
, &cyf
,NULL
,NULL
, & this->GetFont());
387 GetWindowText((HWND
) m_staticMax
, buf
, 300);
388 GetTextExtent(buf
, &max_len
, &cyf
,NULL
,NULL
, & this->GetFont());
391 int new_width
= (int)(wxMax(min_len
, max_len
));
392 int valueHeight
= (int)cyf
;
394 // For some reason, under Win95, the text edit control has
395 // a lot of space before the first character
398 // The height needs to be a bit bigger under Win95 if using native
400 valueHeight
= (int) (valueHeight
* 1.5) ;
401 MoveWindow((HWND
) m_staticValue
, x_offset
, y_offset
, new_width
, valueHeight
, TRUE
);
402 x_offset
+= new_width
+ cx
;
405 MoveWindow((HWND
) m_staticMin
, x_offset
, y_offset
, (int)min_len
, cy
, TRUE
);
406 x_offset
+= (int)(min_len
+ cx
);
408 int slider_length
= (int)(w1
- x_offset
- max_len
- cx
);
410 int slider_height
= h1
;
411 if (slider_height
< 0 )
414 // Slider must have a minimum/default length/height
415 if (slider_length
< 100)
418 MoveWindow(GetHwnd(), x_offset
, y_offset
, slider_length
, slider_height
, TRUE
);
419 x_offset
+= slider_length
+ cx
;
421 MoveWindow((HWND
) m_staticMax
, x_offset
, y_offset
, (int)max_len
, cy
, TRUE
);
426 // If we're prepared to use the existing size, then...
427 if (width
== -1 && height
== -1 && ((sizeFlags
& wxSIZE_AUTO
) != wxSIZE_AUTO
))
435 MoveWindow(GetHwnd(), x1
, y1
, w1
, h1
, TRUE
);
440 if ( m_windowStyle
& wxSL_LABELS
)
443 GetWindowText((HWND
) m_staticMin
, buf
, 300);
444 GetTextExtent(buf
, &min_len
, &cyf
,NULL
,NULL
, & this->GetFont());
447 GetWindowText((HWND
) m_staticMax
, buf
, 300);
448 GetTextExtent(buf
, &max_len
, &cyf
,NULL
,NULL
, & this->GetFont());
452 int new_width
= (int)(wxMax(min_len
, max_len
));
453 int valueHeight
= (int)cyf
;
454 /*** Suggested change by George Tasker - remove this block...
456 // For some reason, under Win95, the text edit control has
457 // a lot of space before the first character
460 ... and replace with following line: */
463 // The height needs to be a bit bigger under Win95 if using native
465 valueHeight
= (int) (valueHeight
* 1.5) ;
467 MoveWindow((HWND
) m_staticValue
, x_offset
, y_offset
, new_width
, valueHeight
, TRUE
);
468 y_offset
+= valueHeight
;
471 MoveWindow((HWND
) m_staticMin
, x_offset
, y_offset
, (int)min_len
, cy
, TRUE
);
474 int slider_length
= (int)(h1
- y_offset
- cy
- cy
);
476 int slider_width
= w1
;
477 if (slider_width
< 0 )
480 // Slider must have a minimum/default length
481 if (slider_length
< 100)
484 MoveWindow(GetHwnd(), x_offset
, y_offset
, slider_width
, slider_length
, TRUE
);
485 y_offset
+= slider_length
;
487 MoveWindow((HWND
) m_staticMax
, x_offset
, y_offset
, (int)max_len
, cy
, TRUE
);
492 // If we're prepared to use the existing size, then...
493 if (width
== -1 && height
== -1 && ((sizeFlags
& wxSIZE_AUTO
) != wxSIZE_AUTO
))
501 MoveWindow(GetHwnd(), x1
, y1
, w1
, h1
, TRUE
);
506 void wxSlider95::SetRange(int minValue
, int maxValue
)
508 m_rangeMin
= minValue
;
509 m_rangeMax
= maxValue
;
511 ::SendMessage(GetHwnd(), TBM_SETRANGE
, TRUE
, MAKELONG(minValue
, maxValue
));
516 wxSprintf(buf
, _T("%d"), m_rangeMin
);
517 SetWindowText((HWND
) m_staticMin
, buf
);
522 wxSprintf(buf
, _T("%d"), m_rangeMax
);
523 SetWindowText((HWND
) m_staticMax
, buf
);
527 WXHBRUSH
wxSlider95::OnCtlColor(WXHDC pDC
, WXHWND pWnd
, WXUINT nCtlColor
,
528 WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
530 if ( nCtlColor
== CTLCOLOR_SCROLLBAR
)
533 // Otherwise, it's a static
534 if (GetParent()->GetTransparentBackground())
535 SetBkMode((HDC
) pDC
, TRANSPARENT
);
537 SetBkMode((HDC
) pDC
, OPAQUE
);
539 ::SetBkColor((HDC
) pDC
, RGB(GetBackgroundColour().Red(), GetBackgroundColour().Green(), GetBackgroundColour().Blue()));
540 ::SetTextColor((HDC
) pDC
, RGB(GetForegroundColour().Red(), GetForegroundColour().Green(), GetForegroundColour().Blue()));
542 wxBrush
*backgroundBrush
= wxTheBrushList
->FindOrCreateBrush(GetBackgroundColour(), wxSOLID
);
543 return (WXHBRUSH
) backgroundBrush
->GetResourceHandle();
546 // For trackbars only
547 void wxSlider95::SetTickFreq(int n
, int pos
)
550 ::SendMessage( GetHwnd(), TBM_SETTICFREQ
, (WPARAM
) n
, (LPARAM
) pos
);
553 void wxSlider95::SetPageSize(int pageSize
)
555 ::SendMessage( GetHwnd(), TBM_SETPAGESIZE
, (WPARAM
) 0, (LPARAM
) pageSize
);
556 m_pageSize
= pageSize
;
559 int wxSlider95::GetPageSize() const
564 void wxSlider95::ClearSel()
566 ::SendMessage( GetHwnd(), TBM_CLEARSEL
, (WPARAM
) TRUE
, (LPARAM
) 0 );
569 void wxSlider95::ClearTicks()
571 ::SendMessage( GetHwnd(), TBM_CLEARTICS
, (WPARAM
) TRUE
, (LPARAM
) 0 );
574 void wxSlider95::SetLineSize(int lineSize
)
576 m_lineSize
= lineSize
;
577 ::SendMessage( GetHwnd(), TBM_SETLINESIZE
, (WPARAM
) 0, (LPARAM
) lineSize
);
580 int wxSlider95::GetLineSize() const
582 return (int) ::SendMessage( GetHwnd(), TBM_GETLINESIZE
, (WPARAM
) 0, (LPARAM
) 0 );
585 int wxSlider95::GetSelEnd() const
587 return (int) ::SendMessage( GetHwnd(), TBM_SETSELEND
, (WPARAM
) 0, (LPARAM
) 0 );
590 int wxSlider95::GetSelStart() const
592 return (int) ::SendMessage( GetHwnd(), TBM_GETSELSTART
, (WPARAM
) 0, (LPARAM
) 0 );
595 void wxSlider95::SetSelection(int minPos
, int maxPos
)
597 ::SendMessage( GetHwnd(), TBM_SETSEL
, (WPARAM
) TRUE
, (LPARAM
) MAKELONG( minPos
, maxPos
) );
600 void wxSlider95::SetThumbLength(int len
)
602 ::SendMessage( GetHwnd(), TBM_SETTHUMBLENGTH
, (WPARAM
) len
, (LPARAM
) 0 );
605 int wxSlider95::GetThumbLength() const
607 return (int) ::SendMessage( GetHwnd(), TBM_GETTHUMBLENGTH
, (WPARAM
) 0, (LPARAM
) 0 );
610 void wxSlider95::SetTick(int tickPos
)
612 ::SendMessage( GetHwnd(), TBM_SETTIC
, (WPARAM
) 0, (LPARAM
) tickPos
);
615 bool wxSlider95::ContainsHWND(WXHWND hWnd
) const
617 return ( hWnd
== GetStaticMin() || hWnd
== GetStaticMax() || hWnd
== GetEditValue() );
620 void wxSlider95::Command (wxCommandEvent
& event
)
622 SetValue (event
.GetInt());
623 ProcessCommand (event
);
626 bool wxSlider95::Show(bool show
)
628 wxWindow::Show(show
);
637 ShowWindow((HWND
) m_staticValue
, (BOOL
)cshow
);
639 ShowWindow((HWND
) m_staticMin
, (BOOL
)cshow
);
641 ShowWindow((HWND
) m_staticMax
, (BOOL
)cshow
);