qmgr: Don't inline transitionJobState.
[wine/multimedia.git] / dlls / comctl32 / pager.c
blobbd9eb684cf2cf79766d0718973269113e057d60e
1 /*
2 * Pager control
4 * Copyright 1998, 1999 Eric Kohl
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 * NOTES
22 * This code was audited for completeness against the documented features
23 * of Comctl32.dll version 6.0 on Sep. 18, 2004, by Robert Shearman.
25 * Unless otherwise noted, we believe this code to be complete, as per
26 * the specification mentioned above.
27 * If you discover missing features or bugs please note them below.
29 * TODO:
30 * Implement repetitive button press.
31 * Adjust arrow size relative to size of button.
32 * Allow border size changes.
33 * Styles:
34 * PGS_DRAGNDROP
35 * Notifications:
36 * PGN_HOTITEMCHANGE
37 * Messages:
38 * WM_PRINT and/or WM_PRINTCLIENT
40 * TESTING:
41 * Tested primarily with the controlspy Pager application.
42 * Susan Farley (susan@codeweavers.com)
44 * IMPLEMENTATION NOTES:
45 * This control uses WM_NCPAINT instead of WM_PAINT to paint itself
46 * as we need to scroll a child window. In order to do this we move
47 * the child window in the control's client area, using the clipping
48 * region that is automatically set around the client area. As the
49 * entire client area now consists of the child window, we must
50 * allocate space (WM_NCCALCSIZE) for the buttons and draw them as
51 * a non-client area (WM_NCPAINT).
52 * Robert Shearman <rob@codeweavers.com>
55 #include <stdarg.h>
56 #include <string.h>
57 #include "windef.h"
58 #include "winbase.h"
59 #include "wingdi.h"
60 #include "winuser.h"
61 #include "winnls.h"
62 #include "commctrl.h"
63 #include "comctl32.h"
64 #include "wine/debug.h"
66 WINE_DEFAULT_DEBUG_CHANNEL(pager);
68 typedef struct
70 HWND hwndSelf; /* handle of the control wnd */
71 HWND hwndChild; /* handle of the contained wnd */
72 HWND hwndNotify; /* handle of the parent wnd */
73 DWORD dwStyle; /* styles for this control */
74 COLORREF clrBk; /* background color */
75 INT nBorder; /* border size for the control */
76 INT nButtonSize;/* size of the pager btns */
77 INT nPos; /* scroll position */
78 INT nWidth; /* from child wnd's response to PGN_CALCSIZE */
79 INT nHeight; /* from child wnd's response to PGN_CALCSIZE */
80 BOOL bForward; /* forward WM_MOUSEMOVE msgs to the contained wnd */
81 BOOL bCapture; /* we have captured the mouse */
82 INT TLbtnState; /* state of top or left btn */
83 INT BRbtnState; /* state of bottom or right btn */
84 INT direction; /* direction of the scroll, (e.g. PGF_SCROLLUP) */
85 } PAGER_INFO;
87 #define TIMERID1 1
88 #define TIMERID2 2
89 #define INITIAL_DELAY 500
90 #define REPEAT_DELAY 50
92 static void
93 PAGER_GetButtonRects(const PAGER_INFO* infoPtr, RECT* prcTopLeft, RECT* prcBottomRight, BOOL bClientCoords)
95 RECT rcWindow;
96 GetWindowRect (infoPtr->hwndSelf, &rcWindow);
98 if (bClientCoords)
99 MapWindowPoints( 0, infoPtr->hwndSelf, (POINT *)&rcWindow, 2 );
100 else
101 OffsetRect(&rcWindow, -rcWindow.left, -rcWindow.top);
103 *prcTopLeft = *prcBottomRight = rcWindow;
104 if (infoPtr->dwStyle & PGS_HORZ)
106 prcTopLeft->right = prcTopLeft->left + infoPtr->nButtonSize;
107 prcBottomRight->left = prcBottomRight->right - infoPtr->nButtonSize;
109 else
111 prcTopLeft->bottom = prcTopLeft->top + infoPtr->nButtonSize;
112 prcBottomRight->top = prcBottomRight->bottom - infoPtr->nButtonSize;
116 static void
117 PAGER_DrawButton(HDC hdc, COLORREF clrBk, RECT rc,
118 BOOL horz, BOOL topLeft, INT btnState)
120 UINT flags;
122 TRACE("rc = %s, btnState = %d\n", wine_dbgstr_rect(&rc), btnState);
124 if (btnState == PGF_INVISIBLE)
125 return;
127 if ((rc.right - rc.left <= 0) || (rc.bottom - rc.top <= 0))
128 return;
130 if (horz)
131 flags = topLeft ? DFCS_SCROLLLEFT : DFCS_SCROLLRIGHT;
132 else
133 flags = topLeft ? DFCS_SCROLLUP : DFCS_SCROLLDOWN;
135 switch (btnState)
137 case PGF_HOT:
138 break;
139 case PGF_NORMAL:
140 flags |= DFCS_FLAT;
141 break;
142 case PGF_DEPRESSED:
143 flags |= DFCS_PUSHED;
144 break;
145 case PGF_GRAYED:
146 flags |= DFCS_INACTIVE | DFCS_FLAT;
147 break;
149 DrawFrameControl( hdc, &rc, DFC_SCROLL, flags );
152 /* << PAGER_GetDropTarget >> */
154 static inline LRESULT
155 PAGER_ForwardMouse (PAGER_INFO* infoPtr, BOOL bFwd)
157 TRACE("[%p]\n", infoPtr->hwndSelf);
159 infoPtr->bForward = bFwd;
161 return 0;
164 static inline LRESULT
165 PAGER_GetButtonState (const PAGER_INFO* infoPtr, INT btn)
167 LRESULT btnState = PGF_INVISIBLE;
168 TRACE("[%p]\n", infoPtr->hwndSelf);
170 if (btn == PGB_TOPORLEFT)
171 btnState = infoPtr->TLbtnState;
172 else if (btn == PGB_BOTTOMORRIGHT)
173 btnState = infoPtr->BRbtnState;
175 return btnState;
179 static inline INT
180 PAGER_GetPos(const PAGER_INFO *infoPtr)
182 TRACE("[%p] returns %d\n", infoPtr->hwndSelf, infoPtr->nPos);
183 return infoPtr->nPos;
186 static inline INT
187 PAGER_GetButtonSize(const PAGER_INFO *infoPtr)
189 TRACE("[%p] returns %d\n", infoPtr->hwndSelf, infoPtr->nButtonSize);
190 return infoPtr->nButtonSize;
193 static inline INT
194 PAGER_GetBorder(const PAGER_INFO *infoPtr)
196 TRACE("[%p] returns %d\n", infoPtr->hwndSelf, infoPtr->nBorder);
197 return infoPtr->nBorder;
200 static inline COLORREF
201 PAGER_GetBkColor(const PAGER_INFO *infoPtr)
203 TRACE("[%p] returns %06x\n", infoPtr->hwndSelf, infoPtr->clrBk);
204 return infoPtr->clrBk;
207 static void
208 PAGER_CalcSize( PAGER_INFO *infoPtr )
210 NMPGCALCSIZE nmpgcs;
211 ZeroMemory (&nmpgcs, sizeof (NMPGCALCSIZE));
212 nmpgcs.hdr.hwndFrom = infoPtr->hwndSelf;
213 nmpgcs.hdr.idFrom = GetWindowLongPtrW (infoPtr->hwndSelf, GWLP_ID);
214 nmpgcs.hdr.code = PGN_CALCSIZE;
215 nmpgcs.dwFlag = (infoPtr->dwStyle & PGS_HORZ) ? PGF_CALCWIDTH : PGF_CALCHEIGHT;
216 nmpgcs.iWidth = infoPtr->nWidth;
217 nmpgcs.iHeight = infoPtr->nHeight;
218 SendMessageW (infoPtr->hwndNotify, WM_NOTIFY, nmpgcs.hdr.idFrom, (LPARAM)&nmpgcs);
220 if (infoPtr->dwStyle & PGS_HORZ)
221 infoPtr->nWidth = nmpgcs.iWidth;
222 else
223 infoPtr->nHeight = nmpgcs.iHeight;
225 TRACE("[%p] PGN_CALCSIZE returns %dx%d\n", infoPtr->hwndSelf, nmpgcs.iWidth, nmpgcs.iHeight );
228 static void
229 PAGER_PositionChildWnd(PAGER_INFO* infoPtr)
231 if (infoPtr->hwndChild)
233 RECT rcClient;
234 int nPos = infoPtr->nPos;
236 /* compensate for a grayed btn, which will soon become invisible */
237 if (infoPtr->TLbtnState == PGF_GRAYED)
238 nPos += infoPtr->nButtonSize;
240 GetClientRect(infoPtr->hwndSelf, &rcClient);
242 if (infoPtr->dwStyle & PGS_HORZ)
244 int wndSize = max(0, rcClient.right - rcClient.left);
245 if (infoPtr->nWidth < wndSize)
246 infoPtr->nWidth = wndSize;
248 TRACE("[%p] SWP %dx%d at (%d,%d)\n", infoPtr->hwndSelf,
249 infoPtr->nWidth, infoPtr->nHeight,
250 -nPos, 0);
251 SetWindowPos(infoPtr->hwndChild, 0,
252 -nPos, 0,
253 infoPtr->nWidth, infoPtr->nHeight,
254 SWP_NOZORDER);
256 else
258 int wndSize = max(0, rcClient.bottom - rcClient.top);
259 if (infoPtr->nHeight < wndSize)
260 infoPtr->nHeight = wndSize;
262 TRACE("[%p] SWP %dx%d at (%d,%d)\n", infoPtr->hwndSelf,
263 infoPtr->nWidth, infoPtr->nHeight,
264 0, -nPos);
265 SetWindowPos(infoPtr->hwndChild, 0,
266 0, -nPos,
267 infoPtr->nWidth, infoPtr->nHeight,
268 SWP_NOZORDER);
271 InvalidateRect(infoPtr->hwndChild, NULL, TRUE);
275 static INT
276 PAGER_GetScrollRange(PAGER_INFO* infoPtr)
278 INT scrollRange = 0;
280 if (infoPtr->hwndChild)
282 INT wndSize, childSize;
283 RECT wndRect;
284 GetWindowRect(infoPtr->hwndSelf, &wndRect);
286 PAGER_CalcSize(infoPtr);
287 if (infoPtr->dwStyle & PGS_HORZ)
289 wndSize = wndRect.right - wndRect.left;
290 childSize = infoPtr->nWidth;
292 else
294 wndSize = wndRect.bottom - wndRect.top;
295 childSize = infoPtr->nHeight;
298 TRACE("childSize = %d, wndSize = %d\n", childSize, wndSize);
299 if (childSize > wndSize)
300 scrollRange = childSize - wndSize + infoPtr->nButtonSize;
303 TRACE("[%p] returns %d\n", infoPtr->hwndSelf, scrollRange);
304 return scrollRange;
307 static void
308 PAGER_UpdateBtns(PAGER_INFO *infoPtr, INT scrollRange, BOOL hideGrayBtns)
310 BOOL resizeClient;
311 BOOL repaintBtns;
312 INT oldTLbtnState = infoPtr->TLbtnState;
313 INT oldBRbtnState = infoPtr->BRbtnState;
314 POINT pt;
315 RECT rcTopLeft, rcBottomRight;
317 /* get button rects */
318 PAGER_GetButtonRects(infoPtr, &rcTopLeft, &rcBottomRight, TRUE);
320 GetCursorPos(&pt);
321 ScreenToClient( infoPtr->hwndSelf, &pt );
323 /* update states based on scroll position */
324 if (infoPtr->nPos > 0)
326 if (infoPtr->TLbtnState == PGF_INVISIBLE || infoPtr->TLbtnState == PGF_GRAYED)
327 infoPtr->TLbtnState = PGF_NORMAL;
329 else if (!hideGrayBtns && PtInRect(&rcTopLeft, pt))
330 infoPtr->TLbtnState = PGF_GRAYED;
331 else
332 infoPtr->TLbtnState = PGF_INVISIBLE;
334 if (scrollRange <= 0)
336 infoPtr->TLbtnState = PGF_INVISIBLE;
337 infoPtr->BRbtnState = PGF_INVISIBLE;
339 else if (infoPtr->nPos < scrollRange)
341 if (infoPtr->BRbtnState == PGF_INVISIBLE || infoPtr->BRbtnState == PGF_GRAYED)
342 infoPtr->BRbtnState = PGF_NORMAL;
344 else if (!hideGrayBtns && PtInRect(&rcBottomRight, pt))
345 infoPtr->BRbtnState = PGF_GRAYED;
346 else
347 infoPtr->BRbtnState = PGF_INVISIBLE;
349 /* only need to resize when entering or leaving PGF_INVISIBLE state */
350 resizeClient =
351 ((oldTLbtnState == PGF_INVISIBLE) != (infoPtr->TLbtnState == PGF_INVISIBLE)) ||
352 ((oldBRbtnState == PGF_INVISIBLE) != (infoPtr->BRbtnState == PGF_INVISIBLE));
353 /* initiate NCCalcSize to resize client wnd if necessary */
354 if (resizeClient)
355 SetWindowPos(infoPtr->hwndSelf, 0, 0, 0, 0, 0,
356 SWP_FRAMECHANGED | SWP_NOSIZE | SWP_NOMOVE |
357 SWP_NOZORDER | SWP_NOACTIVATE);
359 /* repaint when changing any state */
360 repaintBtns = (oldTLbtnState != infoPtr->TLbtnState) ||
361 (oldBRbtnState != infoPtr->BRbtnState);
362 if (repaintBtns)
363 SendMessageW(infoPtr->hwndSelf, WM_NCPAINT, 0, 0);
366 static LRESULT
367 PAGER_SetPos(PAGER_INFO* infoPtr, INT newPos, BOOL fromBtnPress)
369 INT scrollRange = PAGER_GetScrollRange(infoPtr);
370 INT oldPos = infoPtr->nPos;
372 if ((scrollRange <= 0) || (newPos < 0))
373 infoPtr->nPos = 0;
374 else if (newPos > scrollRange)
375 infoPtr->nPos = scrollRange;
376 else
377 infoPtr->nPos = newPos;
379 TRACE("[%p] pos=%d, oldpos=%d\n", infoPtr->hwndSelf, infoPtr->nPos, oldPos);
381 if (infoPtr->nPos != oldPos)
383 /* gray and restore btns, and if from WM_SETPOS, hide the gray btns */
384 PAGER_UpdateBtns(infoPtr, scrollRange, !fromBtnPress);
385 PAGER_PositionChildWnd(infoPtr);
388 return 0;
391 static LRESULT
392 PAGER_WindowPosChanging(PAGER_INFO* infoPtr, WINDOWPOS *winpos)
394 if ((infoPtr->dwStyle & CCS_NORESIZE) && !(winpos->flags & SWP_NOSIZE))
396 /* don't let the app resize the nonscrollable dimension of a control
397 * that was created with CCS_NORESIZE style
398 * (i.e. height for a horizontal pager, or width for a vertical one) */
400 /* except if the current dimension is 0 and app is setting for
401 * first time, then save amount as dimension. - GA 8/01 */
403 if (infoPtr->dwStyle & PGS_HORZ)
404 if (!infoPtr->nHeight && winpos->cy)
405 infoPtr->nHeight = winpos->cy;
406 else
407 winpos->cy = infoPtr->nHeight;
408 else
409 if (!infoPtr->nWidth && winpos->cx)
410 infoPtr->nWidth = winpos->cx;
411 else
412 winpos->cx = infoPtr->nWidth;
413 return 0;
416 return DefWindowProcW (infoPtr->hwndSelf, WM_WINDOWPOSCHANGING, 0, (LPARAM)winpos);
419 /******************************************************************
420 * For the PGM_RECALCSIZE message (but not the other uses in *
421 * this module), the native control does only the following: *
423 * if (some condition) *
424 * PostMessageW(hwnd, EM_FMTLINES, 0, 0); *
425 * return DefWindowProcW(hwnd, PGM_RECALCSIZE, 0, 0); *
427 * When we figure out what the "some condition" is we will *
428 * implement that for the message processing. *
429 ******************************************************************/
431 static LRESULT
432 PAGER_RecalcSize(PAGER_INFO *infoPtr)
434 TRACE("[%p]\n", infoPtr->hwndSelf);
436 if (infoPtr->hwndChild)
438 INT scrollRange = PAGER_GetScrollRange(infoPtr);
440 if (scrollRange <= 0)
442 infoPtr->nPos = -1;
443 PAGER_SetPos(infoPtr, 0, FALSE);
445 else
446 PAGER_PositionChildWnd(infoPtr);
449 return 1;
453 static COLORREF
454 PAGER_SetBkColor (PAGER_INFO* infoPtr, COLORREF clrBk)
456 COLORREF clrTemp = infoPtr->clrBk;
458 infoPtr->clrBk = clrBk;
459 TRACE("[%p] %06x\n", infoPtr->hwndSelf, infoPtr->clrBk);
461 /* the native control seems to do things this way */
462 SetWindowPos(infoPtr->hwndSelf, 0, 0, 0, 0, 0,
463 SWP_FRAMECHANGED | SWP_NOSIZE | SWP_NOMOVE |
464 SWP_NOZORDER | SWP_NOACTIVATE);
466 RedrawWindow(infoPtr->hwndSelf, 0, 0, RDW_ERASE | RDW_INVALIDATE);
468 return clrTemp;
472 static INT
473 PAGER_SetBorder (PAGER_INFO* infoPtr, INT iBorder)
475 INT nTemp = infoPtr->nBorder;
477 infoPtr->nBorder = iBorder;
478 TRACE("[%p] %d\n", infoPtr->hwndSelf, infoPtr->nBorder);
480 PAGER_RecalcSize(infoPtr);
482 return nTemp;
486 static INT
487 PAGER_SetButtonSize (PAGER_INFO* infoPtr, INT iButtonSize)
489 INT nTemp = infoPtr->nButtonSize;
491 infoPtr->nButtonSize = iButtonSize;
492 TRACE("[%p] %d\n", infoPtr->hwndSelf, infoPtr->nButtonSize);
494 PAGER_RecalcSize(infoPtr);
496 return nTemp;
500 static LRESULT
501 PAGER_SetChild (PAGER_INFO* infoPtr, HWND hwndChild)
503 infoPtr->hwndChild = IsWindow (hwndChild) ? hwndChild : 0;
505 if (infoPtr->hwndChild)
507 TRACE("[%p] hwndChild=%p\n", infoPtr->hwndSelf, infoPtr->hwndChild);
509 SetWindowPos(infoPtr->hwndSelf, 0, 0, 0, 0, 0,
510 SWP_FRAMECHANGED | SWP_NOMOVE | SWP_NOZORDER | SWP_NOSIZE | SWP_NOACTIVATE);
512 /* position child within the page scroller */
513 SetWindowPos(infoPtr->hwndChild, HWND_TOP,
514 0,0,0,0,
515 SWP_SHOWWINDOW | SWP_NOSIZE); /* native is 0 */
517 infoPtr->nPos = -1;
518 PAGER_SetPos(infoPtr, 0, FALSE);
521 return 0;
524 static void
525 PAGER_Scroll(PAGER_INFO* infoPtr, INT dir)
527 NMPGSCROLL nmpgScroll;
528 RECT rcWnd;
530 if (infoPtr->hwndChild)
532 ZeroMemory (&nmpgScroll, sizeof (NMPGSCROLL));
533 nmpgScroll.hdr.hwndFrom = infoPtr->hwndSelf;
534 nmpgScroll.hdr.idFrom = GetWindowLongPtrW (infoPtr->hwndSelf, GWLP_ID);
535 nmpgScroll.hdr.code = PGN_SCROLL;
537 GetWindowRect(infoPtr->hwndSelf, &rcWnd);
538 GetClientRect(infoPtr->hwndSelf, &nmpgScroll.rcParent);
539 nmpgScroll.iXpos = nmpgScroll.iYpos = 0;
540 nmpgScroll.iDir = dir;
542 if (infoPtr->dwStyle & PGS_HORZ)
544 nmpgScroll.iScroll = rcWnd.right - rcWnd.left;
545 nmpgScroll.iXpos = infoPtr->nPos;
547 else
549 nmpgScroll.iScroll = rcWnd.bottom - rcWnd.top;
550 nmpgScroll.iYpos = infoPtr->nPos;
552 nmpgScroll.iScroll -= 2*infoPtr->nButtonSize;
554 SendMessageW (infoPtr->hwndNotify, WM_NOTIFY, nmpgScroll.hdr.idFrom, (LPARAM)&nmpgScroll);
556 TRACE("[%p] PGN_SCROLL returns iScroll=%d\n", infoPtr->hwndSelf, nmpgScroll.iScroll);
558 if (nmpgScroll.iScroll > 0)
560 infoPtr->direction = dir;
562 if (dir == PGF_SCROLLLEFT || dir == PGF_SCROLLUP)
563 PAGER_SetPos(infoPtr, infoPtr->nPos - nmpgScroll.iScroll, TRUE);
564 else
565 PAGER_SetPos(infoPtr, infoPtr->nPos + nmpgScroll.iScroll, TRUE);
567 else
568 infoPtr->direction = -1;
572 static LRESULT
573 PAGER_FmtLines(const PAGER_INFO *infoPtr)
575 /* initiate NCCalcSize to resize client wnd and get size */
576 SetWindowPos(infoPtr->hwndSelf, 0, 0, 0, 0, 0,
577 SWP_FRAMECHANGED | SWP_NOSIZE | SWP_NOMOVE |
578 SWP_NOZORDER | SWP_NOACTIVATE);
580 SetWindowPos(infoPtr->hwndChild, 0,
581 0,0,infoPtr->nWidth,infoPtr->nHeight,
584 return DefWindowProcW (infoPtr->hwndSelf, EM_FMTLINES, 0, 0);
587 static LRESULT
588 PAGER_Create (HWND hwnd, const CREATESTRUCTW *lpcs)
590 PAGER_INFO *infoPtr;
592 /* allocate memory for info structure */
593 infoPtr = Alloc (sizeof(PAGER_INFO));
594 if (!infoPtr) return -1;
595 SetWindowLongPtrW (hwnd, 0, (DWORD_PTR)infoPtr);
597 /* set default settings */
598 infoPtr->hwndSelf = hwnd;
599 infoPtr->hwndChild = NULL;
600 infoPtr->hwndNotify = lpcs->hwndParent;
601 infoPtr->dwStyle = lpcs->style;
602 infoPtr->clrBk = GetSysColor(COLOR_BTNFACE);
603 infoPtr->nBorder = 0;
604 infoPtr->nButtonSize = 12;
605 infoPtr->nPos = 0;
606 infoPtr->nWidth = 0;
607 infoPtr->nHeight = 0;
608 infoPtr->bForward = FALSE;
609 infoPtr->bCapture = FALSE;
610 infoPtr->TLbtnState = PGF_INVISIBLE;
611 infoPtr->BRbtnState = PGF_INVISIBLE;
612 infoPtr->direction = -1;
614 if (infoPtr->dwStyle & PGS_DRAGNDROP)
615 FIXME("[%p] Drag and Drop style is not implemented yet.\n", infoPtr->hwndSelf);
617 return 0;
621 static LRESULT
622 PAGER_Destroy (PAGER_INFO *infoPtr)
624 SetWindowLongPtrW (infoPtr->hwndSelf, 0, 0);
625 Free (infoPtr); /* free pager info data */
626 return 0;
629 static LRESULT
630 PAGER_NCCalcSize(PAGER_INFO* infoPtr, WPARAM wParam, LPRECT lpRect)
632 RECT rcChild, rcWindow;
635 * lpRect points to a RECT struct. On entry, the struct
636 * contains the proposed wnd rectangle for the window.
637 * On exit, the struct should contain the screen
638 * coordinates of the corresponding window's client area.
641 DefWindowProcW (infoPtr->hwndSelf, WM_NCCALCSIZE, wParam, (LPARAM)lpRect);
643 TRACE("orig rect=%s\n", wine_dbgstr_rect(lpRect));
645 GetWindowRect (infoPtr->hwndChild, &rcChild);
646 MapWindowPoints (0, infoPtr->hwndSelf, (LPPOINT)&rcChild, 2); /* FIXME: RECT != 2 POINTS */
647 GetWindowRect (infoPtr->hwndSelf, &rcWindow);
649 infoPtr->nWidth = lpRect->right - lpRect->left;
650 infoPtr->nHeight = lpRect->bottom - lpRect->top;
651 PAGER_CalcSize( infoPtr );
653 if (infoPtr->dwStyle & PGS_HORZ)
655 if (infoPtr->TLbtnState && (lpRect->left + infoPtr->nButtonSize < lpRect->right))
656 lpRect->left += infoPtr->nButtonSize;
657 if (infoPtr->BRbtnState && (lpRect->right - infoPtr->nButtonSize > lpRect->left))
658 lpRect->right -= infoPtr->nButtonSize;
660 else
662 if (infoPtr->TLbtnState && (lpRect->top + infoPtr->nButtonSize < lpRect->bottom))
663 lpRect->top += infoPtr->nButtonSize;
664 if (infoPtr->BRbtnState && (lpRect->bottom - infoPtr->nButtonSize > lpRect->top))
665 lpRect->bottom -= infoPtr->nButtonSize;
668 TRACE("nPos=%d, nHeight=%d, window=%s\n",
669 infoPtr->nPos, infoPtr->nHeight,
670 wine_dbgstr_rect(&rcWindow));
672 TRACE("[%p] client rect set to %dx%d at (%d,%d) BtnState[%d,%d]\n",
673 infoPtr->hwndSelf, lpRect->right-lpRect->left, lpRect->bottom-lpRect->top,
674 lpRect->left, lpRect->top,
675 infoPtr->TLbtnState, infoPtr->BRbtnState);
677 return 0;
680 static LRESULT
681 PAGER_NCPaint (const PAGER_INFO* infoPtr, HRGN hRgn)
683 RECT rcBottomRight, rcTopLeft;
684 HDC hdc;
686 if (infoPtr->dwStyle & WS_MINIMIZE)
687 return 0;
689 DefWindowProcW (infoPtr->hwndSelf, WM_NCPAINT, (WPARAM)hRgn, 0);
691 if (!(hdc = GetDCEx (infoPtr->hwndSelf, 0, DCX_USESTYLE | DCX_WINDOW)))
692 return 0;
694 PAGER_GetButtonRects(infoPtr, &rcTopLeft, &rcBottomRight, FALSE);
696 PAGER_DrawButton(hdc, infoPtr->clrBk, rcTopLeft,
697 infoPtr->dwStyle & PGS_HORZ, TRUE, infoPtr->TLbtnState);
698 PAGER_DrawButton(hdc, infoPtr->clrBk, rcBottomRight,
699 infoPtr->dwStyle & PGS_HORZ, FALSE, infoPtr->BRbtnState);
701 ReleaseDC( infoPtr->hwndSelf, hdc );
702 return 0;
705 static INT
706 PAGER_HitTest (const PAGER_INFO* infoPtr, const POINT * pt)
708 RECT clientRect, rcTopLeft, rcBottomRight;
709 POINT ptWindow;
711 GetClientRect (infoPtr->hwndSelf, &clientRect);
713 if (PtInRect(&clientRect, *pt))
715 TRACE("child\n");
716 return -1;
719 ptWindow = *pt;
720 PAGER_GetButtonRects(infoPtr, &rcTopLeft, &rcBottomRight, TRUE);
722 if ((infoPtr->TLbtnState != PGF_INVISIBLE) && PtInRect(&rcTopLeft, ptWindow))
724 TRACE("PGB_TOPORLEFT\n");
725 return PGB_TOPORLEFT;
727 else if ((infoPtr->BRbtnState != PGF_INVISIBLE) && PtInRect(&rcBottomRight, ptWindow))
729 TRACE("PGB_BOTTOMORRIGHT\n");
730 return PGB_BOTTOMORRIGHT;
733 TRACE("nowhere\n");
734 return -1;
737 static LRESULT
738 PAGER_NCHitTest (const PAGER_INFO* infoPtr, INT x, INT y)
740 POINT pt;
741 INT nHit;
743 pt.x = x;
744 pt.y = y;
746 ScreenToClient (infoPtr->hwndSelf, &pt);
747 nHit = PAGER_HitTest(infoPtr, &pt);
749 return (nHit < 0) ? HTTRANSPARENT : HTCLIENT;
752 static LRESULT
753 PAGER_MouseMove (PAGER_INFO* infoPtr, INT keys, INT x, INT y)
755 POINT clpt, pt;
756 RECT wnrect;
757 BOOL topLeft = FALSE;
758 INT btnstate = 0;
759 INT hit;
760 HDC hdc;
762 pt.x = x;
763 pt.y = y;
765 TRACE("[%p] to (%d,%d)\n", infoPtr->hwndSelf, x, y);
766 ClientToScreen(infoPtr->hwndSelf, &pt);
767 GetWindowRect(infoPtr->hwndSelf, &wnrect);
768 if (PtInRect(&wnrect, pt)) {
769 RECT topleft, bottomright, *rect = NULL;
771 PAGER_GetButtonRects(infoPtr, &topleft, &bottomright, FALSE);
773 clpt = pt;
774 MapWindowPoints(0, infoPtr->hwndSelf, &clpt, 1);
775 hit = PAGER_HitTest(infoPtr, &clpt);
776 if ((hit == PGB_TOPORLEFT) && (infoPtr->TLbtnState == PGF_NORMAL))
778 topLeft = TRUE;
779 rect = &topleft;
780 infoPtr->TLbtnState = PGF_HOT;
781 btnstate = infoPtr->TLbtnState;
783 else if ((hit == PGB_BOTTOMORRIGHT) && (infoPtr->BRbtnState == PGF_NORMAL))
785 topLeft = FALSE;
786 rect = &bottomright;
787 infoPtr->BRbtnState = PGF_HOT;
788 btnstate = infoPtr->BRbtnState;
791 /* If in one of the buttons the capture and draw buttons */
792 if (rect)
794 TRACE("[%p] draw btn (%s), Capture %s, style %08x\n",
795 infoPtr->hwndSelf, wine_dbgstr_rect(rect),
796 (infoPtr->bCapture) ? "TRUE" : "FALSE",
797 infoPtr->dwStyle);
798 if (!infoPtr->bCapture)
800 TRACE("[%p] SetCapture\n", infoPtr->hwndSelf);
801 SetCapture(infoPtr->hwndSelf);
802 infoPtr->bCapture = TRUE;
804 if (infoPtr->dwStyle & PGS_AUTOSCROLL)
805 SetTimer(infoPtr->hwndSelf, TIMERID1, 0x3e, 0);
806 hdc = GetWindowDC(infoPtr->hwndSelf);
807 /* OffsetRect(wnrect, 0 | 1, 0 | 1) */
808 PAGER_DrawButton(hdc, infoPtr->clrBk, *rect,
809 infoPtr->dwStyle & PGS_HORZ, topLeft, btnstate);
810 ReleaseDC(infoPtr->hwndSelf, hdc);
811 return 0;
815 /* If we think we are captured, then do release */
816 if (infoPtr->bCapture && (WindowFromPoint(pt) != infoPtr->hwndSelf))
818 NMHDR nmhdr;
820 infoPtr->bCapture = FALSE;
822 if (GetCapture() == infoPtr->hwndSelf)
824 ReleaseCapture();
826 if (infoPtr->TLbtnState == PGF_GRAYED)
828 infoPtr->TLbtnState = PGF_INVISIBLE;
829 SetWindowPos(infoPtr->hwndSelf, 0, 0, 0, 0, 0,
830 SWP_FRAMECHANGED | SWP_NOSIZE | SWP_NOMOVE |
831 SWP_NOZORDER | SWP_NOACTIVATE);
833 else if (infoPtr->TLbtnState == PGF_HOT)
835 infoPtr->TLbtnState = PGF_NORMAL;
836 /* FIXME: just invalidate button rect */
837 RedrawWindow(infoPtr->hwndSelf, NULL, NULL, RDW_FRAME | RDW_INVALIDATE);
840 if (infoPtr->BRbtnState == PGF_GRAYED)
842 infoPtr->BRbtnState = PGF_INVISIBLE;
843 SetWindowPos(infoPtr->hwndSelf, 0, 0, 0, 0, 0,
844 SWP_FRAMECHANGED | SWP_NOSIZE | SWP_NOMOVE |
845 SWP_NOZORDER | SWP_NOACTIVATE);
847 else if (infoPtr->BRbtnState == PGF_HOT)
849 infoPtr->BRbtnState = PGF_NORMAL;
850 /* FIXME: just invalidate button rect */
851 RedrawWindow(infoPtr->hwndSelf, NULL, NULL, RDW_FRAME | RDW_INVALIDATE);
854 /* Notify parent of released mouse capture */
855 memset(&nmhdr, 0, sizeof(NMHDR));
856 nmhdr.hwndFrom = infoPtr->hwndSelf;
857 nmhdr.idFrom = GetWindowLongPtrW(infoPtr->hwndSelf, GWLP_ID);
858 nmhdr.code = NM_RELEASEDCAPTURE;
859 SendMessageW(infoPtr->hwndNotify, WM_NOTIFY, nmhdr.idFrom, (LPARAM)&nmhdr);
861 if (IsWindow(infoPtr->hwndSelf))
862 KillTimer(infoPtr->hwndSelf, TIMERID1);
864 return 0;
867 static LRESULT
868 PAGER_LButtonDown (PAGER_INFO* infoPtr, INT keys, INT x, INT y)
870 BOOL repaintBtns = FALSE;
871 POINT pt;
872 INT hit;
874 pt.x = x;
875 pt.y = y;
877 TRACE("[%p] at (%d,%d)\n", infoPtr->hwndSelf, x, y);
879 hit = PAGER_HitTest(infoPtr, &pt);
881 /* put btn in DEPRESSED state */
882 if (hit == PGB_TOPORLEFT)
884 repaintBtns = infoPtr->TLbtnState != PGF_DEPRESSED;
885 infoPtr->TLbtnState = PGF_DEPRESSED;
886 SetTimer(infoPtr->hwndSelf, TIMERID1, INITIAL_DELAY, 0);
888 else if (hit == PGB_BOTTOMORRIGHT)
890 repaintBtns = infoPtr->BRbtnState != PGF_DEPRESSED;
891 infoPtr->BRbtnState = PGF_DEPRESSED;
892 SetTimer(infoPtr->hwndSelf, TIMERID1, INITIAL_DELAY, 0);
895 if (repaintBtns)
896 SendMessageW(infoPtr->hwndSelf, WM_NCPAINT, 0, 0);
898 switch(hit)
900 case PGB_TOPORLEFT:
901 if (infoPtr->dwStyle & PGS_HORZ)
903 TRACE("[%p] PGF_SCROLLLEFT\n", infoPtr->hwndSelf);
904 PAGER_Scroll(infoPtr, PGF_SCROLLLEFT);
906 else
908 TRACE("[%p] PGF_SCROLLUP\n", infoPtr->hwndSelf);
909 PAGER_Scroll(infoPtr, PGF_SCROLLUP);
911 break;
912 case PGB_BOTTOMORRIGHT:
913 if (infoPtr->dwStyle & PGS_HORZ)
915 TRACE("[%p] PGF_SCROLLRIGHT\n", infoPtr->hwndSelf);
916 PAGER_Scroll(infoPtr, PGF_SCROLLRIGHT);
918 else
920 TRACE("[%p] PGF_SCROLLDOWN\n", infoPtr->hwndSelf);
921 PAGER_Scroll(infoPtr, PGF_SCROLLDOWN);
923 break;
924 default:
925 break;
928 return 0;
931 static LRESULT
932 PAGER_LButtonUp (PAGER_INFO* infoPtr, INT keys, INT x, INT y)
934 TRACE("[%p]\n", infoPtr->hwndSelf);
936 KillTimer (infoPtr->hwndSelf, TIMERID1);
937 KillTimer (infoPtr->hwndSelf, TIMERID2);
939 /* make PRESSED btns NORMAL but don't hide gray btns */
940 if (infoPtr->TLbtnState & (PGF_HOT | PGF_DEPRESSED))
941 infoPtr->TLbtnState = PGF_NORMAL;
942 if (infoPtr->BRbtnState & (PGF_HOT | PGF_DEPRESSED))
943 infoPtr->BRbtnState = PGF_NORMAL;
945 return 0;
948 static LRESULT
949 PAGER_Timer (PAGER_INFO* infoPtr, INT nTimerId)
951 INT dir;
953 /* if initial timer, kill it and start the repeat timer */
954 if (nTimerId == TIMERID1) {
955 if (infoPtr->TLbtnState == PGF_HOT)
956 dir = (infoPtr->dwStyle & PGS_HORZ) ?
957 PGF_SCROLLLEFT : PGF_SCROLLUP;
958 else
959 dir = (infoPtr->dwStyle & PGS_HORZ) ?
960 PGF_SCROLLRIGHT : PGF_SCROLLDOWN;
961 TRACE("[%p] TIMERID1: style=%08x, dir=%d\n",
962 infoPtr->hwndSelf, infoPtr->dwStyle, dir);
963 KillTimer(infoPtr->hwndSelf, TIMERID1);
964 SetTimer(infoPtr->hwndSelf, TIMERID1, REPEAT_DELAY, 0);
965 if (infoPtr->dwStyle & PGS_AUTOSCROLL) {
966 PAGER_Scroll(infoPtr, dir);
967 SetWindowPos(infoPtr->hwndSelf, 0, 0, 0, 0, 0,
968 SWP_FRAMECHANGED | SWP_NOSIZE | SWP_NOMOVE |
969 SWP_NOZORDER | SWP_NOACTIVATE);
971 return 0;
975 TRACE("[%p] TIMERID2: dir=%d\n", infoPtr->hwndSelf, infoPtr->direction);
976 KillTimer(infoPtr->hwndSelf, TIMERID2);
977 if (infoPtr->direction > 0) {
978 PAGER_Scroll(infoPtr, infoPtr->direction);
979 SetTimer(infoPtr->hwndSelf, TIMERID2, REPEAT_DELAY, 0);
981 return 0;
984 static LRESULT
985 PAGER_EraseBackground (const PAGER_INFO* infoPtr, HDC hdc)
987 POINT pt, ptorig;
988 HWND parent;
989 LRESULT ret;
991 pt.x = 0;
992 pt.y = 0;
993 parent = GetParent(infoPtr->hwndSelf);
994 MapWindowPoints(infoPtr->hwndSelf, parent, &pt, 1);
995 OffsetWindowOrgEx (hdc, pt.x, pt.y, &ptorig);
996 ret = SendMessageW (parent, WM_ERASEBKGND, (WPARAM)hdc, 0);
997 SetWindowOrgEx (hdc, ptorig.x, ptorig.y, 0);
999 return ret;
1003 static LRESULT
1004 PAGER_Size (PAGER_INFO* infoPtr, INT type, INT x, INT y)
1006 /* note that WM_SIZE is sent whenever NCCalcSize resizes the client wnd */
1008 TRACE("[%p] %d,%d\n", infoPtr->hwndSelf, x, y);
1010 if (infoPtr->dwStyle & PGS_HORZ)
1011 infoPtr->nHeight = y;
1012 else
1013 infoPtr->nWidth = x;
1015 return PAGER_RecalcSize(infoPtr);
1019 static LRESULT
1020 PAGER_StyleChanged(PAGER_INFO *infoPtr, WPARAM wStyleType, const STYLESTRUCT *lpss)
1022 DWORD oldStyle = infoPtr->dwStyle;
1024 TRACE("(styletype=%lx, styleOld=0x%08x, styleNew=0x%08x)\n",
1025 wStyleType, lpss->styleOld, lpss->styleNew);
1027 if (wStyleType != GWL_STYLE) return 0;
1029 infoPtr->dwStyle = lpss->styleNew;
1031 if ((oldStyle ^ lpss->styleNew) & (PGS_HORZ | PGS_VERT))
1033 PAGER_RecalcSize(infoPtr);
1036 return 0;
1039 static LRESULT WINAPI
1040 PAGER_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
1042 PAGER_INFO *infoPtr = (PAGER_INFO *)GetWindowLongPtrW(hwnd, 0);
1044 if (!infoPtr && (uMsg != WM_CREATE))
1045 return DefWindowProcW (hwnd, uMsg, wParam, lParam);
1047 switch (uMsg)
1049 case EM_FMTLINES:
1050 return PAGER_FmtLines(infoPtr);
1052 case PGM_FORWARDMOUSE:
1053 return PAGER_ForwardMouse (infoPtr, (BOOL)wParam);
1055 case PGM_GETBKCOLOR:
1056 return PAGER_GetBkColor(infoPtr);
1058 case PGM_GETBORDER:
1059 return PAGER_GetBorder(infoPtr);
1061 case PGM_GETBUTTONSIZE:
1062 return PAGER_GetButtonSize(infoPtr);
1064 case PGM_GETPOS:
1065 return PAGER_GetPos(infoPtr);
1067 case PGM_GETBUTTONSTATE:
1068 return PAGER_GetButtonState (infoPtr, (INT)lParam);
1070 /* case PGM_GETDROPTARGET: */
1072 case PGM_RECALCSIZE:
1073 return PAGER_RecalcSize(infoPtr);
1075 case PGM_SETBKCOLOR:
1076 return PAGER_SetBkColor (infoPtr, (COLORREF)lParam);
1078 case PGM_SETBORDER:
1079 return PAGER_SetBorder (infoPtr, (INT)lParam);
1081 case PGM_SETBUTTONSIZE:
1082 return PAGER_SetButtonSize (infoPtr, (INT)lParam);
1084 case PGM_SETCHILD:
1085 return PAGER_SetChild (infoPtr, (HWND)lParam);
1087 case PGM_SETPOS:
1088 return PAGER_SetPos(infoPtr, (INT)lParam, FALSE);
1090 case WM_CREATE:
1091 return PAGER_Create (hwnd, (LPCREATESTRUCTW)lParam);
1093 case WM_DESTROY:
1094 return PAGER_Destroy (infoPtr);
1096 case WM_SIZE:
1097 return PAGER_Size (infoPtr, (INT)wParam, (short)LOWORD(lParam), (short)HIWORD(lParam));
1099 case WM_NCPAINT:
1100 return PAGER_NCPaint (infoPtr, (HRGN)wParam);
1102 case WM_WINDOWPOSCHANGING:
1103 return PAGER_WindowPosChanging (infoPtr, (WINDOWPOS*)lParam);
1105 case WM_STYLECHANGED:
1106 return PAGER_StyleChanged(infoPtr, wParam, (LPSTYLESTRUCT)lParam);
1108 case WM_NCCALCSIZE:
1109 return PAGER_NCCalcSize (infoPtr, wParam, (LPRECT)lParam);
1111 case WM_NCHITTEST:
1112 return PAGER_NCHitTest (infoPtr, (short)LOWORD(lParam), (short)HIWORD(lParam));
1114 case WM_MOUSEMOVE:
1115 if (infoPtr->bForward && infoPtr->hwndChild)
1116 PostMessageW(infoPtr->hwndChild, WM_MOUSEMOVE, wParam, lParam);
1117 return PAGER_MouseMove (infoPtr, (INT)wParam, (short)LOWORD(lParam), (short)HIWORD(lParam));
1119 case WM_LBUTTONDOWN:
1120 return PAGER_LButtonDown (infoPtr, (INT)wParam, (short)LOWORD(lParam), (short)HIWORD(lParam));
1122 case WM_LBUTTONUP:
1123 return PAGER_LButtonUp (infoPtr, (INT)wParam, (short)LOWORD(lParam), (short)HIWORD(lParam));
1125 case WM_ERASEBKGND:
1126 return PAGER_EraseBackground (infoPtr, (HDC)wParam);
1128 case WM_TIMER:
1129 return PAGER_Timer (infoPtr, (INT)wParam);
1131 case WM_NOTIFY:
1132 case WM_COMMAND:
1133 return SendMessageW (infoPtr->hwndNotify, uMsg, wParam, lParam);
1135 default:
1136 return DefWindowProcW (hwnd, uMsg, wParam, lParam);
1141 VOID
1142 PAGER_Register (void)
1144 WNDCLASSW wndClass;
1146 ZeroMemory (&wndClass, sizeof(WNDCLASSW));
1147 wndClass.style = CS_GLOBALCLASS;
1148 wndClass.lpfnWndProc = PAGER_WindowProc;
1149 wndClass.cbClsExtra = 0;
1150 wndClass.cbWndExtra = sizeof(PAGER_INFO *);
1151 wndClass.hCursor = LoadCursorW (0, (LPWSTR)IDC_ARROW);
1152 wndClass.hbrBackground = (HBRUSH)(COLOR_BTNFACE+1);
1153 wndClass.lpszClassName = WC_PAGESCROLLERW;
1155 RegisterClassW (&wndClass);
1159 VOID
1160 PAGER_Unregister (void)
1162 UnregisterClassW (WC_PAGESCROLLERW, NULL);