mshtml: Added IHTMLElement::put_innerText implementation.
[wine/multimedia.git] / dlls / user32 / scroll.c
blob7b7818b14f486717d8dfc604c7a33d8b6bd94cb3
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 typedef struct
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;
54 /* Minimum size of the rectangle between the arrows */
55 #define SCROLL_MIN_RECT 4
57 /* Minimum size of the thumb in pixels */
58 #define SCROLL_MIN_THUMB 6
60 /* Overlap between arrows and thumb */
61 #define SCROLL_ARROW_THUMB_OVERLAP 0
63 /* Delay (in ms) before first repetition when holding the button down */
64 #define SCROLL_FIRST_DELAY 200
66 /* Delay (in ms) between scroll repetitions */
67 #define SCROLL_REPEAT_DELAY 50
69 /* Scroll timer id */
70 #define SCROLL_TIMER 0
72 /* Scroll-bar hit testing */
73 enum SCROLL_HITTEST
75 SCROLL_NOWHERE, /* Outside the scroll bar */
76 SCROLL_TOP_ARROW, /* Top or left arrow */
77 SCROLL_TOP_RECT, /* Rectangle between the top arrow and the thumb */
78 SCROLL_THUMB, /* Thumb rectangle */
79 SCROLL_BOTTOM_RECT, /* Rectangle between the thumb and the bottom arrow */
80 SCROLL_BOTTOM_ARROW /* Bottom or right arrow */
83 /* What to do after SCROLL_SetScrollInfo() */
84 #define SA_SSI_HIDE 0x0001
85 #define SA_SSI_SHOW 0x0002
86 #define SA_SSI_REFRESH 0x0004
87 #define SA_SSI_REPAINT_ARROWS 0x0008
89 /* Thumb-tracking info */
90 static HWND SCROLL_TrackingWin = 0;
91 static INT SCROLL_TrackingBar = 0;
92 static INT SCROLL_TrackingPos = 0;
93 static INT SCROLL_TrackingVal = 0;
94 /* Hit test code of the last button-down event */
95 static enum SCROLL_HITTEST SCROLL_trackHitTest;
96 static BOOL SCROLL_trackVertical;
98 /* Is the moving thumb being displayed? */
99 static BOOL SCROLL_MovingThumb = FALSE;
101 /* Local functions */
102 static BOOL SCROLL_ShowScrollBar( HWND hwnd, INT nBar,
103 BOOL fShowH, BOOL fShowV );
104 static INT SCROLL_SetScrollInfo( HWND hwnd, INT nBar,
105 const SCROLLINFO *info, BOOL bRedraw );
106 static void SCROLL_DrawInterior_9x( HWND hwnd, HDC hdc, INT nBar,
107 RECT *rect, INT arrowSize,
108 INT thumbSize, INT thumbPos,
109 UINT flags, BOOL vertical,
110 BOOL top_selected, BOOL bottom_selected );
111 static LRESULT WINAPI ScrollBarWndProcA( HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam );
112 static LRESULT WINAPI ScrollBarWndProcW( HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam );
115 /*********************************************************************
116 * scrollbar class descriptor
118 static const WCHAR scrollbarW[] = {'S','c','r','o','l','l','B','a','r',0};
119 const struct builtin_class_descr SCROLL_builtin_class =
121 scrollbarW, /* name */
122 CS_DBLCLKS | CS_VREDRAW | CS_HREDRAW | CS_PARENTDC, /* style */
123 ScrollBarWndProcA, /* procA */
124 ScrollBarWndProcW, /* procW */
125 sizeof(SCROLLBAR_INFO), /* extra */
126 IDC_ARROW, /* cursor */
127 0 /* brush */
130 /***********************************************************************
131 * SCROLL_ScrollInfoValid
133 * Determine if the supplied SCROLLINFO struct is valid.
134 * info [in] The SCROLLINFO struct to be tested
136 static inline BOOL SCROLL_ScrollInfoValid( LPCSCROLLINFO info )
138 return !(info->fMask & ~(SIF_ALL | SIF_DISABLENOSCROLL)
139 || (info->cbSize != sizeof(*info)
140 && info->cbSize != sizeof(*info) - sizeof(info->nTrackPos)));
144 /***********************************************************************
145 * SCROLL_GetInternalInfo
147 * Returns pointer to internal SCROLLBAR_INFO structure for nBar
148 * or NULL if failed (f.i. scroll bar does not exist yet)
149 * If alloc is TRUE and the struct does not exist yet, create it.
151 static SCROLLBAR_INFO *SCROLL_GetInternalInfo( HWND hwnd, INT nBar, BOOL alloc )
153 SCROLLBAR_INFO *infoPtr = NULL;
154 WND *wndPtr = WIN_GetPtr( hwnd );
156 if (!wndPtr || wndPtr == WND_OTHER_PROCESS || wndPtr == WND_DESKTOP) return NULL;
157 switch(nBar)
159 case SB_HORZ: infoPtr = (SCROLLBAR_INFO *)wndPtr->pHScroll; break;
160 case SB_VERT: infoPtr = (SCROLLBAR_INFO *)wndPtr->pVScroll; break;
161 case SB_CTL: infoPtr = (SCROLLBAR_INFO *)wndPtr->wExtra; break;
162 case SB_BOTH: WARN("with SB_BOTH\n"); break;
165 if (!infoPtr && alloc)
167 if (nBar != SB_HORZ && nBar != SB_VERT)
168 WARN("Cannot initialize nBar=%d\n",nBar);
169 else if ((infoPtr = HeapAlloc( GetProcessHeap(), 0, sizeof(SCROLLBAR_INFO) )))
171 /* Set default values */
172 infoPtr->minVal = infoPtr->curVal = infoPtr->page = 0;
173 /* From MSDN: max for a standard scroll bar is 100 by default. */
174 infoPtr->maxVal = 100;
175 /* Scroll bar is enabled by default after create */
176 infoPtr->flags = ESB_ENABLE_BOTH;
177 if (nBar == SB_HORZ) wndPtr->pHScroll = infoPtr;
178 else wndPtr->pVScroll = infoPtr;
181 WIN_ReleasePtr( wndPtr );
182 return infoPtr;
186 /***********************************************************************
187 * SCROLL_GetScrollBarRect
189 * Compute the scroll bar rectangle, in drawing coordinates (i.e. client
190 * coords for SB_CTL, window coords for SB_VERT and SB_HORZ).
191 * 'arrowSize' returns the width or height of an arrow (depending on
192 * the orientation of the scrollbar), 'thumbSize' returns the size of
193 * the thumb, and 'thumbPos' returns the position of the thumb
194 * relative to the left or to the top.
195 * Return TRUE if the scrollbar is vertical, FALSE if horizontal.
197 static BOOL SCROLL_GetScrollBarRect( HWND hwnd, INT nBar, RECT *lprect,
198 INT *arrowSize, INT *thumbSize,
199 INT *thumbPos )
201 INT pixels;
202 BOOL vertical;
203 WND *wndPtr = WIN_GetPtr( hwnd );
205 if (!wndPtr || wndPtr == WND_OTHER_PROCESS || wndPtr == WND_DESKTOP) return FALSE;
207 switch(nBar)
209 case SB_HORZ:
210 lprect->left = wndPtr->rectClient.left - wndPtr->rectWindow.left;
211 lprect->top = wndPtr->rectClient.bottom - wndPtr->rectWindow.top;
212 lprect->right = wndPtr->rectClient.right - wndPtr->rectWindow.left;
213 lprect->bottom = lprect->top + GetSystemMetrics(SM_CYHSCROLL);
214 if(wndPtr->dwStyle & WS_VSCROLL)
215 lprect->right++;
216 vertical = FALSE;
217 break;
219 case SB_VERT:
220 if((wndPtr->dwExStyle & WS_EX_LEFTSCROLLBAR) != 0)
221 lprect->left = wndPtr->rectClient.left - wndPtr->rectWindow.left - GetSystemMetrics(SM_CXVSCROLL);
222 else
223 lprect->left = wndPtr->rectClient.right - wndPtr->rectWindow.left;
224 lprect->top = wndPtr->rectClient.top - wndPtr->rectWindow.top;
225 lprect->right = lprect->left + GetSystemMetrics(SM_CXVSCROLL);
226 lprect->bottom = wndPtr->rectClient.bottom - wndPtr->rectWindow.top;
227 if(wndPtr->dwStyle & WS_HSCROLL)
228 lprect->bottom++;
229 vertical = TRUE;
230 break;
232 case SB_CTL:
233 GetClientRect( hwnd, lprect );
234 vertical = ((wndPtr->dwStyle & SBS_VERT) != 0);
235 break;
237 default:
238 WIN_ReleasePtr( wndPtr );
239 return FALSE;
242 if (vertical) pixels = lprect->bottom - lprect->top;
243 else pixels = lprect->right - lprect->left;
245 if (pixels <= 2*GetSystemMetrics(SM_CXVSCROLL) + SCROLL_MIN_RECT)
247 if (pixels > SCROLL_MIN_RECT)
248 *arrowSize = (pixels - SCROLL_MIN_RECT) / 2;
249 else
250 *arrowSize = 0;
251 *thumbPos = *thumbSize = 0;
253 else
255 SCROLLBAR_INFO *info = SCROLL_GetInternalInfo( hwnd, nBar, FALSE );
256 if (!info)
258 WARN("called for missing scroll bar\n");
259 WIN_ReleasePtr( wndPtr );
260 return FALSE;
262 *arrowSize = GetSystemMetrics(SM_CXVSCROLL);
263 pixels -= (2 * (GetSystemMetrics(SM_CXVSCROLL) - SCROLL_ARROW_THUMB_OVERLAP));
265 if (info->page)
267 *thumbSize = MulDiv(pixels,info->page,(info->maxVal-info->minVal+1));
268 if (*thumbSize < SCROLL_MIN_THUMB) *thumbSize = SCROLL_MIN_THUMB;
270 else *thumbSize = GetSystemMetrics(SM_CXVSCROLL);
272 if (((pixels -= *thumbSize ) < 0) ||
273 ((info->flags & ESB_DISABLE_BOTH) == ESB_DISABLE_BOTH))
275 /* Rectangle too small or scrollbar disabled -> no thumb */
276 *thumbPos = *thumbSize = 0;
278 else
280 INT max = info->maxVal - max( info->page-1, 0 );
281 if (info->minVal >= max)
282 *thumbPos = *arrowSize - SCROLL_ARROW_THUMB_OVERLAP;
283 else
284 *thumbPos = *arrowSize - SCROLL_ARROW_THUMB_OVERLAP
285 + MulDiv(pixels, (info->curVal-info->minVal),(max - info->minVal));
288 WIN_ReleasePtr( wndPtr );
289 return vertical;
293 /***********************************************************************
294 * SCROLL_GetThumbVal
296 * Compute the current scroll position based on the thumb position in pixels
297 * from the top of the scroll-bar.
299 static UINT SCROLL_GetThumbVal( SCROLLBAR_INFO *infoPtr, RECT *rect,
300 BOOL vertical, INT pos )
302 INT thumbSize;
303 INT pixels = vertical ? rect->bottom-rect->top : rect->right-rect->left;
305 if ((pixels -= 2*(GetSystemMetrics(SM_CXVSCROLL) - SCROLL_ARROW_THUMB_OVERLAP)) <= 0)
306 return infoPtr->minVal;
308 if (infoPtr->page)
310 thumbSize = MulDiv(pixels,infoPtr->page,(infoPtr->maxVal-infoPtr->minVal+1));
311 if (thumbSize < SCROLL_MIN_THUMB) thumbSize = SCROLL_MIN_THUMB;
313 else thumbSize = GetSystemMetrics(SM_CXVSCROLL);
315 if ((pixels -= thumbSize) <= 0) return infoPtr->minVal;
317 pos = max( 0, pos - (GetSystemMetrics(SM_CXVSCROLL) - SCROLL_ARROW_THUMB_OVERLAP) );
318 if (pos > pixels) pos = pixels;
320 if (!infoPtr->page) pos *= infoPtr->maxVal - infoPtr->minVal;
321 else pos *= infoPtr->maxVal - infoPtr->minVal - infoPtr->page + 1;
322 return infoPtr->minVal + ((pos + pixels / 2) / pixels);
325 /***********************************************************************
326 * SCROLL_PtInRectEx
328 static BOOL SCROLL_PtInRectEx( LPRECT lpRect, POINT pt, BOOL vertical )
330 RECT rect = *lpRect;
331 int scrollbarWidth;
333 /* Pad hit rect to allow mouse to be dragged outside of scrollbar and
334 * still be considered in the scrollbar. */
335 if (vertical)
337 scrollbarWidth = lpRect->right - lpRect->left;
338 rect.left -= scrollbarWidth*8;
339 rect.right += scrollbarWidth*8;
340 rect.top -= scrollbarWidth*2;
341 rect.bottom += scrollbarWidth*2;
343 else
345 scrollbarWidth = lpRect->bottom - lpRect->top;
346 rect.left -= scrollbarWidth*2;
347 rect.right += scrollbarWidth*2;
348 rect.top -= scrollbarWidth*8;
349 rect.bottom += scrollbarWidth*8;
351 return PtInRect( &rect, pt );
354 /***********************************************************************
355 * SCROLL_ClipPos
357 static POINT SCROLL_ClipPos( LPRECT lpRect, POINT pt )
359 if( pt.x < lpRect->left )
360 pt.x = lpRect->left;
361 else
362 if( pt.x > lpRect->right )
363 pt.x = lpRect->right;
365 if( pt.y < lpRect->top )
366 pt.y = lpRect->top;
367 else
368 if( pt.y > lpRect->bottom )
369 pt.y = lpRect->bottom;
371 return pt;
375 /***********************************************************************
376 * SCROLL_HitTest
378 * Scroll-bar hit testing (don't confuse this with WM_NCHITTEST!).
380 static enum SCROLL_HITTEST SCROLL_HitTest( HWND hwnd, INT nBar,
381 POINT pt, BOOL bDragging )
383 INT arrowSize, thumbSize, thumbPos;
384 RECT rect;
386 BOOL vertical = SCROLL_GetScrollBarRect( hwnd, nBar, &rect,
387 &arrowSize, &thumbSize, &thumbPos );
389 if ( (bDragging && !SCROLL_PtInRectEx( &rect, pt, vertical )) ||
390 (!PtInRect( &rect, pt )) ) return SCROLL_NOWHERE;
392 if (vertical)
394 if (pt.y < rect.top + arrowSize) return SCROLL_TOP_ARROW;
395 if (pt.y >= rect.bottom - arrowSize) return SCROLL_BOTTOM_ARROW;
396 if (!thumbPos) return SCROLL_TOP_RECT;
397 pt.y -= rect.top;
398 if (pt.y < thumbPos) return SCROLL_TOP_RECT;
399 if (pt.y >= thumbPos + thumbSize) return SCROLL_BOTTOM_RECT;
401 else /* horizontal */
403 if (pt.x < rect.left + arrowSize) return SCROLL_TOP_ARROW;
404 if (pt.x >= rect.right - arrowSize) return SCROLL_BOTTOM_ARROW;
405 if (!thumbPos) return SCROLL_TOP_RECT;
406 pt.x -= rect.left;
407 if (pt.x < thumbPos) return SCROLL_TOP_RECT;
408 if (pt.x >= thumbPos + thumbSize) return SCROLL_BOTTOM_RECT;
410 return SCROLL_THUMB;
414 /***********************************************************************
415 * SCROLL_DrawArrows
417 * Draw the scroll bar arrows.
419 static void SCROLL_DrawArrows( HDC hdc, SCROLLBAR_INFO *infoPtr,
420 RECT *rect, INT arrowSize, BOOL vertical,
421 BOOL top_pressed, BOOL bottom_pressed )
423 RECT r;
425 r = *rect;
426 if( vertical )
427 r.bottom = r.top + arrowSize;
428 else
429 r.right = r.left + arrowSize;
431 DrawFrameControl( hdc, &r, DFC_SCROLL,
432 (vertical ? DFCS_SCROLLUP : DFCS_SCROLLLEFT)
433 | (top_pressed ? (DFCS_PUSHED | DFCS_FLAT) : 0 )
434 | (infoPtr->flags&ESB_DISABLE_LTUP ? DFCS_INACTIVE : 0 ) );
436 r = *rect;
437 if( vertical )
438 r.top = r.bottom-arrowSize;
439 else
440 r.left = r.right-arrowSize;
442 DrawFrameControl( hdc, &r, DFC_SCROLL,
443 (vertical ? DFCS_SCROLLDOWN : DFCS_SCROLLRIGHT)
444 | (bottom_pressed ? (DFCS_PUSHED | DFCS_FLAT) : 0 )
445 | (infoPtr->flags&ESB_DISABLE_RTDN ? DFCS_INACTIVE : 0) );
448 static void SCROLL_DrawMovingThumb( HDC hdc, RECT *rect, BOOL vertical,
449 INT arrowSize, INT thumbSize )
451 INT pos = SCROLL_TrackingPos;
452 INT max_size;
454 if( vertical )
455 max_size = rect->bottom - rect->top;
456 else
457 max_size = rect->right - rect->left;
459 max_size -= (arrowSize-SCROLL_ARROW_THUMB_OVERLAP) + thumbSize;
461 if( pos < (arrowSize-SCROLL_ARROW_THUMB_OVERLAP) )
462 pos = (arrowSize-SCROLL_ARROW_THUMB_OVERLAP);
463 else if( pos > max_size )
464 pos = max_size;
466 SCROLL_DrawInterior_9x( SCROLL_TrackingWin, hdc, SCROLL_TrackingBar,
467 rect, arrowSize, thumbSize, pos,
468 0, vertical, FALSE, FALSE );
470 SCROLL_MovingThumb = !SCROLL_MovingThumb;
473 /***********************************************************************
474 * SCROLL_DrawInterior
476 * Draw the scroll bar interior (everything except the arrows).
478 static void SCROLL_DrawInterior_9x( HWND hwnd, HDC hdc, INT nBar,
479 RECT *rect, INT arrowSize,
480 INT thumbSize, INT thumbPos,
481 UINT flags, BOOL vertical,
482 BOOL top_selected, BOOL bottom_selected )
484 RECT r;
485 HPEN hSavePen;
486 HBRUSH hSaveBrush,hBrush;
488 /* Only scrollbar controls send WM_CTLCOLORSCROLLBAR.
489 * The window-owned scrollbars need to call DEFWND_ControlColor
490 * to correctly setup default scrollbar colors
492 if (nBar == SB_CTL)
494 hBrush = (HBRUSH)SendMessageW( GetParent(hwnd), WM_CTLCOLORSCROLLBAR,
495 (WPARAM)hdc,(LPARAM)hwnd);
497 else
499 hBrush = DEFWND_ControlColor( hdc, CTLCOLOR_SCROLLBAR );
502 hSavePen = SelectObject( hdc, SYSCOLOR_GetPen(COLOR_WINDOWFRAME) );
503 hSaveBrush = SelectObject( hdc, hBrush );
505 /* Calculate the scroll rectangle */
506 r = *rect;
507 if (vertical)
509 r.top += arrowSize - SCROLL_ARROW_THUMB_OVERLAP;
510 r.bottom -= (arrowSize - SCROLL_ARROW_THUMB_OVERLAP);
512 else
514 r.left += arrowSize - SCROLL_ARROW_THUMB_OVERLAP;
515 r.right -= (arrowSize - SCROLL_ARROW_THUMB_OVERLAP);
518 /* Draw the scroll rectangles and thumb */
519 if (!thumbPos) /* No thumb to draw */
521 PatBlt( hdc, r.left, r.top,
522 r.right - r.left, r.bottom - r.top,
523 PATCOPY );
525 /* cleanup and return */
526 SelectObject( hdc, hSavePen );
527 SelectObject( hdc, hSaveBrush );
528 return;
531 if (vertical)
533 PatBlt( hdc, r.left, r.top,
534 r.right - r.left,
535 thumbPos - (arrowSize - SCROLL_ARROW_THUMB_OVERLAP),
536 top_selected ? 0x0f0000 : PATCOPY );
537 r.top += thumbPos - (arrowSize - SCROLL_ARROW_THUMB_OVERLAP);
538 PatBlt( hdc, r.left, r.top + thumbSize,
539 r.right - r.left,
540 r.bottom - r.top - thumbSize,
541 bottom_selected ? 0x0f0000 : PATCOPY );
542 r.bottom = r.top + thumbSize;
544 else /* horizontal */
546 PatBlt( hdc, r.left, r.top,
547 thumbPos - (arrowSize - SCROLL_ARROW_THUMB_OVERLAP),
548 r.bottom - r.top,
549 top_selected ? 0x0f0000 : PATCOPY );
550 r.left += thumbPos - (arrowSize - SCROLL_ARROW_THUMB_OVERLAP);
551 PatBlt( hdc, r.left + thumbSize, r.top,
552 r.right - r.left - thumbSize,
553 r.bottom - r.top,
554 bottom_selected ? 0x0f0000 : PATCOPY );
555 r.right = r.left + thumbSize;
558 /* Draw the thumb */
559 DrawEdge( hdc, &r, EDGE_RAISED, BF_RECT | BF_MIDDLE );
561 /* cleanup */
562 SelectObject( hdc, hSavePen );
563 SelectObject( hdc, hSaveBrush );
567 static void SCROLL_DrawInterior( HWND hwnd, HDC hdc, INT nBar,
568 RECT *rect, INT arrowSize,
569 INT thumbSize, INT thumbPos,
570 UINT flags, BOOL vertical,
571 BOOL top_selected, BOOL bottom_selected )
573 RECT r;
574 HPEN hSavePen;
575 HBRUSH hSaveBrush,hBrush;
576 BOOL Save_SCROLL_MovingThumb = SCROLL_MovingThumb;
578 if (Save_SCROLL_MovingThumb &&
579 (SCROLL_TrackingWin == hwnd) &&
580 (SCROLL_TrackingBar == nBar))
581 SCROLL_DrawMovingThumb( hdc, rect, vertical, arrowSize, thumbSize );
583 /* Select the correct brush and pen */
585 /* Only scrollbar controls send WM_CTLCOLORSCROLLBAR.
586 * The window-owned scrollbars need to call DEFWND_ControlColor
587 * to correctly setup default scrollbar colors
589 if (nBar == SB_CTL) {
590 hBrush = (HBRUSH)SendMessageW( GetParent(hwnd), WM_CTLCOLORSCROLLBAR,
591 (WPARAM)hdc,(LPARAM)hwnd);
592 } else {
593 hBrush = DEFWND_ControlColor( hdc, CTLCOLOR_SCROLLBAR );
595 hSavePen = SelectObject( hdc, SYSCOLOR_GetPen(COLOR_WINDOWFRAME) );
596 hSaveBrush = SelectObject( hdc, hBrush );
598 /* Calculate the scroll rectangle */
600 r = *rect;
601 if (vertical)
603 r.top += arrowSize - SCROLL_ARROW_THUMB_OVERLAP;
604 r.bottom -= (arrowSize - SCROLL_ARROW_THUMB_OVERLAP);
606 else
608 r.left += arrowSize - SCROLL_ARROW_THUMB_OVERLAP;
609 r.right -= (arrowSize - SCROLL_ARROW_THUMB_OVERLAP);
612 /* Draw the scroll bar frame */
614 /* Draw the scroll rectangles and thumb */
616 if (!thumbPos) /* No thumb to draw */
618 PatBlt( hdc, r.left, r.top, r.right - r.left, r.bottom - r.top, PATCOPY );
620 /* cleanup and return */
621 SelectObject( hdc, hSavePen );
622 SelectObject( hdc, hSaveBrush );
623 return;
626 if (vertical)
628 PatBlt( hdc, r.left, r.top, r.right - r.left,
629 thumbPos - (arrowSize - SCROLL_ARROW_THUMB_OVERLAP),
630 top_selected ? 0x0f0000 : PATCOPY );
631 r.top += thumbPos - (arrowSize - SCROLL_ARROW_THUMB_OVERLAP);
632 PatBlt( hdc, r.left, r.top + thumbSize, r.right - r.left,
633 r.bottom - r.top - thumbSize,
634 bottom_selected ? 0x0f0000 : PATCOPY );
635 r.bottom = r.top + thumbSize;
637 else /* horizontal */
639 PatBlt( hdc, r.left, r.top,
640 thumbPos - (arrowSize - SCROLL_ARROW_THUMB_OVERLAP),
641 r.bottom - r.top, top_selected ? 0x0f0000 : PATCOPY );
642 r.left += thumbPos - (arrowSize - SCROLL_ARROW_THUMB_OVERLAP);
643 PatBlt( hdc, r.left + thumbSize, r.top, r.right - r.left - thumbSize,
644 r.bottom - r.top, bottom_selected ? 0x0f0000 : PATCOPY );
645 r.right = r.left + thumbSize;
648 /* Draw the thumb */
650 SelectObject( hdc, GetSysColorBrush(COLOR_BTNFACE) );
651 Rectangle( hdc, r.left+1, r.top+1, r.right-1, r.bottom-1 );
652 DrawEdge( hdc, &r, EDGE_RAISED, BF_RECT );
654 if (Save_SCROLL_MovingThumb &&
655 (SCROLL_TrackingWin == hwnd) &&
656 (SCROLL_TrackingBar == nBar))
657 SCROLL_DrawMovingThumb( hdc, rect, vertical, arrowSize, thumbSize );
659 /* cleanup */
660 SelectObject( hdc, hSavePen );
661 SelectObject( hdc, hSaveBrush );
665 /***********************************************************************
666 * SCROLL_DrawScrollBar
668 * Redraw the whole scrollbar.
670 void SCROLL_DrawScrollBar( HWND hwnd, HDC hdc, INT nBar,
671 BOOL arrows, BOOL interior )
673 INT arrowSize, thumbSize, thumbPos;
674 RECT rect;
675 BOOL vertical;
676 SCROLLBAR_INFO *infoPtr = SCROLL_GetInternalInfo( hwnd, nBar, TRUE );
677 BOOL Save_SCROLL_MovingThumb = SCROLL_MovingThumb;
678 DWORD style = GetWindowLongW( hwnd, GWL_STYLE );
680 if (!(hwnd = WIN_GetFullHandle( hwnd ))) return;
682 if (!infoPtr ||
683 ((nBar == SB_VERT) && !(style & WS_VSCROLL)) ||
684 ((nBar == SB_HORZ) && !(style & WS_HSCROLL))) return;
685 if (!WIN_IsWindowDrawable( hwnd, FALSE )) return;
687 vertical = SCROLL_GetScrollBarRect( hwnd, nBar, &rect,
688 &arrowSize, &thumbSize, &thumbPos );
690 /* do not draw if the scrollbar rectangle is empty */
691 if(IsRectEmpty(&rect)) return;
693 if (Save_SCROLL_MovingThumb &&
694 (SCROLL_TrackingWin == hwnd) &&
695 (SCROLL_TrackingBar == nBar))
696 SCROLL_DrawMovingThumb( hdc, &rect, vertical, arrowSize, thumbSize );
698 /* Draw the arrows */
700 if (arrows && arrowSize)
702 if( vertical == SCROLL_trackVertical && GetCapture() == hwnd )
703 SCROLL_DrawArrows( hdc, infoPtr, &rect, arrowSize, vertical,
704 (SCROLL_trackHitTest == SCROLL_TOP_ARROW),
705 (SCROLL_trackHitTest == SCROLL_BOTTOM_ARROW) );
706 else
707 SCROLL_DrawArrows( hdc, infoPtr, &rect, arrowSize, vertical,
708 FALSE, FALSE );
710 if( interior )
711 SCROLL_DrawInterior( hwnd, hdc, nBar, &rect, arrowSize, thumbSize,
712 thumbPos, infoPtr->flags, vertical, FALSE, FALSE );
714 if (Save_SCROLL_MovingThumb &&
715 (SCROLL_TrackingWin == hwnd) &&
716 (SCROLL_TrackingBar == nBar))
717 SCROLL_DrawMovingThumb( hdc, &rect, vertical, arrowSize, thumbSize );
719 /* if scroll bar has focus, reposition the caret */
720 if(hwnd==GetFocus() && (nBar==SB_CTL))
722 if (!vertical)
724 SetCaretPos(thumbPos+1, rect.top+1);
726 else
728 SetCaretPos(rect.top+1, thumbPos+1);
733 /***********************************************************************
734 * SCROLL_DrawSizeGrip
736 * Draw the size grip.
738 static void SCROLL_DrawSizeGrip( HWND hwnd, HDC hdc)
740 RECT rc;
742 GetClientRect( hwnd, &rc );
743 FillRect( hdc, &rc, GetSysColorBrush(COLOR_SCROLLBAR) );
744 rc.left = max( rc.left, rc.right - GetSystemMetrics(SM_CXVSCROLL) - 1 );
745 rc.top = max( rc.top, rc.bottom - GetSystemMetrics(SM_CYHSCROLL) - 1 );
746 DrawFrameControl( hdc, &rc, DFC_SCROLL, DFCS_SCROLLSIZEGRIP );
750 /***********************************************************************
751 * SCROLL_RefreshScrollBar
753 * Repaint the scroll bar interior after a SetScrollRange() or
754 * SetScrollPos() call.
756 static void SCROLL_RefreshScrollBar( HWND hwnd, INT nBar,
757 BOOL arrows, BOOL interior )
759 HDC hdc = GetDCEx( hwnd, 0,
760 DCX_CACHE | ((nBar == SB_CTL) ? 0 : DCX_WINDOW) );
761 if (!hdc) return;
763 SCROLL_DrawScrollBar( hwnd, hdc, nBar, arrows, interior );
764 ReleaseDC( hwnd, hdc );
768 /***********************************************************************
769 * SCROLL_HandleKbdEvent
771 * Handle a keyboard event (only for SB_CTL scrollbars with focus).
773 * PARAMS
774 * hwnd [I] Handle of window with scrollbar(s)
775 * wParam [I] Variable input including enable state
776 * lParam [I] Variable input including input point
778 static void SCROLL_HandleKbdEvent(HWND hwnd, WPARAM wParam, LPARAM lParam)
780 TRACE("hwnd=%p wParam=%ld lParam=%ld\n", hwnd, wParam, lParam);
782 /* hide caret on first KEYDOWN to prevent flicker */
783 if ((lParam & PFD_DOUBLEBUFFER_DONTCARE) == 0)
784 HideCaret(hwnd);
786 switch(wParam)
788 case VK_PRIOR: wParam = SB_PAGEUP; break;
789 case VK_NEXT: wParam = SB_PAGEDOWN; break;
790 case VK_HOME: wParam = SB_TOP; break;
791 case VK_END: wParam = SB_BOTTOM; break;
792 case VK_UP: wParam = SB_LINEUP; break;
793 case VK_DOWN: wParam = SB_LINEDOWN; break;
794 case VK_LEFT: wParam = SB_LINEUP; break;
795 case VK_RIGHT: wParam = SB_LINEDOWN; break;
796 default: return;
798 SendMessageW(GetParent(hwnd),
799 ((GetWindowLongW( hwnd, GWL_STYLE ) & SBS_VERT) ?
800 WM_VSCROLL : WM_HSCROLL), wParam, (LPARAM)hwnd);
804 /***********************************************************************
805 * SCROLL_HandleScrollEvent
807 * Handle a mouse or timer event for the scrollbar.
808 * 'pt' is the location of the mouse event in client (for SB_CTL) or
809 * windows coordinates.
811 static void SCROLL_HandleScrollEvent( HWND hwnd, INT nBar, UINT msg, POINT pt)
813 /* Previous mouse position for timer events */
814 static POINT prevPt;
815 /* Thumb position when tracking started. */
816 static UINT trackThumbPos;
817 /* Position in the scroll-bar of the last button-down event. */
818 static INT lastClickPos;
819 /* Position in the scroll-bar of the last mouse event. */
820 static INT lastMousePos;
822 enum SCROLL_HITTEST hittest;
823 HWND hwndOwner, hwndCtl;
824 BOOL vertical;
825 INT arrowSize, thumbSize, thumbPos;
826 RECT rect;
827 HDC hdc;
829 SCROLLBAR_INFO *infoPtr = SCROLL_GetInternalInfo( hwnd, nBar, FALSE );
830 if (!infoPtr) return;
831 if ((SCROLL_trackHitTest == SCROLL_NOWHERE) && (msg != WM_LBUTTONDOWN))
832 return;
834 if (nBar == SB_CTL && (GetWindowLongW( hwnd, GWL_STYLE ) & (SBS_SIZEGRIP | SBS_SIZEBOX)))
836 switch(msg)
838 case WM_LBUTTONDOWN: /* Initialise mouse tracking */
839 HideCaret(hwnd); /* hide caret while holding down LBUTTON */
840 SetCapture( hwnd );
841 prevPt = pt;
842 SCROLL_trackHitTest = hittest = SCROLL_THUMB;
843 break;
844 case WM_MOUSEMOVE:
845 GetClientRect(GetParent(GetParent(hwnd)),&rect);
846 prevPt = pt;
847 break;
848 case WM_LBUTTONUP:
849 ReleaseCapture();
850 SCROLL_trackHitTest = hittest = SCROLL_NOWHERE;
851 if (hwnd==GetFocus()) ShowCaret(hwnd);
852 break;
853 case WM_SYSTIMER:
854 pt = prevPt;
855 break;
857 return;
860 hdc = GetDCEx( hwnd, 0, DCX_CACHE | ((nBar == SB_CTL) ? 0 : DCX_WINDOW));
861 vertical = SCROLL_GetScrollBarRect( hwnd, nBar, &rect,
862 &arrowSize, &thumbSize, &thumbPos );
863 hwndOwner = (nBar == SB_CTL) ? GetParent(hwnd) : hwnd;
864 hwndCtl = (nBar == SB_CTL) ? hwnd : 0;
866 switch(msg)
868 case WM_LBUTTONDOWN: /* Initialise mouse tracking */
869 HideCaret(hwnd); /* hide caret while holding down LBUTTON */
870 SCROLL_trackVertical = vertical;
871 SCROLL_trackHitTest = hittest = SCROLL_HitTest( hwnd, nBar, pt, FALSE );
872 lastClickPos = vertical ? (pt.y - rect.top) : (pt.x - rect.left);
873 lastMousePos = lastClickPos;
874 trackThumbPos = thumbPos;
875 prevPt = pt;
876 if (nBar == SB_CTL && (GetWindowLongW(hwnd, GWL_STYLE) & WS_TABSTOP)) SetFocus( hwnd );
877 SetCapture( hwnd );
878 break;
880 case WM_MOUSEMOVE:
881 hittest = SCROLL_HitTest( hwnd, nBar, pt, TRUE );
882 prevPt = pt;
883 break;
885 case WM_LBUTTONUP:
886 hittest = SCROLL_NOWHERE;
887 ReleaseCapture();
888 /* if scrollbar has focus, show back caret */
889 if (hwnd==GetFocus()) ShowCaret(hwnd);
890 break;
892 case WM_SYSTIMER:
893 pt = prevPt;
894 hittest = SCROLL_HitTest( hwnd, nBar, pt, FALSE );
895 break;
897 default:
898 return; /* Should never happen */
901 TRACE("Event: hwnd=%p bar=%d msg=%s pt=%d,%d hit=%d\n",
902 hwnd, nBar, SPY_GetMsgName(msg,hwnd), pt.x, pt.y, hittest );
904 switch(SCROLL_trackHitTest)
906 case SCROLL_NOWHERE: /* No tracking in progress */
907 break;
909 case SCROLL_TOP_ARROW:
910 SCROLL_DrawArrows( hdc, infoPtr, &rect, arrowSize, vertical,
911 (hittest == SCROLL_trackHitTest), FALSE );
912 if (hittest == SCROLL_trackHitTest)
914 if ((msg == WM_LBUTTONDOWN) || (msg == WM_SYSTIMER))
916 SendMessageW( hwndOwner, vertical ? WM_VSCROLL : WM_HSCROLL,
917 SB_LINEUP, (LPARAM)hwndCtl );
920 SetSystemTimer( hwnd, SCROLL_TIMER, (msg == WM_LBUTTONDOWN) ?
921 SCROLL_FIRST_DELAY : SCROLL_REPEAT_DELAY,
922 (TIMERPROC)0 );
924 else KillSystemTimer( hwnd, SCROLL_TIMER );
925 break;
927 case SCROLL_TOP_RECT:
928 SCROLL_DrawInterior( hwnd, hdc, nBar, &rect, arrowSize, thumbSize,
929 thumbPos, infoPtr->flags, vertical,
930 (hittest == SCROLL_trackHitTest), FALSE );
931 if (hittest == SCROLL_trackHitTest)
933 if ((msg == WM_LBUTTONDOWN) || (msg == WM_SYSTIMER))
935 SendMessageW( hwndOwner, vertical ? WM_VSCROLL : WM_HSCROLL,
936 SB_PAGEUP, (LPARAM)hwndCtl );
938 SetSystemTimer( hwnd, SCROLL_TIMER, (msg == WM_LBUTTONDOWN) ?
939 SCROLL_FIRST_DELAY : SCROLL_REPEAT_DELAY,
940 (TIMERPROC)0 );
942 else KillSystemTimer( hwnd, SCROLL_TIMER );
943 break;
945 case SCROLL_THUMB:
946 if (msg == WM_LBUTTONDOWN)
948 SCROLL_TrackingWin = hwnd;
949 SCROLL_TrackingBar = nBar;
950 SCROLL_TrackingPos = trackThumbPos + lastMousePos - lastClickPos;
951 SCROLL_TrackingVal = SCROLL_GetThumbVal( infoPtr, &rect,
952 vertical,
953 SCROLL_TrackingPos );
954 if (!SCROLL_MovingThumb)
955 SCROLL_DrawMovingThumb(hdc, &rect, vertical, arrowSize, thumbSize);
957 else if (msg == WM_LBUTTONUP)
959 if (SCROLL_MovingThumb)
960 SCROLL_DrawMovingThumb(hdc, &rect, vertical, arrowSize, thumbSize);
962 SCROLL_DrawInterior( hwnd, hdc, nBar, &rect, arrowSize, thumbSize,
963 thumbPos, infoPtr->flags, vertical,
964 FALSE, FALSE );
966 else /* WM_MOUSEMOVE */
968 INT pos;
970 if (!SCROLL_PtInRectEx( &rect, pt, vertical )) pos = lastClickPos;
971 else
973 pt = SCROLL_ClipPos( &rect, pt );
974 pos = vertical ? (pt.y - rect.top) : (pt.x - rect.left);
976 if ( (pos != lastMousePos) || (!SCROLL_MovingThumb) )
978 if (SCROLL_MovingThumb)
979 SCROLL_DrawMovingThumb( hdc, &rect, vertical,
980 arrowSize, thumbSize );
981 lastMousePos = pos;
982 SCROLL_TrackingPos = trackThumbPos + pos - lastClickPos;
983 SCROLL_TrackingVal = SCROLL_GetThumbVal( infoPtr, &rect,
984 vertical,
985 SCROLL_TrackingPos );
986 SendMessageW( hwndOwner, vertical ? WM_VSCROLL : WM_HSCROLL,
987 MAKEWPARAM( SB_THUMBTRACK, SCROLL_TrackingVal),
988 (LPARAM)hwndCtl );
989 if (!SCROLL_MovingThumb)
990 SCROLL_DrawMovingThumb( hdc, &rect, vertical,
991 arrowSize, thumbSize );
994 break;
996 case SCROLL_BOTTOM_RECT:
997 SCROLL_DrawInterior( hwnd, hdc, nBar, &rect, arrowSize, thumbSize,
998 thumbPos, infoPtr->flags, vertical,
999 FALSE, (hittest == SCROLL_trackHitTest) );
1000 if (hittest == SCROLL_trackHitTest)
1002 if ((msg == WM_LBUTTONDOWN) || (msg == WM_SYSTIMER))
1004 SendMessageW( hwndOwner, vertical ? WM_VSCROLL : WM_HSCROLL,
1005 SB_PAGEDOWN, (LPARAM)hwndCtl );
1007 SetSystemTimer( hwnd, SCROLL_TIMER, (msg == WM_LBUTTONDOWN) ?
1008 SCROLL_FIRST_DELAY : SCROLL_REPEAT_DELAY,
1009 (TIMERPROC)0 );
1011 else KillSystemTimer( hwnd, SCROLL_TIMER );
1012 break;
1014 case SCROLL_BOTTOM_ARROW:
1015 SCROLL_DrawArrows( hdc, infoPtr, &rect, arrowSize, vertical,
1016 FALSE, (hittest == SCROLL_trackHitTest) );
1017 if (hittest == SCROLL_trackHitTest)
1019 if ((msg == WM_LBUTTONDOWN) || (msg == WM_SYSTIMER))
1021 SendMessageW( hwndOwner, vertical ? WM_VSCROLL : WM_HSCROLL,
1022 SB_LINEDOWN, (LPARAM)hwndCtl );
1025 SetSystemTimer( hwnd, SCROLL_TIMER, (msg == WM_LBUTTONDOWN) ?
1026 SCROLL_FIRST_DELAY : SCROLL_REPEAT_DELAY,
1027 (TIMERPROC)0 );
1029 else KillSystemTimer( hwnd, SCROLL_TIMER );
1030 break;
1033 if (msg == WM_LBUTTONDOWN)
1036 if (hittest == SCROLL_THUMB)
1038 UINT val = SCROLL_GetThumbVal( infoPtr, &rect, vertical,
1039 trackThumbPos + lastMousePos - lastClickPos );
1040 SendMessageW( hwndOwner, vertical ? WM_VSCROLL : WM_HSCROLL,
1041 MAKEWPARAM( SB_THUMBTRACK, val ), (LPARAM)hwndCtl );
1045 if (msg == WM_LBUTTONUP)
1047 hittest = SCROLL_trackHitTest;
1048 SCROLL_trackHitTest = SCROLL_NOWHERE; /* Terminate tracking */
1050 if (hittest == SCROLL_THUMB)
1052 UINT val = SCROLL_GetThumbVal( infoPtr, &rect, vertical,
1053 trackThumbPos + lastMousePos - lastClickPos );
1054 SendMessageW( hwndOwner, vertical ? WM_VSCROLL : WM_HSCROLL,
1055 MAKEWPARAM( SB_THUMBPOSITION, val ), (LPARAM)hwndCtl );
1057 /* SB_ENDSCROLL doesn't report thumb position */
1058 SendMessageW( hwndOwner, vertical ? WM_VSCROLL : WM_HSCROLL,
1059 SB_ENDSCROLL, (LPARAM)hwndCtl );
1061 /* Terminate tracking */
1062 SCROLL_TrackingWin = 0;
1065 ReleaseDC( hwnd, hdc );
1069 /***********************************************************************
1070 * SCROLL_TrackScrollBar
1072 * Track a mouse button press on a scroll-bar.
1073 * pt is in screen-coordinates for non-client scroll bars.
1075 void SCROLL_TrackScrollBar( HWND hwnd, INT scrollbar, POINT pt )
1077 MSG msg;
1078 INT xoffset = 0, yoffset = 0;
1080 if (scrollbar != SB_CTL)
1082 WND *wndPtr = WIN_GetPtr( hwnd );
1083 if (!wndPtr || wndPtr == WND_OTHER_PROCESS || wndPtr == WND_DESKTOP) return;
1084 xoffset = wndPtr->rectClient.left - wndPtr->rectWindow.left;
1085 yoffset = wndPtr->rectClient.top - wndPtr->rectWindow.top;
1086 WIN_ReleasePtr( wndPtr );
1087 ScreenToClient( hwnd, &pt );
1088 pt.x += xoffset;
1089 pt.y += yoffset;
1092 SCROLL_HandleScrollEvent( hwnd, scrollbar, WM_LBUTTONDOWN, pt );
1096 if (!GetMessageW( &msg, 0, 0, 0 )) break;
1097 if (CallMsgFilterW( &msg, MSGF_SCROLLBAR )) continue;
1098 if (msg.message == WM_LBUTTONUP ||
1099 msg.message == WM_MOUSEMOVE ||
1100 (msg.message == WM_SYSTIMER && msg.wParam == SCROLL_TIMER))
1102 pt.x = (short)LOWORD(msg.lParam) + xoffset;
1103 pt.y = (short)HIWORD(msg.lParam) + yoffset;
1104 SCROLL_HandleScrollEvent( hwnd, scrollbar, msg.message, pt );
1106 else
1108 TranslateMessage( &msg );
1109 DispatchMessageW( &msg );
1111 if (!IsWindow( hwnd ))
1113 ReleaseCapture();
1114 break;
1116 } while (msg.message != WM_LBUTTONUP);
1120 /***********************************************************************
1121 * SCROLL_CreateScrollBar
1123 * Create a scroll bar
1125 * PARAMS
1126 * hwnd [I] Handle of window with scrollbar(s)
1127 * lpCreate [I] The style and place of the scroll bar
1129 static void SCROLL_CreateScrollBar(HWND hwnd, LPCREATESTRUCTW lpCreate)
1131 LPSCROLLBAR_INFO info = SCROLL_GetInternalInfo(hwnd, SB_CTL, TRUE);
1132 if (!info) return;
1134 TRACE("hwnd=%p lpCreate=%p\n", hwnd, lpCreate);
1136 if (lpCreate->style & WS_DISABLED)
1138 info->flags = ESB_DISABLE_BOTH;
1139 TRACE("Created WS_DISABLED scrollbar\n");
1143 if (lpCreate->style & (SBS_SIZEGRIP | SBS_SIZEBOX))
1145 if (lpCreate->style & SBS_SIZEBOXTOPLEFTALIGN)
1146 MoveWindow( hwnd, lpCreate->x, lpCreate->y, GetSystemMetrics(SM_CXVSCROLL)+1,
1147 GetSystemMetrics(SM_CYHSCROLL)+1, FALSE );
1148 else if(lpCreate->style & SBS_SIZEBOXBOTTOMRIGHTALIGN)
1149 MoveWindow( hwnd, lpCreate->x+lpCreate->cx-GetSystemMetrics(SM_CXVSCROLL)-1,
1150 lpCreate->y+lpCreate->cy-GetSystemMetrics(SM_CYHSCROLL)-1,
1151 GetSystemMetrics(SM_CXVSCROLL)+1,
1152 GetSystemMetrics(SM_CYHSCROLL)+1, FALSE );
1154 else if (lpCreate->style & SBS_VERT)
1156 if (lpCreate->style & SBS_LEFTALIGN)
1157 MoveWindow( hwnd, lpCreate->x, lpCreate->y,
1158 GetSystemMetrics(SM_CXVSCROLL)+1, lpCreate->cy, FALSE );
1159 else if (lpCreate->style & SBS_RIGHTALIGN)
1160 MoveWindow( hwnd,
1161 lpCreate->x+lpCreate->cx-GetSystemMetrics(SM_CXVSCROLL)-1,
1162 lpCreate->y,
1163 GetSystemMetrics(SM_CXVSCROLL)+1, lpCreate->cy, FALSE );
1165 else /* SBS_HORZ */
1167 if (lpCreate->style & SBS_TOPALIGN)
1168 MoveWindow( hwnd, lpCreate->x, lpCreate->y,
1169 lpCreate->cx, GetSystemMetrics(SM_CYHSCROLL)+1, FALSE );
1170 else if (lpCreate->style & SBS_BOTTOMALIGN)
1171 MoveWindow( hwnd,
1172 lpCreate->x,
1173 lpCreate->y+lpCreate->cy-GetSystemMetrics(SM_CYHSCROLL)-1,
1174 lpCreate->cx, GetSystemMetrics(SM_CYHSCROLL)+1, FALSE );
1179 /*************************************************************************
1180 * SCROLL_GetScrollInfo
1182 * Internal helper for the API function
1184 * PARAMS
1185 * hwnd [I] Handle of window with scrollbar(s)
1186 * nBar [I] One of SB_HORZ, SB_VERT, or SB_CTL
1187 * info [IO] fMask specifies which values to retrieve
1189 * RETURNS
1190 * FALSE if requested field not filled (f.i. scroll bar does not exist)
1192 static BOOL SCROLL_GetScrollInfo(HWND hwnd, INT nBar, LPSCROLLINFO info)
1194 LPSCROLLBAR_INFO infoPtr;
1196 /* handle invalid data structure */
1197 if (!SCROLL_ScrollInfoValid(info)
1198 || !(infoPtr = SCROLL_GetInternalInfo(hwnd, nBar, FALSE)))
1199 return FALSE;
1201 /* fill in the desired scroll info structure */
1202 if (info->fMask & SIF_PAGE) info->nPage = infoPtr->page;
1203 if (info->fMask & SIF_POS) info->nPos = infoPtr->curVal;
1204 if ((info->fMask & SIF_TRACKPOS) && (info->cbSize == sizeof(*info)))
1205 info->nTrackPos = (SCROLL_TrackingWin == WIN_GetFullHandle(hwnd)) ? SCROLL_TrackingVal : infoPtr->curVal;
1206 if (info->fMask & SIF_RANGE)
1208 info->nMin = infoPtr->minVal;
1209 info->nMax = infoPtr->maxVal;
1212 TRACE("cbSize %02x fMask %04x nMin %d nMax %d nPage %u nPos %d nTrackPos %d\n",
1213 info->cbSize, info->fMask, info->nMin, info->nMax, info->nPage,
1214 info->nPos, info->nTrackPos);
1216 return (info->fMask & SIF_ALL) != 0;
1220 /*************************************************************************
1221 * SCROLL_GetScrollBarInfo
1223 * Internal helper for the API function
1225 * PARAMS
1226 * hwnd [I] Handle of window with scrollbar(s)
1227 * idObject [I] One of OBJID_CLIENT, OBJID_HSCROLL, or OBJID_VSCROLL
1228 * info [IO] cbSize specifies the size of the structure
1230 * RETURNS
1231 * FALSE if failed
1233 static BOOL SCROLL_GetScrollBarInfo(HWND hwnd, LONG idObject, LPSCROLLBARINFO info)
1235 LPSCROLLBAR_INFO infoPtr;
1236 INT nBar;
1237 INT nDummy;
1238 DWORD style = GetWindowLongW(hwnd, GWL_STYLE);
1239 BOOL pressed;
1240 RECT rect;
1242 switch (idObject)
1244 case OBJID_CLIENT: nBar = SB_CTL; break;
1245 case OBJID_HSCROLL: nBar = SB_HORZ; break;
1246 case OBJID_VSCROLL: nBar = SB_VERT; break;
1247 default: return FALSE;
1250 /* handle invalid data structure */
1251 if (info->cbSize != sizeof(*info))
1252 return FALSE;
1254 SCROLL_GetScrollBarRect(hwnd, nBar, &info->rcScrollBar, &nDummy,
1255 &info->dxyLineButton, &info->xyThumbTop);
1256 /* rcScrollBar needs to be in screen coordinates */
1257 GetWindowRect(hwnd, &rect);
1258 OffsetRect(&info->rcScrollBar, rect.left, rect.top);
1260 info->xyThumbBottom = info->xyThumbTop + info->dxyLineButton;
1262 infoPtr = SCROLL_GetInternalInfo(hwnd, nBar, TRUE);
1263 if (!infoPtr)
1264 return FALSE;
1266 /* Scroll bar state */
1267 info->rgstate[0] = 0;
1268 if ((nBar == SB_HORZ && !(style & WS_HSCROLL))
1269 || (nBar == SB_VERT && !(style & WS_VSCROLL)))
1270 info->rgstate[0] |= STATE_SYSTEM_INVISIBLE;
1271 if (infoPtr->minVal >= infoPtr->maxVal - max(infoPtr->page - 1, 0))
1273 if (!(info->rgstate[0] & STATE_SYSTEM_INVISIBLE))
1274 info->rgstate[0] |= STATE_SYSTEM_UNAVAILABLE;
1275 else
1276 info->rgstate[0] |= STATE_SYSTEM_OFFSCREEN;
1278 if (nBar == SB_CTL && !IsWindowEnabled(hwnd))
1279 info->rgstate[0] |= STATE_SYSTEM_UNAVAILABLE;
1281 pressed = ((nBar == SB_VERT) == SCROLL_trackVertical && GetCapture() == hwnd);
1283 /* Top/left arrow button state. MSDN says top/right, but I don't believe it */
1284 info->rgstate[1] = 0;
1285 if (pressed && SCROLL_trackHitTest == SCROLL_TOP_ARROW)
1286 info->rgstate[1] |= STATE_SYSTEM_PRESSED;
1287 if (infoPtr->flags & ESB_DISABLE_LTUP)
1288 info->rgstate[1] |= STATE_SYSTEM_UNAVAILABLE;
1290 /* Page up/left region state. MSDN says up/right, but I don't believe it */
1291 info->rgstate[2] = 0;
1292 if (infoPtr->curVal == infoPtr->minVal)
1293 info->rgstate[2] |= STATE_SYSTEM_INVISIBLE;
1294 if (pressed && SCROLL_trackHitTest == SCROLL_TOP_RECT)
1295 info->rgstate[2] |= STATE_SYSTEM_PRESSED;
1297 /* Thumb state */
1298 info->rgstate[3] = 0;
1299 if (pressed && SCROLL_trackHitTest == SCROLL_THUMB)
1300 info->rgstate[3] |= STATE_SYSTEM_PRESSED;
1302 /* Page down/right region state. MSDN says down/left, but I don't believe it */
1303 info->rgstate[4] = 0;
1304 if (infoPtr->curVal >= infoPtr->maxVal - 1)
1305 info->rgstate[4] |= STATE_SYSTEM_INVISIBLE;
1306 if (pressed && SCROLL_trackHitTest == SCROLL_BOTTOM_RECT)
1307 info->rgstate[4] |= STATE_SYSTEM_PRESSED;
1309 /* Bottom/right arrow button state. MSDN says bottom/left, but I don't believe it */
1310 info->rgstate[5] = 0;
1311 if (pressed && SCROLL_trackHitTest == SCROLL_BOTTOM_ARROW)
1312 info->rgstate[5] |= STATE_SYSTEM_PRESSED;
1313 if (infoPtr->flags & ESB_DISABLE_RTDN)
1314 info->rgstate[5] |= STATE_SYSTEM_UNAVAILABLE;
1316 return TRUE;
1320 /*************************************************************************
1321 * SCROLL_GetScrollPos
1323 * Internal helper for the API function
1325 * PARAMS
1326 * hwnd [I] Handle of window with scrollbar(s)
1327 * nBar [I] One of SB_HORZ, SB_VERT, or SB_CTL
1329 static INT SCROLL_GetScrollPos(HWND hwnd, INT nBar)
1331 LPSCROLLBAR_INFO infoPtr = SCROLL_GetInternalInfo(hwnd, nBar, FALSE);
1332 return infoPtr ? infoPtr->curVal: 0;
1336 /*************************************************************************
1337 * SCROLL_GetScrollRange
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
1344 * lpMin [O] Where to store minimum value
1345 * lpMax [O] Where to store maximum value
1347 * RETURNS
1348 * Success: TRUE
1349 * Failure: FALSE
1351 static BOOL SCROLL_GetScrollRange(HWND hwnd, INT nBar, LPINT lpMin, LPINT lpMax)
1353 LPSCROLLBAR_INFO infoPtr = SCROLL_GetInternalInfo(hwnd, nBar, FALSE);
1355 if (lpMin) *lpMin = infoPtr ? infoPtr->minVal : 0;
1356 if (lpMax) *lpMax = infoPtr ? infoPtr->maxVal : 0;
1358 return TRUE;
1362 /*************************************************************************
1363 * SCROLL_SetScrollRange
1365 * PARAMS
1366 * hwnd [I] Handle of window with scrollbar(s)
1367 * nBar [I] One of SB_HORZ, SB_VERT, or SB_CTL
1368 * lpMin [I] Minimum value
1369 * lpMax [I] Maximum value
1372 static BOOL SCROLL_SetScrollRange(HWND hwnd, INT nBar, INT minVal, INT maxVal)
1374 LPSCROLLBAR_INFO infoPtr = SCROLL_GetInternalInfo(hwnd, nBar, FALSE);
1376 TRACE("hwnd=%p nBar=%d min=%d max=%d\n", hwnd, nBar, minVal, maxVal);
1378 if (infoPtr)
1380 infoPtr->minVal = minVal;
1381 infoPtr->maxVal = maxVal;
1383 return TRUE;
1387 /***********************************************************************
1388 * ScrollBarWndProc
1390 static LRESULT ScrollBarWndProc( HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam, BOOL unicode )
1392 if (!IsWindow( hwnd )) return 0;
1394 switch(message)
1396 case WM_CREATE:
1397 SCROLL_CreateScrollBar(hwnd, (LPCREATESTRUCTW)lParam);
1398 break;
1400 case WM_ENABLE:
1402 SCROLLBAR_INFO *infoPtr;
1403 if ((infoPtr = SCROLL_GetInternalInfo( hwnd, SB_CTL, FALSE )))
1405 infoPtr->flags = wParam ? ESB_ENABLE_BOTH : ESB_DISABLE_BOTH;
1406 SCROLL_RefreshScrollBar(hwnd, SB_CTL, TRUE, TRUE);
1409 return 0;
1411 case WM_LBUTTONDBLCLK:
1412 case WM_LBUTTONDOWN:
1414 POINT pt;
1415 pt.x = (short)LOWORD(lParam);
1416 pt.y = (short)HIWORD(lParam);
1417 SCROLL_TrackScrollBar( hwnd, SB_CTL, pt );
1419 break;
1420 case WM_LBUTTONUP:
1421 case WM_MOUSEMOVE:
1422 case WM_SYSTIMER:
1424 POINT pt;
1425 pt.x = (short)LOWORD(lParam);
1426 pt.y = (short)HIWORD(lParam);
1427 SCROLL_HandleScrollEvent( hwnd, SB_CTL, message, pt );
1429 break;
1431 case WM_KEYDOWN:
1432 SCROLL_HandleKbdEvent(hwnd, wParam, lParam);
1433 break;
1435 case WM_KEYUP:
1436 ShowCaret(hwnd);
1437 break;
1439 case WM_SETFOCUS:
1441 /* Create a caret when a ScrollBar get focus */
1442 RECT rect;
1443 int arrowSize, thumbSize, thumbPos, vertical;
1444 vertical = SCROLL_GetScrollBarRect( hwnd, SB_CTL, &rect,
1445 &arrowSize, &thumbSize, &thumbPos );
1446 if (!vertical)
1448 CreateCaret(hwnd, (HBITMAP)1, thumbSize-2, rect.bottom-rect.top-2);
1449 SetCaretPos(thumbPos+1, rect.top+1);
1451 else
1453 CreateCaret(hwnd, (HBITMAP)1, rect.right-rect.left-2,thumbSize-2);
1454 SetCaretPos(rect.top+1, thumbPos+1);
1456 ShowCaret(hwnd);
1458 break;
1460 case WM_KILLFOCUS:
1462 RECT rect;
1463 int arrowSize, thumbSize, thumbPos, vertical;
1464 vertical = SCROLL_GetScrollBarRect( hwnd, SB_CTL, &rect,&arrowSize, &thumbSize, &thumbPos );
1465 if (!vertical){
1466 rect.left=thumbPos+1;
1467 rect.right=rect.left+thumbSize;
1469 else
1471 rect.top=thumbPos+1;
1472 rect.bottom=rect.top+thumbSize;
1474 HideCaret(hwnd);
1475 InvalidateRect(hwnd,&rect,0);
1476 DestroyCaret();
1478 break;
1480 case WM_ERASEBKGND:
1481 return 1;
1483 case WM_GETDLGCODE:
1484 return DLGC_WANTARROWS; /* Windows returns this value */
1486 case WM_PAINT:
1488 PAINTSTRUCT ps;
1489 HDC hdc = wParam ? (HDC)wParam : BeginPaint(hwnd, &ps);
1490 if (GetWindowLongW( hwnd, GWL_STYLE ) & SBS_SIZEGRIP)
1492 SCROLL_DrawSizeGrip( hwnd, hdc);
1494 else if (GetWindowLongW( hwnd, GWL_STYLE ) & SBS_SIZEBOX)
1496 RECT rc;
1497 GetClientRect( hwnd, &rc );
1498 FillRect( hdc, &rc, GetSysColorBrush(COLOR_SCROLLBAR) );
1500 else
1501 SCROLL_DrawScrollBar( hwnd, hdc, SB_CTL, TRUE, TRUE );
1502 if (!wParam) EndPaint(hwnd, &ps);
1504 break;
1506 case SBM_SETPOS16:
1507 case SBM_SETPOS:
1508 return SetScrollPos( hwnd, SB_CTL, wParam, (BOOL)lParam );
1510 case SBM_GETPOS16:
1511 case SBM_GETPOS:
1512 return SCROLL_GetScrollPos(hwnd, SB_CTL);
1514 case SBM_SETRANGE16:
1515 if (wParam) message = SBM_SETRANGEREDRAW;
1516 wParam = LOWORD(lParam);
1517 lParam = HIWORD(lParam);
1518 /* fall through */
1519 case SBM_SETRANGEREDRAW:
1520 case SBM_SETRANGE:
1522 INT oldPos = SCROLL_GetScrollPos( hwnd, SB_CTL );
1523 SCROLL_SetScrollRange( hwnd, SB_CTL, wParam, lParam );
1524 if (message == SBM_SETRANGEREDRAW)
1525 SCROLL_RefreshScrollBar( hwnd, SB_CTL, TRUE, TRUE );
1526 if (oldPos != SCROLL_GetScrollPos( hwnd, SB_CTL )) return oldPos;
1528 return 0;
1530 case SBM_GETRANGE16:
1532 INT min, max;
1534 SCROLL_GetScrollRange(hwnd, SB_CTL, &min, &max);
1535 return MAKELRESULT(min, max);
1538 case SBM_GETRANGE:
1539 return SCROLL_GetScrollRange(hwnd, SB_CTL, (LPINT)wParam, (LPINT)lParam);
1541 case SBM_ENABLE_ARROWS16:
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);
1554 case 0x00e5:
1555 case 0x00e7:
1556 case 0x00e8:
1557 case 0x00ec:
1558 case 0x00ed:
1559 case 0x00ee:
1560 case 0x00ef:
1561 ERR("unknown Win32 msg %04x wp=%08lx lp=%08lx\n",
1562 message, wParam, lParam );
1563 break;
1565 default:
1566 if (message >= WM_USER)
1567 WARN("unknown msg %04x wp=%04lx lp=%08lx\n",
1568 message, wParam, lParam );
1569 if (unicode)
1570 return DefWindowProcW( hwnd, message, wParam, lParam );
1571 else
1572 return DefWindowProcA( hwnd, message, wParam, lParam );
1574 return 0;
1578 /***********************************************************************
1579 * ScrollBarWndProcA
1581 static LRESULT WINAPI ScrollBarWndProcA( HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam )
1583 return ScrollBarWndProc( hwnd, message, wParam, lParam, FALSE );
1587 /***********************************************************************
1588 * ScrollBarWndProcW
1590 static LRESULT WINAPI ScrollBarWndProcW( HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam )
1592 return ScrollBarWndProc( hwnd, message, wParam, lParam, TRUE );
1596 /*************************************************************************
1597 * SetScrollInfo (USER32.@)
1599 * SetScrollInfo can be used to set the position, upper bound,
1600 * lower bound, and page size of a scrollbar control.
1602 * PARAMS
1603 * hwnd [I] Handle of window with scrollbar(s)
1604 * nBar [I] One of SB_HORZ, SB_VERT, or SB_CTL
1605 * info [I] Specifies what to change and new values
1606 * bRedraw [I] Should scrollbar be redrawn afterwards?
1608 * RETURNS
1609 * Scrollbar position
1611 * NOTE
1612 * For 100 lines of text to be displayed in a window of 25 lines,
1613 * one would for instance use info->nMin=0, info->nMax=75
1614 * (corresponding to the 76 different positions of the window on
1615 * the text), and info->nPage=25.
1617 INT WINAPI SetScrollInfo(HWND hwnd, INT nBar, const SCROLLINFO *info, BOOL bRedraw)
1619 TRACE("hwnd=%p nBar=%d info=%p, bRedraw=%d\n", hwnd, nBar, info, bRedraw);
1621 /* Refer SB_CTL requests to the window */
1622 if (nBar == SB_CTL)
1623 return SendMessageW(hwnd, SBM_SETSCROLLINFO, bRedraw, (LPARAM)info);
1624 else
1625 return SCROLL_SetScrollInfo( hwnd, nBar, info, bRedraw );
1628 static INT SCROLL_SetScrollInfo( HWND hwnd, INT nBar, LPCSCROLLINFO info, BOOL bRedraw )
1630 /* Update the scrollbar state and set action flags according to
1631 * what has to be done graphics wise. */
1633 SCROLLBAR_INFO *infoPtr;
1634 UINT new_flags;
1635 INT action = 0;
1637 /* handle invalid data structure */
1638 if (!SCROLL_ScrollInfoValid(info)
1639 || !(infoPtr = SCROLL_GetInternalInfo(hwnd, nBar, TRUE)))
1640 return 0;
1642 if (TRACE_ON(scroll))
1644 TRACE("hwnd=%p bar=%d", hwnd, nBar);
1645 if (info->fMask & SIF_PAGE) TRACE( " page=%d", info->nPage );
1646 if (info->fMask & SIF_POS) TRACE( " pos=%d", info->nPos );
1647 if (info->fMask & SIF_RANGE) TRACE( " min=%d max=%d", info->nMin, info->nMax );
1648 TRACE("\n");
1651 /* Set the page size */
1653 if (info->fMask & SIF_PAGE)
1655 if( infoPtr->page != info->nPage )
1657 infoPtr->page = info->nPage;
1658 action |= SA_SSI_REFRESH;
1662 /* Set the scroll pos */
1664 if (info->fMask & SIF_POS)
1666 if( infoPtr->curVal != info->nPos )
1668 infoPtr->curVal = info->nPos;
1669 action |= SA_SSI_REFRESH;
1673 /* Set the scroll range */
1675 if (info->fMask & SIF_RANGE)
1677 /* Invalid range -> range is set to (0,0) */
1678 if ((info->nMin > info->nMax) ||
1679 ((UINT)(info->nMax - info->nMin) >= 0x80000000))
1681 action |= SA_SSI_REFRESH;
1682 infoPtr->minVal = 0;
1683 infoPtr->maxVal = 0;
1685 else
1687 if( infoPtr->minVal != info->nMin ||
1688 infoPtr->maxVal != info->nMax )
1690 action |= SA_SSI_REFRESH;
1691 infoPtr->minVal = info->nMin;
1692 infoPtr->maxVal = info->nMax;
1697 /* Make sure the page size is valid */
1698 if (infoPtr->page < 0) infoPtr->page = 0;
1699 else if (infoPtr->page > infoPtr->maxVal - infoPtr->minVal + 1 )
1700 infoPtr->page = infoPtr->maxVal - infoPtr->minVal + 1;
1702 /* Make sure the pos is inside the range */
1704 if (infoPtr->curVal < infoPtr->minVal)
1705 infoPtr->curVal = infoPtr->minVal;
1706 else if (infoPtr->curVal > infoPtr->maxVal - max( infoPtr->page-1, 0 ))
1707 infoPtr->curVal = infoPtr->maxVal - max( infoPtr->page-1, 0 );
1709 TRACE(" new values: page=%d pos=%d min=%d max=%d\n",
1710 infoPtr->page, infoPtr->curVal,
1711 infoPtr->minVal, infoPtr->maxVal );
1713 /* don't change the scrollbar state if SetScrollInfo
1714 * is just called with SIF_DISABLENOSCROLL
1716 if(!(info->fMask & SIF_ALL)) goto done;
1718 /* Check if the scrollbar should be hidden or disabled */
1720 if (info->fMask & (SIF_RANGE | SIF_PAGE | SIF_DISABLENOSCROLL))
1722 new_flags = infoPtr->flags;
1723 if (infoPtr->minVal >= infoPtr->maxVal - max( infoPtr->page-1, 0 ))
1725 /* Hide or disable scroll-bar */
1726 if (info->fMask & SIF_DISABLENOSCROLL)
1728 new_flags = ESB_DISABLE_BOTH;
1729 action |= SA_SSI_REFRESH;
1731 else if ((nBar != SB_CTL) && (action & SA_SSI_REFRESH))
1733 action = SA_SSI_HIDE;
1736 else /* Show and enable scroll-bar only if no page only changed. */
1737 if (info->fMask != SIF_PAGE)
1739 new_flags = ESB_ENABLE_BOTH;
1740 if ((nBar != SB_CTL) && ( (action & SA_SSI_REFRESH) ))
1741 action |= SA_SSI_SHOW;
1744 if (infoPtr->flags != new_flags) /* check arrow flags */
1746 infoPtr->flags = new_flags;
1747 action |= SA_SSI_REPAINT_ARROWS;
1751 done:
1752 if( action & SA_SSI_HIDE )
1753 SCROLL_ShowScrollBar( hwnd, nBar, FALSE, FALSE );
1754 else
1756 if( action & SA_SSI_SHOW )
1757 if( SCROLL_ShowScrollBar( hwnd, nBar, TRUE, TRUE ) )
1758 return infoPtr->curVal; /* SetWindowPos() already did the painting */
1760 if( bRedraw )
1761 SCROLL_RefreshScrollBar( hwnd, nBar, TRUE, TRUE );
1762 else if( action & SA_SSI_REPAINT_ARROWS )
1763 SCROLL_RefreshScrollBar( hwnd, nBar, TRUE, FALSE );
1766 /* Return current position */
1767 return infoPtr->curVal;
1771 /*************************************************************************
1772 * GetScrollInfo (USER32.@)
1774 * GetScrollInfo can be used to retrieve the position, upper bound,
1775 * lower bound, and page size of a scrollbar control.
1777 * PARAMS
1778 * hwnd [I] Handle of window with scrollbar(s)
1779 * nBar [I] One of SB_HORZ, SB_VERT, or SB_CTL
1780 * info [IO] fMask specifies which values to retrieve
1782 * RETURNS
1783 * TRUE if SCROLLINFO is filled
1784 * ( if nBar is SB_CTL, GetScrollInfo returns TRUE even if nothing
1785 * is filled)
1787 BOOL WINAPI GetScrollInfo(HWND hwnd, INT nBar, LPSCROLLINFO info)
1789 TRACE("hwnd=%p nBar=%d info=%p\n", hwnd, nBar, info);
1791 /* Refer SB_CTL requests to the window */
1792 if (nBar == SB_CTL)
1794 SendMessageW(hwnd, SBM_GETSCROLLINFO, (WPARAM)0, (LPARAM)info);
1795 return TRUE;
1797 return SCROLL_GetScrollInfo(hwnd, nBar, info);
1801 /*************************************************************************
1802 * GetScrollBarInfo (USER32.@)
1804 * GetScrollBarInfo can be used to retrieve information about a scrollbar
1805 * control.
1807 * PARAMS
1808 * hwnd [I] Handle of window with scrollbar(s)
1809 * idObject [I] One of OBJID_CLIENT, OBJID_HSCROLL, or OBJID_VSCROLL
1810 * info [IO] cbSize specifies the size of SCROLLBARINFO
1812 * RETURNS
1813 * TRUE if success
1815 BOOL WINAPI GetScrollBarInfo(HWND hwnd, LONG idObject, LPSCROLLBARINFO info)
1817 TRACE("hwnd=%p idObject=%d info=%p\n", hwnd, idObject, info);
1819 /* Refer OBJID_CLIENT requests to the window */
1820 if (idObject == OBJID_CLIENT)
1821 return SendMessageW(hwnd, SBM_GETSCROLLBARINFO, (WPARAM)0, (LPARAM)info);
1822 else
1823 return SCROLL_GetScrollBarInfo(hwnd, idObject, info);
1827 /*************************************************************************
1828 * SetScrollPos (USER32.@)
1830 * Sets the current position of the scroll thumb.
1832 * PARAMS
1833 * hwnd [I] Handle of window with scrollbar(s)
1834 * nBar [I] One of SB_HORZ, SB_VERT, or SB_CTL
1835 * nPos [I] New value
1836 * bRedraw [I] Should scrollbar be redrawn afterwards?
1838 * RETURNS
1839 * Success: Scrollbar position
1840 * Failure: 0
1842 * REMARKS
1843 * Note the ambiguity when 0 is returned. Use GetLastError
1844 * to make sure there was an error (and to know which one).
1846 INT WINAPI SetScrollPos( HWND hwnd, INT nBar, INT nPos, BOOL bRedraw)
1848 SCROLLINFO info;
1849 SCROLLBAR_INFO *infoPtr;
1850 INT oldPos;
1852 if (!(infoPtr = SCROLL_GetInternalInfo( hwnd, nBar, FALSE ))) return 0;
1853 oldPos = infoPtr->curVal;
1854 info.cbSize = sizeof(info);
1855 info.nPos = nPos;
1856 info.fMask = SIF_POS;
1857 SetScrollInfo( hwnd, nBar, &info, bRedraw );
1858 return oldPos;
1862 /*************************************************************************
1863 * GetScrollPos (USER32.@)
1865 * Gets the current position of the scroll thumb.
1867 * PARAMS
1868 * hwnd [I] Handle of window with scrollbar(s)
1869 * nBar [I] One of SB_HORZ, SB_VERT, or SB_CTL
1871 * RETURNS
1872 * Success: Current position
1873 * Failure: 0
1875 * REMARKS
1876 * There is ambiguity when 0 is returned. Use GetLastError
1877 * to make sure there was an error (and to know which one).
1879 INT WINAPI GetScrollPos(HWND hwnd, INT nBar)
1881 TRACE("hwnd=%p nBar=%d\n", hwnd, nBar);
1883 /* Refer SB_CTL requests to the window */
1884 if (nBar == SB_CTL)
1885 return SendMessageW(hwnd, SBM_GETPOS, (WPARAM)0, (LPARAM)0);
1886 else
1887 return SCROLL_GetScrollPos(hwnd, nBar);
1891 /*************************************************************************
1892 * SetScrollRange (USER32.@)
1893 * The SetScrollRange function sets the minimum and maximum scroll box positions
1894 * If nMinPos and nMaxPos is the same value, the scroll bar will hide
1896 * Sets the range of the scroll bar.
1898 * PARAMS
1899 * hwnd [I] Handle of window with scrollbar(s)
1900 * nBar [I] One of SB_HORZ, SB_VERT, or SB_CTL
1901 * minVal [I] New minimum value
1902 * maxVal [I] New Maximum value
1903 * bRedraw [I] Should scrollbar be redrawn afterwards?
1905 * RETURNS
1906 * Success: TRUE
1907 * Failure: FALSE
1909 BOOL WINAPI SetScrollRange(HWND hwnd, INT nBar, INT minVal, INT maxVal, BOOL bRedraw)
1911 SCROLLINFO info;
1913 TRACE("hwnd=%p nBar=%d min=%d max=%d, bRedraw=%d\n", hwnd, nBar, minVal, maxVal, bRedraw);
1915 info.cbSize = sizeof(info);
1916 info.fMask = SIF_RANGE;
1917 info.nMin = minVal;
1918 info.nMax = maxVal;
1919 SetScrollInfo( hwnd, nBar, &info, bRedraw );
1920 return TRUE;
1924 /*************************************************************************
1925 * SCROLL_SetNCSbState
1927 * Updates both scrollbars at the same time. Used by MDI CalcChildScroll().
1929 INT SCROLL_SetNCSbState(HWND hwnd, int vMin, int vMax, int vPos,
1930 int hMin, int hMax, int hPos)
1932 SCROLLINFO vInfo, hInfo;
1934 vInfo.cbSize = hInfo.cbSize = sizeof(SCROLLINFO);
1935 vInfo.nMin = vMin;
1936 vInfo.nMax = vMax;
1937 vInfo.nPos = vPos;
1938 hInfo.nMin = hMin;
1939 hInfo.nMax = hMax;
1940 hInfo.nPos = hPos;
1941 vInfo.fMask = hInfo.fMask = SIF_RANGE | SIF_POS;
1943 SCROLL_SetScrollInfo( hwnd, SB_VERT, &vInfo, TRUE );
1944 SCROLL_SetScrollInfo( hwnd, SB_HORZ, &hInfo, TRUE );
1946 return 0;
1950 /*************************************************************************
1951 * GetScrollRange (USER32.@)
1953 * Gets the range of the scroll bar.
1955 * PARAMS
1956 * hwnd [I] Handle of window with scrollbar(s)
1957 * nBar [I] One of SB_HORZ, SB_VERT, or SB_CTL
1958 * lpMin [O] Where to store minimum value
1959 * lpMax [O] Where to store maximum value
1961 * RETURNS
1962 * TRUE if values is filled
1964 BOOL WINAPI GetScrollRange(HWND hwnd, INT nBar, LPINT lpMin, LPINT lpMax)
1966 TRACE("hwnd=%p nBar=%d lpMin=%p lpMax=%p\n", hwnd, nBar, lpMin, lpMax);
1968 /* Refer SB_CTL requests to the window */
1969 if (nBar == SB_CTL)
1970 SendMessageW(hwnd, SBM_GETRANGE, (WPARAM)lpMin, (LPARAM)lpMax);
1971 else
1972 SCROLL_GetScrollRange(hwnd, nBar, lpMin, lpMax);
1974 return TRUE;
1978 /*************************************************************************
1979 * SCROLL_ShowScrollBar()
1981 * Back-end for ShowScrollBar(). Returns FALSE if no action was taken.
1983 static BOOL SCROLL_ShowScrollBar( HWND hwnd, INT nBar, BOOL fShowH, BOOL fShowV )
1985 ULONG old_style, set_bits = 0, clear_bits = 0;
1987 TRACE("hwnd=%p bar=%d horz=%d, vert=%d\n", hwnd, nBar, fShowH, fShowV );
1989 switch(nBar)
1991 case SB_CTL:
1992 ShowWindow( hwnd, fShowH ? SW_SHOW : SW_HIDE );
1993 return TRUE;
1995 case SB_BOTH:
1996 case SB_HORZ:
1997 if (fShowH) set_bits |= WS_HSCROLL;
1998 else clear_bits |= WS_HSCROLL;
1999 if( nBar == SB_HORZ ) break;
2000 /* fall through */
2001 case SB_VERT:
2002 if (fShowV) set_bits |= WS_VSCROLL;
2003 else clear_bits |= WS_VSCROLL;
2004 break;
2006 default:
2007 return FALSE; /* Nothing to do! */
2010 old_style = WIN_SetStyle( hwnd, set_bits, clear_bits );
2011 if ((old_style & clear_bits) != 0 || (old_style & set_bits) != set_bits)
2013 /* frame has been changed, let the window redraw itself */
2014 SetWindowPos( hwnd, 0, 0, 0, 0, 0, SWP_NOSIZE | SWP_NOMOVE
2015 | SWP_NOACTIVATE | SWP_NOZORDER | SWP_FRAMECHANGED );
2016 return TRUE;
2018 return FALSE; /* no frame changes */
2022 /*************************************************************************
2023 * ShowScrollBar (USER32.@)
2025 * Shows or hides the scroll bar.
2027 * PARAMS
2028 * hwnd [I] Handle of window with scrollbar(s)
2029 * nBar [I] One of SB_HORZ, SB_VERT, or SB_CTL
2030 * fShow [I] TRUE = show, FALSE = hide
2032 * RETURNS
2033 * Success: TRUE
2034 * Failure: FALSE
2036 BOOL WINAPI ShowScrollBar(HWND hwnd, INT nBar, BOOL fShow)
2038 if ( !hwnd )
2039 return FALSE;
2041 SCROLL_ShowScrollBar( hwnd, nBar, (nBar == SB_VERT) ? 0 : fShow,
2042 (nBar == SB_HORZ) ? 0 : fShow );
2043 return TRUE;
2047 /*************************************************************************
2048 * EnableScrollBar (USER32.@)
2050 * Enables or disables the scroll bars.
2052 BOOL WINAPI EnableScrollBar( HWND hwnd, UINT nBar, UINT flags )
2054 BOOL bFineWithMe;
2055 SCROLLBAR_INFO *infoPtr;
2057 flags &= ESB_DISABLE_BOTH;
2059 if (nBar == SB_BOTH)
2061 if (!(infoPtr = SCROLL_GetInternalInfo( hwnd, SB_VERT, TRUE ))) return FALSE;
2062 if (!(bFineWithMe = (infoPtr->flags == flags)) )
2064 infoPtr->flags = flags;
2065 SCROLL_RefreshScrollBar( hwnd, SB_VERT, TRUE, TRUE );
2067 nBar = SB_HORZ;
2069 else
2070 bFineWithMe = TRUE;
2072 if (!(infoPtr = SCROLL_GetInternalInfo( hwnd, nBar, TRUE ))) return FALSE;
2073 if (bFineWithMe && infoPtr->flags == flags) return FALSE;
2074 infoPtr->flags = flags;
2076 SCROLL_RefreshScrollBar( hwnd, nBar, TRUE, TRUE );
2077 return TRUE;