push 5f793418e14616d83a4fb368b755a8821b49820b
[wine/hacks.git] / dlls / user32 / scroll.c
blob52c350cdff009df8bf31d6ecc70825718ff8778f
1 /*
2 * Scrollbar control
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
21 * NOTES
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.
31 #include <stdarg.h>
33 #include "windef.h"
34 #include "winbase.h"
35 #include "wingdi.h"
36 #include "wine/winuser16.h"
37 #include "controls.h"
38 #include "win.h"
39 #include "wine/debug.h"
40 #include "user_private.h"
42 WINE_DEFAULT_DEBUG_CHANNEL(scroll);
44 /* data for a single scroll bar */
45 typedef struct
47 INT curVal; /* Current scroll-bar value */
48 INT minVal; /* Minimum scroll-bar value */
49 INT maxVal; /* Maximum scroll-bar value */
50 INT page; /* Page size of scroll bar (Win32) */
51 UINT flags; /* EnableScrollBar flags */
52 } SCROLLBAR_INFO, *LPSCROLLBAR_INFO;
54 /* data for window that has (one or two) scroll bars */
55 typedef struct
57 SCROLLBAR_INFO horz;
58 SCROLLBAR_INFO vert;
59 } WINSCROLLBAR_INFO, *LPWINSCROLLBAR_INFO;
61 /* Minimum size of the rectangle between the arrows */
62 #define SCROLL_MIN_RECT 4
64 /* Minimum size of the thumb in pixels */
65 #define SCROLL_MIN_THUMB 6
67 /* Overlap between arrows and thumb */
68 #define SCROLL_ARROW_THUMB_OVERLAP 0
70 /* Delay (in ms) before first repetition when holding the button down */
71 #define SCROLL_FIRST_DELAY 200
73 /* Delay (in ms) between scroll repetitions */
74 #define SCROLL_REPEAT_DELAY 50
76 /* Scroll timer id */
77 #define SCROLL_TIMER 0
79 /* Scroll-bar hit testing */
80 enum SCROLL_HITTEST
82 SCROLL_NOWHERE, /* Outside the scroll bar */
83 SCROLL_TOP_ARROW, /* Top or left arrow */
84 SCROLL_TOP_RECT, /* Rectangle between the top arrow and the thumb */
85 SCROLL_THUMB, /* Thumb rectangle */
86 SCROLL_BOTTOM_RECT, /* Rectangle between the thumb and the bottom arrow */
87 SCROLL_BOTTOM_ARROW /* Bottom or right arrow */
90 /* What to do after SCROLL_SetScrollInfo() */
91 #define SA_SSI_HIDE 0x0001
92 #define SA_SSI_SHOW 0x0002
93 #define SA_SSI_REFRESH 0x0004
94 #define SA_SSI_REPAINT_ARROWS 0x0008
96 /* Thumb-tracking info */
97 static HWND SCROLL_TrackingWin = 0;
98 static INT SCROLL_TrackingBar = 0;
99 static INT SCROLL_TrackingPos = 0;
100 static INT SCROLL_TrackingVal = 0;
101 /* Hit test code of the last button-down event */
102 static enum SCROLL_HITTEST SCROLL_trackHitTest;
103 static BOOL SCROLL_trackVertical;
105 /* Is the moving thumb being displayed? */
106 static BOOL SCROLL_MovingThumb = FALSE;
108 /* Local functions */
109 static BOOL SCROLL_ShowScrollBar( HWND hwnd, INT nBar,
110 BOOL fShowH, BOOL fShowV );
111 static INT SCROLL_SetScrollInfo( HWND hwnd, INT nBar,
112 const SCROLLINFO *info, BOOL bRedraw );
113 static void SCROLL_DrawInterior_9x( HWND hwnd, HDC hdc, INT nBar,
114 RECT *rect, INT arrowSize,
115 INT thumbSize, INT thumbPos,
116 UINT flags, BOOL vertical,
117 BOOL top_selected, BOOL bottom_selected );
118 static LRESULT WINAPI ScrollBarWndProcA( HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam );
119 static LRESULT WINAPI ScrollBarWndProcW( HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam );
122 /*********************************************************************
123 * scrollbar class descriptor
125 static const WCHAR scrollbarW[] = {'S','c','r','o','l','l','B','a','r',0};
126 const struct builtin_class_descr SCROLL_builtin_class =
128 scrollbarW, /* name */
129 CS_DBLCLKS | CS_VREDRAW | CS_HREDRAW | CS_PARENTDC, /* style */
130 ScrollBarWndProcA, /* procA */
131 ScrollBarWndProcW, /* procW */
132 sizeof(SCROLLBAR_INFO), /* extra */
133 IDC_ARROW, /* cursor */
134 0 /* brush */
137 /***********************************************************************
138 * SCROLL_ScrollInfoValid
140 * Determine if the supplied SCROLLINFO struct is valid.
141 * info [in] The SCROLLINFO struct to be tested
143 static inline BOOL SCROLL_ScrollInfoValid( LPCSCROLLINFO info )
145 return !(info->fMask & ~(SIF_ALL | SIF_DISABLENOSCROLL)
146 || (info->cbSize != sizeof(*info)
147 && info->cbSize != sizeof(*info) - sizeof(info->nTrackPos)));
151 /***********************************************************************
152 * SCROLL_GetInternalInfo
154 * Returns pointer to internal SCROLLBAR_INFO structure for nBar
155 * or NULL if failed (f.i. scroll bar does not exist yet)
156 * If alloc is TRUE and the struct does not exist yet, create it.
158 static SCROLLBAR_INFO *SCROLL_GetInternalInfo( HWND hwnd, INT nBar, BOOL alloc )
160 SCROLLBAR_INFO *infoPtr = NULL;
161 WND *wndPtr = WIN_GetPtr( hwnd );
163 if (!wndPtr || wndPtr == WND_OTHER_PROCESS || wndPtr == WND_DESKTOP) return NULL;
164 switch(nBar)
166 case SB_HORZ:
167 if (wndPtr->pScroll) infoPtr = &((LPWINSCROLLBAR_INFO)wndPtr->pScroll)->horz;
168 break;
169 case SB_VERT:
170 if (wndPtr->pScroll) infoPtr = &((LPWINSCROLLBAR_INFO)wndPtr->pScroll)->vert;
171 break;
172 case SB_CTL:
173 infoPtr = (SCROLLBAR_INFO *)wndPtr->wExtra;
174 break;
175 case SB_BOTH:
176 WARN("with SB_BOTH\n");
177 break;
180 if (!infoPtr && alloc)
182 WINSCROLLBAR_INFO *winInfoPtr;
184 if (nBar != SB_HORZ && nBar != SB_VERT)
185 WARN("Cannot initialize nBar=%d\n",nBar);
186 else if ((winInfoPtr = HeapAlloc( GetProcessHeap(), 0, sizeof(WINSCROLLBAR_INFO) )))
188 /* Set default values */
189 winInfoPtr->horz.minVal = 0;
190 winInfoPtr->horz.curVal = 0;
191 winInfoPtr->horz.page = 0;
192 /* From MSDN and our own tests:
193 * max for a standard scroll bar is 100 by default. */
194 winInfoPtr->horz.maxVal = 100;
195 winInfoPtr->horz.flags = ESB_ENABLE_BOTH;
196 winInfoPtr->vert = winInfoPtr->horz;
197 wndPtr->pScroll = winInfoPtr;
198 infoPtr = nBar == SB_HORZ ? &winInfoPtr->horz : &winInfoPtr->vert;
201 WIN_ReleasePtr( wndPtr );
202 return infoPtr;
206 /***********************************************************************
207 * SCROLL_GetScrollBarRect
209 * Compute the scroll bar rectangle, in drawing coordinates (i.e. client
210 * coords for SB_CTL, window coords for SB_VERT and SB_HORZ).
211 * 'arrowSize' returns the width or height of an arrow (depending on
212 * the orientation of the scrollbar), 'thumbSize' returns the size of
213 * the thumb, and 'thumbPos' returns the position of the thumb
214 * relative to the left or to the top.
215 * Return TRUE if the scrollbar is vertical, FALSE if horizontal.
217 static BOOL SCROLL_GetScrollBarRect( HWND hwnd, INT nBar, RECT *lprect,
218 INT *arrowSize, INT *thumbSize,
219 INT *thumbPos )
221 INT pixels;
222 BOOL vertical;
223 WND *wndPtr = WIN_GetPtr( hwnd );
225 if (!wndPtr || wndPtr == WND_OTHER_PROCESS || wndPtr == WND_DESKTOP) return FALSE;
227 switch(nBar)
229 case SB_HORZ:
230 lprect->left = wndPtr->rectClient.left - wndPtr->rectWindow.left;
231 lprect->top = wndPtr->rectClient.bottom - wndPtr->rectWindow.top;
232 lprect->right = wndPtr->rectClient.right - wndPtr->rectWindow.left;
233 lprect->bottom = lprect->top + GetSystemMetrics(SM_CYHSCROLL);
234 if(wndPtr->dwStyle & WS_VSCROLL)
235 lprect->right++;
236 vertical = FALSE;
237 break;
239 case SB_VERT:
240 if((wndPtr->dwExStyle & WS_EX_LEFTSCROLLBAR) != 0)
241 lprect->left = wndPtr->rectClient.left - wndPtr->rectWindow.left - GetSystemMetrics(SM_CXVSCROLL);
242 else
243 lprect->left = wndPtr->rectClient.right - wndPtr->rectWindow.left;
244 lprect->top = wndPtr->rectClient.top - wndPtr->rectWindow.top;
245 lprect->right = lprect->left + GetSystemMetrics(SM_CXVSCROLL);
246 lprect->bottom = wndPtr->rectClient.bottom - wndPtr->rectWindow.top;
247 if(wndPtr->dwStyle & WS_HSCROLL)
248 lprect->bottom++;
249 vertical = TRUE;
250 break;
252 case SB_CTL:
253 GetClientRect( hwnd, lprect );
254 vertical = ((wndPtr->dwStyle & SBS_VERT) != 0);
255 break;
257 default:
258 WIN_ReleasePtr( wndPtr );
259 return FALSE;
262 if (vertical) pixels = lprect->bottom - lprect->top;
263 else pixels = lprect->right - lprect->left;
265 if (pixels <= 2*GetSystemMetrics(SM_CXVSCROLL) + SCROLL_MIN_RECT)
267 if (pixels > SCROLL_MIN_RECT)
268 *arrowSize = (pixels - SCROLL_MIN_RECT) / 2;
269 else
270 *arrowSize = 0;
271 *thumbPos = *thumbSize = 0;
273 else
275 SCROLLBAR_INFO *info = SCROLL_GetInternalInfo( hwnd, nBar, FALSE );
276 if (!info)
278 WARN("called for missing scroll bar\n");
279 WIN_ReleasePtr( wndPtr );
280 return FALSE;
282 *arrowSize = GetSystemMetrics(SM_CXVSCROLL);
283 pixels -= (2 * (GetSystemMetrics(SM_CXVSCROLL) - SCROLL_ARROW_THUMB_OVERLAP));
285 if (info->page)
287 *thumbSize = MulDiv(pixels,info->page,(info->maxVal-info->minVal+1));
288 if (*thumbSize < SCROLL_MIN_THUMB) *thumbSize = SCROLL_MIN_THUMB;
290 else *thumbSize = GetSystemMetrics(SM_CXVSCROLL);
292 if (((pixels -= *thumbSize ) < 0) ||
293 ((info->flags & ESB_DISABLE_BOTH) == ESB_DISABLE_BOTH))
295 /* Rectangle too small or scrollbar disabled -> no thumb */
296 *thumbPos = *thumbSize = 0;
298 else
300 INT max = info->maxVal - max( info->page-1, 0 );
301 if (info->minVal >= max)
302 *thumbPos = *arrowSize - SCROLL_ARROW_THUMB_OVERLAP;
303 else
304 *thumbPos = *arrowSize - SCROLL_ARROW_THUMB_OVERLAP
305 + MulDiv(pixels, (info->curVal-info->minVal),(max - info->minVal));
308 WIN_ReleasePtr( wndPtr );
309 return vertical;
313 /***********************************************************************
314 * SCROLL_GetThumbVal
316 * Compute the current scroll position based on the thumb position in pixels
317 * from the top of the scroll-bar.
319 static UINT SCROLL_GetThumbVal( SCROLLBAR_INFO *infoPtr, RECT *rect,
320 BOOL vertical, INT pos )
322 INT thumbSize;
323 INT pixels = vertical ? rect->bottom-rect->top : rect->right-rect->left;
325 if ((pixels -= 2*(GetSystemMetrics(SM_CXVSCROLL) - SCROLL_ARROW_THUMB_OVERLAP)) <= 0)
326 return infoPtr->minVal;
328 if (infoPtr->page)
330 thumbSize = MulDiv(pixels,infoPtr->page,(infoPtr->maxVal-infoPtr->minVal+1));
331 if (thumbSize < SCROLL_MIN_THUMB) thumbSize = SCROLL_MIN_THUMB;
333 else thumbSize = GetSystemMetrics(SM_CXVSCROLL);
335 if ((pixels -= thumbSize) <= 0) return infoPtr->minVal;
337 pos = max( 0, pos - (GetSystemMetrics(SM_CXVSCROLL) - SCROLL_ARROW_THUMB_OVERLAP) );
338 if (pos > pixels) pos = pixels;
340 if (!infoPtr->page) pos *= infoPtr->maxVal - infoPtr->minVal;
341 else pos *= infoPtr->maxVal - infoPtr->minVal - infoPtr->page + 1;
342 return infoPtr->minVal + ((pos + pixels / 2) / pixels);
345 /***********************************************************************
346 * SCROLL_PtInRectEx
348 static BOOL SCROLL_PtInRectEx( LPRECT lpRect, POINT pt, BOOL vertical )
350 RECT rect = *lpRect;
351 int scrollbarWidth;
353 /* Pad hit rect to allow mouse to be dragged outside of scrollbar and
354 * still be considered in the scrollbar. */
355 if (vertical)
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;
363 else
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 /***********************************************************************
375 * SCROLL_ClipPos
377 static POINT SCROLL_ClipPos( LPRECT lpRect, POINT pt )
379 if( pt.x < lpRect->left )
380 pt.x = lpRect->left;
381 else
382 if( pt.x > lpRect->right )
383 pt.x = lpRect->right;
385 if( pt.y < lpRect->top )
386 pt.y = lpRect->top;
387 else
388 if( pt.y > lpRect->bottom )
389 pt.y = lpRect->bottom;
391 return pt;
395 /***********************************************************************
396 * SCROLL_HitTest
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;
404 RECT rect;
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;
412 if (vertical)
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;
417 pt.y -= rect.top;
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;
426 pt.x -= rect.left;
427 if (pt.x < thumbPos) return SCROLL_TOP_RECT;
428 if (pt.x >= thumbPos + thumbSize) return SCROLL_BOTTOM_RECT;
430 return SCROLL_THUMB;
434 /***********************************************************************
435 * SCROLL_DrawArrows
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 )
443 RECT r;
445 r = *rect;
446 if( vertical )
447 r.bottom = r.top + arrowSize;
448 else
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 ) );
456 r = *rect;
457 if( vertical )
458 r.top = r.bottom-arrowSize;
459 else
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;
472 INT max_size;
474 if( vertical )
475 max_size = rect->bottom - rect->top;
476 else
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 )
484 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 )
504 RECT r;
505 HPEN hSavePen;
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
512 if (nBar == SB_CTL)
514 hBrush = (HBRUSH)SendMessageW( GetParent(hwnd), WM_CTLCOLORSCROLLBAR,
515 (WPARAM)hdc,(LPARAM)hwnd);
517 else
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 */
526 r = *rect;
527 if (vertical)
529 r.top += arrowSize - SCROLL_ARROW_THUMB_OVERLAP;
530 r.bottom -= (arrowSize - SCROLL_ARROW_THUMB_OVERLAP);
532 else
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,
543 PATCOPY );
545 /* cleanup and return */
546 SelectObject( hdc, hSavePen );
547 SelectObject( hdc, hSaveBrush );
548 return;
551 if (vertical)
553 PatBlt( hdc, r.left, r.top,
554 r.right - r.left,
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,
559 r.right - r.left,
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),
568 r.bottom - r.top,
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,
573 r.bottom - r.top,
574 bottom_selected ? 0x0f0000 : PATCOPY );
575 r.right = r.left + thumbSize;
578 /* Draw the thumb */
579 DrawEdge( hdc, &r, EDGE_RAISED, BF_RECT | BF_MIDDLE );
581 /* cleanup */
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 )
593 RECT r;
594 HPEN hSavePen;
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);
612 } else {
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 */
620 r = *rect;
621 if (vertical)
623 r.top += arrowSize - SCROLL_ARROW_THUMB_OVERLAP;
624 r.bottom -= (arrowSize - SCROLL_ARROW_THUMB_OVERLAP);
626 else
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 );
643 return;
646 if (vertical)
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;
668 /* Draw the thumb */
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 );
679 /* cleanup */
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;
694 RECT rect;
695 BOOL vertical;
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;
702 if (!infoPtr ||
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) );
726 else
727 SCROLL_DrawArrows( hdc, infoPtr, &rect, arrowSize, vertical,
728 FALSE, FALSE );
730 if( interior )
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))
742 if (!vertical)
744 SetCaretPos(thumbPos+1, rect.top+1);
746 else
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)
760 RECT rc;
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) );
781 if (!hdc) return;
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).
793 * PARAMS
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)
804 HideCaret(hwnd);
806 switch(wParam)
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;
816 default: return;
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 */
834 static POINT prevPt;
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;
844 BOOL vertical;
845 INT arrowSize, thumbSize, thumbPos;
846 RECT rect;
847 HDC hdc;
849 SCROLLBAR_INFO *infoPtr = SCROLL_GetInternalInfo( hwnd, nBar, FALSE );
850 if (!infoPtr) return;
851 if ((SCROLL_trackHitTest == SCROLL_NOWHERE) && (msg != WM_LBUTTONDOWN))
852 return;
854 if (nBar == SB_CTL && (GetWindowLongW( hwnd, GWL_STYLE ) & (SBS_SIZEGRIP | SBS_SIZEBOX)))
856 switch(msg)
858 case WM_LBUTTONDOWN: /* Initialise mouse tracking */
859 HideCaret(hwnd); /* hide caret while holding down LBUTTON */
860 SetCapture( hwnd );
861 prevPt = pt;
862 SCROLL_trackHitTest = hittest = SCROLL_THUMB;
863 break;
864 case WM_MOUSEMOVE:
865 GetClientRect(GetParent(GetParent(hwnd)),&rect);
866 prevPt = pt;
867 break;
868 case WM_LBUTTONUP:
869 ReleaseCapture();
870 SCROLL_trackHitTest = hittest = SCROLL_NOWHERE;
871 if (hwnd==GetFocus()) ShowCaret(hwnd);
872 break;
873 case WM_SYSTIMER:
874 pt = prevPt;
875 break;
877 return;
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;
886 switch(msg)
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;
895 prevPt = pt;
896 if (nBar == SB_CTL && (GetWindowLongW(hwnd, GWL_STYLE) & WS_TABSTOP)) SetFocus( hwnd );
897 SetCapture( hwnd );
898 break;
900 case WM_MOUSEMOVE:
901 hittest = SCROLL_HitTest( hwnd, nBar, pt, TRUE );
902 prevPt = pt;
903 break;
905 case WM_LBUTTONUP:
906 hittest = SCROLL_NOWHERE;
907 ReleaseCapture();
908 /* if scrollbar has focus, show back caret */
909 if (hwnd==GetFocus()) ShowCaret(hwnd);
910 break;
912 case WM_SYSTIMER:
913 pt = prevPt;
914 hittest = SCROLL_HitTest( hwnd, nBar, pt, FALSE );
915 break;
917 default:
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 */
927 break;
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 );
944 break;
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 );
961 break;
963 case SCROLL_THUMB:
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,
970 vertical,
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,
982 FALSE, FALSE );
984 else /* WM_MOUSEMOVE */
986 INT pos;
988 if (!SCROLL_PtInRectEx( &rect, pt, vertical )) pos = lastClickPos;
989 else
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 );
999 lastMousePos = pos;
1000 SCROLL_TrackingPos = trackThumbPos + pos - lastClickPos;
1001 SCROLL_TrackingVal = SCROLL_GetThumbVal( infoPtr, &rect,
1002 vertical,
1003 SCROLL_TrackingPos );
1004 SendMessageW( hwndOwner, vertical ? WM_VSCROLL : WM_HSCROLL,
1005 MAKEWPARAM( SB_THUMBTRACK, SCROLL_TrackingVal),
1006 (LPARAM)hwndCtl );
1007 if (!SCROLL_MovingThumb)
1008 SCROLL_DrawMovingThumb( hdc, &rect, vertical,
1009 arrowSize, thumbSize );
1012 break;
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 );
1029 break;
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 );
1046 break;
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 )
1093 MSG msg;
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 );
1104 pt.x += xoffset;
1105 pt.y += yoffset;
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 );
1122 else
1124 TranslateMessage( &msg );
1125 DispatchMessageW( &msg );
1127 if (!IsWindow( hwnd ))
1129 ReleaseCapture();
1130 break;
1132 } while (msg.message != WM_LBUTTONUP);
1136 /***********************************************************************
1137 * SCROLL_CreateScrollBar
1139 * Create a scroll bar
1141 * PARAMS
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);
1148 if (!info) return;
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)
1176 MoveWindow( hwnd,
1177 lpCreate->x+lpCreate->cx-GetSystemMetrics(SM_CXVSCROLL)-1,
1178 lpCreate->y,
1179 GetSystemMetrics(SM_CXVSCROLL)+1, lpCreate->cy, FALSE );
1181 else /* SBS_HORZ */
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)
1187 MoveWindow( hwnd,
1188 lpCreate->x,
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
1200 * PARAMS
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
1205 * RETURNS
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)))
1215 return 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
1241 * PARAMS
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
1246 * RETURNS
1247 * FALSE if failed
1249 static BOOL SCROLL_GetScrollBarInfo(HWND hwnd, LONG idObject, LPSCROLLBARINFO info)
1251 LPSCROLLBAR_INFO infoPtr;
1252 INT nBar;
1253 INT nDummy;
1254 DWORD style = GetWindowLongW(hwnd, GWL_STYLE);
1255 BOOL pressed;
1256 RECT rect;
1258 switch (idObject)
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))
1268 return FALSE;
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);
1279 if (!infoPtr)
1280 return FALSE;
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;
1291 else
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;
1313 /* Thumb state */
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;
1332 return TRUE;
1336 /*************************************************************************
1337 * SCROLL_GetScrollPos
1339 * Internal helper for the API function
1341 * PARAMS
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
1357 * PARAMS
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
1363 * RETURNS
1364 * Success: TRUE
1365 * Failure: FALSE
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;
1374 return TRUE;
1378 /*************************************************************************
1379 * SCROLL_SetScrollRange
1381 * PARAMS
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);
1394 if (infoPtr)
1396 infoPtr->minVal = minVal;
1397 infoPtr->maxVal = maxVal;
1399 return TRUE;
1403 /***********************************************************************
1404 * ScrollBarWndProc
1406 static LRESULT ScrollBarWndProc( HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam, BOOL unicode )
1408 if (!IsWindow( hwnd )) return 0;
1410 switch(message)
1412 case WM_CREATE:
1413 SCROLL_CreateScrollBar(hwnd, (LPCREATESTRUCTW)lParam);
1414 break;
1416 case WM_ENABLE:
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);
1425 return 0;
1427 case WM_LBUTTONDBLCLK:
1428 case WM_LBUTTONDOWN:
1430 POINT pt;
1431 pt.x = (short)LOWORD(lParam);
1432 pt.y = (short)HIWORD(lParam);
1433 SCROLL_TrackScrollBar( hwnd, SB_CTL, pt );
1435 break;
1436 case WM_LBUTTONUP:
1437 case WM_MOUSEMOVE:
1438 case WM_SYSTIMER:
1440 POINT pt;
1441 pt.x = (short)LOWORD(lParam);
1442 pt.y = (short)HIWORD(lParam);
1443 SCROLL_HandleScrollEvent( hwnd, SB_CTL, message, pt );
1445 break;
1447 case WM_KEYDOWN:
1448 SCROLL_HandleKbdEvent(hwnd, wParam, lParam);
1449 break;
1451 case WM_KEYUP:
1452 ShowCaret(hwnd);
1453 break;
1455 case WM_SETFOCUS:
1457 /* Create a caret when a ScrollBar get focus */
1458 RECT rect;
1459 int arrowSize, thumbSize, thumbPos, vertical;
1460 vertical = SCROLL_GetScrollBarRect( hwnd, SB_CTL, &rect,
1461 &arrowSize, &thumbSize, &thumbPos );
1462 if (!vertical)
1464 CreateCaret(hwnd, (HBITMAP)1, thumbSize-2, rect.bottom-rect.top-2);
1465 SetCaretPos(thumbPos+1, rect.top+1);
1467 else
1469 CreateCaret(hwnd, (HBITMAP)1, rect.right-rect.left-2,thumbSize-2);
1470 SetCaretPos(rect.top+1, thumbPos+1);
1472 ShowCaret(hwnd);
1474 break;
1476 case WM_KILLFOCUS:
1478 RECT rect;
1479 int arrowSize, thumbSize, thumbPos, vertical;
1480 vertical = SCROLL_GetScrollBarRect( hwnd, SB_CTL, &rect,&arrowSize, &thumbSize, &thumbPos );
1481 if (!vertical){
1482 rect.left=thumbPos+1;
1483 rect.right=rect.left+thumbSize;
1485 else
1487 rect.top=thumbPos+1;
1488 rect.bottom=rect.top+thumbSize;
1490 HideCaret(hwnd);
1491 InvalidateRect(hwnd,&rect,0);
1492 DestroyCaret();
1494 break;
1496 case WM_ERASEBKGND:
1497 return 1;
1499 case WM_GETDLGCODE:
1500 return DLGC_WANTARROWS; /* Windows returns this value */
1502 case WM_PAINT:
1504 PAINTSTRUCT ps;
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)
1512 RECT rc;
1513 GetClientRect( hwnd, &rc );
1514 FillRect( hdc, &rc, GetSysColorBrush(COLOR_SCROLLBAR) );
1516 else
1517 SCROLL_DrawScrollBar( hwnd, hdc, SB_CTL, TRUE, TRUE );
1518 if (!wParam) EndPaint(hwnd, &ps);
1520 break;
1522 case SBM_SETPOS16:
1523 case SBM_SETPOS:
1524 return SetScrollPos( hwnd, SB_CTL, wParam, (BOOL)lParam );
1526 case SBM_GETPOS16:
1527 case SBM_GETPOS:
1528 return SCROLL_GetScrollPos(hwnd, SB_CTL);
1530 case SBM_SETRANGE16:
1531 if (wParam) message = SBM_SETRANGEREDRAW;
1532 wParam = LOWORD(lParam);
1533 lParam = HIWORD(lParam);
1534 /* fall through */
1535 case SBM_SETRANGEREDRAW:
1536 case SBM_SETRANGE:
1538 INT oldPos = SCROLL_GetScrollPos( hwnd, SB_CTL );
1539 SCROLL_SetScrollRange( hwnd, SB_CTL, wParam, lParam );
1540 if (message == SBM_SETRANGEREDRAW)
1541 SCROLL_RefreshScrollBar( hwnd, SB_CTL, TRUE, TRUE );
1542 if (oldPos != SCROLL_GetScrollPos( hwnd, SB_CTL )) return oldPos;
1544 return 0;
1546 case SBM_GETRANGE16:
1548 INT min, max;
1550 SCROLL_GetScrollRange(hwnd, SB_CTL, &min, &max);
1551 return MAKELRESULT(min, max);
1554 case SBM_GETRANGE:
1555 return SCROLL_GetScrollRange(hwnd, SB_CTL, (LPINT)wParam, (LPINT)lParam);
1557 case SBM_ENABLE_ARROWS16:
1558 case SBM_ENABLE_ARROWS:
1559 return EnableScrollBar( hwnd, SB_CTL, wParam );
1561 case SBM_SETSCROLLINFO:
1562 return SCROLL_SetScrollInfo( hwnd, SB_CTL, (SCROLLINFO *)lParam, wParam );
1564 case SBM_GETSCROLLINFO:
1565 return SCROLL_GetScrollInfo(hwnd, SB_CTL, (SCROLLINFO *)lParam);
1567 case SBM_GETSCROLLBARINFO:
1568 return SCROLL_GetScrollBarInfo(hwnd, OBJID_CLIENT, (SCROLLBARINFO *)lParam);
1570 case 0x00e5:
1571 case 0x00e7:
1572 case 0x00e8:
1573 case 0x00ec:
1574 case 0x00ed:
1575 case 0x00ee:
1576 case 0x00ef:
1577 ERR("unknown Win32 msg %04x wp=%08lx lp=%08lx\n",
1578 message, wParam, lParam );
1579 break;
1581 default:
1582 if (message >= WM_USER)
1583 WARN("unknown msg %04x wp=%04lx lp=%08lx\n",
1584 message, wParam, lParam );
1585 if (unicode)
1586 return DefWindowProcW( hwnd, message, wParam, lParam );
1587 else
1588 return DefWindowProcA( hwnd, message, wParam, lParam );
1590 return 0;
1594 /***********************************************************************
1595 * ScrollBarWndProcA
1597 static LRESULT WINAPI ScrollBarWndProcA( HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam )
1599 return ScrollBarWndProc( hwnd, message, wParam, lParam, FALSE );
1603 /***********************************************************************
1604 * ScrollBarWndProcW
1606 static LRESULT WINAPI ScrollBarWndProcW( HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam )
1608 return ScrollBarWndProc( hwnd, message, wParam, lParam, TRUE );
1612 /*************************************************************************
1613 * SetScrollInfo (USER32.@)
1615 * SetScrollInfo can be used to set the position, upper bound,
1616 * lower bound, and page size of a scrollbar control.
1618 * PARAMS
1619 * hwnd [I] Handle of window with scrollbar(s)
1620 * nBar [I] One of SB_HORZ, SB_VERT, or SB_CTL
1621 * info [I] Specifies what to change and new values
1622 * bRedraw [I] Should scrollbar be redrawn afterwards?
1624 * RETURNS
1625 * Scrollbar position
1627 * NOTE
1628 * For 100 lines of text to be displayed in a window of 25 lines,
1629 * one would for instance use info->nMin=0, info->nMax=75
1630 * (corresponding to the 76 different positions of the window on
1631 * the text), and info->nPage=25.
1633 INT WINAPI SetScrollInfo(HWND hwnd, INT nBar, const SCROLLINFO *info, BOOL bRedraw)
1635 TRACE("hwnd=%p nBar=%d info=%p, bRedraw=%d\n", hwnd, nBar, info, bRedraw);
1637 /* Refer SB_CTL requests to the window */
1638 if (nBar == SB_CTL)
1639 return SendMessageW(hwnd, SBM_SETSCROLLINFO, bRedraw, (LPARAM)info);
1640 else
1641 return SCROLL_SetScrollInfo( hwnd, nBar, info, bRedraw );
1644 static INT SCROLL_SetScrollInfo( HWND hwnd, INT nBar, LPCSCROLLINFO info, BOOL bRedraw )
1646 /* Update the scrollbar state and set action flags according to
1647 * what has to be done graphics wise. */
1649 SCROLLBAR_INFO *infoPtr;
1650 UINT new_flags;
1651 INT action = 0;
1653 /* handle invalid data structure */
1654 if (!SCROLL_ScrollInfoValid(info)
1655 || !(infoPtr = SCROLL_GetInternalInfo(hwnd, nBar, TRUE)))
1656 return 0;
1658 if (TRACE_ON(scroll))
1660 TRACE("hwnd=%p bar=%d", hwnd, nBar);
1661 if (info->fMask & SIF_PAGE) TRACE( " page=%d", info->nPage );
1662 if (info->fMask & SIF_POS) TRACE( " pos=%d", info->nPos );
1663 if (info->fMask & SIF_RANGE) TRACE( " min=%d max=%d", info->nMin, info->nMax );
1664 TRACE("\n");
1667 /* Set the page size */
1669 if (info->fMask & SIF_PAGE)
1671 if( infoPtr->page != info->nPage )
1673 infoPtr->page = info->nPage;
1674 action |= SA_SSI_REFRESH;
1678 /* Set the scroll pos */
1680 if (info->fMask & SIF_POS)
1682 if( infoPtr->curVal != info->nPos )
1684 infoPtr->curVal = info->nPos;
1685 action |= SA_SSI_REFRESH;
1689 /* Set the scroll range */
1691 if (info->fMask & SIF_RANGE)
1693 /* Invalid range -> range is set to (0,0) */
1694 if ((info->nMin > info->nMax) ||
1695 ((UINT)(info->nMax - info->nMin) >= 0x80000000))
1697 action |= SA_SSI_REFRESH;
1698 infoPtr->minVal = 0;
1699 infoPtr->maxVal = 0;
1701 else
1703 if( infoPtr->minVal != info->nMin ||
1704 infoPtr->maxVal != info->nMax )
1706 action |= SA_SSI_REFRESH;
1707 infoPtr->minVal = info->nMin;
1708 infoPtr->maxVal = info->nMax;
1713 /* Make sure the page size is valid */
1714 if (infoPtr->page < 0) infoPtr->page = 0;
1715 else if (infoPtr->page > infoPtr->maxVal - infoPtr->minVal + 1 )
1716 infoPtr->page = infoPtr->maxVal - infoPtr->minVal + 1;
1718 /* Make sure the pos is inside the range */
1720 if (infoPtr->curVal < infoPtr->minVal)
1721 infoPtr->curVal = infoPtr->minVal;
1722 else if (infoPtr->curVal > infoPtr->maxVal - max( infoPtr->page-1, 0 ))
1723 infoPtr->curVal = infoPtr->maxVal - max( infoPtr->page-1, 0 );
1725 TRACE(" new values: page=%d pos=%d min=%d max=%d\n",
1726 infoPtr->page, infoPtr->curVal,
1727 infoPtr->minVal, infoPtr->maxVal );
1729 /* don't change the scrollbar state if SetScrollInfo
1730 * is just called with SIF_DISABLENOSCROLL
1732 if(!(info->fMask & SIF_ALL)) goto done;
1734 /* Check if the scrollbar should be hidden or disabled */
1736 if (info->fMask & (SIF_RANGE | SIF_PAGE | SIF_DISABLENOSCROLL))
1738 new_flags = infoPtr->flags;
1739 if (infoPtr->minVal >= infoPtr->maxVal - max( infoPtr->page-1, 0 ))
1741 /* Hide or disable scroll-bar */
1742 if (info->fMask & SIF_DISABLENOSCROLL)
1744 new_flags = ESB_DISABLE_BOTH;
1745 action |= SA_SSI_REFRESH;
1747 else if ((nBar != SB_CTL) && (action & SA_SSI_REFRESH))
1749 action = SA_SSI_HIDE;
1752 else /* Show and enable scroll-bar only if no page only changed. */
1753 if (info->fMask != SIF_PAGE)
1755 new_flags = ESB_ENABLE_BOTH;
1756 if ((nBar != SB_CTL) && ( (action & SA_SSI_REFRESH) ))
1757 action |= SA_SSI_SHOW;
1760 if (infoPtr->flags != new_flags) /* check arrow flags */
1762 infoPtr->flags = new_flags;
1763 action |= SA_SSI_REPAINT_ARROWS;
1767 done:
1768 if( action & SA_SSI_HIDE )
1769 SCROLL_ShowScrollBar( hwnd, nBar, FALSE, FALSE );
1770 else
1772 if( action & SA_SSI_SHOW )
1773 if( SCROLL_ShowScrollBar( hwnd, nBar, TRUE, TRUE ) )
1774 return infoPtr->curVal; /* SetWindowPos() already did the painting */
1776 if( bRedraw )
1777 SCROLL_RefreshScrollBar( hwnd, nBar, TRUE, TRUE );
1778 else if( action & SA_SSI_REPAINT_ARROWS )
1779 SCROLL_RefreshScrollBar( hwnd, nBar, TRUE, FALSE );
1782 /* Return current position */
1783 return infoPtr->curVal;
1787 /*************************************************************************
1788 * GetScrollInfo (USER32.@)
1790 * GetScrollInfo can be used to retrieve the position, upper bound,
1791 * lower bound, and page size of a scrollbar control.
1793 * PARAMS
1794 * hwnd [I] Handle of window with scrollbar(s)
1795 * nBar [I] One of SB_HORZ, SB_VERT, or SB_CTL
1796 * info [IO] fMask specifies which values to retrieve
1798 * RETURNS
1799 * TRUE if SCROLLINFO is filled
1800 * ( if nBar is SB_CTL, GetScrollInfo returns TRUE even if nothing
1801 * is filled)
1803 BOOL WINAPI GetScrollInfo(HWND hwnd, INT nBar, LPSCROLLINFO info)
1805 TRACE("hwnd=%p nBar=%d info=%p\n", hwnd, nBar, info);
1807 /* Refer SB_CTL requests to the window */
1808 if (nBar == SB_CTL)
1810 SendMessageW(hwnd, SBM_GETSCROLLINFO, 0, (LPARAM)info);
1811 return TRUE;
1813 return SCROLL_GetScrollInfo(hwnd, nBar, info);
1817 /*************************************************************************
1818 * GetScrollBarInfo (USER32.@)
1820 * GetScrollBarInfo can be used to retrieve information about a scrollbar
1821 * control.
1823 * PARAMS
1824 * hwnd [I] Handle of window with scrollbar(s)
1825 * idObject [I] One of OBJID_CLIENT, OBJID_HSCROLL, or OBJID_VSCROLL
1826 * info [IO] cbSize specifies the size of SCROLLBARINFO
1828 * RETURNS
1829 * TRUE if success
1831 BOOL WINAPI GetScrollBarInfo(HWND hwnd, LONG idObject, LPSCROLLBARINFO info)
1833 TRACE("hwnd=%p idObject=%d info=%p\n", hwnd, idObject, info);
1835 /* Refer OBJID_CLIENT requests to the window */
1836 if (idObject == OBJID_CLIENT)
1837 return SendMessageW(hwnd, SBM_GETSCROLLBARINFO, 0, (LPARAM)info);
1838 else
1839 return SCROLL_GetScrollBarInfo(hwnd, idObject, info);
1843 /*************************************************************************
1844 * SetScrollPos (USER32.@)
1846 * Sets the current position of the scroll thumb.
1848 * PARAMS
1849 * hwnd [I] Handle of window with scrollbar(s)
1850 * nBar [I] One of SB_HORZ, SB_VERT, or SB_CTL
1851 * nPos [I] New value
1852 * bRedraw [I] Should scrollbar be redrawn afterwards?
1854 * RETURNS
1855 * Success: Scrollbar position
1856 * Failure: 0
1858 * REMARKS
1859 * Note the ambiguity when 0 is returned. Use GetLastError
1860 * to make sure there was an error (and to know which one).
1862 INT WINAPI SetScrollPos( HWND hwnd, INT nBar, INT nPos, BOOL bRedraw)
1864 SCROLLINFO info;
1865 SCROLLBAR_INFO *infoPtr;
1866 INT oldPos;
1868 if (!(infoPtr = SCROLL_GetInternalInfo( hwnd, nBar, FALSE ))) return 0;
1869 oldPos = infoPtr->curVal;
1870 info.cbSize = sizeof(info);
1871 info.nPos = nPos;
1872 info.fMask = SIF_POS;
1873 SetScrollInfo( hwnd, nBar, &info, bRedraw );
1874 return oldPos;
1878 /*************************************************************************
1879 * GetScrollPos (USER32.@)
1881 * Gets the current position of the scroll thumb.
1883 * PARAMS
1884 * hwnd [I] Handle of window with scrollbar(s)
1885 * nBar [I] One of SB_HORZ, SB_VERT, or SB_CTL
1887 * RETURNS
1888 * Success: Current position
1889 * Failure: 0
1891 * REMARKS
1892 * There is ambiguity when 0 is returned. Use GetLastError
1893 * to make sure there was an error (and to know which one).
1895 INT WINAPI GetScrollPos(HWND hwnd, INT nBar)
1897 TRACE("hwnd=%p nBar=%d\n", hwnd, nBar);
1899 /* Refer SB_CTL requests to the window */
1900 if (nBar == SB_CTL)
1901 return SendMessageW(hwnd, SBM_GETPOS, 0, 0);
1902 else
1903 return SCROLL_GetScrollPos(hwnd, nBar);
1907 /*************************************************************************
1908 * SetScrollRange (USER32.@)
1909 * The SetScrollRange function sets the minimum and maximum scroll box positions
1910 * If nMinPos and nMaxPos is the same value, the scroll bar will hide
1912 * Sets the range of the scroll bar.
1914 * PARAMS
1915 * hwnd [I] Handle of window with scrollbar(s)
1916 * nBar [I] One of SB_HORZ, SB_VERT, or SB_CTL
1917 * minVal [I] New minimum value
1918 * maxVal [I] New Maximum value
1919 * bRedraw [I] Should scrollbar be redrawn afterwards?
1921 * RETURNS
1922 * Success: TRUE
1923 * Failure: FALSE
1925 BOOL WINAPI SetScrollRange(HWND hwnd, INT nBar, INT minVal, INT maxVal, BOOL bRedraw)
1927 SCROLLINFO info;
1929 TRACE("hwnd=%p nBar=%d min=%d max=%d, bRedraw=%d\n", hwnd, nBar, minVal, maxVal, bRedraw);
1931 info.cbSize = sizeof(info);
1932 info.fMask = SIF_RANGE;
1933 info.nMin = minVal;
1934 info.nMax = maxVal;
1935 SetScrollInfo( hwnd, nBar, &info, bRedraw );
1936 return TRUE;
1940 /*************************************************************************
1941 * SCROLL_SetNCSbState
1943 * Updates both scrollbars at the same time. Used by MDI CalcChildScroll().
1945 INT SCROLL_SetNCSbState(HWND hwnd, int vMin, int vMax, int vPos,
1946 int hMin, int hMax, int hPos)
1948 SCROLLINFO vInfo, hInfo;
1950 vInfo.cbSize = hInfo.cbSize = sizeof(SCROLLINFO);
1951 vInfo.nMin = vMin;
1952 vInfo.nMax = vMax;
1953 vInfo.nPos = vPos;
1954 hInfo.nMin = hMin;
1955 hInfo.nMax = hMax;
1956 hInfo.nPos = hPos;
1957 vInfo.fMask = hInfo.fMask = SIF_RANGE | SIF_POS;
1959 SCROLL_SetScrollInfo( hwnd, SB_VERT, &vInfo, TRUE );
1960 SCROLL_SetScrollInfo( hwnd, SB_HORZ, &hInfo, TRUE );
1962 return 0;
1966 /*************************************************************************
1967 * GetScrollRange (USER32.@)
1969 * Gets the range of the scroll bar.
1971 * PARAMS
1972 * hwnd [I] Handle of window with scrollbar(s)
1973 * nBar [I] One of SB_HORZ, SB_VERT, or SB_CTL
1974 * lpMin [O] Where to store minimum value
1975 * lpMax [O] Where to store maximum value
1977 * RETURNS
1978 * TRUE if values is filled
1980 BOOL WINAPI GetScrollRange(HWND hwnd, INT nBar, LPINT lpMin, LPINT lpMax)
1982 TRACE("hwnd=%p nBar=%d lpMin=%p lpMax=%p\n", hwnd, nBar, lpMin, lpMax);
1984 /* Refer SB_CTL requests to the window */
1985 if (nBar == SB_CTL)
1986 SendMessageW(hwnd, SBM_GETRANGE, (WPARAM)lpMin, (LPARAM)lpMax);
1987 else
1988 SCROLL_GetScrollRange(hwnd, nBar, lpMin, lpMax);
1990 return TRUE;
1994 /*************************************************************************
1995 * SCROLL_ShowScrollBar()
1997 * Back-end for ShowScrollBar(). Returns FALSE if no action was taken.
1999 static BOOL SCROLL_ShowScrollBar( HWND hwnd, INT nBar, BOOL fShowH, BOOL fShowV )
2001 ULONG old_style, set_bits = 0, clear_bits = 0;
2003 TRACE("hwnd=%p bar=%d horz=%d, vert=%d\n", hwnd, nBar, fShowH, fShowV );
2005 switch(nBar)
2007 case SB_CTL:
2008 ShowWindow( hwnd, fShowH ? SW_SHOW : SW_HIDE );
2009 return TRUE;
2011 case SB_BOTH:
2012 case SB_HORZ:
2013 if (fShowH) set_bits |= WS_HSCROLL;
2014 else clear_bits |= WS_HSCROLL;
2015 if( nBar == SB_HORZ ) break;
2016 /* fall through */
2017 case SB_VERT:
2018 if (fShowV) set_bits |= WS_VSCROLL;
2019 else clear_bits |= WS_VSCROLL;
2020 break;
2022 default:
2023 return FALSE; /* Nothing to do! */
2026 old_style = WIN_SetStyle( hwnd, set_bits, clear_bits );
2027 if ((old_style & clear_bits) != 0 || (old_style & set_bits) != set_bits)
2029 /* frame has been changed, let the window redraw itself */
2030 SetWindowPos( hwnd, 0, 0, 0, 0, 0, SWP_NOSIZE | SWP_NOMOVE
2031 | SWP_NOACTIVATE | SWP_NOZORDER | SWP_FRAMECHANGED );
2032 return TRUE;
2034 return FALSE; /* no frame changes */
2038 /*************************************************************************
2039 * ShowScrollBar (USER32.@)
2041 * Shows or hides the scroll bar.
2043 * PARAMS
2044 * hwnd [I] Handle of window with scrollbar(s)
2045 * nBar [I] One of SB_HORZ, SB_VERT, or SB_CTL
2046 * fShow [I] TRUE = show, FALSE = hide
2048 * RETURNS
2049 * Success: TRUE
2050 * Failure: FALSE
2052 BOOL WINAPI ShowScrollBar(HWND hwnd, INT nBar, BOOL fShow)
2054 if ( !hwnd )
2055 return FALSE;
2057 SCROLL_ShowScrollBar( hwnd, nBar, (nBar == SB_VERT) ? 0 : fShow,
2058 (nBar == SB_HORZ) ? 0 : fShow );
2059 return TRUE;
2063 /*************************************************************************
2064 * EnableScrollBar (USER32.@)
2066 * Enables or disables the scroll bars.
2068 BOOL WINAPI EnableScrollBar( HWND hwnd, UINT nBar, UINT flags )
2070 BOOL bFineWithMe;
2071 SCROLLBAR_INFO *infoPtr;
2073 flags &= ESB_DISABLE_BOTH;
2075 if (nBar == SB_BOTH)
2077 if (!(infoPtr = SCROLL_GetInternalInfo( hwnd, SB_VERT, TRUE ))) return FALSE;
2078 if (!(bFineWithMe = (infoPtr->flags == flags)) )
2080 infoPtr->flags = flags;
2081 SCROLL_RefreshScrollBar( hwnd, SB_VERT, TRUE, TRUE );
2083 nBar = SB_HORZ;
2085 else
2086 bFineWithMe = TRUE;
2088 if (!(infoPtr = SCROLL_GetInternalInfo( hwnd, nBar, TRUE ))) return FALSE;
2089 if (bFineWithMe && infoPtr->flags == flags) return FALSE;
2090 infoPtr->flags = flags;
2092 if (nBar == SB_CTL && (flags == ESB_DISABLE_BOTH || flags == ESB_ENABLE_BOTH))
2093 EnableWindow(hwnd, flags == ESB_ENABLE_BOTH);
2095 SCROLL_RefreshScrollBar( hwnd, nBar, TRUE, TRUE );
2096 return TRUE;