4 * Copyright 1993 Martin Ayotte
5 * Copyright 1994, 1996 Alexandre Julliard
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 * This code was audited for completeness against the documented features
24 * of Comctl32.dll version 6.0 on Oct. 8, 2004, by Dimitrie O. Paun.
26 * Unless otherwise noted, we believe this code to be complete, as per
27 * the specification mentioned above.
28 * If you discover missing features, or bugs, please note them below.
38 #include "wine/debug.h"
39 #include "user_private.h"
41 WINE_DEFAULT_DEBUG_CHANNEL(scroll);
43 /* data for a single scroll bar */
46 INT curVal; /* Current scroll-bar value */
47 INT minVal; /* Minimum scroll-bar value */
48 INT maxVal; /* Maximum scroll-bar value */
49 INT page; /* Page size of scroll bar (Win32) */
50 UINT flags; /* EnableScrollBar flags */
51 } SCROLLBAR_INFO, *LPSCROLLBAR_INFO;
53 /* data for window that has (one or two) scroll bars */
58 } WINSCROLLBAR_INFO, *LPWINSCROLLBAR_INFO;
60 /* Minimum size of the rectangle between the arrows */
61 #define SCROLL_MIN_RECT 4
63 /* Minimum size of the thumb in pixels */
64 #define SCROLL_MIN_THUMB 6
66 /* Overlap between arrows and thumb */
67 #define SCROLL_ARROW_THUMB_OVERLAP 0
69 /* Delay (in ms) before first repetition when holding the button down */
70 #define SCROLL_FIRST_DELAY 200
72 /* Delay (in ms) between scroll repetitions */
73 #define SCROLL_REPEAT_DELAY 50
76 #define SCROLL_TIMER 0
78 /* Scroll-bar hit testing */
81 SCROLL_NOWHERE, /* Outside the scroll bar */
82 SCROLL_TOP_ARROW, /* Top or left arrow */
83 SCROLL_TOP_RECT, /* Rectangle between the top arrow and the thumb */
84 SCROLL_THUMB, /* Thumb rectangle */
85 SCROLL_BOTTOM_RECT, /* Rectangle between the thumb and the bottom arrow */
86 SCROLL_BOTTOM_ARROW /* Bottom or right arrow */
89 /* What to do after SCROLL_SetScrollInfo() */
90 #define SA_SSI_HIDE 0x0001
91 #define SA_SSI_SHOW 0x0002
92 #define SA_SSI_REFRESH 0x0004
93 #define SA_SSI_REPAINT_ARROWS 0x0008
95 /* Thumb-tracking info */
96 static HWND SCROLL_TrackingWin = 0;
97 static INT SCROLL_TrackingBar = 0;
98 static INT SCROLL_TrackingPos = 0;
99 static INT SCROLL_TrackingVal = 0;
100 /* Hit test code of the last button-down event */
101 static enum SCROLL_HITTEST SCROLL_trackHitTest;
102 static BOOL SCROLL_trackVertical;
104 /* Is the moving thumb being displayed? */
105 static BOOL SCROLL_MovingThumb = FALSE;
107 /* Local functions */
108 static BOOL SCROLL_ShowScrollBar( HWND hwnd, INT nBar,
109 BOOL fShowH, BOOL fShowV );
110 static INT SCROLL_SetScrollInfo( HWND hwnd, INT nBar,
111 const SCROLLINFO *info, BOOL bRedraw );
112 static void SCROLL_DrawInterior_9x( HWND hwnd, HDC hdc, INT nBar,
113 RECT *rect, INT arrowSize,
114 INT thumbSize, INT thumbPos,
115 UINT flags, BOOL vertical,
116 BOOL top_selected, BOOL bottom_selected );
119 /*********************************************************************
120 * scrollbar class descriptor
122 static const WCHAR scrollbarW[] = {'S','c','r','o','l','l','B','a','r',0};
123 const struct builtin_class_descr SCROLL_builtin_class =
125 scrollbarW, /* name */
126 CS_DBLCLKS | CS_VREDRAW | CS_HREDRAW | CS_PARENTDC, /* style */
127 WINPROC_SCROLLBAR, /* proc */
128 sizeof(SCROLLBAR_INFO), /* extra */
129 IDC_ARROW, /* cursor */
133 /***********************************************************************
134 * SCROLL_ScrollInfoValid
136 * Determine if the supplied SCROLLINFO struct is valid.
137 * info [in] The SCROLLINFO struct to be tested
139 static inline BOOL SCROLL_ScrollInfoValid( LPCSCROLLINFO info )
141 return !(info->fMask & ~(SIF_ALL | SIF_DISABLENOSCROLL)
142 || (info->cbSize != sizeof(*info)
143 && info->cbSize != sizeof(*info) - sizeof(info->nTrackPos)));
147 /***********************************************************************
148 * SCROLL_GetInternalInfo
150 * Returns pointer to internal SCROLLBAR_INFO structure for nBar
151 * or NULL if failed (f.i. scroll bar does not exist yet)
152 * If alloc is TRUE and the struct does not exist yet, create it.
154 static SCROLLBAR_INFO *SCROLL_GetInternalInfo( HWND hwnd, INT nBar, BOOL alloc )
156 SCROLLBAR_INFO *infoPtr = NULL;
157 WND *wndPtr = WIN_GetPtr( hwnd );
159 if (!wndPtr || wndPtr == WND_OTHER_PROCESS || wndPtr == WND_DESKTOP) return NULL;
163 if (wndPtr->pScroll) infoPtr = &((LPWINSCROLLBAR_INFO)wndPtr->pScroll)->horz;
166 if (wndPtr->pScroll) infoPtr = &((LPWINSCROLLBAR_INFO)wndPtr->pScroll)->vert;
169 infoPtr = (SCROLLBAR_INFO *)wndPtr->wExtra;
172 WARN("with SB_BOTH\n");
176 if (!infoPtr && alloc)
178 WINSCROLLBAR_INFO *winInfoPtr;
180 if (nBar != SB_HORZ && nBar != SB_VERT)
181 WARN("Cannot initialize nBar=%d\n",nBar);
182 else if ((winInfoPtr = HeapAlloc( GetProcessHeap(), 0, sizeof(WINSCROLLBAR_INFO) )))
184 /* Set default values */
185 winInfoPtr->horz.minVal = 0;
186 winInfoPtr->horz.curVal = 0;
187 winInfoPtr->horz.page = 0;
188 /* From MSDN and our own tests:
189 * max for a standard scroll bar is 100 by default. */
190 winInfoPtr->horz.maxVal = 100;
191 winInfoPtr->horz.flags = ESB_ENABLE_BOTH;
192 winInfoPtr->vert = winInfoPtr->horz;
193 wndPtr->pScroll = winInfoPtr;
194 infoPtr = nBar == SB_HORZ ? &winInfoPtr->horz : &winInfoPtr->vert;
197 WIN_ReleasePtr( wndPtr );
202 /***********************************************************************
203 * SCROLL_GetScrollBarRect
205 * Compute the scroll bar rectangle, in drawing coordinates (i.e. client
206 * coords for SB_CTL, window coords for SB_VERT and SB_HORZ).
207 * 'arrowSize' returns the width or height of an arrow (depending on
208 * the orientation of the scrollbar), 'thumbSize' returns the size of
209 * the thumb, and 'thumbPos' returns the position of the thumb
210 * relative to the left or to the top.
211 * Return TRUE if the scrollbar is vertical, FALSE if horizontal.
213 static BOOL SCROLL_GetScrollBarRect( HWND hwnd, INT nBar, RECT *lprect,
214 INT *arrowSize, INT *thumbSize,
219 WND *wndPtr = WIN_GetPtr( hwnd );
221 if (!wndPtr || wndPtr == WND_OTHER_PROCESS || wndPtr == WND_DESKTOP) return FALSE;
226 lprect->left = wndPtr->rectClient.left - wndPtr->rectWindow.left;
227 lprect->top = wndPtr->rectClient.bottom - wndPtr->rectWindow.top;
228 lprect->right = wndPtr->rectClient.right - wndPtr->rectWindow.left;
229 lprect->bottom = lprect->top + GetSystemMetrics(SM_CYHSCROLL);
230 if(wndPtr->dwStyle & WS_VSCROLL)
236 if((wndPtr->dwExStyle & WS_EX_LEFTSCROLLBAR) != 0)
237 lprect->left = wndPtr->rectClient.left - wndPtr->rectWindow.left - GetSystemMetrics(SM_CXVSCROLL);
239 lprect->left = wndPtr->rectClient.right - wndPtr->rectWindow.left;
240 lprect->top = wndPtr->rectClient.top - wndPtr->rectWindow.top;
241 lprect->right = lprect->left + GetSystemMetrics(SM_CXVSCROLL);
242 lprect->bottom = wndPtr->rectClient.bottom - wndPtr->rectWindow.top;
243 if(wndPtr->dwStyle & WS_HSCROLL)
249 GetClientRect( hwnd, lprect );
250 vertical = ((wndPtr->dwStyle & SBS_VERT) != 0);
254 WIN_ReleasePtr( wndPtr );
258 if (vertical) pixels = lprect->bottom - lprect->top;
259 else pixels = lprect->right - lprect->left;
261 if (pixels <= 2*GetSystemMetrics(SM_CXVSCROLL) + SCROLL_MIN_RECT)
263 if (pixels > SCROLL_MIN_RECT)
264 *arrowSize = (pixels - SCROLL_MIN_RECT) / 2;
267 *thumbPos = *thumbSize = 0;
271 SCROLLBAR_INFO *info = SCROLL_GetInternalInfo( hwnd, nBar, FALSE );
274 WARN("called for missing scroll bar\n");
275 WIN_ReleasePtr( wndPtr );
278 *arrowSize = GetSystemMetrics(SM_CXVSCROLL);
279 pixels -= (2 * (GetSystemMetrics(SM_CXVSCROLL) - SCROLL_ARROW_THUMB_OVERLAP));
283 *thumbSize = MulDiv(pixels,info->page,(info->maxVal-info->minVal+1));
284 if (*thumbSize < SCROLL_MIN_THUMB) *thumbSize = SCROLL_MIN_THUMB;
286 else *thumbSize = GetSystemMetrics(SM_CXVSCROLL);
288 if (((pixels -= *thumbSize ) < 0) ||
289 ((info->flags & ESB_DISABLE_BOTH) == ESB_DISABLE_BOTH))
291 /* Rectangle too small or scrollbar disabled -> no thumb */
292 *thumbPos = *thumbSize = 0;
296 INT max = info->maxVal - max( info->page-1, 0 );
297 if (info->minVal >= max)
298 *thumbPos = *arrowSize - SCROLL_ARROW_THUMB_OVERLAP;
300 *thumbPos = *arrowSize - SCROLL_ARROW_THUMB_OVERLAP
301 + MulDiv(pixels, (info->curVal-info->minVal),(max - info->minVal));
304 WIN_ReleasePtr( wndPtr );
309 /***********************************************************************
312 * Compute the current scroll position based on the thumb position in pixels
313 * from the top of the scroll-bar.
315 static UINT SCROLL_GetThumbVal( SCROLLBAR_INFO *infoPtr, RECT *rect,
316 BOOL vertical, INT pos )
319 INT pixels = vertical ? rect->bottom-rect->top : rect->right-rect->left;
322 if ((pixels -= 2*(GetSystemMetrics(SM_CXVSCROLL) - SCROLL_ARROW_THUMB_OVERLAP)) <= 0)
323 return infoPtr->minVal;
327 thumbSize = MulDiv(pixels,infoPtr->page,(infoPtr->maxVal-infoPtr->minVal+1));
328 if (thumbSize < SCROLL_MIN_THUMB) thumbSize = SCROLL_MIN_THUMB;
330 else thumbSize = GetSystemMetrics(SM_CXVSCROLL);
332 if ((pixels -= thumbSize) <= 0) return infoPtr->minVal;
334 pos = max( 0, pos - (GetSystemMetrics(SM_CXVSCROLL) - SCROLL_ARROW_THUMB_OVERLAP) );
335 if (pos > pixels) pos = pixels;
338 range = infoPtr->maxVal - infoPtr->minVal;
340 range = infoPtr->maxVal - infoPtr->minVal - infoPtr->page + 1;
342 return infoPtr->minVal + MulDiv(pos, range, pixels);
345 /***********************************************************************
348 static BOOL SCROLL_PtInRectEx( LPRECT lpRect, POINT pt, BOOL vertical )
353 /* Pad hit rect to allow mouse to be dragged outside of scrollbar and
354 * still be considered in the scrollbar. */
357 scrollbarWidth = lpRect->right - lpRect->left;
358 rect.left -= scrollbarWidth*8;
359 rect.right += scrollbarWidth*8;
360 rect.top -= scrollbarWidth*2;
361 rect.bottom += scrollbarWidth*2;
365 scrollbarWidth = lpRect->bottom - lpRect->top;
366 rect.left -= scrollbarWidth*2;
367 rect.right += scrollbarWidth*2;
368 rect.top -= scrollbarWidth*8;
369 rect.bottom += scrollbarWidth*8;
371 return PtInRect( &rect, pt );
374 /***********************************************************************
377 static POINT SCROLL_ClipPos( LPRECT lpRect, POINT pt )
379 if( pt.x < lpRect->left )
382 if( pt.x > lpRect->right )
383 pt.x = lpRect->right;
385 if( pt.y < lpRect->top )
388 if( pt.y > lpRect->bottom )
389 pt.y = lpRect->bottom;
395 /***********************************************************************
398 * Scroll-bar hit testing (don't confuse this with WM_NCHITTEST!).
400 static enum SCROLL_HITTEST SCROLL_HitTest( HWND hwnd, INT nBar,
401 POINT pt, BOOL bDragging )
403 INT arrowSize, thumbSize, thumbPos;
406 BOOL vertical = SCROLL_GetScrollBarRect( hwnd, nBar, &rect,
407 &arrowSize, &thumbSize, &thumbPos );
409 if ( (bDragging && !SCROLL_PtInRectEx( &rect, pt, vertical )) ||
410 (!PtInRect( &rect, pt )) ) return SCROLL_NOWHERE;
414 if (pt.y < rect.top + arrowSize) return SCROLL_TOP_ARROW;
415 if (pt.y >= rect.bottom - arrowSize) return SCROLL_BOTTOM_ARROW;
416 if (!thumbPos) return SCROLL_TOP_RECT;
418 if (pt.y < thumbPos) return SCROLL_TOP_RECT;
419 if (pt.y >= thumbPos + thumbSize) return SCROLL_BOTTOM_RECT;
421 else /* horizontal */
423 if (pt.x < rect.left + arrowSize) return SCROLL_TOP_ARROW;
424 if (pt.x >= rect.right - arrowSize) return SCROLL_BOTTOM_ARROW;
425 if (!thumbPos) return SCROLL_TOP_RECT;
427 if (pt.x < thumbPos) return SCROLL_TOP_RECT;
428 if (pt.x >= thumbPos + thumbSize) return SCROLL_BOTTOM_RECT;
434 /***********************************************************************
437 * Draw the scroll bar arrows.
439 static void SCROLL_DrawArrows( HDC hdc, SCROLLBAR_INFO *infoPtr,
440 RECT *rect, INT arrowSize, BOOL vertical,
441 BOOL top_pressed, BOOL bottom_pressed )
447 r.bottom = r.top + arrowSize;
449 r.right = r.left + arrowSize;
451 DrawFrameControl( hdc, &r, DFC_SCROLL,
452 (vertical ? DFCS_SCROLLUP : DFCS_SCROLLLEFT)
453 | (top_pressed ? (DFCS_PUSHED | DFCS_FLAT) : 0 )
454 | (infoPtr->flags&ESB_DISABLE_LTUP ? DFCS_INACTIVE : 0 ) );
458 r.top = r.bottom-arrowSize;
460 r.left = r.right-arrowSize;
462 DrawFrameControl( hdc, &r, DFC_SCROLL,
463 (vertical ? DFCS_SCROLLDOWN : DFCS_SCROLLRIGHT)
464 | (bottom_pressed ? (DFCS_PUSHED | DFCS_FLAT) : 0 )
465 | (infoPtr->flags&ESB_DISABLE_RTDN ? DFCS_INACTIVE : 0) );
468 static void SCROLL_DrawMovingThumb( HDC hdc, RECT *rect, BOOL vertical,
469 INT arrowSize, INT thumbSize )
471 INT pos = SCROLL_TrackingPos;
475 max_size = rect->bottom - rect->top;
477 max_size = rect->right - rect->left;
479 max_size -= (arrowSize-SCROLL_ARROW_THUMB_OVERLAP) + thumbSize;
481 if( pos < (arrowSize-SCROLL_ARROW_THUMB_OVERLAP) )
482 pos = (arrowSize-SCROLL_ARROW_THUMB_OVERLAP);
483 else if( pos > max_size )
486 SCROLL_DrawInterior_9x( SCROLL_TrackingWin, hdc, SCROLL_TrackingBar,
487 rect, arrowSize, thumbSize, pos,
488 0, vertical, FALSE, FALSE );
490 SCROLL_MovingThumb = !SCROLL_MovingThumb;
493 /***********************************************************************
494 * SCROLL_DrawInterior
496 * Draw the scroll bar interior (everything except the arrows).
498 static void SCROLL_DrawInterior_9x( HWND hwnd, HDC hdc, INT nBar,
499 RECT *rect, INT arrowSize,
500 INT thumbSize, INT thumbPos,
501 UINT flags, BOOL vertical,
502 BOOL top_selected, BOOL bottom_selected )
506 HBRUSH hSaveBrush,hBrush;
508 /* Only scrollbar controls send WM_CTLCOLORSCROLLBAR.
509 * The window-owned scrollbars need to call DEFWND_ControlColor
510 * to correctly setup default scrollbar colors
514 hBrush = (HBRUSH)SendMessageW( GetParent(hwnd), WM_CTLCOLORSCROLLBAR,
515 (WPARAM)hdc,(LPARAM)hwnd);
519 hBrush = DEFWND_ControlColor( hdc, CTLCOLOR_SCROLLBAR );
522 hSavePen = SelectObject( hdc, SYSCOLOR_GetPen(COLOR_WINDOWFRAME) );
523 hSaveBrush = SelectObject( hdc, hBrush );
525 /* Calculate the scroll rectangle */
529 r.top += arrowSize - SCROLL_ARROW_THUMB_OVERLAP;
530 r.bottom -= (arrowSize - SCROLL_ARROW_THUMB_OVERLAP);
534 r.left += arrowSize - SCROLL_ARROW_THUMB_OVERLAP;
535 r.right -= (arrowSize - SCROLL_ARROW_THUMB_OVERLAP);
538 /* Draw the scroll rectangles and thumb */
539 if (!thumbPos) /* No thumb to draw */
541 PatBlt( hdc, r.left, r.top,
542 r.right - r.left, r.bottom - r.top,
545 /* cleanup and return */
546 SelectObject( hdc, hSavePen );
547 SelectObject( hdc, hSaveBrush );
553 PatBlt( hdc, r.left, r.top,
555 thumbPos - (arrowSize - SCROLL_ARROW_THUMB_OVERLAP),
556 top_selected ? 0x0f0000 : PATCOPY );
557 r.top += thumbPos - (arrowSize - SCROLL_ARROW_THUMB_OVERLAP);
558 PatBlt( hdc, r.left, r.top + thumbSize,
560 r.bottom - r.top - thumbSize,
561 bottom_selected ? 0x0f0000 : PATCOPY );
562 r.bottom = r.top + thumbSize;
564 else /* horizontal */
566 PatBlt( hdc, r.left, r.top,
567 thumbPos - (arrowSize - SCROLL_ARROW_THUMB_OVERLAP),
569 top_selected ? 0x0f0000 : PATCOPY );
570 r.left += thumbPos - (arrowSize - SCROLL_ARROW_THUMB_OVERLAP);
571 PatBlt( hdc, r.left + thumbSize, r.top,
572 r.right - r.left - thumbSize,
574 bottom_selected ? 0x0f0000 : PATCOPY );
575 r.right = r.left + thumbSize;
579 DrawEdge( hdc, &r, EDGE_RAISED, BF_RECT | BF_MIDDLE );
582 SelectObject( hdc, hSavePen );
583 SelectObject( hdc, hSaveBrush );
587 static void SCROLL_DrawInterior( HWND hwnd, HDC hdc, INT nBar,
588 RECT *rect, INT arrowSize,
589 INT thumbSize, INT thumbPos,
590 UINT flags, BOOL vertical,
591 BOOL top_selected, BOOL bottom_selected )
595 HBRUSH hSaveBrush,hBrush;
596 BOOL Save_SCROLL_MovingThumb = SCROLL_MovingThumb;
598 if (Save_SCROLL_MovingThumb &&
599 (SCROLL_TrackingWin == hwnd) &&
600 (SCROLL_TrackingBar == nBar))
601 SCROLL_DrawMovingThumb( hdc, rect, vertical, arrowSize, thumbSize );
603 /* Select the correct brush and pen */
605 /* Only scrollbar controls send WM_CTLCOLORSCROLLBAR.
606 * The window-owned scrollbars need to call DEFWND_ControlColor
607 * to correctly setup default scrollbar colors
609 if (nBar == SB_CTL) {
610 hBrush = (HBRUSH)SendMessageW( GetParent(hwnd), WM_CTLCOLORSCROLLBAR,
611 (WPARAM)hdc,(LPARAM)hwnd);
613 hBrush = DEFWND_ControlColor( hdc, CTLCOLOR_SCROLLBAR );
615 hSavePen = SelectObject( hdc, SYSCOLOR_GetPen(COLOR_WINDOWFRAME) );
616 hSaveBrush = SelectObject( hdc, hBrush );
618 /* Calculate the scroll rectangle */
623 r.top += arrowSize - SCROLL_ARROW_THUMB_OVERLAP;
624 r.bottom -= (arrowSize - SCROLL_ARROW_THUMB_OVERLAP);
628 r.left += arrowSize - SCROLL_ARROW_THUMB_OVERLAP;
629 r.right -= (arrowSize - SCROLL_ARROW_THUMB_OVERLAP);
632 /* Draw the scroll bar frame */
634 /* Draw the scroll rectangles and thumb */
636 if (!thumbPos) /* No thumb to draw */
638 PatBlt( hdc, r.left, r.top, r.right - r.left, r.bottom - r.top, PATCOPY );
640 /* cleanup and return */
641 SelectObject( hdc, hSavePen );
642 SelectObject( hdc, hSaveBrush );
648 PatBlt( hdc, r.left, r.top, r.right - r.left,
649 thumbPos - (arrowSize - SCROLL_ARROW_THUMB_OVERLAP),
650 top_selected ? 0x0f0000 : PATCOPY );
651 r.top += thumbPos - (arrowSize - SCROLL_ARROW_THUMB_OVERLAP);
652 PatBlt( hdc, r.left, r.top + thumbSize, r.right - r.left,
653 r.bottom - r.top - thumbSize,
654 bottom_selected ? 0x0f0000 : PATCOPY );
655 r.bottom = r.top + thumbSize;
657 else /* horizontal */
659 PatBlt( hdc, r.left, r.top,
660 thumbPos - (arrowSize - SCROLL_ARROW_THUMB_OVERLAP),
661 r.bottom - r.top, top_selected ? 0x0f0000 : PATCOPY );
662 r.left += thumbPos - (arrowSize - SCROLL_ARROW_THUMB_OVERLAP);
663 PatBlt( hdc, r.left + thumbSize, r.top, r.right - r.left - thumbSize,
664 r.bottom - r.top, bottom_selected ? 0x0f0000 : PATCOPY );
665 r.right = r.left + thumbSize;
670 SelectObject( hdc, GetSysColorBrush(COLOR_BTNFACE) );
671 Rectangle( hdc, r.left+1, r.top+1, r.right-1, r.bottom-1 );
672 DrawEdge( hdc, &r, EDGE_RAISED, BF_RECT );
674 if (Save_SCROLL_MovingThumb &&
675 (SCROLL_TrackingWin == hwnd) &&
676 (SCROLL_TrackingBar == nBar))
677 SCROLL_DrawMovingThumb( hdc, rect, vertical, arrowSize, thumbSize );
680 SelectObject( hdc, hSavePen );
681 SelectObject( hdc, hSaveBrush );
685 /***********************************************************************
686 * SCROLL_DrawScrollBar
688 * Redraw the whole scrollbar.
690 void SCROLL_DrawScrollBar( HWND hwnd, HDC hdc, INT nBar,
691 BOOL arrows, BOOL interior )
693 INT arrowSize, thumbSize, thumbPos;
696 SCROLLBAR_INFO *infoPtr = SCROLL_GetInternalInfo( hwnd, nBar, TRUE );
697 BOOL Save_SCROLL_MovingThumb = SCROLL_MovingThumb;
698 DWORD style = GetWindowLongW( hwnd, GWL_STYLE );
700 if (!(hwnd = WIN_GetFullHandle( hwnd ))) return;
703 ((nBar == SB_VERT) && !(style & WS_VSCROLL)) ||
704 ((nBar == SB_HORZ) && !(style & WS_HSCROLL))) return;
705 if (!WIN_IsWindowDrawable( hwnd, FALSE )) return;
707 vertical = SCROLL_GetScrollBarRect( hwnd, nBar, &rect,
708 &arrowSize, &thumbSize, &thumbPos );
710 /* do not draw if the scrollbar rectangle is empty */
711 if(IsRectEmpty(&rect)) return;
713 if (Save_SCROLL_MovingThumb &&
714 (SCROLL_TrackingWin == hwnd) &&
715 (SCROLL_TrackingBar == nBar))
716 SCROLL_DrawMovingThumb( hdc, &rect, vertical, arrowSize, thumbSize );
718 /* Draw the arrows */
720 if (arrows && arrowSize)
722 if( vertical == SCROLL_trackVertical && GetCapture() == hwnd )
723 SCROLL_DrawArrows( hdc, infoPtr, &rect, arrowSize, vertical,
724 (SCROLL_trackHitTest == SCROLL_TOP_ARROW),
725 (SCROLL_trackHitTest == SCROLL_BOTTOM_ARROW) );
727 SCROLL_DrawArrows( hdc, infoPtr, &rect, arrowSize, vertical,
731 SCROLL_DrawInterior( hwnd, hdc, nBar, &rect, arrowSize, thumbSize,
732 thumbPos, infoPtr->flags, vertical, FALSE, FALSE );
734 if (Save_SCROLL_MovingThumb &&
735 (SCROLL_TrackingWin == hwnd) &&
736 (SCROLL_TrackingBar == nBar))
737 SCROLL_DrawMovingThumb( hdc, &rect, vertical, arrowSize, thumbSize );
739 /* if scroll bar has focus, reposition the caret */
740 if(hwnd==GetFocus() && (nBar==SB_CTL))
744 SetCaretPos(thumbPos+1, rect.top+1);
748 SetCaretPos(rect.top+1, thumbPos+1);
753 /***********************************************************************
754 * SCROLL_DrawSizeGrip
756 * Draw the size grip.
758 static void SCROLL_DrawSizeGrip( HWND hwnd, HDC hdc)
762 GetClientRect( hwnd, &rc );
763 FillRect( hdc, &rc, GetSysColorBrush(COLOR_SCROLLBAR) );
764 rc.left = max( rc.left, rc.right - GetSystemMetrics(SM_CXVSCROLL) - 1 );
765 rc.top = max( rc.top, rc.bottom - GetSystemMetrics(SM_CYHSCROLL) - 1 );
766 DrawFrameControl( hdc, &rc, DFC_SCROLL, DFCS_SCROLLSIZEGRIP );
770 /***********************************************************************
771 * SCROLL_RefreshScrollBar
773 * Repaint the scroll bar interior after a SetScrollRange() or
774 * SetScrollPos() call.
776 static void SCROLL_RefreshScrollBar( HWND hwnd, INT nBar,
777 BOOL arrows, BOOL interior )
779 HDC hdc = GetDCEx( hwnd, 0,
780 DCX_CACHE | ((nBar == SB_CTL) ? 0 : DCX_WINDOW) );
783 SCROLL_DrawScrollBar( hwnd, hdc, nBar, arrows, interior );
784 ReleaseDC( hwnd, hdc );
788 /***********************************************************************
789 * SCROLL_HandleKbdEvent
791 * Handle a keyboard event (only for SB_CTL scrollbars with focus).
794 * hwnd [I] Handle of window with scrollbar(s)
795 * wParam [I] Variable input including enable state
796 * lParam [I] Variable input including input point
798 static void SCROLL_HandleKbdEvent(HWND hwnd, WPARAM wParam, LPARAM lParam)
800 TRACE("hwnd=%p wParam=%ld lParam=%ld\n", hwnd, wParam, lParam);
802 /* hide caret on first KEYDOWN to prevent flicker */
803 if ((lParam & PFD_DOUBLEBUFFER_DONTCARE) == 0)
808 case VK_PRIOR: wParam = SB_PAGEUP; break;
809 case VK_NEXT: wParam = SB_PAGEDOWN; break;
810 case VK_HOME: wParam = SB_TOP; break;
811 case VK_END: wParam = SB_BOTTOM; break;
812 case VK_UP: wParam = SB_LINEUP; break;
813 case VK_DOWN: wParam = SB_LINEDOWN; break;
814 case VK_LEFT: wParam = SB_LINEUP; break;
815 case VK_RIGHT: wParam = SB_LINEDOWN; break;
818 SendMessageW(GetParent(hwnd),
819 ((GetWindowLongW( hwnd, GWL_STYLE ) & SBS_VERT) ?
820 WM_VSCROLL : WM_HSCROLL), wParam, (LPARAM)hwnd);
824 /***********************************************************************
825 * SCROLL_HandleScrollEvent
827 * Handle a mouse or timer event for the scrollbar.
828 * 'pt' is the location of the mouse event in client (for SB_CTL) or
829 * windows coordinates.
831 static void SCROLL_HandleScrollEvent( HWND hwnd, INT nBar, UINT msg, POINT pt)
833 /* Previous mouse position for timer events */
835 /* Thumb position when tracking started. */
836 static UINT trackThumbPos;
837 /* Position in the scroll-bar of the last button-down event. */
838 static INT lastClickPos;
839 /* Position in the scroll-bar of the last mouse event. */
840 static INT lastMousePos;
842 enum SCROLL_HITTEST hittest;
843 HWND hwndOwner, hwndCtl;
845 INT arrowSize, thumbSize, thumbPos;
849 SCROLLBAR_INFO *infoPtr = SCROLL_GetInternalInfo( hwnd, nBar, FALSE );
850 if (!infoPtr) return;
851 if ((SCROLL_trackHitTest == SCROLL_NOWHERE) && (msg != WM_LBUTTONDOWN))
854 if (nBar == SB_CTL && (GetWindowLongW( hwnd, GWL_STYLE ) & (SBS_SIZEGRIP | SBS_SIZEBOX)))
858 case WM_LBUTTONDOWN: /* Initialise mouse tracking */
859 HideCaret(hwnd); /* hide caret while holding down LBUTTON */
862 SCROLL_trackHitTest = hittest = SCROLL_THUMB;
865 GetClientRect(GetParent(GetParent(hwnd)),&rect);
870 SCROLL_trackHitTest = hittest = SCROLL_NOWHERE;
871 if (hwnd==GetFocus()) ShowCaret(hwnd);
880 hdc = GetDCEx( hwnd, 0, DCX_CACHE | ((nBar == SB_CTL) ? 0 : DCX_WINDOW));
881 vertical = SCROLL_GetScrollBarRect( hwnd, nBar, &rect,
882 &arrowSize, &thumbSize, &thumbPos );
883 hwndOwner = (nBar == SB_CTL) ? GetParent(hwnd) : hwnd;
884 hwndCtl = (nBar == SB_CTL) ? hwnd : 0;
888 case WM_LBUTTONDOWN: /* Initialise mouse tracking */
889 HideCaret(hwnd); /* hide caret while holding down LBUTTON */
890 SCROLL_trackVertical = vertical;
891 SCROLL_trackHitTest = hittest = SCROLL_HitTest( hwnd, nBar, pt, FALSE );
892 lastClickPos = vertical ? (pt.y - rect.top) : (pt.x - rect.left);
893 lastMousePos = lastClickPos;
894 trackThumbPos = thumbPos;
896 if (nBar == SB_CTL && (GetWindowLongW(hwnd, GWL_STYLE) & WS_TABSTOP)) SetFocus( hwnd );
901 hittest = SCROLL_HitTest( hwnd, nBar, pt, TRUE );
906 hittest = SCROLL_NOWHERE;
908 /* if scrollbar has focus, show back caret */
909 if (hwnd==GetFocus()) ShowCaret(hwnd);
914 hittest = SCROLL_HitTest( hwnd, nBar, pt, FALSE );
918 return; /* Should never happen */
921 TRACE("Event: hwnd=%p bar=%d msg=%s pt=%d,%d hit=%d\n",
922 hwnd, nBar, SPY_GetMsgName(msg,hwnd), pt.x, pt.y, hittest );
924 switch(SCROLL_trackHitTest)
926 case SCROLL_NOWHERE: /* No tracking in progress */
929 case SCROLL_TOP_ARROW:
930 SCROLL_DrawArrows( hdc, infoPtr, &rect, arrowSize, vertical,
931 (hittest == SCROLL_trackHitTest), FALSE );
932 if (hittest == SCROLL_trackHitTest)
934 if ((msg == WM_LBUTTONDOWN) || (msg == WM_SYSTIMER))
936 SendMessageW( hwndOwner, vertical ? WM_VSCROLL : WM_HSCROLL,
937 SB_LINEUP, (LPARAM)hwndCtl );
940 SetSystemTimer( hwnd, SCROLL_TIMER, (msg == WM_LBUTTONDOWN) ?
941 SCROLL_FIRST_DELAY : SCROLL_REPEAT_DELAY, NULL );
943 else KillSystemTimer( hwnd, SCROLL_TIMER );
946 case SCROLL_TOP_RECT:
947 SCROLL_DrawInterior( hwnd, hdc, nBar, &rect, arrowSize, thumbSize,
948 thumbPos, infoPtr->flags, vertical,
949 (hittest == SCROLL_trackHitTest), FALSE );
950 if (hittest == SCROLL_trackHitTest)
952 if ((msg == WM_LBUTTONDOWN) || (msg == WM_SYSTIMER))
954 SendMessageW( hwndOwner, vertical ? WM_VSCROLL : WM_HSCROLL,
955 SB_PAGEUP, (LPARAM)hwndCtl );
957 SetSystemTimer( hwnd, SCROLL_TIMER, (msg == WM_LBUTTONDOWN) ?
958 SCROLL_FIRST_DELAY : SCROLL_REPEAT_DELAY, NULL );
960 else KillSystemTimer( hwnd, SCROLL_TIMER );
964 if (msg == WM_LBUTTONDOWN)
966 SCROLL_TrackingWin = hwnd;
967 SCROLL_TrackingBar = nBar;
968 SCROLL_TrackingPos = trackThumbPos + lastMousePos - lastClickPos;
969 SCROLL_TrackingVal = SCROLL_GetThumbVal( infoPtr, &rect,
971 SCROLL_TrackingPos );
972 if (!SCROLL_MovingThumb)
973 SCROLL_DrawMovingThumb(hdc, &rect, vertical, arrowSize, thumbSize);
975 else if (msg == WM_LBUTTONUP)
977 if (SCROLL_MovingThumb)
978 SCROLL_DrawMovingThumb(hdc, &rect, vertical, arrowSize, thumbSize);
980 SCROLL_DrawInterior( hwnd, hdc, nBar, &rect, arrowSize, thumbSize,
981 thumbPos, infoPtr->flags, vertical,
984 else /* WM_MOUSEMOVE */
988 if (!SCROLL_PtInRectEx( &rect, pt, vertical )) pos = lastClickPos;
991 pt = SCROLL_ClipPos( &rect, pt );
992 pos = vertical ? (pt.y - rect.top) : (pt.x - rect.left);
994 if ( (pos != lastMousePos) || (!SCROLL_MovingThumb) )
996 if (SCROLL_MovingThumb)
997 SCROLL_DrawMovingThumb( hdc, &rect, vertical,
998 arrowSize, thumbSize );
1000 SCROLL_TrackingPos = trackThumbPos + pos - lastClickPos;
1001 SCROLL_TrackingVal = SCROLL_GetThumbVal( infoPtr, &rect,
1003 SCROLL_TrackingPos );
1004 SendMessageW( hwndOwner, vertical ? WM_VSCROLL : WM_HSCROLL,
1005 MAKEWPARAM( SB_THUMBTRACK, SCROLL_TrackingVal),
1007 if (!SCROLL_MovingThumb)
1008 SCROLL_DrawMovingThumb( hdc, &rect, vertical,
1009 arrowSize, thumbSize );
1014 case SCROLL_BOTTOM_RECT:
1015 SCROLL_DrawInterior( hwnd, hdc, nBar, &rect, arrowSize, thumbSize,
1016 thumbPos, infoPtr->flags, vertical,
1017 FALSE, (hittest == SCROLL_trackHitTest) );
1018 if (hittest == SCROLL_trackHitTest)
1020 if ((msg == WM_LBUTTONDOWN) || (msg == WM_SYSTIMER))
1022 SendMessageW( hwndOwner, vertical ? WM_VSCROLL : WM_HSCROLL,
1023 SB_PAGEDOWN, (LPARAM)hwndCtl );
1025 SetSystemTimer( hwnd, SCROLL_TIMER, (msg == WM_LBUTTONDOWN) ?
1026 SCROLL_FIRST_DELAY : SCROLL_REPEAT_DELAY, NULL );
1028 else KillSystemTimer( hwnd, SCROLL_TIMER );
1031 case SCROLL_BOTTOM_ARROW:
1032 SCROLL_DrawArrows( hdc, infoPtr, &rect, arrowSize, vertical,
1033 FALSE, (hittest == SCROLL_trackHitTest) );
1034 if (hittest == SCROLL_trackHitTest)
1036 if ((msg == WM_LBUTTONDOWN) || (msg == WM_SYSTIMER))
1038 SendMessageW( hwndOwner, vertical ? WM_VSCROLL : WM_HSCROLL,
1039 SB_LINEDOWN, (LPARAM)hwndCtl );
1042 SetSystemTimer( hwnd, SCROLL_TIMER, (msg == WM_LBUTTONDOWN) ?
1043 SCROLL_FIRST_DELAY : SCROLL_REPEAT_DELAY, NULL );
1045 else KillSystemTimer( hwnd, SCROLL_TIMER );
1049 if (msg == WM_LBUTTONDOWN)
1052 if (hittest == SCROLL_THUMB)
1054 UINT val = SCROLL_GetThumbVal( infoPtr, &rect, vertical,
1055 trackThumbPos + lastMousePos - lastClickPos );
1056 SendMessageW( hwndOwner, vertical ? WM_VSCROLL : WM_HSCROLL,
1057 MAKEWPARAM( SB_THUMBTRACK, val ), (LPARAM)hwndCtl );
1061 if (msg == WM_LBUTTONUP)
1063 hittest = SCROLL_trackHitTest;
1064 SCROLL_trackHitTest = SCROLL_NOWHERE; /* Terminate tracking */
1066 if (hittest == SCROLL_THUMB)
1068 UINT val = SCROLL_GetThumbVal( infoPtr, &rect, vertical,
1069 trackThumbPos + lastMousePos - lastClickPos );
1070 SendMessageW( hwndOwner, vertical ? WM_VSCROLL : WM_HSCROLL,
1071 MAKEWPARAM( SB_THUMBPOSITION, val ), (LPARAM)hwndCtl );
1073 /* SB_ENDSCROLL doesn't report thumb position */
1074 SendMessageW( hwndOwner, vertical ? WM_VSCROLL : WM_HSCROLL,
1075 SB_ENDSCROLL, (LPARAM)hwndCtl );
1077 /* Terminate tracking */
1078 SCROLL_TrackingWin = 0;
1081 ReleaseDC( hwnd, hdc );
1085 /***********************************************************************
1086 * SCROLL_TrackScrollBar
1088 * Track a mouse button press on a scroll-bar.
1089 * pt is in screen-coordinates for non-client scroll bars.
1091 void SCROLL_TrackScrollBar( HWND hwnd, INT scrollbar, POINT pt )
1094 INT xoffset = 0, yoffset = 0;
1096 if (scrollbar != SB_CTL)
1098 WND *wndPtr = WIN_GetPtr( hwnd );
1099 if (!wndPtr || wndPtr == WND_OTHER_PROCESS || wndPtr == WND_DESKTOP) return;
1100 xoffset = wndPtr->rectClient.left - wndPtr->rectWindow.left;
1101 yoffset = wndPtr->rectClient.top - wndPtr->rectWindow.top;
1102 WIN_ReleasePtr( wndPtr );
1103 ScreenToClient( hwnd, &pt );
1108 SCROLL_HandleScrollEvent( hwnd, scrollbar, WM_LBUTTONDOWN, pt );
1112 if (!GetMessageW( &msg, 0, 0, 0 )) break;
1113 if (CallMsgFilterW( &msg, MSGF_SCROLLBAR )) continue;
1114 if (msg.message == WM_LBUTTONUP ||
1115 msg.message == WM_MOUSEMOVE ||
1116 (msg.message == WM_SYSTIMER && msg.wParam == SCROLL_TIMER))
1118 pt.x = (short)LOWORD(msg.lParam) + xoffset;
1119 pt.y = (short)HIWORD(msg.lParam) + yoffset;
1120 SCROLL_HandleScrollEvent( hwnd, scrollbar, msg.message, pt );
1124 TranslateMessage( &msg );
1125 DispatchMessageW( &msg );
1127 if (!IsWindow( hwnd ))
1132 } while (msg.message != WM_LBUTTONUP && GetCapture() == hwnd);
1136 /***********************************************************************
1137 * SCROLL_CreateScrollBar
1139 * Create a scroll bar
1142 * hwnd [I] Handle of window with scrollbar(s)
1143 * lpCreate [I] The style and place of the scroll bar
1145 static void SCROLL_CreateScrollBar(HWND hwnd, LPCREATESTRUCTW lpCreate)
1147 LPSCROLLBAR_INFO info = SCROLL_GetInternalInfo(hwnd, SB_CTL, TRUE);
1150 TRACE("hwnd=%p lpCreate=%p\n", hwnd, lpCreate);
1152 if (lpCreate->style & WS_DISABLED)
1154 info->flags = ESB_DISABLE_BOTH;
1155 TRACE("Created WS_DISABLED scrollbar\n");
1159 if (lpCreate->style & (SBS_SIZEGRIP | SBS_SIZEBOX))
1161 if (lpCreate->style & SBS_SIZEBOXTOPLEFTALIGN)
1162 MoveWindow( hwnd, lpCreate->x, lpCreate->y, GetSystemMetrics(SM_CXVSCROLL)+1,
1163 GetSystemMetrics(SM_CYHSCROLL)+1, FALSE );
1164 else if(lpCreate->style & SBS_SIZEBOXBOTTOMRIGHTALIGN)
1165 MoveWindow( hwnd, lpCreate->x+lpCreate->cx-GetSystemMetrics(SM_CXVSCROLL)-1,
1166 lpCreate->y+lpCreate->cy-GetSystemMetrics(SM_CYHSCROLL)-1,
1167 GetSystemMetrics(SM_CXVSCROLL)+1,
1168 GetSystemMetrics(SM_CYHSCROLL)+1, FALSE );
1170 else if (lpCreate->style & SBS_VERT)
1172 if (lpCreate->style & SBS_LEFTALIGN)
1173 MoveWindow( hwnd, lpCreate->x, lpCreate->y,
1174 GetSystemMetrics(SM_CXVSCROLL)+1, lpCreate->cy, FALSE );
1175 else if (lpCreate->style & SBS_RIGHTALIGN)
1177 lpCreate->x+lpCreate->cx-GetSystemMetrics(SM_CXVSCROLL)-1,
1179 GetSystemMetrics(SM_CXVSCROLL)+1, lpCreate->cy, FALSE );
1183 if (lpCreate->style & SBS_TOPALIGN)
1184 MoveWindow( hwnd, lpCreate->x, lpCreate->y,
1185 lpCreate->cx, GetSystemMetrics(SM_CYHSCROLL)+1, FALSE );
1186 else if (lpCreate->style & SBS_BOTTOMALIGN)
1189 lpCreate->y+lpCreate->cy-GetSystemMetrics(SM_CYHSCROLL)-1,
1190 lpCreate->cx, GetSystemMetrics(SM_CYHSCROLL)+1, FALSE );
1195 /*************************************************************************
1196 * SCROLL_GetScrollInfo
1198 * Internal helper for the API function
1201 * hwnd [I] Handle of window with scrollbar(s)
1202 * nBar [I] One of SB_HORZ, SB_VERT, or SB_CTL
1203 * info [IO] fMask specifies which values to retrieve
1206 * FALSE if requested field not filled (f.i. scroll bar does not exist)
1208 static BOOL SCROLL_GetScrollInfo(HWND hwnd, INT nBar, LPSCROLLINFO info)
1210 LPSCROLLBAR_INFO infoPtr;
1212 /* handle invalid data structure */
1213 if (!SCROLL_ScrollInfoValid(info)
1214 || !(infoPtr = SCROLL_GetInternalInfo(hwnd, nBar, FALSE)))
1217 /* fill in the desired scroll info structure */
1218 if (info->fMask & SIF_PAGE) info->nPage = infoPtr->page;
1219 if (info->fMask & SIF_POS) info->nPos = infoPtr->curVal;
1220 if ((info->fMask & SIF_TRACKPOS) && (info->cbSize == sizeof(*info)))
1221 info->nTrackPos = (SCROLL_TrackingWin == WIN_GetFullHandle(hwnd)) ? SCROLL_TrackingVal : infoPtr->curVal;
1222 if (info->fMask & SIF_RANGE)
1224 info->nMin = infoPtr->minVal;
1225 info->nMax = infoPtr->maxVal;
1228 TRACE("cbSize %02x fMask %04x nMin %d nMax %d nPage %u nPos %d nTrackPos %d\n",
1229 info->cbSize, info->fMask, info->nMin, info->nMax, info->nPage,
1230 info->nPos, info->nTrackPos);
1232 return (info->fMask & SIF_ALL) != 0;
1236 /*************************************************************************
1237 * SCROLL_GetScrollBarInfo
1239 * Internal helper for the API function
1242 * hwnd [I] Handle of window with scrollbar(s)
1243 * idObject [I] One of OBJID_CLIENT, OBJID_HSCROLL, or OBJID_VSCROLL
1244 * info [IO] cbSize specifies the size of the structure
1249 static BOOL SCROLL_GetScrollBarInfo(HWND hwnd, LONG idObject, LPSCROLLBARINFO info)
1251 LPSCROLLBAR_INFO infoPtr;
1254 DWORD style = GetWindowLongW(hwnd, GWL_STYLE);
1260 case OBJID_CLIENT: nBar = SB_CTL; break;
1261 case OBJID_HSCROLL: nBar = SB_HORZ; break;
1262 case OBJID_VSCROLL: nBar = SB_VERT; break;
1263 default: return FALSE;
1266 /* handle invalid data structure */
1267 if (info->cbSize != sizeof(*info))
1270 SCROLL_GetScrollBarRect(hwnd, nBar, &info->rcScrollBar, &nDummy,
1271 &info->dxyLineButton, &info->xyThumbTop);
1272 /* rcScrollBar needs to be in screen coordinates */
1273 GetWindowRect(hwnd, &rect);
1274 OffsetRect(&info->rcScrollBar, rect.left, rect.top);
1276 info->xyThumbBottom = info->xyThumbTop + info->dxyLineButton;
1278 infoPtr = SCROLL_GetInternalInfo(hwnd, nBar, TRUE);
1282 /* Scroll bar state */
1283 info->rgstate[0] = 0;
1284 if ((nBar == SB_HORZ && !(style & WS_HSCROLL))
1285 || (nBar == SB_VERT && !(style & WS_VSCROLL)))
1286 info->rgstate[0] |= STATE_SYSTEM_INVISIBLE;
1287 if (infoPtr->minVal >= infoPtr->maxVal - max(infoPtr->page - 1, 0))
1289 if (!(info->rgstate[0] & STATE_SYSTEM_INVISIBLE))
1290 info->rgstate[0] |= STATE_SYSTEM_UNAVAILABLE;
1292 info->rgstate[0] |= STATE_SYSTEM_OFFSCREEN;
1294 if (nBar == SB_CTL && !IsWindowEnabled(hwnd))
1295 info->rgstate[0] |= STATE_SYSTEM_UNAVAILABLE;
1297 pressed = ((nBar == SB_VERT) == SCROLL_trackVertical && GetCapture() == hwnd);
1299 /* Top/left arrow button state. MSDN says top/right, but I don't believe it */
1300 info->rgstate[1] = 0;
1301 if (pressed && SCROLL_trackHitTest == SCROLL_TOP_ARROW)
1302 info->rgstate[1] |= STATE_SYSTEM_PRESSED;
1303 if (infoPtr->flags & ESB_DISABLE_LTUP)
1304 info->rgstate[1] |= STATE_SYSTEM_UNAVAILABLE;
1306 /* Page up/left region state. MSDN says up/right, but I don't believe it */
1307 info->rgstate[2] = 0;
1308 if (infoPtr->curVal == infoPtr->minVal)
1309 info->rgstate[2] |= STATE_SYSTEM_INVISIBLE;
1310 if (pressed && SCROLL_trackHitTest == SCROLL_TOP_RECT)
1311 info->rgstate[2] |= STATE_SYSTEM_PRESSED;
1314 info->rgstate[3] = 0;
1315 if (pressed && SCROLL_trackHitTest == SCROLL_THUMB)
1316 info->rgstate[3] |= STATE_SYSTEM_PRESSED;
1318 /* Page down/right region state. MSDN says down/left, but I don't believe it */
1319 info->rgstate[4] = 0;
1320 if (infoPtr->curVal >= infoPtr->maxVal - 1)
1321 info->rgstate[4] |= STATE_SYSTEM_INVISIBLE;
1322 if (pressed && SCROLL_trackHitTest == SCROLL_BOTTOM_RECT)
1323 info->rgstate[4] |= STATE_SYSTEM_PRESSED;
1325 /* Bottom/right arrow button state. MSDN says bottom/left, but I don't believe it */
1326 info->rgstate[5] = 0;
1327 if (pressed && SCROLL_trackHitTest == SCROLL_BOTTOM_ARROW)
1328 info->rgstate[5] |= STATE_SYSTEM_PRESSED;
1329 if (infoPtr->flags & ESB_DISABLE_RTDN)
1330 info->rgstate[5] |= STATE_SYSTEM_UNAVAILABLE;
1336 /*************************************************************************
1337 * SCROLL_GetScrollPos
1339 * Internal helper for the API function
1342 * hwnd [I] Handle of window with scrollbar(s)
1343 * nBar [I] One of SB_HORZ, SB_VERT, or SB_CTL
1345 static INT SCROLL_GetScrollPos(HWND hwnd, INT nBar)
1347 LPSCROLLBAR_INFO infoPtr = SCROLL_GetInternalInfo(hwnd, nBar, FALSE);
1348 return infoPtr ? infoPtr->curVal: 0;
1352 /*************************************************************************
1353 * SCROLL_GetScrollRange
1355 * Internal helper for the API function
1358 * hwnd [I] Handle of window with scrollbar(s)
1359 * nBar [I] One of SB_HORZ, SB_VERT, or SB_CTL
1360 * lpMin [O] Where to store minimum value
1361 * lpMax [O] Where to store maximum value
1367 static BOOL SCROLL_GetScrollRange(HWND hwnd, INT nBar, LPINT lpMin, LPINT lpMax)
1369 LPSCROLLBAR_INFO infoPtr = SCROLL_GetInternalInfo(hwnd, nBar, FALSE);
1371 if (lpMin) *lpMin = infoPtr ? infoPtr->minVal : 0;
1372 if (lpMax) *lpMax = infoPtr ? infoPtr->maxVal : 0;
1378 /*************************************************************************
1379 * SCROLL_SetScrollRange
1382 * hwnd [I] Handle of window with scrollbar(s)
1383 * nBar [I] One of SB_HORZ, SB_VERT, or SB_CTL
1384 * lpMin [I] Minimum value
1385 * lpMax [I] Maximum value
1388 static BOOL SCROLL_SetScrollRange(HWND hwnd, INT nBar, INT minVal, INT maxVal)
1390 LPSCROLLBAR_INFO infoPtr = SCROLL_GetInternalInfo(hwnd, nBar, FALSE);
1392 TRACE("hwnd=%p nBar=%d min=%d max=%d\n", hwnd, nBar, minVal, maxVal);
1396 infoPtr->minVal = minVal;
1397 infoPtr->maxVal = maxVal;
1403 /***********************************************************************
1404 * ScrollBarWndProc_common
1406 LRESULT ScrollBarWndProc_common( HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam, BOOL unicode )
1408 if (!IsWindow( hwnd )) return 0;
1413 SCROLL_CreateScrollBar(hwnd, (LPCREATESTRUCTW)lParam);
1418 SCROLLBAR_INFO *infoPtr;
1419 if ((infoPtr = SCROLL_GetInternalInfo( hwnd, SB_CTL, FALSE )))
1421 infoPtr->flags = wParam ? ESB_ENABLE_BOTH : ESB_DISABLE_BOTH;
1422 SCROLL_RefreshScrollBar(hwnd, SB_CTL, TRUE, TRUE);
1427 case WM_LBUTTONDBLCLK:
1428 case WM_LBUTTONDOWN:
1431 pt.x = (short)LOWORD(lParam);
1432 pt.y = (short)HIWORD(lParam);
1433 SCROLL_TrackScrollBar( hwnd, SB_CTL, pt );
1441 pt.x = (short)LOWORD(lParam);
1442 pt.y = (short)HIWORD(lParam);
1443 SCROLL_HandleScrollEvent( hwnd, SB_CTL, message, pt );
1448 SCROLL_HandleKbdEvent(hwnd, wParam, lParam);
1457 /* Create a caret when a ScrollBar get focus */
1459 int arrowSize, thumbSize, thumbPos, vertical;
1460 vertical = SCROLL_GetScrollBarRect( hwnd, SB_CTL, &rect,
1461 &arrowSize, &thumbSize, &thumbPos );
1464 CreateCaret(hwnd, (HBITMAP)1, thumbSize-2, rect.bottom-rect.top-2);
1465 SetCaretPos(thumbPos+1, rect.top+1);
1469 CreateCaret(hwnd, (HBITMAP)1, rect.right-rect.left-2,thumbSize-2);
1470 SetCaretPos(rect.top+1, thumbPos+1);
1479 int arrowSize, thumbSize, thumbPos, vertical;
1480 vertical = SCROLL_GetScrollBarRect( hwnd, SB_CTL, &rect,&arrowSize, &thumbSize, &thumbPos );
1482 rect.left=thumbPos+1;
1483 rect.right=rect.left+thumbSize;
1487 rect.top=thumbPos+1;
1488 rect.bottom=rect.top+thumbSize;
1491 InvalidateRect(hwnd,&rect,0);
1500 return DLGC_WANTARROWS; /* Windows returns this value */
1505 HDC hdc = wParam ? (HDC)wParam : BeginPaint(hwnd, &ps);
1506 if (GetWindowLongW( hwnd, GWL_STYLE ) & SBS_SIZEGRIP)
1508 SCROLL_DrawSizeGrip( hwnd, hdc);
1510 else if (GetWindowLongW( hwnd, GWL_STYLE ) & SBS_SIZEBOX)
1513 GetClientRect( hwnd, &rc );
1514 FillRect( hdc, &rc, GetSysColorBrush(COLOR_SCROLLBAR) );
1517 SCROLL_DrawScrollBar( hwnd, hdc, SB_CTL, TRUE, TRUE );
1518 if (!wParam) EndPaint(hwnd, &ps);
1523 return SetScrollPos( hwnd, SB_CTL, wParam, (BOOL)lParam );
1526 return SCROLL_GetScrollPos(hwnd, SB_CTL);
1528 case SBM_SETRANGEREDRAW:
1531 INT oldPos = SCROLL_GetScrollPos( hwnd, SB_CTL );
1532 SCROLL_SetScrollRange( hwnd, SB_CTL, wParam, lParam );
1533 if (message == SBM_SETRANGEREDRAW)
1534 SCROLL_RefreshScrollBar( hwnd, SB_CTL, TRUE, TRUE );
1535 if (oldPos != SCROLL_GetScrollPos( hwnd, SB_CTL )) return oldPos;
1540 return SCROLL_GetScrollRange(hwnd, SB_CTL, (LPINT)wParam, (LPINT)lParam);
1542 case SBM_ENABLE_ARROWS:
1543 return EnableScrollBar( hwnd, SB_CTL, wParam );
1545 case SBM_SETSCROLLINFO:
1546 return SCROLL_SetScrollInfo( hwnd, SB_CTL, (SCROLLINFO *)lParam, wParam );
1548 case SBM_GETSCROLLINFO:
1549 return SCROLL_GetScrollInfo(hwnd, SB_CTL, (SCROLLINFO *)lParam);
1551 case SBM_GETSCROLLBARINFO:
1552 return SCROLL_GetScrollBarInfo(hwnd, OBJID_CLIENT, (SCROLLBARINFO *)lParam);
1561 ERR("unknown Win32 msg %04x wp=%08lx lp=%08lx\n",
1562 message, wParam, lParam );
1566 if (message >= WM_USER)
1567 WARN("unknown msg %04x wp=%04lx lp=%08lx\n",
1568 message, wParam, lParam );
1570 return DefWindowProcW( hwnd, message, wParam, lParam );
1572 return DefWindowProcA( hwnd, message, wParam, lParam );
1578 /*************************************************************************
1579 * SetScrollInfo (USER32.@)
1581 * SetScrollInfo can be used to set the position, upper bound,
1582 * lower bound, and page size of a scrollbar control.
1585 * hwnd [I] Handle of window with scrollbar(s)
1586 * nBar [I] One of SB_HORZ, SB_VERT, or SB_CTL
1587 * info [I] Specifies what to change and new values
1588 * bRedraw [I] Should scrollbar be redrawn afterwards?
1591 * Scrollbar position
1594 * For 100 lines of text to be displayed in a window of 25 lines,
1595 * one would for instance use info->nMin=0, info->nMax=75
1596 * (corresponding to the 76 different positions of the window on
1597 * the text), and info->nPage=25.
1599 INT WINAPI SetScrollInfo(HWND hwnd, INT nBar, const SCROLLINFO *info, BOOL bRedraw)
1601 TRACE("hwnd=%p nBar=%d info=%p, bRedraw=%d\n", hwnd, nBar, info, bRedraw);
1603 /* Refer SB_CTL requests to the window */
1605 return SendMessageW(hwnd, SBM_SETSCROLLINFO, bRedraw, (LPARAM)info);
1607 return SCROLL_SetScrollInfo( hwnd, nBar, info, bRedraw );
1610 static INT SCROLL_SetScrollInfo( HWND hwnd, INT nBar, LPCSCROLLINFO info, BOOL bRedraw )
1612 /* Update the scrollbar state and set action flags according to
1613 * what has to be done graphics wise. */
1615 SCROLLBAR_INFO *infoPtr;
1619 /* handle invalid data structure */
1620 if (!SCROLL_ScrollInfoValid(info)
1621 || !(infoPtr = SCROLL_GetInternalInfo(hwnd, nBar, TRUE)))
1624 if (TRACE_ON(scroll))
1626 TRACE("hwnd=%p bar=%d", hwnd, nBar);
1627 if (info->fMask & SIF_PAGE) TRACE( " page=%d", info->nPage );
1628 if (info->fMask & SIF_POS) TRACE( " pos=%d", info->nPos );
1629 if (info->fMask & SIF_RANGE) TRACE( " min=%d max=%d", info->nMin, info->nMax );
1633 /* Set the page size */
1635 if (info->fMask & SIF_PAGE)
1637 if( infoPtr->page != info->nPage )
1639 infoPtr->page = info->nPage;
1640 action |= SA_SSI_REFRESH;
1644 /* Set the scroll pos */
1646 if (info->fMask & SIF_POS)
1648 if( infoPtr->curVal != info->nPos )
1650 infoPtr->curVal = info->nPos;
1651 action |= SA_SSI_REFRESH;
1655 /* Set the scroll range */
1657 if (info->fMask & SIF_RANGE)
1659 /* Invalid range -> range is set to (0,0) */
1660 if ((info->nMin > info->nMax) ||
1661 ((UINT)(info->nMax - info->nMin) >= 0x80000000))
1663 action |= SA_SSI_REFRESH;
1664 infoPtr->minVal = 0;
1665 infoPtr->maxVal = 0;
1669 if( infoPtr->minVal != info->nMin ||
1670 infoPtr->maxVal != info->nMax )
1672 action |= SA_SSI_REFRESH;
1673 infoPtr->minVal = info->nMin;
1674 infoPtr->maxVal = info->nMax;
1679 /* Make sure the page size is valid */
1680 if (infoPtr->page < 0) infoPtr->page = 0;
1681 else if (infoPtr->page > infoPtr->maxVal - infoPtr->minVal + 1 )
1682 infoPtr->page = infoPtr->maxVal - infoPtr->minVal + 1;
1684 /* Make sure the pos is inside the range */
1686 if (infoPtr->curVal < infoPtr->minVal)
1687 infoPtr->curVal = infoPtr->minVal;
1688 else if (infoPtr->curVal > infoPtr->maxVal - max( infoPtr->page-1, 0 ))
1689 infoPtr->curVal = infoPtr->maxVal - max( infoPtr->page-1, 0 );
1691 TRACE(" new values: page=%d pos=%d min=%d max=%d\n",
1692 infoPtr->page, infoPtr->curVal,
1693 infoPtr->minVal, infoPtr->maxVal );
1695 /* don't change the scrollbar state if SetScrollInfo
1696 * is just called with SIF_DISABLENOSCROLL
1698 if(!(info->fMask & SIF_ALL)) goto done;
1700 /* Check if the scrollbar should be hidden or disabled */
1702 if (info->fMask & (SIF_RANGE | SIF_PAGE | SIF_DISABLENOSCROLL))
1704 new_flags = infoPtr->flags;
1705 if (infoPtr->minVal >= infoPtr->maxVal - max( infoPtr->page-1, 0 ))
1707 /* Hide or disable scroll-bar */
1708 if (info->fMask & SIF_DISABLENOSCROLL)
1710 new_flags = ESB_DISABLE_BOTH;
1711 action |= SA_SSI_REFRESH;
1713 else if ((nBar != SB_CTL) && (action & SA_SSI_REFRESH))
1715 action = SA_SSI_HIDE;
1718 else /* Show and enable scroll-bar only if no page only changed. */
1719 if (info->fMask != SIF_PAGE)
1721 new_flags = ESB_ENABLE_BOTH;
1722 if ((nBar != SB_CTL) && ( (action & SA_SSI_REFRESH) ))
1723 action |= SA_SSI_SHOW;
1726 if (infoPtr->flags != new_flags) /* check arrow flags */
1728 infoPtr->flags = new_flags;
1729 action |= SA_SSI_REPAINT_ARROWS;
1734 if( action & SA_SSI_HIDE )
1735 SCROLL_ShowScrollBar( hwnd, nBar, FALSE, FALSE );
1738 if( action & SA_SSI_SHOW )
1739 if( SCROLL_ShowScrollBar( hwnd, nBar, TRUE, TRUE ) )
1740 return infoPtr->curVal; /* SetWindowPos() already did the painting */
1743 SCROLL_RefreshScrollBar( hwnd, nBar, TRUE, TRUE );
1744 else if( action & SA_SSI_REPAINT_ARROWS )
1745 SCROLL_RefreshScrollBar( hwnd, nBar, TRUE, FALSE );
1748 /* Return current position */
1749 return infoPtr->curVal;
1753 /*************************************************************************
1754 * GetScrollInfo (USER32.@)
1756 * GetScrollInfo can be used to retrieve the position, upper bound,
1757 * lower bound, and page size of a scrollbar control.
1760 * hwnd [I] Handle of window with scrollbar(s)
1761 * nBar [I] One of SB_HORZ, SB_VERT, or SB_CTL
1762 * info [IO] fMask specifies which values to retrieve
1765 * TRUE if SCROLLINFO is filled
1766 * ( if nBar is SB_CTL, GetScrollInfo returns TRUE even if nothing
1769 BOOL WINAPI GetScrollInfo(HWND hwnd, INT nBar, LPSCROLLINFO info)
1771 TRACE("hwnd=%p nBar=%d info=%p\n", hwnd, nBar, info);
1773 /* Refer SB_CTL requests to the window */
1776 SendMessageW(hwnd, SBM_GETSCROLLINFO, 0, (LPARAM)info);
1779 return SCROLL_GetScrollInfo(hwnd, nBar, info);
1783 /*************************************************************************
1784 * GetScrollBarInfo (USER32.@)
1786 * GetScrollBarInfo can be used to retrieve information about a scrollbar
1790 * hwnd [I] Handle of window with scrollbar(s)
1791 * idObject [I] One of OBJID_CLIENT, OBJID_HSCROLL, or OBJID_VSCROLL
1792 * info [IO] cbSize specifies the size of SCROLLBARINFO
1797 BOOL WINAPI GetScrollBarInfo(HWND hwnd, LONG idObject, LPSCROLLBARINFO info)
1799 TRACE("hwnd=%p idObject=%d info=%p\n", hwnd, idObject, info);
1801 /* Refer OBJID_CLIENT requests to the window */
1802 if (idObject == OBJID_CLIENT)
1803 return SendMessageW(hwnd, SBM_GETSCROLLBARINFO, 0, (LPARAM)info);
1805 return SCROLL_GetScrollBarInfo(hwnd, idObject, info);
1809 /*************************************************************************
1810 * SetScrollPos (USER32.@)
1812 * Sets the current position of the scroll thumb.
1815 * hwnd [I] Handle of window with scrollbar(s)
1816 * nBar [I] One of SB_HORZ, SB_VERT, or SB_CTL
1817 * nPos [I] New value
1818 * bRedraw [I] Should scrollbar be redrawn afterwards?
1821 * Success: Scrollbar position
1825 * Note the ambiguity when 0 is returned. Use GetLastError
1826 * to make sure there was an error (and to know which one).
1828 INT WINAPI SetScrollPos( HWND hwnd, INT nBar, INT nPos, BOOL bRedraw)
1831 SCROLLBAR_INFO *infoPtr;
1834 if (!(infoPtr = SCROLL_GetInternalInfo( hwnd, nBar, FALSE ))) return 0;
1835 oldPos = infoPtr->curVal;
1836 info.cbSize = sizeof(info);
1838 info.fMask = SIF_POS;
1839 SetScrollInfo( hwnd, nBar, &info, bRedraw );
1844 /*************************************************************************
1845 * GetScrollPos (USER32.@)
1847 * Gets the current position of the scroll thumb.
1850 * hwnd [I] Handle of window with scrollbar(s)
1851 * nBar [I] One of SB_HORZ, SB_VERT, or SB_CTL
1854 * Success: Current position
1858 * There is ambiguity when 0 is returned. Use GetLastError
1859 * to make sure there was an error (and to know which one).
1861 INT WINAPI GetScrollPos(HWND hwnd, INT nBar)
1863 TRACE("hwnd=%p nBar=%d\n", hwnd, nBar);
1865 /* Refer SB_CTL requests to the window */
1867 return SendMessageW(hwnd, SBM_GETPOS, 0, 0);
1869 return SCROLL_GetScrollPos(hwnd, nBar);
1873 /*************************************************************************
1874 * SetScrollRange (USER32.@)
1875 * The SetScrollRange function sets the minimum and maximum scroll box positions
1876 * If nMinPos and nMaxPos is the same value, the scroll bar will hide
1878 * Sets the range of the scroll bar.
1881 * hwnd [I] Handle of window with scrollbar(s)
1882 * nBar [I] One of SB_HORZ, SB_VERT, or SB_CTL
1883 * minVal [I] New minimum value
1884 * maxVal [I] New Maximum value
1885 * bRedraw [I] Should scrollbar be redrawn afterwards?
1891 BOOL WINAPI SetScrollRange(HWND hwnd, INT nBar, INT minVal, INT maxVal, BOOL bRedraw)
1895 TRACE("hwnd=%p nBar=%d min=%d max=%d, bRedraw=%d\n", hwnd, nBar, minVal, maxVal, bRedraw);
1897 info.cbSize = sizeof(info);
1898 info.fMask = SIF_RANGE;
1901 SetScrollInfo( hwnd, nBar, &info, bRedraw );
1906 /*************************************************************************
1907 * SCROLL_SetNCSbState
1909 * Updates both scrollbars at the same time. Used by MDI CalcChildScroll().
1911 INT SCROLL_SetNCSbState(HWND hwnd, int vMin, int vMax, int vPos,
1912 int hMin, int hMax, int hPos)
1914 SCROLLINFO vInfo, hInfo;
1916 vInfo.cbSize = hInfo.cbSize = sizeof(SCROLLINFO);
1923 vInfo.fMask = hInfo.fMask = SIF_RANGE | SIF_POS;
1925 SCROLL_SetScrollInfo( hwnd, SB_VERT, &vInfo, TRUE );
1926 SCROLL_SetScrollInfo( hwnd, SB_HORZ, &hInfo, TRUE );
1932 /*************************************************************************
1933 * GetScrollRange (USER32.@)
1935 * Gets the range of the scroll bar.
1938 * hwnd [I] Handle of window with scrollbar(s)
1939 * nBar [I] One of SB_HORZ, SB_VERT, or SB_CTL
1940 * lpMin [O] Where to store minimum value
1941 * lpMax [O] Where to store maximum value
1944 * TRUE if values is filled
1946 BOOL WINAPI GetScrollRange(HWND hwnd, INT nBar, LPINT lpMin, LPINT lpMax)
1948 TRACE("hwnd=%p nBar=%d lpMin=%p lpMax=%p\n", hwnd, nBar, lpMin, lpMax);
1950 /* Refer SB_CTL requests to the window */
1952 SendMessageW(hwnd, SBM_GETRANGE, (WPARAM)lpMin, (LPARAM)lpMax);
1954 SCROLL_GetScrollRange(hwnd, nBar, lpMin, lpMax);
1960 /*************************************************************************
1961 * SCROLL_ShowScrollBar()
1963 * Back-end for ShowScrollBar(). Returns FALSE if no action was taken.
1965 static BOOL SCROLL_ShowScrollBar( HWND hwnd, INT nBar, BOOL fShowH, BOOL fShowV )
1967 ULONG old_style, set_bits = 0, clear_bits = 0;
1969 TRACE("hwnd=%p bar=%d horz=%d, vert=%d\n", hwnd, nBar, fShowH, fShowV );
1974 ShowWindow( hwnd, fShowH ? SW_SHOW : SW_HIDE );
1979 if (fShowH) set_bits |= WS_HSCROLL;
1980 else clear_bits |= WS_HSCROLL;
1981 if( nBar == SB_HORZ ) break;
1984 if (fShowV) set_bits |= WS_VSCROLL;
1985 else clear_bits |= WS_VSCROLL;
1989 return FALSE; /* Nothing to do! */
1992 old_style = WIN_SetStyle( hwnd, set_bits, clear_bits );
1993 if ((old_style & clear_bits) != 0 || (old_style & set_bits) != set_bits)
1995 /* frame has been changed, let the window redraw itself */
1996 SetWindowPos( hwnd, 0, 0, 0, 0, 0, SWP_NOSIZE | SWP_NOMOVE
1997 | SWP_NOACTIVATE | SWP_NOZORDER | SWP_FRAMECHANGED );
2000 return FALSE; /* no frame changes */
2004 /*************************************************************************
2005 * ShowScrollBar (USER32.@)
2007 * Shows or hides the scroll bar.
2010 * hwnd [I] Handle of window with scrollbar(s)
2011 * nBar [I] One of SB_HORZ, SB_VERT, or SB_CTL
2012 * fShow [I] TRUE = show, FALSE = hide
2018 BOOL WINAPI ShowScrollBar(HWND hwnd, INT nBar, BOOL fShow)
2023 SCROLL_ShowScrollBar( hwnd, nBar, (nBar == SB_VERT) ? 0 : fShow,
2024 (nBar == SB_HORZ) ? 0 : fShow );
2029 /*************************************************************************
2030 * EnableScrollBar (USER32.@)
2032 * Enables or disables the scroll bars.
2034 BOOL WINAPI EnableScrollBar( HWND hwnd, UINT nBar, UINT flags )
2037 SCROLLBAR_INFO *infoPtr;
2039 flags &= ESB_DISABLE_BOTH;
2041 if (nBar == SB_BOTH)
2043 if (!(infoPtr = SCROLL_GetInternalInfo( hwnd, SB_VERT, TRUE ))) return FALSE;
2044 if (!(bFineWithMe = (infoPtr->flags == flags)) )
2046 infoPtr->flags = flags;
2047 SCROLL_RefreshScrollBar( hwnd, SB_VERT, TRUE, TRUE );
2054 if (!(infoPtr = SCROLL_GetInternalInfo( hwnd, nBar, TRUE ))) return FALSE;
2055 if (bFineWithMe && infoPtr->flags == flags) return FALSE;
2056 infoPtr->flags = flags;
2058 if (nBar == SB_CTL && (flags == ESB_DISABLE_BOTH || flags == ESB_ENABLE_BOTH))
2059 EnableWindow(hwnd, flags == ESB_ENABLE_BOTH);
2061 SCROLL_RefreshScrollBar( hwnd, nBar, TRUE, TRUE );