netapi32: Default to CP_UTF8 when WINEUNIXCP is not set.
[wine.git] / dlls / comctl32 / pager.c
blobb8baa93e15fe64a87c71a70c1a02ed17d60a2c79
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"
65 #include "wine/heap.h"
67 WINE_DEFAULT_DEBUG_CHANNEL(pager);
69 typedef struct
71 HWND hwndSelf; /* handle of the control wnd */
72 HWND hwndChild; /* handle of the contained wnd */
73 HWND hwndNotify; /* handle of the parent wnd */
74 BOOL bUnicode; /* send notifications in Unicode */
75 DWORD dwStyle; /* styles for this control */
76 COLORREF clrBk; /* background color */
77 INT nBorder; /* border size for the control */
78 INT nButtonSize;/* size of the pager btns */
79 INT nPos; /* scroll position */
80 INT nWidth; /* from child wnd's response to PGN_CALCSIZE */
81 INT nHeight; /* from child wnd's response to PGN_CALCSIZE */
82 BOOL bForward; /* forward WM_MOUSEMOVE msgs to the contained wnd */
83 BOOL bCapture; /* we have captured the mouse */
84 INT TLbtnState; /* state of top or left btn */
85 INT BRbtnState; /* state of bottom or right btn */
86 INT direction; /* direction of the scroll, (e.g. PGF_SCROLLUP) */
87 WCHAR *pwszBuffer;/* text buffer for converted notifications */
88 INT nBufferSize;/* size of the above buffer */
89 } PAGER_INFO;
91 #define TIMERID1 1
92 #define TIMERID2 2
93 #define INITIAL_DELAY 500
94 #define REPEAT_DELAY 50
96 /* Text field conversion behavior flags for PAGER_SendConvertedNotify() */
97 enum conversion_flags
99 /* Convert Unicode text to ANSI for parent before sending. If not set, do nothing */
100 CONVERT_SEND = 0x01,
101 /* Convert ANSI text from parent back to Unicode for children */
102 CONVERT_RECEIVE = 0x02,
103 /* Send empty text to parent if text is NULL. Original text pointer still remains NULL */
104 SEND_EMPTY_IF_NULL = 0x04,
105 /* Set text to null after parent received the notification if the required mask is not set before sending notification */
106 SET_NULL_IF_NO_MASK = 0x08,
107 /* Zero out the text buffer before sending it to parent */
108 ZERO_SEND = 0x10
111 static void
112 PAGER_GetButtonRects(const PAGER_INFO* infoPtr, RECT* prcTopLeft, RECT* prcBottomRight, BOOL bClientCoords)
114 RECT rcWindow;
115 GetWindowRect (infoPtr->hwndSelf, &rcWindow);
117 if (bClientCoords)
118 MapWindowPoints( 0, infoPtr->hwndSelf, (POINT *)&rcWindow, 2 );
119 else
120 OffsetRect(&rcWindow, -rcWindow.left, -rcWindow.top);
122 *prcTopLeft = *prcBottomRight = rcWindow;
123 if (infoPtr->dwStyle & PGS_HORZ)
125 prcTopLeft->right = prcTopLeft->left + infoPtr->nButtonSize;
126 prcBottomRight->left = prcBottomRight->right - infoPtr->nButtonSize;
128 else
130 prcTopLeft->bottom = prcTopLeft->top + infoPtr->nButtonSize;
131 prcBottomRight->top = prcBottomRight->bottom - infoPtr->nButtonSize;
135 static void
136 PAGER_DrawButton(HDC hdc, COLORREF clrBk, RECT rc,
137 BOOL horz, BOOL topLeft, INT btnState)
139 UINT flags;
141 TRACE("rc = %s, btnState = %d\n", wine_dbgstr_rect(&rc), btnState);
143 if (btnState == PGF_INVISIBLE)
144 return;
146 if ((rc.right - rc.left <= 0) || (rc.bottom - rc.top <= 0))
147 return;
149 if (horz)
150 flags = topLeft ? DFCS_SCROLLLEFT : DFCS_SCROLLRIGHT;
151 else
152 flags = topLeft ? DFCS_SCROLLUP : DFCS_SCROLLDOWN;
154 switch (btnState)
156 case PGF_HOT:
157 break;
158 case PGF_NORMAL:
159 flags |= DFCS_FLAT;
160 break;
161 case PGF_DEPRESSED:
162 flags |= DFCS_PUSHED;
163 break;
164 case PGF_GRAYED:
165 flags |= DFCS_INACTIVE | DFCS_FLAT;
166 break;
168 DrawFrameControl( hdc, &rc, DFC_SCROLL, flags );
171 /* << PAGER_GetDropTarget >> */
173 static inline LRESULT
174 PAGER_ForwardMouse (PAGER_INFO* infoPtr, BOOL bFwd)
176 TRACE("[%p]\n", infoPtr->hwndSelf);
178 infoPtr->bForward = bFwd;
180 return 0;
183 static inline LRESULT
184 PAGER_GetButtonState (const PAGER_INFO* infoPtr, INT btn)
186 LRESULT btnState = PGF_INVISIBLE;
187 TRACE("[%p]\n", infoPtr->hwndSelf);
189 if (btn == PGB_TOPORLEFT)
190 btnState = infoPtr->TLbtnState;
191 else if (btn == PGB_BOTTOMORRIGHT)
192 btnState = infoPtr->BRbtnState;
194 return btnState;
198 static inline INT
199 PAGER_GetPos(const PAGER_INFO *infoPtr)
201 TRACE("[%p] returns %d\n", infoPtr->hwndSelf, infoPtr->nPos);
202 return infoPtr->nPos;
205 static inline INT
206 PAGER_GetButtonSize(const PAGER_INFO *infoPtr)
208 TRACE("[%p] returns %d\n", infoPtr->hwndSelf, infoPtr->nButtonSize);
209 return infoPtr->nButtonSize;
212 static inline INT
213 PAGER_GetBorder(const PAGER_INFO *infoPtr)
215 TRACE("[%p] returns %d\n", infoPtr->hwndSelf, infoPtr->nBorder);
216 return infoPtr->nBorder;
219 static inline COLORREF
220 PAGER_GetBkColor(const PAGER_INFO *infoPtr)
222 TRACE("[%p] returns %06x\n", infoPtr->hwndSelf, infoPtr->clrBk);
223 return infoPtr->clrBk;
226 static void
227 PAGER_CalcSize( PAGER_INFO *infoPtr )
229 NMPGCALCSIZE nmpgcs;
230 ZeroMemory (&nmpgcs, sizeof (NMPGCALCSIZE));
231 nmpgcs.hdr.hwndFrom = infoPtr->hwndSelf;
232 nmpgcs.hdr.idFrom = GetWindowLongPtrW (infoPtr->hwndSelf, GWLP_ID);
233 nmpgcs.hdr.code = PGN_CALCSIZE;
234 nmpgcs.dwFlag = (infoPtr->dwStyle & PGS_HORZ) ? PGF_CALCWIDTH : PGF_CALCHEIGHT;
235 nmpgcs.iWidth = infoPtr->nWidth;
236 nmpgcs.iHeight = infoPtr->nHeight;
237 SendMessageW (infoPtr->hwndNotify, WM_NOTIFY, nmpgcs.hdr.idFrom, (LPARAM)&nmpgcs);
239 if (infoPtr->dwStyle & PGS_HORZ)
240 infoPtr->nWidth = nmpgcs.iWidth;
241 else
242 infoPtr->nHeight = nmpgcs.iHeight;
244 TRACE("[%p] PGN_CALCSIZE returns %dx%d\n", infoPtr->hwndSelf, nmpgcs.iWidth, nmpgcs.iHeight );
247 static void
248 PAGER_PositionChildWnd(PAGER_INFO* infoPtr)
250 if (infoPtr->hwndChild)
252 RECT rcClient;
253 int nPos = infoPtr->nPos;
255 /* compensate for a grayed btn, which will soon become invisible */
256 if (infoPtr->TLbtnState == PGF_GRAYED)
257 nPos += infoPtr->nButtonSize;
259 GetClientRect(infoPtr->hwndSelf, &rcClient);
261 if (infoPtr->dwStyle & PGS_HORZ)
263 int wndSize = max(0, rcClient.right - rcClient.left);
264 if (infoPtr->nWidth < wndSize)
265 infoPtr->nWidth = wndSize;
267 TRACE("[%p] SWP %dx%d at (%d,%d)\n", infoPtr->hwndSelf,
268 infoPtr->nWidth, infoPtr->nHeight,
269 -nPos, 0);
270 SetWindowPos(infoPtr->hwndChild, HWND_TOP,
271 -nPos, 0,
272 infoPtr->nWidth, infoPtr->nHeight, 0);
274 else
276 int wndSize = max(0, rcClient.bottom - rcClient.top);
277 if (infoPtr->nHeight < wndSize)
278 infoPtr->nHeight = wndSize;
280 TRACE("[%p] SWP %dx%d at (%d,%d)\n", infoPtr->hwndSelf,
281 infoPtr->nWidth, infoPtr->nHeight,
282 0, -nPos);
283 SetWindowPos(infoPtr->hwndChild, HWND_TOP,
284 0, -nPos,
285 infoPtr->nWidth, infoPtr->nHeight, 0);
288 InvalidateRect(infoPtr->hwndChild, NULL, TRUE);
292 static INT
293 PAGER_GetScrollRange(PAGER_INFO* infoPtr, BOOL calc_size)
295 INT scrollRange = 0;
297 if (infoPtr->hwndChild)
299 INT wndSize, childSize;
300 RECT wndRect;
301 GetWindowRect(infoPtr->hwndSelf, &wndRect);
303 if (calc_size)
304 PAGER_CalcSize(infoPtr);
305 if (infoPtr->dwStyle & PGS_HORZ)
307 wndSize = wndRect.right - wndRect.left;
308 childSize = infoPtr->nWidth;
310 else
312 wndSize = wndRect.bottom - wndRect.top;
313 childSize = infoPtr->nHeight;
316 TRACE("childSize = %d, wndSize = %d\n", childSize, wndSize);
317 if (childSize > wndSize)
318 scrollRange = childSize - wndSize + infoPtr->nButtonSize;
321 TRACE("[%p] returns %d\n", infoPtr->hwndSelf, scrollRange);
322 return scrollRange;
325 static void
326 PAGER_UpdateBtns(PAGER_INFO *infoPtr, INT scrollRange, BOOL hideGrayBtns)
328 BOOL resizeClient;
329 BOOL repaintBtns;
330 INT oldTLbtnState = infoPtr->TLbtnState;
331 INT oldBRbtnState = infoPtr->BRbtnState;
332 POINT pt;
333 RECT rcTopLeft, rcBottomRight;
335 /* get button rects */
336 PAGER_GetButtonRects(infoPtr, &rcTopLeft, &rcBottomRight, TRUE);
338 GetCursorPos(&pt);
339 ScreenToClient( infoPtr->hwndSelf, &pt );
341 /* update states based on scroll position */
342 if (infoPtr->nPos > 0)
344 if (infoPtr->TLbtnState == PGF_INVISIBLE || infoPtr->TLbtnState == PGF_GRAYED)
345 infoPtr->TLbtnState = PGF_NORMAL;
347 else if (!hideGrayBtns && PtInRect(&rcTopLeft, pt))
348 infoPtr->TLbtnState = PGF_GRAYED;
349 else
350 infoPtr->TLbtnState = PGF_INVISIBLE;
352 if (scrollRange <= 0)
354 infoPtr->TLbtnState = PGF_INVISIBLE;
355 infoPtr->BRbtnState = PGF_INVISIBLE;
357 else if (infoPtr->nPos < scrollRange)
359 if (infoPtr->BRbtnState == PGF_INVISIBLE || infoPtr->BRbtnState == PGF_GRAYED)
360 infoPtr->BRbtnState = PGF_NORMAL;
362 else if (!hideGrayBtns && PtInRect(&rcBottomRight, pt))
363 infoPtr->BRbtnState = PGF_GRAYED;
364 else
365 infoPtr->BRbtnState = PGF_INVISIBLE;
367 /* only need to resize when entering or leaving PGF_INVISIBLE state */
368 resizeClient =
369 ((oldTLbtnState == PGF_INVISIBLE) != (infoPtr->TLbtnState == PGF_INVISIBLE)) ||
370 ((oldBRbtnState == PGF_INVISIBLE) != (infoPtr->BRbtnState == PGF_INVISIBLE));
371 /* initiate NCCalcSize to resize client wnd if necessary */
372 if (resizeClient)
373 SetWindowPos(infoPtr->hwndSelf, 0, 0, 0, 0, 0,
374 SWP_FRAMECHANGED | SWP_NOSIZE | SWP_NOMOVE |
375 SWP_NOZORDER | SWP_NOACTIVATE);
377 /* repaint when changing any state */
378 repaintBtns = (oldTLbtnState != infoPtr->TLbtnState) ||
379 (oldBRbtnState != infoPtr->BRbtnState);
380 if (repaintBtns)
381 SendMessageW(infoPtr->hwndSelf, WM_NCPAINT, 0, 0);
384 static LRESULT
385 PAGER_SetPos(PAGER_INFO* infoPtr, INT newPos, BOOL fromBtnPress, BOOL calc_size)
387 INT scrollRange = PAGER_GetScrollRange(infoPtr, calc_size);
388 INT oldPos = infoPtr->nPos;
390 if ((scrollRange <= 0) || (newPos < 0))
391 infoPtr->nPos = 0;
392 else if (newPos > scrollRange)
393 infoPtr->nPos = scrollRange;
394 else
395 infoPtr->nPos = newPos;
397 TRACE("[%p] pos=%d, oldpos=%d\n", infoPtr->hwndSelf, infoPtr->nPos, oldPos);
399 if (infoPtr->nPos != oldPos)
401 /* gray and restore btns, and if from WM_SETPOS, hide the gray btns */
402 PAGER_UpdateBtns(infoPtr, scrollRange, !fromBtnPress);
403 PAGER_PositionChildWnd(infoPtr);
406 return 0;
409 /******************************************************************
410 * For the PGM_RECALCSIZE message (but not the other uses in *
411 * this module), the native control does only the following: *
413 * if (some condition) *
414 * PostMessageW(hwnd, EM_FMTLINES, 0, 0); *
415 * return DefWindowProcW(hwnd, PGM_RECALCSIZE, 0, 0); *
417 * When we figure out what the "some condition" is we will *
418 * implement that for the message processing. *
419 ******************************************************************/
421 static LRESULT
422 PAGER_RecalcSize(PAGER_INFO *infoPtr)
424 TRACE("[%p]\n", infoPtr->hwndSelf);
426 if (infoPtr->hwndChild)
428 INT scrollRange = PAGER_GetScrollRange(infoPtr, TRUE);
430 if (scrollRange <= 0)
432 infoPtr->nPos = -1;
433 PAGER_SetPos(infoPtr, 0, FALSE, TRUE);
435 else
436 PAGER_PositionChildWnd(infoPtr);
439 return 1;
443 static COLORREF
444 PAGER_SetBkColor (PAGER_INFO* infoPtr, COLORREF clrBk)
446 COLORREF clrTemp = infoPtr->clrBk;
448 infoPtr->clrBk = clrBk;
449 TRACE("[%p] %06x\n", infoPtr->hwndSelf, infoPtr->clrBk);
451 /* the native control seems to do things this way */
452 SetWindowPos(infoPtr->hwndSelf, 0, 0, 0, 0, 0,
453 SWP_FRAMECHANGED | SWP_NOSIZE | SWP_NOMOVE |
454 SWP_NOZORDER | SWP_NOACTIVATE);
456 RedrawWindow(infoPtr->hwndSelf, 0, 0, RDW_ERASE | RDW_INVALIDATE);
458 return clrTemp;
462 static INT
463 PAGER_SetBorder (PAGER_INFO* infoPtr, INT iBorder)
465 INT nTemp = infoPtr->nBorder;
467 infoPtr->nBorder = iBorder;
468 TRACE("[%p] %d\n", infoPtr->hwndSelf, infoPtr->nBorder);
470 PAGER_RecalcSize(infoPtr);
472 return nTemp;
476 static INT
477 PAGER_SetButtonSize (PAGER_INFO* infoPtr, INT iButtonSize)
479 INT nTemp = infoPtr->nButtonSize;
481 infoPtr->nButtonSize = iButtonSize;
482 TRACE("[%p] %d\n", infoPtr->hwndSelf, infoPtr->nButtonSize);
484 PAGER_RecalcSize(infoPtr);
486 return nTemp;
490 static LRESULT
491 PAGER_SetChild (PAGER_INFO* infoPtr, HWND hwndChild)
493 infoPtr->hwndChild = IsWindow (hwndChild) ? hwndChild : 0;
495 if (infoPtr->hwndChild)
497 TRACE("[%p] hwndChild=%p\n", infoPtr->hwndSelf, infoPtr->hwndChild);
499 SetWindowPos(infoPtr->hwndSelf, 0, 0, 0, 0, 0,
500 SWP_FRAMECHANGED | SWP_NOMOVE | SWP_NOZORDER | SWP_NOSIZE | SWP_NOACTIVATE);
502 infoPtr->nPos = -1;
503 PAGER_SetPos(infoPtr, 0, FALSE, FALSE);
506 return 0;
509 static void
510 PAGER_Scroll(PAGER_INFO* infoPtr, INT dir)
512 NMPGSCROLL nmpgScroll;
513 RECT rcWnd;
515 if (infoPtr->hwndChild)
517 ZeroMemory (&nmpgScroll, sizeof (NMPGSCROLL));
518 nmpgScroll.hdr.hwndFrom = infoPtr->hwndSelf;
519 nmpgScroll.hdr.idFrom = GetWindowLongPtrW (infoPtr->hwndSelf, GWLP_ID);
520 nmpgScroll.hdr.code = PGN_SCROLL;
522 GetWindowRect(infoPtr->hwndSelf, &rcWnd);
523 GetClientRect(infoPtr->hwndSelf, &nmpgScroll.rcParent);
524 nmpgScroll.iXpos = nmpgScroll.iYpos = 0;
525 nmpgScroll.iDir = dir;
527 if (infoPtr->dwStyle & PGS_HORZ)
529 nmpgScroll.iScroll = rcWnd.right - rcWnd.left;
530 nmpgScroll.iXpos = infoPtr->nPos;
532 else
534 nmpgScroll.iScroll = rcWnd.bottom - rcWnd.top;
535 nmpgScroll.iYpos = infoPtr->nPos;
537 nmpgScroll.iScroll -= 2*infoPtr->nButtonSize;
539 SendMessageW (infoPtr->hwndNotify, WM_NOTIFY, nmpgScroll.hdr.idFrom, (LPARAM)&nmpgScroll);
541 TRACE("[%p] PGN_SCROLL returns iScroll=%d\n", infoPtr->hwndSelf, nmpgScroll.iScroll);
543 if (nmpgScroll.iScroll > 0)
545 infoPtr->direction = dir;
547 if (dir == PGF_SCROLLLEFT || dir == PGF_SCROLLUP)
548 PAGER_SetPos(infoPtr, infoPtr->nPos - nmpgScroll.iScroll, TRUE, TRUE);
549 else
550 PAGER_SetPos(infoPtr, infoPtr->nPos + nmpgScroll.iScroll, TRUE, TRUE);
552 else
553 infoPtr->direction = -1;
557 static LRESULT
558 PAGER_FmtLines(const PAGER_INFO *infoPtr)
560 /* initiate NCCalcSize to resize client wnd and get size */
561 SetWindowPos(infoPtr->hwndSelf, 0, 0, 0, 0, 0,
562 SWP_FRAMECHANGED | SWP_NOSIZE | SWP_NOMOVE |
563 SWP_NOZORDER | SWP_NOACTIVATE);
565 SetWindowPos(infoPtr->hwndChild, 0,
566 0,0,infoPtr->nWidth,infoPtr->nHeight,
569 return DefWindowProcW (infoPtr->hwndSelf, EM_FMTLINES, 0, 0);
572 static LRESULT
573 PAGER_Create (HWND hwnd, const CREATESTRUCTW *lpcs)
575 PAGER_INFO *infoPtr;
576 INT ret;
578 /* allocate memory for info structure */
579 infoPtr = heap_alloc_zero (sizeof(*infoPtr));
580 if (!infoPtr) return -1;
581 SetWindowLongPtrW (hwnd, 0, (DWORD_PTR)infoPtr);
583 /* set default settings */
584 infoPtr->hwndSelf = hwnd;
585 infoPtr->hwndChild = NULL;
586 infoPtr->hwndNotify = lpcs->hwndParent;
587 infoPtr->dwStyle = lpcs->style;
588 infoPtr->clrBk = GetSysColor(COLOR_BTNFACE);
589 infoPtr->nBorder = 0;
590 infoPtr->nButtonSize = 12;
591 infoPtr->nPos = 0;
592 infoPtr->nWidth = 0;
593 infoPtr->nHeight = 0;
594 infoPtr->bForward = FALSE;
595 infoPtr->bCapture = FALSE;
596 infoPtr->TLbtnState = PGF_INVISIBLE;
597 infoPtr->BRbtnState = PGF_INVISIBLE;
598 infoPtr->direction = -1;
600 if (infoPtr->dwStyle & PGS_DRAGNDROP)
601 FIXME("[%p] Drag and Drop style is not implemented yet.\n", infoPtr->hwndSelf);
603 ret = SendMessageW(infoPtr->hwndNotify, WM_NOTIFYFORMAT, (WPARAM)infoPtr->hwndSelf, NF_QUERY);
604 infoPtr->bUnicode = (ret == NFR_UNICODE);
606 return 0;
610 static LRESULT
611 PAGER_Destroy (PAGER_INFO *infoPtr)
613 SetWindowLongPtrW (infoPtr->hwndSelf, 0, 0);
614 heap_free (infoPtr->pwszBuffer);
615 heap_free (infoPtr);
616 return 0;
619 static LRESULT
620 PAGER_NCCalcSize(PAGER_INFO* infoPtr, WPARAM wParam, LPRECT lpRect)
622 RECT rcChild, rcWindow;
625 * lpRect points to a RECT struct. On entry, the struct
626 * contains the proposed wnd rectangle for the window.
627 * On exit, the struct should contain the screen
628 * coordinates of the corresponding window's client area.
631 DefWindowProcW (infoPtr->hwndSelf, WM_NCCALCSIZE, wParam, (LPARAM)lpRect);
633 TRACE("orig rect=%s\n", wine_dbgstr_rect(lpRect));
635 GetWindowRect (infoPtr->hwndChild, &rcChild);
636 MapWindowPoints (0, infoPtr->hwndSelf, (LPPOINT)&rcChild, 2); /* FIXME: RECT != 2 POINTS */
637 GetWindowRect (infoPtr->hwndSelf, &rcWindow);
639 infoPtr->nWidth = lpRect->right - lpRect->left;
640 infoPtr->nHeight = lpRect->bottom - lpRect->top;
641 PAGER_CalcSize( infoPtr );
643 if (infoPtr->dwStyle & PGS_HORZ)
645 if (infoPtr->TLbtnState && (lpRect->left + infoPtr->nButtonSize < lpRect->right))
646 lpRect->left += infoPtr->nButtonSize;
647 if (infoPtr->BRbtnState && (lpRect->right - infoPtr->nButtonSize > lpRect->left))
648 lpRect->right -= infoPtr->nButtonSize;
650 else
652 if (infoPtr->TLbtnState && (lpRect->top + infoPtr->nButtonSize < lpRect->bottom))
653 lpRect->top += infoPtr->nButtonSize;
654 if (infoPtr->BRbtnState && (lpRect->bottom - infoPtr->nButtonSize > lpRect->top))
655 lpRect->bottom -= infoPtr->nButtonSize;
658 TRACE("nPos=%d, nHeight=%d, window=%s\n", infoPtr->nPos, infoPtr->nHeight, wine_dbgstr_rect(&rcWindow));
659 TRACE("[%p] client rect set to %s BtnState[%d,%d]\n", infoPtr->hwndSelf, wine_dbgstr_rect(lpRect),
660 infoPtr->TLbtnState, infoPtr->BRbtnState);
662 return 0;
665 static LRESULT
666 PAGER_NCPaint (const PAGER_INFO* infoPtr, HRGN hRgn)
668 RECT rcBottomRight, rcTopLeft;
669 HDC hdc;
671 if (infoPtr->dwStyle & WS_MINIMIZE)
672 return 0;
674 DefWindowProcW (infoPtr->hwndSelf, WM_NCPAINT, (WPARAM)hRgn, 0);
676 if (!(hdc = GetDCEx (infoPtr->hwndSelf, 0, DCX_USESTYLE | DCX_WINDOW)))
677 return 0;
679 PAGER_GetButtonRects(infoPtr, &rcTopLeft, &rcBottomRight, FALSE);
681 PAGER_DrawButton(hdc, infoPtr->clrBk, rcTopLeft,
682 infoPtr->dwStyle & PGS_HORZ, TRUE, infoPtr->TLbtnState);
683 PAGER_DrawButton(hdc, infoPtr->clrBk, rcBottomRight,
684 infoPtr->dwStyle & PGS_HORZ, FALSE, infoPtr->BRbtnState);
686 ReleaseDC( infoPtr->hwndSelf, hdc );
687 return 0;
690 static INT
691 PAGER_HitTest (const PAGER_INFO* infoPtr, const POINT * pt)
693 RECT clientRect, rcTopLeft, rcBottomRight;
694 POINT ptWindow;
696 GetClientRect (infoPtr->hwndSelf, &clientRect);
698 if (PtInRect(&clientRect, *pt))
700 TRACE("child\n");
701 return -1;
704 ptWindow = *pt;
705 PAGER_GetButtonRects(infoPtr, &rcTopLeft, &rcBottomRight, TRUE);
707 if ((infoPtr->TLbtnState != PGF_INVISIBLE) && PtInRect(&rcTopLeft, ptWindow))
709 TRACE("PGB_TOPORLEFT\n");
710 return PGB_TOPORLEFT;
712 else if ((infoPtr->BRbtnState != PGF_INVISIBLE) && PtInRect(&rcBottomRight, ptWindow))
714 TRACE("PGB_BOTTOMORRIGHT\n");
715 return PGB_BOTTOMORRIGHT;
718 TRACE("nowhere\n");
719 return -1;
722 static LRESULT
723 PAGER_NCHitTest (const PAGER_INFO* infoPtr, INT x, INT y)
725 POINT pt;
726 INT nHit;
728 pt.x = x;
729 pt.y = y;
731 ScreenToClient (infoPtr->hwndSelf, &pt);
732 nHit = PAGER_HitTest(infoPtr, &pt);
734 return (nHit < 0) ? HTTRANSPARENT : HTCLIENT;
737 static LRESULT
738 PAGER_MouseMove (PAGER_INFO* infoPtr, INT keys, INT x, INT y)
740 POINT clpt, pt;
741 RECT wnrect;
742 BOOL topLeft = FALSE;
743 INT btnstate = 0;
744 INT hit;
745 HDC hdc;
747 pt.x = x;
748 pt.y = y;
750 TRACE("[%p] to (%d,%d)\n", infoPtr->hwndSelf, x, y);
751 ClientToScreen(infoPtr->hwndSelf, &pt);
752 GetWindowRect(infoPtr->hwndSelf, &wnrect);
753 if (PtInRect(&wnrect, pt)) {
754 RECT topleft, bottomright, *rect = NULL;
756 PAGER_GetButtonRects(infoPtr, &topleft, &bottomright, FALSE);
758 clpt = pt;
759 MapWindowPoints(0, infoPtr->hwndSelf, &clpt, 1);
760 hit = PAGER_HitTest(infoPtr, &clpt);
761 if ((hit == PGB_TOPORLEFT) && (infoPtr->TLbtnState == PGF_NORMAL))
763 topLeft = TRUE;
764 rect = &topleft;
765 infoPtr->TLbtnState = PGF_HOT;
766 btnstate = infoPtr->TLbtnState;
768 else if ((hit == PGB_BOTTOMORRIGHT) && (infoPtr->BRbtnState == PGF_NORMAL))
770 topLeft = FALSE;
771 rect = &bottomright;
772 infoPtr->BRbtnState = PGF_HOT;
773 btnstate = infoPtr->BRbtnState;
776 /* If in one of the buttons the capture and draw buttons */
777 if (rect)
779 TRACE("[%p] draw btn (%s), Capture %s, style %08x\n",
780 infoPtr->hwndSelf, wine_dbgstr_rect(rect),
781 (infoPtr->bCapture) ? "TRUE" : "FALSE",
782 infoPtr->dwStyle);
783 if (!infoPtr->bCapture)
785 TRACE("[%p] SetCapture\n", infoPtr->hwndSelf);
786 SetCapture(infoPtr->hwndSelf);
787 infoPtr->bCapture = TRUE;
789 if (infoPtr->dwStyle & PGS_AUTOSCROLL)
790 SetTimer(infoPtr->hwndSelf, TIMERID1, 0x3e, 0);
791 hdc = GetWindowDC(infoPtr->hwndSelf);
792 /* OffsetRect(wnrect, 0 | 1, 0 | 1) */
793 PAGER_DrawButton(hdc, infoPtr->clrBk, *rect,
794 infoPtr->dwStyle & PGS_HORZ, topLeft, btnstate);
795 ReleaseDC(infoPtr->hwndSelf, hdc);
796 return 0;
800 /* If we think we are captured, then do release */
801 if (infoPtr->bCapture && (WindowFromPoint(pt) != infoPtr->hwndSelf))
803 NMHDR nmhdr;
805 infoPtr->bCapture = FALSE;
807 if (GetCapture() == infoPtr->hwndSelf)
809 ReleaseCapture();
811 if (infoPtr->TLbtnState == PGF_GRAYED)
813 infoPtr->TLbtnState = PGF_INVISIBLE;
814 SetWindowPos(infoPtr->hwndSelf, 0, 0, 0, 0, 0,
815 SWP_FRAMECHANGED | SWP_NOSIZE | SWP_NOMOVE |
816 SWP_NOZORDER | SWP_NOACTIVATE);
818 else if (infoPtr->TLbtnState == PGF_HOT)
820 infoPtr->TLbtnState = PGF_NORMAL;
821 /* FIXME: just invalidate button rect */
822 RedrawWindow(infoPtr->hwndSelf, NULL, NULL, RDW_FRAME | RDW_INVALIDATE);
825 if (infoPtr->BRbtnState == PGF_GRAYED)
827 infoPtr->BRbtnState = PGF_INVISIBLE;
828 SetWindowPos(infoPtr->hwndSelf, 0, 0, 0, 0, 0,
829 SWP_FRAMECHANGED | SWP_NOSIZE | SWP_NOMOVE |
830 SWP_NOZORDER | SWP_NOACTIVATE);
832 else if (infoPtr->BRbtnState == PGF_HOT)
834 infoPtr->BRbtnState = PGF_NORMAL;
835 /* FIXME: just invalidate button rect */
836 RedrawWindow(infoPtr->hwndSelf, NULL, NULL, RDW_FRAME | RDW_INVALIDATE);
839 /* Notify parent of released mouse capture */
840 memset(&nmhdr, 0, sizeof(NMHDR));
841 nmhdr.hwndFrom = infoPtr->hwndSelf;
842 nmhdr.idFrom = GetWindowLongPtrW(infoPtr->hwndSelf, GWLP_ID);
843 nmhdr.code = NM_RELEASEDCAPTURE;
844 SendMessageW(infoPtr->hwndNotify, WM_NOTIFY, nmhdr.idFrom, (LPARAM)&nmhdr);
846 if (IsWindow(infoPtr->hwndSelf))
847 KillTimer(infoPtr->hwndSelf, TIMERID1);
849 return 0;
852 static LRESULT
853 PAGER_LButtonDown (PAGER_INFO* infoPtr, INT keys, INT x, INT y)
855 BOOL repaintBtns = FALSE;
856 POINT pt;
857 INT hit;
859 pt.x = x;
860 pt.y = y;
862 TRACE("[%p] at (%d,%d)\n", infoPtr->hwndSelf, x, y);
864 hit = PAGER_HitTest(infoPtr, &pt);
866 /* put btn in DEPRESSED state */
867 if (hit == PGB_TOPORLEFT)
869 repaintBtns = infoPtr->TLbtnState != PGF_DEPRESSED;
870 infoPtr->TLbtnState = PGF_DEPRESSED;
871 SetTimer(infoPtr->hwndSelf, TIMERID1, INITIAL_DELAY, 0);
873 else if (hit == PGB_BOTTOMORRIGHT)
875 repaintBtns = infoPtr->BRbtnState != PGF_DEPRESSED;
876 infoPtr->BRbtnState = PGF_DEPRESSED;
877 SetTimer(infoPtr->hwndSelf, TIMERID1, INITIAL_DELAY, 0);
880 if (repaintBtns)
881 SendMessageW(infoPtr->hwndSelf, WM_NCPAINT, 0, 0);
883 switch(hit)
885 case PGB_TOPORLEFT:
886 if (infoPtr->dwStyle & PGS_HORZ)
888 TRACE("[%p] PGF_SCROLLLEFT\n", infoPtr->hwndSelf);
889 PAGER_Scroll(infoPtr, PGF_SCROLLLEFT);
891 else
893 TRACE("[%p] PGF_SCROLLUP\n", infoPtr->hwndSelf);
894 PAGER_Scroll(infoPtr, PGF_SCROLLUP);
896 break;
897 case PGB_BOTTOMORRIGHT:
898 if (infoPtr->dwStyle & PGS_HORZ)
900 TRACE("[%p] PGF_SCROLLRIGHT\n", infoPtr->hwndSelf);
901 PAGER_Scroll(infoPtr, PGF_SCROLLRIGHT);
903 else
905 TRACE("[%p] PGF_SCROLLDOWN\n", infoPtr->hwndSelf);
906 PAGER_Scroll(infoPtr, PGF_SCROLLDOWN);
908 break;
909 default:
910 break;
913 return 0;
916 static LRESULT
917 PAGER_LButtonUp (PAGER_INFO* infoPtr, INT keys, INT x, INT y)
919 TRACE("[%p]\n", infoPtr->hwndSelf);
921 KillTimer (infoPtr->hwndSelf, TIMERID1);
922 KillTimer (infoPtr->hwndSelf, TIMERID2);
924 /* make PRESSED btns NORMAL but don't hide gray btns */
925 if (infoPtr->TLbtnState & (PGF_HOT | PGF_DEPRESSED))
926 infoPtr->TLbtnState = PGF_NORMAL;
927 if (infoPtr->BRbtnState & (PGF_HOT | PGF_DEPRESSED))
928 infoPtr->BRbtnState = PGF_NORMAL;
930 return 0;
933 static LRESULT
934 PAGER_Timer (PAGER_INFO* infoPtr, INT nTimerId)
936 INT dir;
938 /* if initial timer, kill it and start the repeat timer */
939 if (nTimerId == TIMERID1) {
940 if (infoPtr->TLbtnState == PGF_HOT)
941 dir = (infoPtr->dwStyle & PGS_HORZ) ?
942 PGF_SCROLLLEFT : PGF_SCROLLUP;
943 else
944 dir = (infoPtr->dwStyle & PGS_HORZ) ?
945 PGF_SCROLLRIGHT : PGF_SCROLLDOWN;
946 TRACE("[%p] TIMERID1: style=%08x, dir=%d\n",
947 infoPtr->hwndSelf, infoPtr->dwStyle, dir);
948 KillTimer(infoPtr->hwndSelf, TIMERID1);
949 SetTimer(infoPtr->hwndSelf, TIMERID1, REPEAT_DELAY, 0);
950 if (infoPtr->dwStyle & PGS_AUTOSCROLL) {
951 PAGER_Scroll(infoPtr, dir);
952 SetWindowPos(infoPtr->hwndSelf, 0, 0, 0, 0, 0,
953 SWP_FRAMECHANGED | SWP_NOSIZE | SWP_NOMOVE |
954 SWP_NOZORDER | SWP_NOACTIVATE);
956 return 0;
960 TRACE("[%p] TIMERID2: dir=%d\n", infoPtr->hwndSelf, infoPtr->direction);
961 KillTimer(infoPtr->hwndSelf, TIMERID2);
962 if (infoPtr->direction > 0) {
963 PAGER_Scroll(infoPtr, infoPtr->direction);
964 SetTimer(infoPtr->hwndSelf, TIMERID2, REPEAT_DELAY, 0);
966 return 0;
969 static LRESULT PAGER_ThemeChanged (const PAGER_INFO* infoPtr)
971 InvalidateRect(infoPtr->hwndSelf, NULL, TRUE);
972 return 0;
975 static LRESULT
976 PAGER_EraseBackground (const PAGER_INFO* infoPtr, HDC hdc)
978 POINT pt, ptorig;
979 HWND parent;
980 LRESULT ret;
982 pt.x = 0;
983 pt.y = 0;
984 parent = GetParent(infoPtr->hwndSelf);
985 MapWindowPoints(infoPtr->hwndSelf, parent, &pt, 1);
986 OffsetWindowOrgEx (hdc, pt.x, pt.y, &ptorig);
987 ret = SendMessageW (parent, WM_ERASEBKGND, (WPARAM)hdc, 0);
988 SetWindowOrgEx (hdc, ptorig.x, ptorig.y, 0);
990 return ret;
994 static LRESULT
995 PAGER_Size (PAGER_INFO* infoPtr, INT type, INT x, INT y)
997 /* note that WM_SIZE is sent whenever NCCalcSize resizes the client wnd */
999 TRACE("[%p] %d,%d\n", infoPtr->hwndSelf, x, y);
1001 if (infoPtr->dwStyle & PGS_HORZ)
1002 infoPtr->nHeight = y;
1003 else
1004 infoPtr->nWidth = x;
1006 return PAGER_RecalcSize(infoPtr);
1010 static LRESULT
1011 PAGER_StyleChanged(PAGER_INFO *infoPtr, WPARAM wStyleType, const STYLESTRUCT *lpss)
1013 DWORD oldStyle = infoPtr->dwStyle;
1015 TRACE("(styletype=%lx, styleOld=0x%08x, styleNew=0x%08x)\n",
1016 wStyleType, lpss->styleOld, lpss->styleNew);
1018 if (wStyleType != GWL_STYLE) return 0;
1020 infoPtr->dwStyle = lpss->styleNew;
1022 if ((oldStyle ^ lpss->styleNew) & (PGS_HORZ | PGS_VERT))
1024 PAGER_RecalcSize(infoPtr);
1027 return 0;
1030 static LRESULT PAGER_NotifyFormat(PAGER_INFO *infoPtr, INT command)
1032 INT ret;
1033 switch (command)
1035 case NF_REQUERY:
1036 ret = SendMessageW(infoPtr->hwndNotify, WM_NOTIFYFORMAT, (WPARAM)infoPtr->hwndSelf, NF_QUERY);
1037 infoPtr->bUnicode = (ret == NFR_UNICODE);
1038 return ret;
1039 case NF_QUERY:
1040 /* Pager always wants Unicode notifications from children */
1041 return NFR_UNICODE;
1042 default:
1043 return 0;
1047 static UINT PAGER_GetAnsiNtfCode(UINT code)
1049 switch (code)
1051 /* ComboxBoxEx */
1052 case CBEN_DRAGBEGINW: return CBEN_DRAGBEGINA;
1053 case CBEN_ENDEDITW: return CBEN_ENDEDITA;
1054 case CBEN_GETDISPINFOW: return CBEN_GETDISPINFOA;
1055 /* Date and Time Picker */
1056 case DTN_FORMATW: return DTN_FORMATA;
1057 case DTN_FORMATQUERYW: return DTN_FORMATQUERYA;
1058 case DTN_USERSTRINGW: return DTN_USERSTRINGA;
1059 case DTN_WMKEYDOWNW: return DTN_WMKEYDOWNA;
1060 /* Header */
1061 case HDN_BEGINTRACKW: return HDN_BEGINTRACKA;
1062 case HDN_DIVIDERDBLCLICKW: return HDN_DIVIDERDBLCLICKA;
1063 case HDN_ENDTRACKW: return HDN_ENDTRACKA;
1064 case HDN_GETDISPINFOW: return HDN_GETDISPINFOA;
1065 case HDN_ITEMCHANGEDW: return HDN_ITEMCHANGEDA;
1066 case HDN_ITEMCHANGINGW: return HDN_ITEMCHANGINGA;
1067 case HDN_ITEMCLICKW: return HDN_ITEMCLICKA;
1068 case HDN_ITEMDBLCLICKW: return HDN_ITEMDBLCLICKA;
1069 case HDN_TRACKW: return HDN_TRACKA;
1070 /* List View */
1071 case LVN_BEGINLABELEDITW: return LVN_BEGINLABELEDITA;
1072 case LVN_ENDLABELEDITW: return LVN_ENDLABELEDITA;
1073 case LVN_GETDISPINFOW: return LVN_GETDISPINFOA;
1074 case LVN_GETINFOTIPW: return LVN_GETINFOTIPA;
1075 case LVN_INCREMENTALSEARCHW: return LVN_INCREMENTALSEARCHA;
1076 case LVN_ODFINDITEMW: return LVN_ODFINDITEMA;
1077 case LVN_SETDISPINFOW: return LVN_SETDISPINFOA;
1078 /* Toolbar */
1079 case TBN_GETBUTTONINFOW: return TBN_GETBUTTONINFOA;
1080 case TBN_GETINFOTIPW: return TBN_GETINFOTIPA;
1081 /* Tooltip */
1082 case TTN_GETDISPINFOW: return TTN_GETDISPINFOA;
1083 /* Tree View */
1084 case TVN_BEGINDRAGW: return TVN_BEGINDRAGA;
1085 case TVN_BEGINLABELEDITW: return TVN_BEGINLABELEDITA;
1086 case TVN_BEGINRDRAGW: return TVN_BEGINRDRAGA;
1087 case TVN_DELETEITEMW: return TVN_DELETEITEMA;
1088 case TVN_ENDLABELEDITW: return TVN_ENDLABELEDITA;
1089 case TVN_GETDISPINFOW: return TVN_GETDISPINFOA;
1090 case TVN_GETINFOTIPW: return TVN_GETINFOTIPA;
1091 case TVN_ITEMEXPANDEDW: return TVN_ITEMEXPANDEDA;
1092 case TVN_ITEMEXPANDINGW: return TVN_ITEMEXPANDINGA;
1093 case TVN_SELCHANGEDW: return TVN_SELCHANGEDA;
1094 case TVN_SELCHANGINGW: return TVN_SELCHANGINGA;
1095 case TVN_SETDISPINFOW: return TVN_SETDISPINFOA;
1097 return code;
1100 static BOOL PAGER_AdjustBuffer(PAGER_INFO *infoPtr, INT size)
1102 if (!infoPtr->pwszBuffer)
1103 infoPtr->pwszBuffer = heap_alloc(size);
1104 else if (infoPtr->nBufferSize < size)
1105 infoPtr->pwszBuffer = heap_realloc(infoPtr->pwszBuffer, size);
1107 if (!infoPtr->pwszBuffer) return FALSE;
1108 if (infoPtr->nBufferSize < size) infoPtr->nBufferSize = size;
1110 return TRUE;
1113 /* Convert text to Unicode and return the original text address */
1114 static WCHAR *PAGER_ConvertText(WCHAR **text)
1116 WCHAR *oldText = *text;
1117 *text = NULL;
1118 Str_SetPtrWtoA((CHAR **)text, oldText);
1119 return oldText;
1122 static void PAGER_RestoreText(WCHAR **text, WCHAR *oldText)
1124 if (!oldText) return;
1126 Free(*text);
1127 *text = oldText;
1130 static LRESULT PAGER_SendConvertedNotify(PAGER_INFO *infoPtr, NMHDR *hdr, UINT *mask, UINT requiredMask, WCHAR **text,
1131 INT *textMax, DWORD flags)
1133 CHAR *sendBuffer = NULL;
1134 CHAR *receiveBuffer;
1135 INT bufferSize;
1136 WCHAR *oldText;
1137 INT oldTextMax;
1138 LRESULT ret = NO_ERROR;
1140 oldText = *text;
1141 oldTextMax = textMax ? *textMax : 0;
1143 hdr->code = PAGER_GetAnsiNtfCode(hdr->code);
1145 if (mask && !(*mask & requiredMask))
1147 ret = SendMessageW(infoPtr->hwndNotify, WM_NOTIFY, hdr->idFrom, (LPARAM)hdr);
1148 if (flags & SET_NULL_IF_NO_MASK) oldText = NULL;
1149 goto done;
1152 if (oldTextMax < 0) goto done;
1154 if ((*text && flags & (CONVERT_SEND | ZERO_SEND)) || (!*text && flags & SEND_EMPTY_IF_NULL))
1156 bufferSize = textMax ? *textMax : lstrlenW(*text) + 1;
1157 sendBuffer = heap_alloc_zero(bufferSize);
1158 if (!sendBuffer) goto done;
1159 if (!(flags & ZERO_SEND)) WideCharToMultiByte(CP_ACP, 0, *text, -1, sendBuffer, bufferSize, NULL, FALSE);
1160 *text = (WCHAR *)sendBuffer;
1163 ret = SendMessageW(infoPtr->hwndNotify, WM_NOTIFY, hdr->idFrom, (LPARAM)hdr);
1165 if (*text && oldText && (flags & CONVERT_RECEIVE))
1167 /* MultiByteToWideChar requires that source and destination are not the same buffer */
1168 if (*text == oldText)
1170 bufferSize = lstrlenA((CHAR *)*text) + 1;
1171 receiveBuffer = heap_alloc(bufferSize);
1172 if (!receiveBuffer) goto done;
1173 memcpy(receiveBuffer, *text, bufferSize);
1174 MultiByteToWideChar(CP_ACP, 0, receiveBuffer, bufferSize, oldText, oldTextMax);
1175 heap_free(receiveBuffer);
1177 else
1178 MultiByteToWideChar(CP_ACP, 0, (CHAR *)*text, -1, oldText, oldTextMax);
1181 done:
1182 heap_free(sendBuffer);
1183 *text = oldText;
1184 return ret;
1187 static LRESULT PAGER_Notify(PAGER_INFO *infoPtr, NMHDR *hdr)
1189 LRESULT ret;
1191 if (infoPtr->bUnicode) return SendMessageW(infoPtr->hwndNotify, WM_NOTIFY, hdr->idFrom, (LPARAM)hdr);
1193 switch (hdr->code)
1195 /* ComboBoxEx */
1196 case CBEN_GETDISPINFOW:
1198 NMCOMBOBOXEXW *nmcbe = (NMCOMBOBOXEXW *)hdr;
1199 return PAGER_SendConvertedNotify(infoPtr, hdr, &nmcbe->ceItem.mask, CBEIF_TEXT, &nmcbe->ceItem.pszText,
1200 &nmcbe->ceItem.cchTextMax, ZERO_SEND | SET_NULL_IF_NO_MASK | CONVERT_RECEIVE);
1202 case CBEN_DRAGBEGINW:
1204 NMCBEDRAGBEGINW *nmdbW = (NMCBEDRAGBEGINW *)hdr;
1205 NMCBEDRAGBEGINA nmdbA = {{0}};
1206 nmdbA.hdr.code = PAGER_GetAnsiNtfCode(nmdbW->hdr.code);
1207 nmdbA.hdr.hwndFrom = nmdbW->hdr.hwndFrom;
1208 nmdbA.hdr.idFrom = nmdbW->hdr.idFrom;
1209 nmdbA.iItemid = nmdbW->iItemid;
1210 WideCharToMultiByte(CP_ACP, 0, nmdbW->szText, ARRAY_SIZE(nmdbW->szText), nmdbA.szText, ARRAY_SIZE(nmdbA.szText),
1211 NULL, FALSE);
1212 return SendMessageW(infoPtr->hwndNotify, WM_NOTIFY, hdr->idFrom, (LPARAM)&nmdbA);
1214 case CBEN_ENDEDITW:
1216 NMCBEENDEDITW *nmedW = (NMCBEENDEDITW *)hdr;
1217 NMCBEENDEDITA nmedA = {{0}};
1218 nmedA.hdr.code = PAGER_GetAnsiNtfCode(nmedW->hdr.code);
1219 nmedA.hdr.hwndFrom = nmedW->hdr.hwndFrom;
1220 nmedA.hdr.idFrom = nmedW->hdr.idFrom;
1221 nmedA.fChanged = nmedW->fChanged;
1222 nmedA.iNewSelection = nmedW->iNewSelection;
1223 nmedA.iWhy = nmedW->iWhy;
1224 WideCharToMultiByte(CP_ACP, 0, nmedW->szText, ARRAY_SIZE(nmedW->szText), nmedA.szText, ARRAY_SIZE(nmedA.szText),
1225 NULL, FALSE);
1226 return SendMessageW(infoPtr->hwndNotify, WM_NOTIFY, hdr->idFrom, (LPARAM)&nmedA);
1228 /* Date and Time Picker */
1229 case DTN_FORMATW:
1231 NMDATETIMEFORMATW *nmdtf = (NMDATETIMEFORMATW *)hdr;
1232 WCHAR *oldFormat;
1233 INT textLength;
1235 hdr->code = PAGER_GetAnsiNtfCode(hdr->code);
1236 oldFormat = PAGER_ConvertText((WCHAR **)&nmdtf->pszFormat);
1237 ret = SendMessageW(infoPtr->hwndNotify, WM_NOTIFY, hdr->idFrom, (LPARAM)nmdtf);
1238 PAGER_RestoreText((WCHAR **)&nmdtf->pszFormat, oldFormat);
1240 if (nmdtf->pszDisplay)
1242 textLength = MultiByteToWideChar(CP_ACP, 0, (LPCSTR)nmdtf->pszDisplay, -1, 0, 0);
1243 if (!PAGER_AdjustBuffer(infoPtr, textLength * sizeof(WCHAR))) return ret;
1244 MultiByteToWideChar(CP_ACP, 0, (LPCSTR)nmdtf->pszDisplay, -1, infoPtr->pwszBuffer, textLength);
1245 if (nmdtf->pszDisplay != nmdtf->szDisplay)
1246 nmdtf->pszDisplay = infoPtr->pwszBuffer;
1247 else
1249 textLength = min(textLength, ARRAY_SIZE(nmdtf->szDisplay));
1250 memcpy(nmdtf->szDisplay, infoPtr->pwszBuffer, textLength * sizeof(WCHAR));
1254 return ret;
1256 case DTN_FORMATQUERYW:
1258 NMDATETIMEFORMATQUERYW *nmdtfq = (NMDATETIMEFORMATQUERYW *)hdr;
1259 return PAGER_SendConvertedNotify(infoPtr, hdr, NULL, 0, (WCHAR **)&nmdtfq->pszFormat, NULL, CONVERT_SEND);
1261 case DTN_WMKEYDOWNW:
1263 NMDATETIMEWMKEYDOWNW *nmdtkd = (NMDATETIMEWMKEYDOWNW *)hdr;
1264 return PAGER_SendConvertedNotify(infoPtr, hdr, NULL, 0, (WCHAR **)&nmdtkd->pszFormat, NULL, CONVERT_SEND);
1266 case DTN_USERSTRINGW:
1268 NMDATETIMESTRINGW *nmdts = (NMDATETIMESTRINGW *)hdr;
1269 return PAGER_SendConvertedNotify(infoPtr, hdr, NULL, 0, (WCHAR **)&nmdts->pszUserString, NULL, CONVERT_SEND);
1271 /* Header */
1272 case HDN_BEGINTRACKW:
1273 case HDN_DIVIDERDBLCLICKW:
1274 case HDN_ENDTRACKW:
1275 case HDN_ITEMCHANGEDW:
1276 case HDN_ITEMCHANGINGW:
1277 case HDN_ITEMCLICKW:
1278 case HDN_ITEMDBLCLICKW:
1279 case HDN_TRACKW:
1281 NMHEADERW *nmh = (NMHEADERW *)hdr;
1282 WCHAR *oldText = NULL, *oldFilterText = NULL;
1283 HD_TEXTFILTERW *tf = NULL;
1285 hdr->code = PAGER_GetAnsiNtfCode(hdr->code);
1287 if (!nmh->pitem) return SendMessageW(infoPtr->hwndNotify, WM_NOTIFY, hdr->idFrom, (LPARAM)hdr);
1288 if (nmh->pitem->mask & HDI_TEXT) oldText = PAGER_ConvertText(&nmh->pitem->pszText);
1289 if ((nmh->pitem->mask & HDI_FILTER) && (nmh->pitem->type == HDFT_ISSTRING) && nmh->pitem->pvFilter)
1291 tf = (HD_TEXTFILTERW *)nmh->pitem->pvFilter;
1292 oldFilterText = PAGER_ConvertText(&tf->pszText);
1294 ret = SendMessageW(infoPtr->hwndNotify, WM_NOTIFY, hdr->idFrom, (LPARAM)hdr);
1295 PAGER_RestoreText(&nmh->pitem->pszText, oldText);
1296 if (tf) PAGER_RestoreText(&tf->pszText, oldFilterText);
1297 return ret;
1299 case HDN_GETDISPINFOW:
1301 NMHDDISPINFOW *nmhddi = (NMHDDISPINFOW *)hdr;
1302 return PAGER_SendConvertedNotify(infoPtr, hdr, &nmhddi->mask, HDI_TEXT, &nmhddi->pszText, &nmhddi->cchTextMax,
1303 SEND_EMPTY_IF_NULL | CONVERT_SEND | CONVERT_RECEIVE);
1305 /* List View */
1306 case LVN_BEGINLABELEDITW:
1307 case LVN_ENDLABELEDITW:
1308 case LVN_SETDISPINFOW:
1310 NMLVDISPINFOW *nmlvdi = (NMLVDISPINFOW *)hdr;
1311 return PAGER_SendConvertedNotify(infoPtr, hdr, &nmlvdi->item.mask, LVIF_TEXT, &nmlvdi->item.pszText,
1312 &nmlvdi->item.cchTextMax, SET_NULL_IF_NO_MASK | CONVERT_SEND | CONVERT_RECEIVE);
1314 case LVN_GETDISPINFOW:
1316 NMLVDISPINFOW *nmlvdi = (NMLVDISPINFOW *)hdr;
1317 return PAGER_SendConvertedNotify(infoPtr, hdr, &nmlvdi->item.mask, LVIF_TEXT, &nmlvdi->item.pszText,
1318 &nmlvdi->item.cchTextMax, CONVERT_RECEIVE);
1320 case LVN_GETINFOTIPW:
1322 NMLVGETINFOTIPW *nmlvgit = (NMLVGETINFOTIPW *)hdr;
1323 return PAGER_SendConvertedNotify(infoPtr, hdr, NULL, 0, &nmlvgit->pszText, &nmlvgit->cchTextMax,
1324 CONVERT_SEND | CONVERT_RECEIVE);
1326 case LVN_INCREMENTALSEARCHW:
1327 case LVN_ODFINDITEMW:
1329 NMLVFINDITEMW *nmlvfi = (NMLVFINDITEMW *)hdr;
1330 return PAGER_SendConvertedNotify(infoPtr, hdr, &nmlvfi->lvfi.flags, LVFI_STRING | LVFI_SUBSTRING,
1331 (WCHAR **)&nmlvfi->lvfi.psz, NULL, CONVERT_SEND);
1333 /* Toolbar */
1334 case TBN_GETBUTTONINFOW:
1336 NMTOOLBARW *nmtb = (NMTOOLBARW *)hdr;
1337 return PAGER_SendConvertedNotify(infoPtr, hdr, NULL, 0, &nmtb->pszText, &nmtb->cchText,
1338 SEND_EMPTY_IF_NULL | CONVERT_SEND | CONVERT_RECEIVE);
1340 case TBN_GETINFOTIPW:
1342 NMTBGETINFOTIPW *nmtbgit = (NMTBGETINFOTIPW *)hdr;
1343 return PAGER_SendConvertedNotify(infoPtr, hdr, NULL, 0, &nmtbgit->pszText, &nmtbgit->cchTextMax, CONVERT_RECEIVE);
1345 /* Tooltip */
1346 case TTN_GETDISPINFOW:
1348 NMTTDISPINFOW *nmttdiW = (NMTTDISPINFOW *)hdr;
1349 NMTTDISPINFOA nmttdiA = {{0}};
1350 INT size;
1352 nmttdiA.hdr.code = PAGER_GetAnsiNtfCode(nmttdiW->hdr.code);
1353 nmttdiA.hdr.hwndFrom = nmttdiW->hdr.hwndFrom;
1354 nmttdiA.hdr.idFrom = nmttdiW->hdr.idFrom;
1355 nmttdiA.hinst = nmttdiW->hinst;
1356 nmttdiA.uFlags = nmttdiW->uFlags;
1357 nmttdiA.lParam = nmttdiW->lParam;
1358 nmttdiA.lpszText = nmttdiA.szText;
1359 WideCharToMultiByte(CP_ACP, 0, nmttdiW->szText, ARRAY_SIZE(nmttdiW->szText), nmttdiA.szText,
1360 ARRAY_SIZE(nmttdiA.szText), NULL, FALSE);
1362 ret = SendMessageW(infoPtr->hwndNotify, WM_NOTIFY, hdr->idFrom, (LPARAM)&nmttdiA);
1364 nmttdiW->hinst = nmttdiA.hinst;
1365 nmttdiW->uFlags = nmttdiA.uFlags;
1366 nmttdiW->lParam = nmttdiA.lParam;
1368 MultiByteToWideChar(CP_ACP, 0, nmttdiA.szText, ARRAY_SIZE(nmttdiA.szText), nmttdiW->szText,
1369 ARRAY_SIZE(nmttdiW->szText));
1370 if (!nmttdiA.lpszText)
1371 nmttdiW->lpszText = nmttdiW->szText;
1372 else if (!IS_INTRESOURCE(nmttdiA.lpszText))
1374 size = MultiByteToWideChar(CP_ACP, 0, nmttdiA.lpszText, -1, 0, 0);
1375 if (size > ARRAY_SIZE(nmttdiW->szText))
1377 if (!PAGER_AdjustBuffer(infoPtr, size * sizeof(WCHAR))) return ret;
1378 MultiByteToWideChar(CP_ACP, 0, nmttdiA.lpszText, -1, infoPtr->pwszBuffer, size);
1379 nmttdiW->lpszText = infoPtr->pwszBuffer;
1380 /* Override content in szText */
1381 memcpy(nmttdiW->szText, nmttdiW->lpszText, min(sizeof(nmttdiW->szText), size * sizeof(WCHAR)));
1383 else
1385 MultiByteToWideChar(CP_ACP, 0, nmttdiA.lpszText, -1, nmttdiW->szText, ARRAY_SIZE(nmttdiW->szText));
1386 nmttdiW->lpszText = nmttdiW->szText;
1389 else
1391 nmttdiW->szText[0] = 0;
1392 nmttdiW->lpszText = (WCHAR *)nmttdiA.lpszText;
1395 return ret;
1397 /* Tree View */
1398 case TVN_BEGINDRAGW:
1399 case TVN_BEGINRDRAGW:
1400 case TVN_ITEMEXPANDEDW:
1401 case TVN_ITEMEXPANDINGW:
1403 NMTREEVIEWW *nmtv = (NMTREEVIEWW *)hdr;
1404 return PAGER_SendConvertedNotify(infoPtr, hdr, &nmtv->itemNew.mask, TVIF_TEXT, &nmtv->itemNew.pszText, NULL,
1405 CONVERT_SEND);
1407 case TVN_DELETEITEMW:
1409 NMTREEVIEWW *nmtv = (NMTREEVIEWW *)hdr;
1410 return PAGER_SendConvertedNotify(infoPtr, hdr, &nmtv->itemOld.mask, TVIF_TEXT, &nmtv->itemOld.pszText, NULL,
1411 CONVERT_SEND);
1413 case TVN_BEGINLABELEDITW:
1414 case TVN_ENDLABELEDITW:
1416 NMTVDISPINFOW *nmtvdi = (NMTVDISPINFOW *)hdr;
1417 return PAGER_SendConvertedNotify(infoPtr, hdr, &nmtvdi->item.mask, TVIF_TEXT, &nmtvdi->item.pszText,
1418 &nmtvdi->item.cchTextMax, SET_NULL_IF_NO_MASK | CONVERT_SEND | CONVERT_RECEIVE);
1420 case TVN_SELCHANGINGW:
1421 case TVN_SELCHANGEDW:
1423 NMTREEVIEWW *nmtv = (NMTREEVIEWW *)hdr;
1424 WCHAR *oldItemOldText = NULL;
1425 WCHAR *oldItemNewText = NULL;
1427 hdr->code = PAGER_GetAnsiNtfCode(hdr->code);
1429 if (!((nmtv->itemNew.mask | nmtv->itemOld.mask) & TVIF_TEXT))
1430 return SendMessageW(infoPtr->hwndNotify, WM_NOTIFY, hdr->idFrom, (LPARAM)hdr);
1432 if (nmtv->itemOld.mask & TVIF_TEXT) oldItemOldText = PAGER_ConvertText(&nmtv->itemOld.pszText);
1433 if (nmtv->itemNew.mask & TVIF_TEXT) oldItemNewText = PAGER_ConvertText(&nmtv->itemNew.pszText);
1435 ret = SendMessageW(infoPtr->hwndNotify, WM_NOTIFY, hdr->idFrom, (LPARAM)hdr);
1436 PAGER_RestoreText(&nmtv->itemOld.pszText, oldItemOldText);
1437 PAGER_RestoreText(&nmtv->itemNew.pszText, oldItemNewText);
1438 return ret;
1440 case TVN_GETDISPINFOW:
1442 NMTVDISPINFOW *nmtvdi = (NMTVDISPINFOW *)hdr;
1443 return PAGER_SendConvertedNotify(infoPtr, hdr, &nmtvdi->item.mask, TVIF_TEXT, &nmtvdi->item.pszText,
1444 &nmtvdi->item.cchTextMax, ZERO_SEND | CONVERT_RECEIVE);
1446 case TVN_SETDISPINFOW:
1448 NMTVDISPINFOW *nmtvdi = (NMTVDISPINFOW *)hdr;
1449 return PAGER_SendConvertedNotify(infoPtr, hdr, &nmtvdi->item.mask, TVIF_TEXT, &nmtvdi->item.pszText,
1450 &nmtvdi->item.cchTextMax, SET_NULL_IF_NO_MASK | CONVERT_SEND | CONVERT_RECEIVE);
1452 case TVN_GETINFOTIPW:
1454 NMTVGETINFOTIPW *nmtvgit = (NMTVGETINFOTIPW *)hdr;
1455 return PAGER_SendConvertedNotify(infoPtr, hdr, NULL, 0, &nmtvgit->pszText, &nmtvgit->cchTextMax, CONVERT_RECEIVE);
1458 /* Other notifications, no need to convert */
1459 return SendMessageW(infoPtr->hwndNotify, WM_NOTIFY, hdr->idFrom, (LPARAM)hdr);
1462 static LRESULT WINAPI
1463 PAGER_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
1465 PAGER_INFO *infoPtr = (PAGER_INFO *)GetWindowLongPtrW(hwnd, 0);
1467 TRACE("(%p, %#x, %#lx, %#lx)\n", hwnd, uMsg, wParam, lParam);
1469 if (!infoPtr && (uMsg != WM_CREATE))
1470 return DefWindowProcW (hwnd, uMsg, wParam, lParam);
1472 switch (uMsg)
1474 case EM_FMTLINES:
1475 return PAGER_FmtLines(infoPtr);
1477 case PGM_FORWARDMOUSE:
1478 return PAGER_ForwardMouse (infoPtr, (BOOL)wParam);
1480 case PGM_GETBKCOLOR:
1481 return PAGER_GetBkColor(infoPtr);
1483 case PGM_GETBORDER:
1484 return PAGER_GetBorder(infoPtr);
1486 case PGM_GETBUTTONSIZE:
1487 return PAGER_GetButtonSize(infoPtr);
1489 case PGM_GETPOS:
1490 return PAGER_GetPos(infoPtr);
1492 case PGM_GETBUTTONSTATE:
1493 return PAGER_GetButtonState (infoPtr, (INT)lParam);
1495 /* case PGM_GETDROPTARGET: */
1497 case PGM_RECALCSIZE:
1498 return PAGER_RecalcSize(infoPtr);
1500 case PGM_SETBKCOLOR:
1501 return PAGER_SetBkColor (infoPtr, (COLORREF)lParam);
1503 case PGM_SETBORDER:
1504 return PAGER_SetBorder (infoPtr, (INT)lParam);
1506 case PGM_SETBUTTONSIZE:
1507 return PAGER_SetButtonSize (infoPtr, (INT)lParam);
1509 case PGM_SETCHILD:
1510 return PAGER_SetChild (infoPtr, (HWND)lParam);
1512 case PGM_SETPOS:
1513 return PAGER_SetPos(infoPtr, (INT)lParam, FALSE, TRUE);
1515 case WM_CREATE:
1516 return PAGER_Create (hwnd, (LPCREATESTRUCTW)lParam);
1518 case WM_DESTROY:
1519 return PAGER_Destroy (infoPtr);
1521 case WM_SIZE:
1522 return PAGER_Size (infoPtr, (INT)wParam, (short)LOWORD(lParam), (short)HIWORD(lParam));
1524 case WM_NCPAINT:
1525 return PAGER_NCPaint (infoPtr, (HRGN)wParam);
1527 case WM_STYLECHANGED:
1528 return PAGER_StyleChanged(infoPtr, wParam, (LPSTYLESTRUCT)lParam);
1530 case WM_NCCALCSIZE:
1531 return PAGER_NCCalcSize (infoPtr, wParam, (LPRECT)lParam);
1533 case WM_NCHITTEST:
1534 return PAGER_NCHitTest (infoPtr, (short)LOWORD(lParam), (short)HIWORD(lParam));
1536 case WM_MOUSEMOVE:
1537 if (infoPtr->bForward && infoPtr->hwndChild)
1538 PostMessageW(infoPtr->hwndChild, WM_MOUSEMOVE, wParam, lParam);
1539 return PAGER_MouseMove (infoPtr, (INT)wParam, (short)LOWORD(lParam), (short)HIWORD(lParam));
1541 case WM_LBUTTONDOWN:
1542 return PAGER_LButtonDown (infoPtr, (INT)wParam, (short)LOWORD(lParam), (short)HIWORD(lParam));
1544 case WM_LBUTTONUP:
1545 return PAGER_LButtonUp (infoPtr, (INT)wParam, (short)LOWORD(lParam), (short)HIWORD(lParam));
1547 case WM_ERASEBKGND:
1548 return PAGER_EraseBackground (infoPtr, (HDC)wParam);
1550 case WM_TIMER:
1551 return PAGER_Timer (infoPtr, (INT)wParam);
1553 case WM_NOTIFYFORMAT:
1554 return PAGER_NotifyFormat (infoPtr, lParam);
1556 case WM_NOTIFY:
1557 return PAGER_Notify (infoPtr, (NMHDR *)lParam);
1559 case WM_COMMAND:
1560 return SendMessageW (infoPtr->hwndNotify, uMsg, wParam, lParam);
1562 case WM_THEMECHANGED:
1563 return PAGER_ThemeChanged (infoPtr);
1565 default:
1566 return DefWindowProcW (hwnd, uMsg, wParam, lParam);
1571 VOID
1572 PAGER_Register (void)
1574 WNDCLASSW wndClass;
1576 ZeroMemory (&wndClass, sizeof(WNDCLASSW));
1577 wndClass.style = CS_GLOBALCLASS;
1578 wndClass.lpfnWndProc = PAGER_WindowProc;
1579 wndClass.cbClsExtra = 0;
1580 wndClass.cbWndExtra = sizeof(PAGER_INFO *);
1581 wndClass.hCursor = LoadCursorW (0, (LPWSTR)IDC_ARROW);
1582 wndClass.hbrBackground = (HBRUSH)(COLOR_BTNFACE+1);
1583 wndClass.lpszClassName = WC_PAGESCROLLERW;
1585 RegisterClassW (&wndClass);
1589 VOID
1590 PAGER_Unregister (void)
1592 UnregisterClassW (WC_PAGESCROLLERW, NULL);