user32: Forward all WM_SYSCOMMAND messages to the driver, not only moves and resizes.
[wine] / dlls / user32 / scroll.c
1 /*
2  * Scrollbar control
3  *
4  * Copyright 1993 Martin Ayotte
5  * Copyright 1994, 1996 Alexandre Julliard
6  *
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.
11  *
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.
16  *
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
20  *
21  * NOTES
22  *
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.
25  * 
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.
29  */
30
31 #include <stdarg.h>
32
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"
41
42 WINE_DEFAULT_DEBUG_CHANNEL(scroll);
43
44 typedef struct
45 {
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;
52
53
54   /* Minimum size of the rectangle between the arrows */
55 #define SCROLL_MIN_RECT  4
56
57   /* Minimum size of the thumb in pixels */
58 #define SCROLL_MIN_THUMB 6
59
60   /* Overlap between arrows and thumb */
61 #define SCROLL_ARROW_THUMB_OVERLAP 0
62
63   /* Delay (in ms) before first repetition when holding the button down */
64 #define SCROLL_FIRST_DELAY   200
65
66   /* Delay (in ms) between scroll repetitions */
67 #define SCROLL_REPEAT_DELAY  50
68
69   /* Scroll timer id */
70 #define SCROLL_TIMER   0
71
72   /* Scroll-bar hit testing */
73 enum SCROLL_HITTEST
74 {
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 */
81 };
82
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
88
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;
97
98  /* Is the moving thumb being displayed? */
99 static BOOL SCROLL_MovingThumb = FALSE;
100
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 ScrollBarWndProc( HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam );
112
113
114 /*********************************************************************
115  * scrollbar class descriptor
116  */
117 static const WCHAR scrollbarW[] = {'S','c','r','o','l','l','B','a','r',0};
118 const struct builtin_class_descr SCROLL_builtin_class =
119 {
120     scrollbarW,             /* name */
121     CS_DBLCLKS | CS_VREDRAW | CS_HREDRAW | CS_PARENTDC, /* style  */
122     NULL,                   /* procA (winproc is Unicode only) */
123     ScrollBarWndProc,       /* procW */
124     sizeof(SCROLLBAR_INFO), /* extra */
125     IDC_ARROW,              /* cursor */
126     0                       /* brush */
127 };
128
129 /***********************************************************************
130  *           SCROLL_ScrollInfoValid
131  *
132  *  Determine if the supplied SCROLLINFO struct is valid.
133  *  info     [in] The SCROLLINFO struct to be tested
134  */
135 static inline BOOL SCROLL_ScrollInfoValid( LPCSCROLLINFO info )
136 {
137     return !(info->fMask & ~(SIF_ALL | SIF_DISABLENOSCROLL)
138         || (info->cbSize != sizeof(*info)
139             && info->cbSize != sizeof(*info) - sizeof(info->nTrackPos)));
140 }
141
142
143 /***********************************************************************
144  *           SCROLL_GetInternalInfo
145
146  * Returns pointer to internal SCROLLBAR_INFO structure for nBar
147  * or NULL if failed (f.i. scroll bar does not exist yet)
148  * If alloc is TRUE and the struct does not exist yet, create it.
149  */
150 static SCROLLBAR_INFO *SCROLL_GetInternalInfo( HWND hwnd, INT nBar, BOOL alloc )
151 {
152     SCROLLBAR_INFO *infoPtr = NULL;
153     WND *wndPtr = WIN_GetPtr( hwnd );
154
155     if (!wndPtr || wndPtr == WND_OTHER_PROCESS || wndPtr == WND_DESKTOP) return NULL;
156     switch(nBar)
157     {
158         case SB_HORZ: infoPtr = (SCROLLBAR_INFO *)wndPtr->pHScroll; break;
159         case SB_VERT: infoPtr = (SCROLLBAR_INFO *)wndPtr->pVScroll; break;
160         case SB_CTL:  infoPtr = (SCROLLBAR_INFO *)wndPtr->wExtra; break;
161         case SB_BOTH: WARN("with SB_BOTH\n"); break;
162     }
163
164     if (!infoPtr && alloc)
165     {
166         if (nBar != SB_HORZ && nBar != SB_VERT)
167             WARN("Cannot initialize nBar=%d\n",nBar);
168         else if ((infoPtr = HeapAlloc( GetProcessHeap(), 0, sizeof(SCROLLBAR_INFO) )))
169         {
170             /* Set default values */
171             infoPtr->minVal = infoPtr->curVal = infoPtr->page = 0;
172             /* From MSDN: max for a standard scroll bar is 100 by default. */
173             infoPtr->maxVal = 100;
174             /* Scroll bar is enabled by default after create */
175             infoPtr->flags  = ESB_ENABLE_BOTH;
176             if (nBar == SB_HORZ) wndPtr->pHScroll = infoPtr;
177             else wndPtr->pVScroll = infoPtr;
178         }
179     }
180     WIN_ReleasePtr( wndPtr );
181     return infoPtr;
182 }
183
184
185 /***********************************************************************
186  *           SCROLL_GetScrollBarRect
187  *
188  * Compute the scroll bar rectangle, in drawing coordinates (i.e. client
189  * coords for SB_CTL, window coords for SB_VERT and SB_HORZ).
190  * 'arrowSize' returns the width or height of an arrow (depending on
191  * the orientation of the scrollbar), 'thumbSize' returns the size of
192  * the thumb, and 'thumbPos' returns the position of the thumb
193  * relative to the left or to the top.
194  * Return TRUE if the scrollbar is vertical, FALSE if horizontal.
195  */
196 static BOOL SCROLL_GetScrollBarRect( HWND hwnd, INT nBar, RECT *lprect,
197                                      INT *arrowSize, INT *thumbSize,
198                                      INT *thumbPos )
199 {
200     INT pixels;
201     BOOL vertical;
202     WND *wndPtr = WIN_GetPtr( hwnd );
203
204     if (!wndPtr || wndPtr == WND_OTHER_PROCESS || wndPtr == WND_DESKTOP) return FALSE;
205
206     switch(nBar)
207     {
208       case SB_HORZ:
209         lprect->left   = wndPtr->rectClient.left - wndPtr->rectWindow.left;
210         lprect->top    = wndPtr->rectClient.bottom - wndPtr->rectWindow.top;
211         lprect->right  = wndPtr->rectClient.right - wndPtr->rectWindow.left;
212         lprect->bottom = lprect->top + GetSystemMetrics(SM_CYHSCROLL);
213         if(wndPtr->dwStyle & WS_VSCROLL)
214           lprect->right++;
215         vertical = FALSE;
216         break;
217
218       case SB_VERT:
219         if((wndPtr->dwExStyle & WS_EX_LEFTSCROLLBAR) != 0)
220             lprect->left   = wndPtr->rectClient.left - wndPtr->rectWindow.left - GetSystemMetrics(SM_CXVSCROLL);
221         else
222             lprect->left   = wndPtr->rectClient.right - wndPtr->rectWindow.left;
223         lprect->top    = wndPtr->rectClient.top - wndPtr->rectWindow.top;
224         lprect->right  = lprect->left + GetSystemMetrics(SM_CXVSCROLL);
225         lprect->bottom = wndPtr->rectClient.bottom - wndPtr->rectWindow.top;
226         if(wndPtr->dwStyle & WS_HSCROLL)
227           lprect->bottom++;
228         vertical = TRUE;
229         break;
230
231       case SB_CTL:
232         GetClientRect( hwnd, lprect );
233         vertical = ((wndPtr->dwStyle & SBS_VERT) != 0);
234         break;
235
236     default:
237         WIN_ReleasePtr( wndPtr );
238         return FALSE;
239     }
240
241     if (vertical) pixels = lprect->bottom - lprect->top;
242     else pixels = lprect->right - lprect->left;
243
244     if (pixels <= 2*GetSystemMetrics(SM_CXVSCROLL) + SCROLL_MIN_RECT)
245     {
246         if (pixels > SCROLL_MIN_RECT)
247             *arrowSize = (pixels - SCROLL_MIN_RECT) / 2;
248         else
249             *arrowSize = 0;
250         *thumbPos = *thumbSize = 0;
251     }
252     else
253     {
254         SCROLLBAR_INFO *info = SCROLL_GetInternalInfo( hwnd, nBar, FALSE );
255         if (!info)
256         {
257             WARN("called for missing scroll bar\n");
258             WIN_ReleasePtr( wndPtr );
259             return FALSE;
260         }
261         *arrowSize = GetSystemMetrics(SM_CXVSCROLL);
262         pixels -= (2 * (GetSystemMetrics(SM_CXVSCROLL) - SCROLL_ARROW_THUMB_OVERLAP));
263
264         if (info->page)
265         {
266             *thumbSize = MulDiv(pixels,info->page,(info->maxVal-info->minVal+1));
267             if (*thumbSize < SCROLL_MIN_THUMB) *thumbSize = SCROLL_MIN_THUMB;
268         }
269         else *thumbSize = GetSystemMetrics(SM_CXVSCROLL);
270
271         if (((pixels -= *thumbSize ) < 0) ||
272             ((info->flags & ESB_DISABLE_BOTH) == ESB_DISABLE_BOTH))
273         {
274             /* Rectangle too small or scrollbar disabled -> no thumb */
275             *thumbPos = *thumbSize = 0;
276         }
277         else
278         {
279             INT max = info->maxVal - max( info->page-1, 0 );
280             if (info->minVal >= max)
281                 *thumbPos = *arrowSize - SCROLL_ARROW_THUMB_OVERLAP;
282             else
283                 *thumbPos = *arrowSize - SCROLL_ARROW_THUMB_OVERLAP
284                   + MulDiv(pixels, (info->curVal-info->minVal),(max - info->minVal));
285         }
286     }
287     WIN_ReleasePtr( wndPtr );
288     return vertical;
289 }
290
291
292 /***********************************************************************
293  *           SCROLL_GetThumbVal
294  *
295  * Compute the current scroll position based on the thumb position in pixels
296  * from the top of the scroll-bar.
297  */
298 static UINT SCROLL_GetThumbVal( SCROLLBAR_INFO *infoPtr, RECT *rect,
299                                   BOOL vertical, INT pos )
300 {
301     INT thumbSize;
302     INT pixels = vertical ? rect->bottom-rect->top : rect->right-rect->left;
303
304     if ((pixels -= 2*(GetSystemMetrics(SM_CXVSCROLL) - SCROLL_ARROW_THUMB_OVERLAP)) <= 0)
305         return infoPtr->minVal;
306
307     if (infoPtr->page)
308     {
309         thumbSize = MulDiv(pixels,infoPtr->page,(infoPtr->maxVal-infoPtr->minVal+1));
310         if (thumbSize < SCROLL_MIN_THUMB) thumbSize = SCROLL_MIN_THUMB;
311     }
312     else thumbSize = GetSystemMetrics(SM_CXVSCROLL);
313
314     if ((pixels -= thumbSize) <= 0) return infoPtr->minVal;
315
316     pos = max( 0, pos - (GetSystemMetrics(SM_CXVSCROLL) - SCROLL_ARROW_THUMB_OVERLAP) );
317     if (pos > pixels) pos = pixels;
318
319     if (!infoPtr->page) pos *= infoPtr->maxVal - infoPtr->minVal;
320     else pos *= infoPtr->maxVal - infoPtr->minVal - infoPtr->page + 1;
321     return infoPtr->minVal + ((pos + pixels / 2) / pixels);
322 }
323
324 /***********************************************************************
325  *           SCROLL_PtInRectEx
326  */
327 static BOOL SCROLL_PtInRectEx( LPRECT lpRect, POINT pt, BOOL vertical )
328 {
329     RECT rect = *lpRect;
330
331     if (vertical)
332     {
333         rect.left -= lpRect->right - lpRect->left;
334         rect.right += lpRect->right - lpRect->left;
335     }
336     else
337     {
338         rect.top -= lpRect->bottom - lpRect->top;
339         rect.bottom += lpRect->bottom - lpRect->top;
340     }
341     return PtInRect( &rect, pt );
342 }
343
344 /***********************************************************************
345  *           SCROLL_ClipPos
346  */
347 static POINT SCROLL_ClipPos( LPRECT lpRect, POINT pt )
348 {
349     if( pt.x < lpRect->left )
350         pt.x = lpRect->left;
351     else
352     if( pt.x > lpRect->right )
353         pt.x = lpRect->right;
354
355     if( pt.y < lpRect->top )
356         pt.y = lpRect->top;
357     else
358     if( pt.y > lpRect->bottom )
359         pt.y = lpRect->bottom;
360
361     return pt;
362 }
363
364
365 /***********************************************************************
366  *           SCROLL_HitTest
367  *
368  * Scroll-bar hit testing (don't confuse this with WM_NCHITTEST!).
369  */
370 static enum SCROLL_HITTEST SCROLL_HitTest( HWND hwnd, INT nBar,
371                                            POINT pt, BOOL bDragging )
372 {
373     INT arrowSize, thumbSize, thumbPos;
374     RECT rect;
375
376     BOOL vertical = SCROLL_GetScrollBarRect( hwnd, nBar, &rect,
377                                            &arrowSize, &thumbSize, &thumbPos );
378
379     if ( (bDragging && !SCROLL_PtInRectEx( &rect, pt, vertical )) ||
380          (!PtInRect( &rect, pt )) ) return SCROLL_NOWHERE;
381
382     if (vertical)
383     {
384         if (pt.y < rect.top + arrowSize) return SCROLL_TOP_ARROW;
385         if (pt.y >= rect.bottom - arrowSize) return SCROLL_BOTTOM_ARROW;
386         if (!thumbPos) return SCROLL_TOP_RECT;
387         pt.y -= rect.top;
388         if (pt.y < thumbPos) return SCROLL_TOP_RECT;
389         if (pt.y >= thumbPos + thumbSize) return SCROLL_BOTTOM_RECT;
390     }
391     else  /* horizontal */
392     {
393         if (pt.x < rect.left + arrowSize) return SCROLL_TOP_ARROW;
394         if (pt.x >= rect.right - arrowSize) return SCROLL_BOTTOM_ARROW;
395         if (!thumbPos) return SCROLL_TOP_RECT;
396         pt.x -= rect.left;
397         if (pt.x < thumbPos) return SCROLL_TOP_RECT;
398         if (pt.x >= thumbPos + thumbSize) return SCROLL_BOTTOM_RECT;
399     }
400     return SCROLL_THUMB;
401 }
402
403
404 /***********************************************************************
405  *           SCROLL_DrawArrows
406  *
407  * Draw the scroll bar arrows.
408  */
409 static void SCROLL_DrawArrows( HDC hdc, SCROLLBAR_INFO *infoPtr,
410                                RECT *rect, INT arrowSize, BOOL vertical,
411                                BOOL top_pressed, BOOL bottom_pressed )
412 {
413   RECT r;
414
415   r = *rect;
416   if( vertical )
417     r.bottom = r.top + arrowSize;
418   else
419     r.right = r.left + arrowSize;
420
421   DrawFrameControl( hdc, &r, DFC_SCROLL,
422                     (vertical ? DFCS_SCROLLUP : DFCS_SCROLLLEFT)
423                     | (top_pressed ? (DFCS_PUSHED | DFCS_FLAT) : 0 )
424                     | (infoPtr->flags&ESB_DISABLE_LTUP ? DFCS_INACTIVE : 0 ) );
425
426   r = *rect;
427   if( vertical )
428     r.top = r.bottom-arrowSize;
429   else
430     r.left = r.right-arrowSize;
431
432   DrawFrameControl( hdc, &r, DFC_SCROLL,
433                     (vertical ? DFCS_SCROLLDOWN : DFCS_SCROLLRIGHT)
434                     | (bottom_pressed ? (DFCS_PUSHED | DFCS_FLAT) : 0 )
435                     | (infoPtr->flags&ESB_DISABLE_RTDN ? DFCS_INACTIVE : 0) );
436 }
437
438 static void SCROLL_DrawMovingThumb( HDC hdc, RECT *rect, BOOL vertical,
439                                     INT arrowSize, INT thumbSize )
440 {
441   INT pos = SCROLL_TrackingPos;
442   INT max_size;
443
444   if( vertical )
445     max_size = rect->bottom - rect->top;
446   else
447     max_size = rect->right - rect->left;
448
449   max_size -= (arrowSize-SCROLL_ARROW_THUMB_OVERLAP) + thumbSize;
450
451   if( pos < (arrowSize-SCROLL_ARROW_THUMB_OVERLAP) )
452     pos = (arrowSize-SCROLL_ARROW_THUMB_OVERLAP);
453   else if( pos > max_size )
454     pos = max_size;
455
456   SCROLL_DrawInterior_9x( SCROLL_TrackingWin, hdc, SCROLL_TrackingBar,
457                           rect, arrowSize, thumbSize, pos,
458                           0, vertical, FALSE, FALSE );
459
460   SCROLL_MovingThumb = !SCROLL_MovingThumb;
461 }
462
463 /***********************************************************************
464  *           SCROLL_DrawInterior
465  *
466  * Draw the scroll bar interior (everything except the arrows).
467  */
468 static void SCROLL_DrawInterior_9x( HWND hwnd, HDC hdc, INT nBar,
469                                     RECT *rect, INT arrowSize,
470                                     INT thumbSize, INT thumbPos,
471                                     UINT flags, BOOL vertical,
472                                     BOOL top_selected, BOOL bottom_selected )
473 {
474     RECT r;
475     HPEN hSavePen;
476     HBRUSH hSaveBrush,hBrush;
477
478     /* Only scrollbar controls send WM_CTLCOLORSCROLLBAR.
479      * The window-owned scrollbars need to call DEFWND_ControlColor
480      * to correctly setup default scrollbar colors
481      */
482     if (nBar == SB_CTL)
483     {
484       hBrush = (HBRUSH)SendMessageW( GetParent(hwnd), WM_CTLCOLORSCROLLBAR,
485                                      (WPARAM)hdc,(LPARAM)hwnd);
486     }
487     else
488     {
489       hBrush = DEFWND_ControlColor( hdc, CTLCOLOR_SCROLLBAR );
490     }
491
492     hSavePen = SelectObject( hdc, SYSCOLOR_GetPen(COLOR_WINDOWFRAME) );
493     hSaveBrush = SelectObject( hdc, hBrush );
494
495     /* Calculate the scroll rectangle */
496     r = *rect;
497     if (vertical)
498     {
499         r.top    += arrowSize - SCROLL_ARROW_THUMB_OVERLAP;
500         r.bottom -= (arrowSize - SCROLL_ARROW_THUMB_OVERLAP);
501     }
502     else
503     {
504         r.left  += arrowSize - SCROLL_ARROW_THUMB_OVERLAP;
505         r.right -= (arrowSize - SCROLL_ARROW_THUMB_OVERLAP);
506     }
507
508     /* Draw the scroll rectangles and thumb */
509     if (!thumbPos)  /* No thumb to draw */
510     {
511         PatBlt( hdc, r.left, r.top,
512                      r.right - r.left, r.bottom - r.top,
513                      PATCOPY );
514
515         /* cleanup and return */
516         SelectObject( hdc, hSavePen );
517         SelectObject( hdc, hSaveBrush );
518         return;
519     }
520
521     if (vertical)
522     {
523         PatBlt( hdc, r.left, r.top,
524                   r.right - r.left,
525                   thumbPos - (arrowSize - SCROLL_ARROW_THUMB_OVERLAP),
526                   top_selected ? 0x0f0000 : PATCOPY );
527         r.top += thumbPos - (arrowSize - SCROLL_ARROW_THUMB_OVERLAP);
528         PatBlt( hdc, r.left, r.top + thumbSize,
529                   r.right - r.left,
530                   r.bottom - r.top - thumbSize,
531                   bottom_selected ? 0x0f0000 : PATCOPY );
532         r.bottom = r.top + thumbSize;
533     }
534     else  /* horizontal */
535     {
536         PatBlt( hdc, r.left, r.top,
537                   thumbPos - (arrowSize - SCROLL_ARROW_THUMB_OVERLAP),
538                   r.bottom - r.top,
539                   top_selected ? 0x0f0000 : PATCOPY );
540         r.left += thumbPos - (arrowSize - SCROLL_ARROW_THUMB_OVERLAP);
541         PatBlt( hdc, r.left + thumbSize, r.top,
542                   r.right - r.left - thumbSize,
543                   r.bottom - r.top,
544                   bottom_selected ? 0x0f0000 : PATCOPY );
545         r.right = r.left + thumbSize;
546     }
547
548     /* Draw the thumb */
549     DrawEdge( hdc, &r, EDGE_RAISED, BF_RECT | BF_MIDDLE  );
550
551     /* cleanup */
552     SelectObject( hdc, hSavePen );
553     SelectObject( hdc, hSaveBrush );
554 }
555
556
557 static void SCROLL_DrawInterior( HWND hwnd, HDC hdc, INT nBar,
558                                  RECT *rect, INT arrowSize,
559                                  INT thumbSize, INT thumbPos,
560                                  UINT flags, BOOL vertical,
561                                  BOOL top_selected, BOOL bottom_selected )
562 {
563     RECT r;
564     HPEN hSavePen;
565     HBRUSH hSaveBrush,hBrush;
566     BOOL Save_SCROLL_MovingThumb = SCROLL_MovingThumb;
567
568     if (Save_SCROLL_MovingThumb &&
569         (SCROLL_TrackingWin == hwnd) &&
570         (SCROLL_TrackingBar == nBar))
571         SCROLL_DrawMovingThumb( hdc, rect, vertical, arrowSize, thumbSize );
572
573       /* Select the correct brush and pen */
574
575     /* Only scrollbar controls send WM_CTLCOLORSCROLLBAR.
576      * The window-owned scrollbars need to call DEFWND_ControlColor
577      * to correctly setup default scrollbar colors
578      */
579     if (nBar == SB_CTL) {
580         hBrush = (HBRUSH)SendMessageW( GetParent(hwnd), WM_CTLCOLORSCROLLBAR,
581                                        (WPARAM)hdc,(LPARAM)hwnd);
582     } else {
583         hBrush = DEFWND_ControlColor( hdc, CTLCOLOR_SCROLLBAR );
584     }
585     hSavePen = SelectObject( hdc, SYSCOLOR_GetPen(COLOR_WINDOWFRAME) );
586     hSaveBrush = SelectObject( hdc, hBrush );
587
588       /* Calculate the scroll rectangle */
589
590     r = *rect;
591     if (vertical)
592     {
593         r.top    += arrowSize - SCROLL_ARROW_THUMB_OVERLAP;
594         r.bottom -= (arrowSize - SCROLL_ARROW_THUMB_OVERLAP);
595     }
596     else
597     {
598         r.left  += arrowSize - SCROLL_ARROW_THUMB_OVERLAP;
599         r.right -= (arrowSize - SCROLL_ARROW_THUMB_OVERLAP);
600     }
601
602       /* Draw the scroll bar frame */
603
604       /* Draw the scroll rectangles and thumb */
605
606     if (!thumbPos)  /* No thumb to draw */
607     {
608         PatBlt( hdc, r.left, r.top, r.right - r.left, r.bottom - r.top, PATCOPY );
609
610         /* cleanup and return */
611         SelectObject( hdc, hSavePen );
612         SelectObject( hdc, hSaveBrush );
613         return;
614     }
615
616     if (vertical)
617     {
618         PatBlt( hdc, r.left, r.top, r.right - r.left,
619                 thumbPos - (arrowSize - SCROLL_ARROW_THUMB_OVERLAP),
620                 top_selected ? 0x0f0000 : PATCOPY );
621         r.top += thumbPos - (arrowSize - SCROLL_ARROW_THUMB_OVERLAP);
622         PatBlt( hdc, r.left, r.top + thumbSize, r.right - r.left,
623                 r.bottom - r.top - thumbSize,
624                 bottom_selected ? 0x0f0000 : PATCOPY );
625         r.bottom = r.top + thumbSize;
626     }
627     else  /* horizontal */
628     {
629         PatBlt( hdc, r.left, r.top,
630                 thumbPos - (arrowSize - SCROLL_ARROW_THUMB_OVERLAP),
631                 r.bottom - r.top, top_selected ? 0x0f0000 : PATCOPY );
632         r.left += thumbPos - (arrowSize - SCROLL_ARROW_THUMB_OVERLAP);
633         PatBlt( hdc, r.left + thumbSize, r.top, r.right - r.left - thumbSize,
634                 r.bottom - r.top, bottom_selected ? 0x0f0000 : PATCOPY );
635         r.right = r.left + thumbSize;
636     }
637
638       /* Draw the thumb */
639
640     SelectObject( hdc, GetSysColorBrush(COLOR_BTNFACE) );
641     Rectangle( hdc, r.left+1, r.top+1, r.right-1, r.bottom-1 );
642     DrawEdge( hdc, &r, EDGE_RAISED, BF_RECT );
643
644     if (Save_SCROLL_MovingThumb &&
645         (SCROLL_TrackingWin == hwnd) &&
646         (SCROLL_TrackingBar == nBar))
647         SCROLL_DrawMovingThumb( hdc, rect, vertical, arrowSize, thumbSize );
648
649     /* cleanup */
650     SelectObject( hdc, hSavePen );
651     SelectObject( hdc, hSaveBrush );
652 }
653
654
655 /***********************************************************************
656  *           SCROLL_DrawScrollBar
657  *
658  * Redraw the whole scrollbar.
659  */
660 void SCROLL_DrawScrollBar( HWND hwnd, HDC hdc, INT nBar,
661                            BOOL arrows, BOOL interior )
662 {
663     INT arrowSize, thumbSize, thumbPos;
664     RECT rect;
665     BOOL vertical;
666     SCROLLBAR_INFO *infoPtr = SCROLL_GetInternalInfo( hwnd, nBar, TRUE );
667     BOOL Save_SCROLL_MovingThumb = SCROLL_MovingThumb;
668     DWORD style = GetWindowLongW( hwnd, GWL_STYLE );
669
670     if (!(hwnd = WIN_GetFullHandle( hwnd ))) return;
671
672     if (!infoPtr ||
673         ((nBar == SB_VERT) && !(style & WS_VSCROLL)) ||
674         ((nBar == SB_HORZ) && !(style & WS_HSCROLL))) return;
675     if (!WIN_IsWindowDrawable( hwnd, FALSE )) return;
676
677     vertical = SCROLL_GetScrollBarRect( hwnd, nBar, &rect,
678                                         &arrowSize, &thumbSize, &thumbPos );
679
680     /* do not draw if the scrollbar rectangle is empty */
681     if(IsRectEmpty(&rect)) return;
682
683     if (Save_SCROLL_MovingThumb &&
684         (SCROLL_TrackingWin == hwnd) &&
685         (SCROLL_TrackingBar == nBar))
686         SCROLL_DrawMovingThumb( hdc, &rect, vertical, arrowSize, thumbSize );
687
688       /* Draw the arrows */
689
690     if (arrows && arrowSize)
691     {
692         if( vertical == SCROLL_trackVertical && GetCapture() == hwnd )
693             SCROLL_DrawArrows( hdc, infoPtr, &rect, arrowSize, vertical,
694                                (SCROLL_trackHitTest == SCROLL_TOP_ARROW),
695                                (SCROLL_trackHitTest == SCROLL_BOTTOM_ARROW) );
696         else
697             SCROLL_DrawArrows( hdc, infoPtr, &rect, arrowSize, vertical,
698                                                                FALSE, FALSE );
699     }
700     if( interior )
701         SCROLL_DrawInterior( hwnd, hdc, nBar, &rect, arrowSize, thumbSize,
702                          thumbPos, infoPtr->flags, vertical, FALSE, FALSE );
703
704     if (Save_SCROLL_MovingThumb &&
705         (SCROLL_TrackingWin == hwnd) &&
706         (SCROLL_TrackingBar == nBar))
707         SCROLL_DrawMovingThumb( hdc, &rect, vertical, arrowSize, thumbSize );
708
709     /* if scroll bar has focus, reposition the caret */
710     if(hwnd==GetFocus() && (nBar==SB_CTL))
711     {
712         if (!vertical)
713         {
714             SetCaretPos(thumbPos+1, rect.top+1);
715         }
716         else
717         {
718             SetCaretPos(rect.top+1, thumbPos+1);
719         }
720     }
721 }
722
723 /***********************************************************************
724  *           SCROLL_DrawSizeGrip
725  *
726  *  Draw the size grip.
727  */
728 static void SCROLL_DrawSizeGrip( HWND hwnd,  HDC hdc)
729 {
730     RECT rc;
731
732     GetClientRect( hwnd, &rc );
733     FillRect( hdc, &rc, GetSysColorBrush(COLOR_SCROLLBAR) );
734     rc.left = max( rc.left, rc.right - GetSystemMetrics(SM_CXVSCROLL) - 1 );
735     rc.top  = max( rc.top, rc.bottom - GetSystemMetrics(SM_CYHSCROLL) - 1 );
736     DrawFrameControl( hdc, &rc, DFC_SCROLL, DFCS_SCROLLSIZEGRIP );
737 }
738
739
740 /***********************************************************************
741  *           SCROLL_RefreshScrollBar
742  *
743  * Repaint the scroll bar interior after a SetScrollRange() or
744  * SetScrollPos() call.
745  */
746 static void SCROLL_RefreshScrollBar( HWND hwnd, INT nBar,
747                                      BOOL arrows, BOOL interior )
748 {
749     HDC hdc = GetDCEx( hwnd, 0,
750                            DCX_CACHE | ((nBar == SB_CTL) ? 0 : DCX_WINDOW) );
751     if (!hdc) return;
752
753     SCROLL_DrawScrollBar( hwnd, hdc, nBar, arrows, interior );
754     ReleaseDC( hwnd, hdc );
755 }
756
757
758 /***********************************************************************
759  *           SCROLL_HandleKbdEvent
760  *
761  * Handle a keyboard event (only for SB_CTL scrollbars with focus).
762  *
763  * PARAMS
764  *    hwnd   [I] Handle of window with scrollbar(s)
765  *    wParam [I] Variable input including enable state
766  *    lParam [I] Variable input including input point
767  */
768 static void SCROLL_HandleKbdEvent(HWND hwnd, WPARAM wParam, LPARAM lParam)
769 {
770     TRACE("hwnd=%p wParam=%ld lParam=%ld\n", hwnd, wParam, lParam);
771
772     /* hide caret on first KEYDOWN to prevent flicker */
773     if ((lParam & PFD_DOUBLEBUFFER_DONTCARE) == 0)
774         HideCaret(hwnd);
775
776     switch(wParam)
777     {
778     case VK_PRIOR: wParam = SB_PAGEUP; break;
779     case VK_NEXT:  wParam = SB_PAGEDOWN; break;
780     case VK_HOME:  wParam = SB_TOP; break;
781     case VK_END:   wParam = SB_BOTTOM; break;
782     case VK_UP:    wParam = SB_LINEUP; break;
783     case VK_DOWN:  wParam = SB_LINEDOWN; break;
784     case VK_LEFT:  wParam = SB_LINEUP; break;
785     case VK_RIGHT: wParam = SB_LINEDOWN; break;
786     default: return;
787     }
788     SendMessageW(GetParent(hwnd),
789         ((GetWindowLongW( hwnd, GWL_STYLE ) & SBS_VERT) ?
790             WM_VSCROLL : WM_HSCROLL), wParam, (LPARAM)hwnd);
791 }
792
793
794 /***********************************************************************
795  *           SCROLL_HandleScrollEvent
796  *
797  * Handle a mouse or timer event for the scrollbar.
798  * 'pt' is the location of the mouse event in client (for SB_CTL) or
799  * windows coordinates.
800  */
801 static void SCROLL_HandleScrollEvent( HWND hwnd, INT nBar, UINT msg, POINT pt)
802 {
803       /* Previous mouse position for timer events */
804     static POINT prevPt;
805       /* Thumb position when tracking started. */
806     static UINT trackThumbPos;
807       /* Position in the scroll-bar of the last button-down event. */
808     static INT lastClickPos;
809       /* Position in the scroll-bar of the last mouse event. */
810     static INT lastMousePos;
811
812     enum SCROLL_HITTEST hittest;
813     HWND hwndOwner, hwndCtl;
814     BOOL vertical;
815     INT arrowSize, thumbSize, thumbPos;
816     RECT rect;
817     HDC hdc;
818
819     SCROLLBAR_INFO *infoPtr = SCROLL_GetInternalInfo( hwnd, nBar, FALSE );
820     if (!infoPtr) return;
821     if ((SCROLL_trackHitTest == SCROLL_NOWHERE) && (msg != WM_LBUTTONDOWN))
822                   return;
823
824     if (nBar == SB_CTL && (GetWindowLongW( hwnd, GWL_STYLE ) & (SBS_SIZEGRIP | SBS_SIZEBOX)))
825     {
826         switch(msg)
827         {
828             case WM_LBUTTONDOWN:  /* Initialise mouse tracking */
829                 HideCaret(hwnd);  /* hide caret while holding down LBUTTON */
830                 SetCapture( hwnd );
831                 prevPt = pt;
832                 SCROLL_trackHitTest  = hittest = SCROLL_THUMB;
833                 break;
834             case WM_MOUSEMOVE:
835                 GetClientRect(GetParent(GetParent(hwnd)),&rect);
836                 prevPt = pt;
837                 break;
838             case WM_LBUTTONUP:
839                 ReleaseCapture();
840                 SCROLL_trackHitTest  = hittest = SCROLL_NOWHERE;
841                 if (hwnd==GetFocus()) ShowCaret(hwnd);
842                 break;
843             case WM_SYSTIMER:
844                 pt = prevPt;
845                 break;
846         }
847         return;
848     }
849
850     hdc = GetDCEx( hwnd, 0, DCX_CACHE | ((nBar == SB_CTL) ? 0 : DCX_WINDOW));
851     vertical = SCROLL_GetScrollBarRect( hwnd, nBar, &rect,
852                                         &arrowSize, &thumbSize, &thumbPos );
853     hwndOwner = (nBar == SB_CTL) ? GetParent(hwnd) : hwnd;
854     hwndCtl   = (nBar == SB_CTL) ? hwnd : 0;
855
856     switch(msg)
857     {
858       case WM_LBUTTONDOWN:  /* Initialise mouse tracking */
859           HideCaret(hwnd);  /* hide caret while holding down LBUTTON */
860           SCROLL_trackVertical = vertical;
861           SCROLL_trackHitTest  = hittest = SCROLL_HitTest( hwnd, nBar, pt, FALSE );
862           lastClickPos  = vertical ? (pt.y - rect.top) : (pt.x - rect.left);
863           lastMousePos  = lastClickPos;
864           trackThumbPos = thumbPos;
865           prevPt = pt;
866           if (nBar == SB_CTL && (GetWindowLongW(hwnd, GWL_STYLE) & WS_TABSTOP)) SetFocus( hwnd );
867           SetCapture( hwnd );
868           break;
869
870       case WM_MOUSEMOVE:
871           hittest = SCROLL_HitTest( hwnd, nBar, pt, TRUE );
872           prevPt = pt;
873           break;
874
875       case WM_LBUTTONUP:
876           hittest = SCROLL_NOWHERE;
877           ReleaseCapture();
878           /* if scrollbar has focus, show back caret */
879           if (hwnd==GetFocus()) ShowCaret(hwnd);
880           break;
881
882       case WM_SYSTIMER:
883           pt = prevPt;
884           hittest = SCROLL_HitTest( hwnd, nBar, pt, FALSE );
885           break;
886
887       default:
888           return;  /* Should never happen */
889     }
890
891     TRACE("Event: hwnd=%p bar=%d msg=%s pt=%d,%d hit=%d\n",
892           hwnd, nBar, SPY_GetMsgName(msg,hwnd), pt.x, pt.y, hittest );
893
894     switch(SCROLL_trackHitTest)
895     {
896     case SCROLL_NOWHERE:  /* No tracking in progress */
897         break;
898
899     case SCROLL_TOP_ARROW:
900         SCROLL_DrawArrows( hdc, infoPtr, &rect, arrowSize, vertical,
901                            (hittest == SCROLL_trackHitTest), FALSE );
902         if (hittest == SCROLL_trackHitTest)
903         {
904             if ((msg == WM_LBUTTONDOWN) || (msg == WM_SYSTIMER))
905             {
906                 SendMessageW( hwndOwner, vertical ? WM_VSCROLL : WM_HSCROLL,
907                                 SB_LINEUP, (LPARAM)hwndCtl );
908             }
909
910             SetSystemTimer( hwnd, SCROLL_TIMER, (msg == WM_LBUTTONDOWN) ?
911                             SCROLL_FIRST_DELAY : SCROLL_REPEAT_DELAY,
912                             (TIMERPROC)0 );
913         }
914         else KillSystemTimer( hwnd, SCROLL_TIMER );
915         break;
916
917     case SCROLL_TOP_RECT:
918         SCROLL_DrawInterior( hwnd, hdc, nBar, &rect, arrowSize, thumbSize,
919                              thumbPos, infoPtr->flags, vertical,
920                              (hittest == SCROLL_trackHitTest), FALSE );
921         if (hittest == SCROLL_trackHitTest)
922         {
923             if ((msg == WM_LBUTTONDOWN) || (msg == WM_SYSTIMER))
924             {
925                 SendMessageW( hwndOwner, vertical ? WM_VSCROLL : WM_HSCROLL,
926                                 SB_PAGEUP, (LPARAM)hwndCtl );
927             }
928             SetSystemTimer( hwnd, SCROLL_TIMER, (msg == WM_LBUTTONDOWN) ?
929                               SCROLL_FIRST_DELAY : SCROLL_REPEAT_DELAY,
930                               (TIMERPROC)0 );
931         }
932         else KillSystemTimer( hwnd, SCROLL_TIMER );
933         break;
934
935     case SCROLL_THUMB:
936         if (msg == WM_LBUTTONDOWN)
937         {
938             SCROLL_TrackingWin = hwnd;
939             SCROLL_TrackingBar = nBar;
940             SCROLL_TrackingPos = trackThumbPos + lastMousePos - lastClickPos;
941             SCROLL_TrackingVal = SCROLL_GetThumbVal( infoPtr, &rect,
942                                                         vertical,
943                                                         SCROLL_TrackingPos );
944             if (!SCROLL_MovingThumb)
945                 SCROLL_DrawMovingThumb(hdc, &rect, vertical, arrowSize, thumbSize);
946         }
947         else if (msg == WM_LBUTTONUP)
948         {
949             if (SCROLL_MovingThumb)
950                 SCROLL_DrawMovingThumb(hdc, &rect, vertical, arrowSize, thumbSize);
951
952             SCROLL_DrawInterior( hwnd, hdc, nBar, &rect, arrowSize, thumbSize,
953                                  thumbPos, infoPtr->flags, vertical,
954                                  FALSE, FALSE );
955         }
956         else  /* WM_MOUSEMOVE */
957         {
958             INT pos;
959
960             if (!SCROLL_PtInRectEx( &rect, pt, vertical )) pos = lastClickPos;
961             else
962             {
963                 pt = SCROLL_ClipPos( &rect, pt );
964                 pos = vertical ? (pt.y - rect.top) : (pt.x - rect.left);
965             }
966             if ( (pos != lastMousePos) || (!SCROLL_MovingThumb) )
967             {
968                 if (SCROLL_MovingThumb)
969                     SCROLL_DrawMovingThumb( hdc, &rect, vertical,
970                                         arrowSize, thumbSize );
971                 lastMousePos = pos;
972                 SCROLL_TrackingPos = trackThumbPos + pos - lastClickPos;
973                 SCROLL_TrackingVal = SCROLL_GetThumbVal( infoPtr, &rect,
974                                                          vertical,
975                                                          SCROLL_TrackingPos );
976                 SendMessageW( hwndOwner, vertical ? WM_VSCROLL : WM_HSCROLL,
977                                 MAKEWPARAM( SB_THUMBTRACK, SCROLL_TrackingVal),
978                                 (LPARAM)hwndCtl );
979                 if (!SCROLL_MovingThumb)
980                     SCROLL_DrawMovingThumb( hdc, &rect, vertical,
981                                         arrowSize, thumbSize );
982             }
983         }
984         break;
985
986     case SCROLL_BOTTOM_RECT:
987         SCROLL_DrawInterior( hwnd, hdc, nBar, &rect, arrowSize, thumbSize,
988                              thumbPos, infoPtr->flags, vertical,
989                              FALSE, (hittest == SCROLL_trackHitTest) );
990         if (hittest == SCROLL_trackHitTest)
991         {
992             if ((msg == WM_LBUTTONDOWN) || (msg == WM_SYSTIMER))
993             {
994                 SendMessageW( hwndOwner, vertical ? WM_VSCROLL : WM_HSCROLL,
995                                 SB_PAGEDOWN, (LPARAM)hwndCtl );
996             }
997             SetSystemTimer( hwnd, SCROLL_TIMER, (msg == WM_LBUTTONDOWN) ?
998                               SCROLL_FIRST_DELAY : SCROLL_REPEAT_DELAY,
999                               (TIMERPROC)0 );
1000         }
1001         else KillSystemTimer( hwnd, SCROLL_TIMER );
1002         break;
1003
1004     case SCROLL_BOTTOM_ARROW:
1005         SCROLL_DrawArrows( hdc, infoPtr, &rect, arrowSize, vertical,
1006                            FALSE, (hittest == SCROLL_trackHitTest) );
1007         if (hittest == SCROLL_trackHitTest)
1008         {
1009             if ((msg == WM_LBUTTONDOWN) || (msg == WM_SYSTIMER))
1010             {
1011                 SendMessageW( hwndOwner, vertical ? WM_VSCROLL : WM_HSCROLL,
1012                                 SB_LINEDOWN, (LPARAM)hwndCtl );
1013             }
1014
1015             SetSystemTimer( hwnd, SCROLL_TIMER, (msg == WM_LBUTTONDOWN) ?
1016                             SCROLL_FIRST_DELAY : SCROLL_REPEAT_DELAY,
1017                             (TIMERPROC)0 );
1018         }
1019         else KillSystemTimer( hwnd, SCROLL_TIMER );
1020         break;
1021     }
1022
1023     if (msg == WM_LBUTTONDOWN)
1024     {
1025
1026         if (hittest == SCROLL_THUMB)
1027         {
1028             UINT val = SCROLL_GetThumbVal( infoPtr, &rect, vertical,
1029                                  trackThumbPos + lastMousePos - lastClickPos );
1030             SendMessageW( hwndOwner, vertical ? WM_VSCROLL : WM_HSCROLL,
1031                             MAKEWPARAM( SB_THUMBTRACK, val ), (LPARAM)hwndCtl );
1032         }
1033     }
1034
1035     if (msg == WM_LBUTTONUP)
1036     {
1037         hittest = SCROLL_trackHitTest;
1038         SCROLL_trackHitTest = SCROLL_NOWHERE;  /* Terminate tracking */
1039
1040         if (hittest == SCROLL_THUMB)
1041         {
1042             UINT val = SCROLL_GetThumbVal( infoPtr, &rect, vertical,
1043                                  trackThumbPos + lastMousePos - lastClickPos );
1044             SendMessageW( hwndOwner, vertical ? WM_VSCROLL : WM_HSCROLL,
1045                             MAKEWPARAM( SB_THUMBPOSITION, val ), (LPARAM)hwndCtl );
1046         }
1047         /* SB_ENDSCROLL doesn't report thumb position */
1048         SendMessageW( hwndOwner, vertical ? WM_VSCROLL : WM_HSCROLL,
1049                           SB_ENDSCROLL, (LPARAM)hwndCtl );
1050
1051         /* Terminate tracking */
1052         SCROLL_TrackingWin = 0;
1053     }
1054
1055     ReleaseDC( hwnd, hdc );
1056 }
1057
1058
1059 /***********************************************************************
1060  *           SCROLL_TrackScrollBar
1061  *
1062  * Track a mouse button press on a scroll-bar.
1063  * pt is in screen-coordinates for non-client scroll bars.
1064  */
1065 void SCROLL_TrackScrollBar( HWND hwnd, INT scrollbar, POINT pt )
1066 {
1067     MSG msg;
1068     INT xoffset = 0, yoffset = 0;
1069
1070     if (scrollbar != SB_CTL)
1071     {
1072         WND *wndPtr = WIN_GetPtr( hwnd );
1073         if (!wndPtr || wndPtr == WND_OTHER_PROCESS || wndPtr == WND_DESKTOP) return;
1074         xoffset = wndPtr->rectClient.left - wndPtr->rectWindow.left;
1075         yoffset = wndPtr->rectClient.top - wndPtr->rectWindow.top;
1076         WIN_ReleasePtr( wndPtr );
1077         ScreenToClient( hwnd, &pt );
1078         pt.x += xoffset;
1079         pt.y += yoffset;
1080     }
1081
1082     SCROLL_HandleScrollEvent( hwnd, scrollbar, WM_LBUTTONDOWN, pt );
1083
1084     do
1085     {
1086         if (!GetMessageW( &msg, 0, 0, 0 )) break;
1087         if (CallMsgFilterW( &msg, MSGF_SCROLLBAR )) continue;
1088         if (msg.message == WM_LBUTTONUP ||
1089             msg.message == WM_MOUSEMOVE ||
1090             (msg.message == WM_SYSTIMER && msg.wParam == SCROLL_TIMER))
1091         {
1092             pt.x = (short)LOWORD(msg.lParam) + xoffset;
1093             pt.y = (short)HIWORD(msg.lParam) + yoffset;
1094             SCROLL_HandleScrollEvent( hwnd, scrollbar, msg.message, pt );
1095         }
1096         else
1097         {
1098             TranslateMessage( &msg );
1099             DispatchMessageW( &msg );
1100         }
1101         if (!IsWindow( hwnd ))
1102         {
1103             ReleaseCapture();
1104             break;
1105         }
1106     } while (msg.message != WM_LBUTTONUP);
1107 }
1108
1109
1110 /***********************************************************************
1111  *           SCROLL_CreateScrollBar
1112  *
1113  * Create a scroll bar
1114  *
1115  * PARAMS
1116  *    hwnd     [I] Handle of window with scrollbar(s)
1117  *    lpCreate [I] The style and place of the scroll bar
1118  */
1119 static void SCROLL_CreateScrollBar(HWND hwnd, LPCREATESTRUCTW lpCreate)
1120 {
1121     LPSCROLLBAR_INFO info = SCROLL_GetInternalInfo(hwnd, SB_CTL, TRUE);
1122     if (!info) return;
1123
1124     TRACE("hwnd=%p lpCreate=%p\n", hwnd, lpCreate);
1125
1126     if (lpCreate->style & WS_DISABLED)
1127     {
1128         info->flags = ESB_DISABLE_BOTH;
1129         TRACE("Created WS_DISABLED scrollbar\n");
1130     }
1131
1132
1133     if (lpCreate->style & (SBS_SIZEGRIP | SBS_SIZEBOX))
1134     {
1135         if (lpCreate->style & SBS_SIZEBOXTOPLEFTALIGN)
1136             MoveWindow( hwnd, lpCreate->x, lpCreate->y, GetSystemMetrics(SM_CXVSCROLL)+1,
1137                         GetSystemMetrics(SM_CYHSCROLL)+1, FALSE );
1138         else if(lpCreate->style & SBS_SIZEBOXBOTTOMRIGHTALIGN)
1139             MoveWindow( hwnd, lpCreate->x+lpCreate->cx-GetSystemMetrics(SM_CXVSCROLL)-1, 
1140                         lpCreate->y+lpCreate->cy-GetSystemMetrics(SM_CYHSCROLL)-1,
1141                         GetSystemMetrics(SM_CXVSCROLL)+1,
1142                         GetSystemMetrics(SM_CYHSCROLL)+1, FALSE );
1143     }
1144     else if (lpCreate->style & SBS_VERT)
1145     {
1146         if (lpCreate->style & SBS_LEFTALIGN)
1147             MoveWindow( hwnd, lpCreate->x, lpCreate->y,
1148                         GetSystemMetrics(SM_CXVSCROLL)+1, lpCreate->cy, FALSE );
1149         else if (lpCreate->style & SBS_RIGHTALIGN)
1150             MoveWindow( hwnd,
1151                         lpCreate->x+lpCreate->cx-GetSystemMetrics(SM_CXVSCROLL)-1,
1152                         lpCreate->y,
1153                         GetSystemMetrics(SM_CXVSCROLL)+1, lpCreate->cy, FALSE );
1154     }
1155     else  /* SBS_HORZ */
1156     {
1157         if (lpCreate->style & SBS_TOPALIGN)
1158             MoveWindow( hwnd, lpCreate->x, lpCreate->y,
1159                         lpCreate->cx, GetSystemMetrics(SM_CYHSCROLL)+1, FALSE );
1160         else if (lpCreate->style & SBS_BOTTOMALIGN)
1161             MoveWindow( hwnd,
1162                         lpCreate->x,
1163                         lpCreate->y+lpCreate->cy-GetSystemMetrics(SM_CYHSCROLL)-1,
1164                         lpCreate->cx, GetSystemMetrics(SM_CYHSCROLL)+1, FALSE );
1165     }
1166 }
1167
1168
1169 /*************************************************************************
1170  *           SCROLL_GetScrollInfo
1171  *
1172  * Internal helper for the API function
1173  *
1174  * PARAMS
1175  *    hwnd [I]  Handle of window with scrollbar(s)
1176  *    nBar [I]  One of SB_HORZ, SB_VERT, or SB_CTL
1177  *    info [IO] fMask specifies which values to retrieve
1178  *
1179  * RETURNS
1180  *    FALSE if requested field not filled (f.i. scroll bar does not exist)
1181  */
1182 static BOOL SCROLL_GetScrollInfo(HWND hwnd, INT nBar, LPSCROLLINFO info)
1183 {
1184     LPSCROLLBAR_INFO infoPtr;
1185
1186     /* handle invalid data structure */
1187     if (!SCROLL_ScrollInfoValid(info)
1188         || !(infoPtr = SCROLL_GetInternalInfo(hwnd, nBar, FALSE)))
1189             return FALSE;
1190
1191     /* fill in the desired scroll info structure */
1192     if (info->fMask & SIF_PAGE) info->nPage = infoPtr->page;
1193     if (info->fMask & SIF_POS) info->nPos = infoPtr->curVal;
1194     if ((info->fMask & SIF_TRACKPOS) && (info->cbSize == sizeof(*info)))
1195         info->nTrackPos = (SCROLL_TrackingWin == WIN_GetFullHandle(hwnd)) ? SCROLL_TrackingVal : infoPtr->curVal;
1196     if (info->fMask & SIF_RANGE)
1197     {
1198         info->nMin = infoPtr->minVal;
1199         info->nMax = infoPtr->maxVal;
1200     }
1201
1202     TRACE("cbSize %02x fMask %04x nMin %d nMax %d nPage %u nPos %d nTrackPos %d\n",
1203            info->cbSize, info->fMask, info->nMin, info->nMax, info->nPage,
1204            info->nPos, info->nTrackPos);
1205
1206     return (info->fMask & SIF_ALL) != 0;
1207 }
1208
1209
1210 /*************************************************************************
1211  *           SCROLL_GetScrollBarInfo
1212  *
1213  * Internal helper for the API function
1214  *
1215  * PARAMS
1216  *    hwnd     [I]  Handle of window with scrollbar(s)
1217  *    idObject [I]  One of OBJID_CLIENT, OBJID_HSCROLL, or OBJID_VSCROLL
1218  *    info     [IO] cbSize specifies the size of the structure
1219  *
1220  * RETURNS
1221  *    FALSE if failed
1222  */
1223 static BOOL SCROLL_GetScrollBarInfo(HWND hwnd, LONG idObject, LPSCROLLBARINFO info)
1224 {
1225     LPSCROLLBAR_INFO infoPtr;
1226     INT nBar;
1227     INT nDummy;
1228     DWORD style = GetWindowLongW(hwnd, GWL_STYLE);
1229     BOOL pressed;
1230
1231     switch (idObject)
1232     {
1233         case OBJID_CLIENT: nBar = SB_CTL; break;
1234         case OBJID_HSCROLL: nBar = SB_HORZ; break;
1235         case OBJID_VSCROLL: nBar = SB_VERT; break;
1236         default: return FALSE;
1237     }
1238
1239     /* handle invalid data structure */
1240     if (info->cbSize != sizeof(*info))
1241         return FALSE;
1242
1243     SCROLL_GetScrollBarRect(hwnd, nBar, &info->rcScrollBar, &nDummy,
1244                             &info->dxyLineButton, &info->xyThumbTop);
1245
1246     info->xyThumbBottom = info->xyThumbTop + info->dxyLineButton;
1247
1248     infoPtr = SCROLL_GetInternalInfo(hwnd, nBar, TRUE);
1249     
1250     /* Scroll bar state */
1251     info->rgstate[0] = 0;
1252     if ((nBar == SB_HORZ && !(style & WS_HSCROLL))
1253         || (nBar == SB_VERT && !(style & WS_VSCROLL)))
1254         info->rgstate[0] |= STATE_SYSTEM_INVISIBLE;
1255     if (infoPtr->minVal >= infoPtr->maxVal - max(infoPtr->page - 1, 0))
1256     {
1257         if (!(info->rgstate[0] & STATE_SYSTEM_INVISIBLE))
1258             info->rgstate[0] |= STATE_SYSTEM_UNAVAILABLE;
1259         else
1260             info->rgstate[0] |= STATE_SYSTEM_OFFSCREEN;
1261     }
1262     if (nBar == SB_CTL && !IsWindowEnabled(hwnd))
1263         info->rgstate[0] |= STATE_SYSTEM_UNAVAILABLE;
1264     
1265     pressed = ((nBar == SB_VERT) == SCROLL_trackVertical && GetCapture() == hwnd);
1266     
1267     /* Top/left arrow button state. MSDN says top/right, but I don't believe it */
1268     info->rgstate[1] = 0;
1269     if (pressed && SCROLL_trackHitTest == SCROLL_TOP_ARROW)
1270         info->rgstate[1] |= STATE_SYSTEM_PRESSED;
1271     if (infoPtr->flags & ESB_DISABLE_LTUP)
1272         info->rgstate[1] |= STATE_SYSTEM_UNAVAILABLE;
1273
1274     /* Page up/left region state. MSDN says up/right, but I don't believe it */
1275     info->rgstate[2] = 0;
1276     if (infoPtr->curVal == infoPtr->minVal)
1277         info->rgstate[2] |= STATE_SYSTEM_INVISIBLE;
1278     if (pressed && SCROLL_trackHitTest == SCROLL_TOP_RECT)
1279         info->rgstate[2] |= STATE_SYSTEM_PRESSED;
1280
1281     /* Thumb state */
1282     info->rgstate[3] = 0;
1283     if (pressed && SCROLL_trackHitTest == SCROLL_THUMB)
1284         info->rgstate[3] |= STATE_SYSTEM_PRESSED;
1285
1286     /* Page down/right region state. MSDN says down/left, but I don't believe it */
1287     info->rgstate[4] = 0;
1288     if (infoPtr->curVal >= infoPtr->maxVal - 1)
1289         info->rgstate[4] |= STATE_SYSTEM_INVISIBLE;
1290     if (pressed && SCROLL_trackHitTest == SCROLL_BOTTOM_RECT)
1291         info->rgstate[4] |= STATE_SYSTEM_PRESSED;
1292     
1293     /* Bottom/right arrow button state. MSDN says bottom/left, but I don't believe it */
1294     info->rgstate[5] = 0;
1295     if (pressed && SCROLL_trackHitTest == SCROLL_BOTTOM_ARROW)
1296         info->rgstate[5] |= STATE_SYSTEM_PRESSED;
1297     if (infoPtr->flags & ESB_DISABLE_RTDN)
1298         info->rgstate[5] |= STATE_SYSTEM_UNAVAILABLE;
1299         
1300     return TRUE;
1301 }
1302
1303
1304 /*************************************************************************
1305  *           SCROLL_GetScrollPos
1306  *
1307  *  Internal helper for the API function
1308  *
1309  * PARAMS
1310  *    hwnd [I]  Handle of window with scrollbar(s)
1311  *    nBar [I]  One of SB_HORZ, SB_VERT, or SB_CTL
1312  */
1313 static INT SCROLL_GetScrollPos(HWND hwnd, INT nBar)
1314 {
1315     LPSCROLLBAR_INFO infoPtr = SCROLL_GetInternalInfo(hwnd, nBar, FALSE);
1316     return infoPtr ? infoPtr->curVal: 0;
1317 }
1318
1319
1320 /*************************************************************************
1321  *           SCROLL_GetScrollRange
1322  *
1323  *  Internal helper for the API function
1324  *
1325  * PARAMS
1326  *    hwnd  [I]  Handle of window with scrollbar(s)
1327  *    nBar  [I]  One of SB_HORZ, SB_VERT, or SB_CTL
1328  *    lpMin [O]  Where to store minimum value
1329  *    lpMax [O]  Where to store maximum value
1330  *
1331  * RETURNS
1332  *    Success: TRUE
1333  *    Failure: FALSE
1334  */
1335 static BOOL SCROLL_GetScrollRange(HWND hwnd, INT nBar, LPINT lpMin, LPINT lpMax)
1336 {
1337     LPSCROLLBAR_INFO infoPtr = SCROLL_GetInternalInfo(hwnd, nBar, FALSE);
1338
1339     if (lpMin) *lpMin = infoPtr ? infoPtr->minVal : 0;
1340     if (lpMax) *lpMax = infoPtr ? infoPtr->maxVal : 0;
1341
1342     return TRUE;
1343 }
1344
1345
1346 /*************************************************************************
1347  *           SCROLL_SetScrollRange
1348  *
1349  * PARAMS
1350  *    hwnd  [I]  Handle of window with scrollbar(s)
1351  *    nBar  [I]  One of SB_HORZ, SB_VERT, or SB_CTL
1352  *    lpMin [I]  Minimum value
1353  *    lpMax [I]  Maximum value
1354  *
1355  */
1356 static BOOL SCROLL_SetScrollRange(HWND hwnd, INT nBar, INT minVal, INT maxVal)
1357 {
1358     LPSCROLLBAR_INFO infoPtr = SCROLL_GetInternalInfo(hwnd, nBar, FALSE);
1359
1360     TRACE("hwnd=%p nBar=%d min=%d max=%d\n", hwnd, nBar, minVal, maxVal);
1361
1362     if (infoPtr)
1363     {
1364         infoPtr->minVal = minVal;
1365         infoPtr->maxVal = maxVal;
1366     }
1367     return TRUE;
1368 }
1369
1370
1371 /***********************************************************************
1372  *           ScrollBarWndProc
1373  */
1374 static LRESULT WINAPI ScrollBarWndProc( HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam )
1375 {
1376     if (!IsWindow( hwnd )) return 0;
1377
1378     switch(message)
1379     {
1380     case WM_CREATE:
1381         SCROLL_CreateScrollBar(hwnd, (LPCREATESTRUCTW)lParam);
1382         break;
1383
1384     case WM_ENABLE:
1385         {
1386             SCROLLBAR_INFO *infoPtr;
1387             if ((infoPtr = SCROLL_GetInternalInfo( hwnd, SB_CTL, FALSE )))
1388             {
1389                 infoPtr->flags = wParam ? ESB_ENABLE_BOTH : ESB_DISABLE_BOTH;
1390                 SCROLL_RefreshScrollBar(hwnd, SB_CTL, TRUE, TRUE);
1391             }
1392         }
1393         return 0;
1394
1395     case WM_LBUTTONDBLCLK:
1396     case WM_LBUTTONDOWN:
1397         {
1398             POINT pt;
1399             pt.x = (short)LOWORD(lParam);
1400             pt.y = (short)HIWORD(lParam);
1401             SCROLL_TrackScrollBar( hwnd, SB_CTL, pt );
1402         }
1403         break;
1404     case WM_LBUTTONUP:
1405     case WM_MOUSEMOVE:
1406     case WM_SYSTIMER:
1407         {
1408             POINT pt;
1409             pt.x = (short)LOWORD(lParam);
1410             pt.y = (short)HIWORD(lParam);
1411             SCROLL_HandleScrollEvent( hwnd, SB_CTL, message, pt );
1412         }
1413         break;
1414
1415     case WM_KEYDOWN:
1416         SCROLL_HandleKbdEvent(hwnd, wParam, lParam);
1417         break;
1418
1419     case WM_KEYUP:
1420         ShowCaret(hwnd);
1421         break;
1422
1423     case WM_SETFOCUS:
1424         {
1425             /* Create a caret when a ScrollBar get focus */
1426             RECT rect;
1427             int arrowSize, thumbSize, thumbPos, vertical;
1428             vertical = SCROLL_GetScrollBarRect( hwnd, SB_CTL, &rect,
1429                                                 &arrowSize, &thumbSize, &thumbPos );
1430             if (!vertical)
1431             {
1432                 CreateCaret(hwnd, (HBITMAP)1, thumbSize-2, rect.bottom-rect.top-2);
1433                 SetCaretPos(thumbPos+1, rect.top+1);
1434             }
1435             else
1436             {
1437                 CreateCaret(hwnd, (HBITMAP)1, rect.right-rect.left-2,thumbSize-2);
1438                 SetCaretPos(rect.top+1, thumbPos+1);
1439             }
1440             ShowCaret(hwnd);
1441         }
1442         break;
1443
1444     case WM_KILLFOCUS:
1445         {
1446             RECT rect;
1447             int arrowSize, thumbSize, thumbPos, vertical;
1448             vertical = SCROLL_GetScrollBarRect( hwnd, SB_CTL, &rect,&arrowSize, &thumbSize, &thumbPos );
1449             if (!vertical){
1450                 rect.left=thumbPos+1;
1451                 rect.right=rect.left+thumbSize;
1452             }
1453             else
1454             {
1455                 rect.top=thumbPos+1;
1456                 rect.bottom=rect.top+thumbSize;
1457             }
1458             HideCaret(hwnd);
1459             InvalidateRect(hwnd,&rect,0);
1460             DestroyCaret();
1461         }
1462         break;
1463
1464     case WM_ERASEBKGND:
1465          return 1;
1466
1467     case WM_GETDLGCODE:
1468          return DLGC_WANTARROWS; /* Windows returns this value */
1469
1470     case WM_PAINT:
1471         {
1472             PAINTSTRUCT ps;
1473             HDC hdc = wParam ? (HDC)wParam : BeginPaint(hwnd, &ps);
1474             if (GetWindowLongW( hwnd, GWL_STYLE ) & SBS_SIZEGRIP)
1475             {
1476                 SCROLL_DrawSizeGrip( hwnd, hdc);
1477             }
1478             else if (GetWindowLongW( hwnd, GWL_STYLE ) & SBS_SIZEBOX)
1479             {
1480                 RECT rc;
1481                 GetClientRect( hwnd, &rc );
1482                 FillRect( hdc, &rc, GetSysColorBrush(COLOR_SCROLLBAR) );
1483             }
1484             else
1485                 SCROLL_DrawScrollBar( hwnd, hdc, SB_CTL, TRUE, TRUE );
1486             if (!wParam) EndPaint(hwnd, &ps);
1487         }
1488         break;
1489
1490     case SBM_SETPOS16:
1491     case SBM_SETPOS:
1492         return SetScrollPos( hwnd, SB_CTL, wParam, (BOOL)lParam );
1493
1494     case SBM_GETPOS16:
1495     case SBM_GETPOS:
1496        return SCROLL_GetScrollPos(hwnd, SB_CTL);
1497
1498     case SBM_SETRANGE16:
1499         if (wParam) message = SBM_SETRANGEREDRAW;
1500         wParam = LOWORD(lParam);
1501         lParam = HIWORD(lParam);
1502         /* fall through */
1503     case SBM_SETRANGEREDRAW:
1504     case SBM_SETRANGE:
1505         {
1506             INT oldPos = SCROLL_GetScrollPos( hwnd, SB_CTL );
1507             SCROLL_SetScrollRange( hwnd, SB_CTL, wParam, lParam );
1508             if (message == SBM_SETRANGEREDRAW)
1509                 SCROLL_RefreshScrollBar( hwnd, SB_CTL, TRUE, TRUE );
1510             if (oldPos != SCROLL_GetScrollPos( hwnd, SB_CTL )) return oldPos;
1511         }
1512         return 0;
1513
1514     case SBM_GETRANGE16:
1515     {
1516         INT min, max;
1517
1518         SCROLL_GetScrollRange(hwnd, SB_CTL, &min, &max);
1519         return MAKELRESULT(min, max);
1520     }
1521
1522     case SBM_GETRANGE:
1523         return SCROLL_GetScrollRange(hwnd, SB_CTL, (LPINT)wParam, (LPINT)lParam);
1524
1525     case SBM_ENABLE_ARROWS16:
1526     case SBM_ENABLE_ARROWS:
1527         return EnableScrollBar( hwnd, SB_CTL, wParam );
1528
1529     case SBM_SETSCROLLINFO:
1530         return SCROLL_SetScrollInfo( hwnd, SB_CTL, (SCROLLINFO *)lParam, wParam );
1531
1532     case SBM_GETSCROLLINFO:
1533         return SCROLL_GetScrollInfo(hwnd, SB_CTL, (SCROLLINFO *)lParam);
1534
1535     case SBM_GETSCROLLBARINFO:
1536         return SCROLL_GetScrollBarInfo(hwnd, OBJID_CLIENT, (SCROLLBARINFO *)lParam);
1537
1538     case 0x00e5:
1539     case 0x00e7:
1540     case 0x00e8:
1541     case 0x00ec:
1542     case 0x00ed:
1543     case 0x00ee:
1544     case 0x00ef:
1545         ERR("unknown Win32 msg %04x wp=%08lx lp=%08lx\n",
1546                     message, wParam, lParam );
1547         break;
1548
1549     default:
1550         if (message >= WM_USER)
1551             WARN("unknown msg %04x wp=%04lx lp=%08lx\n",
1552                          message, wParam, lParam );
1553         return DefWindowProcW( hwnd, message, wParam, lParam );
1554     }
1555     return 0;
1556 }
1557
1558
1559 /*************************************************************************
1560  *           SetScrollInfo   (USER32.@)
1561  *
1562  * SetScrollInfo can be used to set the position, upper bound,
1563  * lower bound, and page size of a scrollbar control.
1564  *
1565  * PARAMS
1566  *    hwnd    [I]  Handle of window with scrollbar(s)
1567  *    nBar    [I]  One of SB_HORZ, SB_VERT, or SB_CTL
1568  *    info    [I]  Specifies what to change and new values
1569  *    bRedraw [I]  Should scrollbar be redrawn afterwards?
1570  *
1571  * RETURNS
1572  *    Scrollbar position
1573  *
1574  * NOTE
1575  *    For 100 lines of text to be displayed in a window of 25 lines,
1576  *  one would for instance use info->nMin=0, info->nMax=75
1577  *  (corresponding to the 76 different positions of the window on
1578  *  the text), and info->nPage=25.
1579  */
1580 INT WINAPI SetScrollInfo(HWND hwnd, INT nBar, const SCROLLINFO *info, BOOL bRedraw)
1581 {
1582     TRACE("hwnd=%p nBar=%d info=%p, bRedraw=%d\n", hwnd, nBar, info, bRedraw);
1583
1584     /* Refer SB_CTL requests to the window */
1585     if (nBar == SB_CTL)
1586         return SendMessageW(hwnd, SBM_SETSCROLLINFO, bRedraw, (LPARAM)info);
1587     else
1588         return SCROLL_SetScrollInfo( hwnd, nBar, info, bRedraw );
1589 }
1590
1591 static INT SCROLL_SetScrollInfo( HWND hwnd, INT nBar, LPCSCROLLINFO info, BOOL bRedraw )
1592 {
1593     /* Update the scrollbar state and set action flags according to
1594      * what has to be done graphics wise. */
1595
1596     SCROLLBAR_INFO *infoPtr;
1597     UINT new_flags;
1598     INT action = 0;
1599
1600     /* handle invalid data structure */
1601     if (!SCROLL_ScrollInfoValid(info)
1602         || !(infoPtr = SCROLL_GetInternalInfo(hwnd, nBar, TRUE)))
1603             return 0;
1604
1605     if (TRACE_ON(scroll))
1606     {
1607         TRACE("hwnd=%p bar=%d", hwnd, nBar);
1608         if (info->fMask & SIF_PAGE) TRACE( " page=%d", info->nPage );
1609         if (info->fMask & SIF_POS) TRACE( " pos=%d", info->nPos );
1610         if (info->fMask & SIF_RANGE) TRACE( " min=%d max=%d", info->nMin, info->nMax );
1611         TRACE("\n");
1612     }
1613
1614     /* Set the page size */
1615
1616     if (info->fMask & SIF_PAGE)
1617     {
1618         if( infoPtr->page != info->nPage )
1619         {
1620             infoPtr->page = info->nPage;
1621             action |= SA_SSI_REFRESH;
1622         }
1623     }
1624
1625     /* Set the scroll pos */
1626
1627     if (info->fMask & SIF_POS)
1628     {
1629         if( infoPtr->curVal != info->nPos )
1630         {
1631             infoPtr->curVal = info->nPos;
1632             action |= SA_SSI_REFRESH;
1633         }
1634     }
1635
1636     /* Set the scroll range */
1637
1638     if (info->fMask & SIF_RANGE)
1639     {
1640         /* Invalid range -> range is set to (0,0) */
1641         if ((info->nMin > info->nMax) ||
1642             ((UINT)(info->nMax - info->nMin) >= 0x80000000))
1643         {
1644             action |= SA_SSI_REFRESH;
1645             infoPtr->minVal = 0;
1646             infoPtr->maxVal = 0;
1647         }
1648         else
1649         {
1650             if( infoPtr->minVal != info->nMin ||
1651                 infoPtr->maxVal != info->nMax )
1652             {
1653                 action |= SA_SSI_REFRESH;
1654                 infoPtr->minVal = info->nMin;
1655                 infoPtr->maxVal = info->nMax;
1656             }
1657         }
1658     }
1659
1660     /* Make sure the page size is valid */
1661     if (infoPtr->page < 0) infoPtr->page = 0;
1662     else if (infoPtr->page > infoPtr->maxVal - infoPtr->minVal + 1 )
1663         infoPtr->page = infoPtr->maxVal - infoPtr->minVal + 1;
1664
1665     /* Make sure the pos is inside the range */
1666
1667     if (infoPtr->curVal < infoPtr->minVal)
1668         infoPtr->curVal = infoPtr->minVal;
1669     else if (infoPtr->curVal > infoPtr->maxVal - max( infoPtr->page-1, 0 ))
1670         infoPtr->curVal = infoPtr->maxVal - max( infoPtr->page-1, 0 );
1671
1672     TRACE("    new values: page=%d pos=%d min=%d max=%d\n",
1673                  infoPtr->page, infoPtr->curVal,
1674                  infoPtr->minVal, infoPtr->maxVal );
1675
1676     /* don't change the scrollbar state if SetScrollInfo
1677      * is just called with SIF_DISABLENOSCROLL
1678      */
1679     if(!(info->fMask & SIF_ALL)) goto done;
1680
1681     /* Check if the scrollbar should be hidden or disabled */
1682
1683     if (info->fMask & (SIF_RANGE | SIF_PAGE | SIF_DISABLENOSCROLL))
1684     {
1685         new_flags = infoPtr->flags;
1686         if (infoPtr->minVal >= infoPtr->maxVal - max( infoPtr->page-1, 0 ))
1687         {
1688             /* Hide or disable scroll-bar */
1689             if (info->fMask & SIF_DISABLENOSCROLL)
1690             {
1691                 new_flags = ESB_DISABLE_BOTH;
1692                 action |= SA_SSI_REFRESH;
1693             }
1694             else if ((nBar != SB_CTL) && (action & SA_SSI_REFRESH))
1695             {
1696                 action = SA_SSI_HIDE;
1697             }
1698         }
1699         else  /* Show and enable scroll-bar only if no page only changed. */
1700         if (info->fMask != SIF_PAGE)
1701         {
1702             new_flags = ESB_ENABLE_BOTH;
1703             if ((nBar != SB_CTL) && ( (action & SA_SSI_REFRESH) ))
1704                 action |= SA_SSI_SHOW;
1705         }
1706
1707         if (infoPtr->flags != new_flags) /* check arrow flags */
1708         {
1709             infoPtr->flags = new_flags;
1710             action |= SA_SSI_REPAINT_ARROWS;
1711         }
1712     }
1713
1714 done:
1715     if( action & SA_SSI_HIDE )
1716         SCROLL_ShowScrollBar( hwnd, nBar, FALSE, FALSE );
1717     else
1718     {
1719         if( action & SA_SSI_SHOW )
1720             if( SCROLL_ShowScrollBar( hwnd, nBar, TRUE, TRUE ) )
1721                 return infoPtr->curVal; /* SetWindowPos() already did the painting */
1722
1723         if( bRedraw )
1724             SCROLL_RefreshScrollBar( hwnd, nBar, TRUE, TRUE );
1725         else if( action & SA_SSI_REPAINT_ARROWS )
1726             SCROLL_RefreshScrollBar( hwnd, nBar, TRUE, FALSE );
1727     }
1728
1729     /* Return current position */
1730     return infoPtr->curVal;
1731 }
1732
1733
1734 /*************************************************************************
1735  *           GetScrollInfo   (USER32.@)
1736  *
1737  * GetScrollInfo can be used to retrieve the position, upper bound,
1738  * lower bound, and page size of a scrollbar control.
1739  *
1740  * PARAMS
1741  *  hwnd [I]  Handle of window with scrollbar(s)
1742  *  nBar [I]  One of SB_HORZ, SB_VERT, or SB_CTL
1743  *  info [IO] fMask specifies which values to retrieve
1744  *
1745  * RETURNS
1746  *  TRUE if SCROLLINFO is filled
1747  *  ( if nBar is SB_CTL, GetScrollInfo returns TRUE even if nothing
1748  *  is filled)
1749  */
1750 BOOL WINAPI GetScrollInfo(HWND hwnd, INT nBar, LPSCROLLINFO info)
1751 {
1752     TRACE("hwnd=%p nBar=%d info=%p\n", hwnd, nBar, info);
1753
1754     /* Refer SB_CTL requests to the window */
1755     if (nBar == SB_CTL)
1756     {
1757         SendMessageW(hwnd, SBM_GETSCROLLINFO, (WPARAM)0, (LPARAM)info);
1758         return TRUE;
1759     }
1760     return SCROLL_GetScrollInfo(hwnd, nBar, info);
1761 }
1762
1763
1764 /*************************************************************************
1765  *           GetScrollBarInfo   (USER32.@)
1766  *
1767  * GetScrollBarInfo can be used to retrieve information about a scrollbar
1768  * control.
1769  *
1770  * PARAMS
1771  *  hwnd     [I]  Handle of window with scrollbar(s)
1772  *  idObject [I]  One of OBJID_CLIENT, OBJID_HSCROLL, or OBJID_VSCROLL
1773  *  info     [IO] cbSize specifies the size of SCROLLBARINFO
1774  *
1775  * RETURNS
1776  *  TRUE if success
1777  */
1778 BOOL WINAPI GetScrollBarInfo(HWND hwnd, LONG idObject, LPSCROLLBARINFO info)
1779 {
1780     TRACE("hwnd=%p idObject=%d info=%p\n", hwnd, idObject, info);
1781
1782     /* Refer OBJID_CLIENT requests to the window */
1783     if (idObject == OBJID_CLIENT)
1784         return SendMessageW(hwnd, SBM_GETSCROLLBARINFO, (WPARAM)0, (LPARAM)info);
1785     else
1786         return SCROLL_GetScrollBarInfo(hwnd, idObject, info);
1787 }
1788
1789
1790 /*************************************************************************
1791  *           SetScrollPos   (USER32.@)
1792  *
1793  * Sets the current position of the scroll thumb.
1794  *
1795  * PARAMS
1796  *    hwnd    [I]  Handle of window with scrollbar(s)
1797  *    nBar    [I]  One of SB_HORZ, SB_VERT, or SB_CTL
1798  *    nPos    [I]  New value
1799  *    bRedraw [I]  Should scrollbar be redrawn afterwards?
1800  *
1801  * RETURNS
1802  *    Success: Scrollbar position
1803  *    Failure: 0
1804  *
1805  * REMARKS
1806  *    Note the ambiguity when 0 is returned.  Use GetLastError
1807  *    to make sure there was an error (and to know which one).
1808  */
1809 INT WINAPI SetScrollPos( HWND hwnd, INT nBar, INT nPos, BOOL bRedraw)
1810 {
1811     SCROLLINFO info;
1812     SCROLLBAR_INFO *infoPtr;
1813     INT oldPos;
1814
1815     if (!(infoPtr = SCROLL_GetInternalInfo( hwnd, nBar, FALSE ))) return 0;
1816     oldPos      = infoPtr->curVal;
1817     info.cbSize = sizeof(info);
1818     info.nPos   = nPos;
1819     info.fMask  = SIF_POS;
1820     SetScrollInfo( hwnd, nBar, &info, bRedraw );
1821     return oldPos;
1822 }
1823
1824
1825 /*************************************************************************
1826  *           GetScrollPos   (USER32.@)
1827  *
1828  * Gets the current position of the scroll thumb.
1829  *
1830  * PARAMS
1831  *    hwnd    [I]  Handle of window with scrollbar(s)
1832  *    nBar    [I]  One of SB_HORZ, SB_VERT, or SB_CTL
1833  *
1834  * RETURNS
1835  *    Success: Current position
1836  *    Failure: 0
1837  *
1838  * REMARKS
1839  *    There is ambiguity when 0 is returned.  Use GetLastError
1840  *    to make sure there was an error (and to know which one).
1841  */
1842 INT WINAPI GetScrollPos(HWND hwnd, INT nBar)
1843 {
1844     TRACE("hwnd=%p nBar=%d\n", hwnd, nBar);
1845
1846     /* Refer SB_CTL requests to the window */
1847     if (nBar == SB_CTL)
1848         return SendMessageW(hwnd, SBM_GETPOS, (WPARAM)0, (LPARAM)0);
1849     else
1850         return SCROLL_GetScrollPos(hwnd, nBar);
1851 }
1852
1853
1854 /*************************************************************************
1855  *           SetScrollRange   (USER32.@)
1856  * The SetScrollRange function sets the minimum and maximum scroll box positions 
1857  * If nMinPos and nMaxPos is the same value, the scroll bar will hide
1858  *
1859  * Sets the range of the scroll bar.
1860  *
1861  * PARAMS
1862  *    hwnd    [I]  Handle of window with scrollbar(s)
1863  *    nBar    [I]  One of SB_HORZ, SB_VERT, or SB_CTL
1864  *    minVal  [I]  New minimum value
1865  *    maxVal  [I]  New Maximum value
1866  *    bRedraw [I]  Should scrollbar be redrawn afterwards?
1867  *
1868  * RETURNS
1869  *    Success: TRUE
1870  *    Failure: FALSE
1871  */
1872 BOOL WINAPI SetScrollRange(HWND hwnd, INT nBar, INT minVal, INT maxVal, BOOL bRedraw)
1873 {
1874     SCROLLINFO info;
1875  
1876     TRACE("hwnd=%p nBar=%d min=%d max=%d, bRedraw=%d\n", hwnd, nBar, minVal, maxVal, bRedraw);
1877
1878     info.cbSize = sizeof(info);
1879     info.fMask  = SIF_RANGE;
1880     info.nMin   = minVal;
1881     info.nMax   = maxVal;
1882     SetScrollInfo( hwnd, nBar, &info, bRedraw );
1883     return TRUE;
1884 }
1885
1886
1887 /*************************************************************************
1888  *           SCROLL_SetNCSbState
1889  *
1890  * Updates both scrollbars at the same time. Used by MDI CalcChildScroll().
1891  */
1892 INT SCROLL_SetNCSbState(HWND hwnd, int vMin, int vMax, int vPos,
1893                         int hMin, int hMax, int hPos)
1894 {
1895     SCROLLINFO vInfo, hInfo;
1896
1897     vInfo.cbSize = hInfo.cbSize = sizeof(SCROLLINFO);
1898     vInfo.nMin   = vMin;
1899     vInfo.nMax   = vMax;
1900     vInfo.nPos   = vPos;
1901     hInfo.nMin   = hMin;
1902     hInfo.nMax   = hMax;
1903     hInfo.nPos   = hPos;
1904     vInfo.fMask  = hInfo.fMask = SIF_RANGE | SIF_POS;
1905
1906     SCROLL_SetScrollInfo( hwnd, SB_VERT, &vInfo, TRUE );
1907     SCROLL_SetScrollInfo( hwnd, SB_HORZ, &hInfo, TRUE );
1908
1909     return 0;
1910 }
1911
1912
1913 /*************************************************************************
1914  *           GetScrollRange   (USER32.@)
1915  *
1916  * Gets the range of the scroll bar.
1917  *
1918  * PARAMS
1919  *    hwnd    [I]  Handle of window with scrollbar(s)
1920  *    nBar    [I]  One of SB_HORZ, SB_VERT, or SB_CTL
1921  *    lpMin   [O]  Where to store minimum value
1922  *    lpMax   [O]  Where to store maximum value
1923  *
1924  * RETURNS
1925  *    TRUE if values is filled
1926  */
1927 BOOL WINAPI GetScrollRange(HWND hwnd, INT nBar, LPINT lpMin, LPINT lpMax)
1928 {
1929     TRACE("hwnd=%p nBar=%d lpMin=%p lpMax=%p\n", hwnd, nBar, lpMin, lpMax);
1930
1931     /* Refer SB_CTL requests to the window */
1932     if (nBar == SB_CTL)
1933         SendMessageW(hwnd, SBM_GETRANGE, (WPARAM)lpMin, (LPARAM)lpMax);
1934     else
1935         SCROLL_GetScrollRange(hwnd, nBar, lpMin, lpMax);
1936
1937     return TRUE;
1938 }
1939
1940
1941 /*************************************************************************
1942  *           SCROLL_ShowScrollBar()
1943  *
1944  * Back-end for ShowScrollBar(). Returns FALSE if no action was taken.
1945  */
1946 static BOOL SCROLL_ShowScrollBar( HWND hwnd, INT nBar, BOOL fShowH, BOOL fShowV )
1947 {
1948     ULONG old_style, set_bits = 0, clear_bits = 0;
1949
1950     TRACE("hwnd=%p bar=%d horz=%d, vert=%d\n", hwnd, nBar, fShowH, fShowV );
1951
1952     switch(nBar)
1953     {
1954     case SB_CTL:
1955         ShowWindow( hwnd, fShowH ? SW_SHOW : SW_HIDE );
1956         return TRUE;
1957
1958     case SB_BOTH:
1959     case SB_HORZ:
1960         if (fShowH) set_bits |= WS_HSCROLL;
1961         else clear_bits |= WS_HSCROLL;
1962         if( nBar == SB_HORZ ) break;
1963         /* fall through */
1964     case SB_VERT:
1965         if (fShowV) set_bits |= WS_VSCROLL;
1966         else clear_bits |= WS_VSCROLL;
1967         break;
1968
1969     default:
1970         return FALSE;  /* Nothing to do! */
1971     }
1972
1973     old_style = WIN_SetStyle( hwnd, set_bits, clear_bits );
1974     if ((old_style & clear_bits) != 0 || (old_style & set_bits) != set_bits)
1975     {
1976         /* frame has been changed, let the window redraw itself */
1977         SetWindowPos( hwnd, 0, 0, 0, 0, 0, SWP_NOSIZE | SWP_NOMOVE
1978                     | SWP_NOACTIVATE | SWP_NOZORDER | SWP_FRAMECHANGED );
1979         return TRUE;
1980     }
1981     return FALSE; /* no frame changes */
1982 }
1983
1984
1985 /*************************************************************************
1986  *           ShowScrollBar   (USER32.@)
1987  *
1988  * Shows or hides the scroll bar.
1989  *
1990  * PARAMS
1991  *    hwnd    [I]  Handle of window with scrollbar(s)
1992  *    nBar    [I]  One of SB_HORZ, SB_VERT, or SB_CTL
1993  *    fShow   [I]  TRUE = show, FALSE = hide
1994  *
1995  * RETURNS
1996  *    Success: TRUE
1997  *    Failure: FALSE
1998  */
1999 BOOL WINAPI ShowScrollBar(HWND hwnd, INT nBar, BOOL fShow)
2000 {
2001     if ( !hwnd )
2002         return FALSE;
2003
2004     SCROLL_ShowScrollBar( hwnd, nBar, (nBar == SB_VERT) ? 0 : fShow,
2005                                       (nBar == SB_HORZ) ? 0 : fShow );
2006     return TRUE;
2007 }
2008
2009
2010 /*************************************************************************
2011  *           EnableScrollBar   (USER32.@)
2012  *
2013  * Enables or disables the scroll bars.
2014  */
2015 BOOL WINAPI EnableScrollBar( HWND hwnd, UINT nBar, UINT flags )
2016 {
2017     BOOL bFineWithMe;
2018     SCROLLBAR_INFO *infoPtr;
2019
2020     flags &= ESB_DISABLE_BOTH;
2021
2022     if (nBar == SB_BOTH)
2023     {
2024         if (!(infoPtr = SCROLL_GetInternalInfo( hwnd, SB_VERT, TRUE ))) return FALSE;
2025         if (!(bFineWithMe = (infoPtr->flags == flags)) )
2026         {
2027             infoPtr->flags = flags;
2028             SCROLL_RefreshScrollBar( hwnd, SB_VERT, TRUE, TRUE );
2029         }
2030         nBar = SB_HORZ;
2031     }
2032     else
2033         bFineWithMe = TRUE;
2034
2035     if (!(infoPtr = SCROLL_GetInternalInfo( hwnd, nBar, TRUE ))) return FALSE;
2036     if (bFineWithMe && infoPtr->flags == flags) return FALSE;
2037     infoPtr->flags = flags;
2038
2039     SCROLL_RefreshScrollBar( hwnd, nBar, TRUE, TRUE );
2040     return TRUE;
2041 }