4 * Copyright 1998 Francis Beaudet
5 * Copyright 1999 Thuy Nguyen
6 * Copyright 2004 Maxime Bellenge
7 * Copyright 2004 Filip Navara
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 * This code was audited for completeness against the documented features
24 * of Comctl32.dll version 6.0 on Sep. 12, 2004, by Filip Navara.
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.
32 * - Wizard 97 header resizing
33 * - Enforcing of minimal wizard size
35 * o PSM_RECALCPAGESIZES
40 * o PSN_QUERYINITIALFOCUS
41 * o PSN_TRANSLATEACCELERATOR
44 * o PSH_STRETCHWATERMARK
48 * o PSP_USEFUSIONCONTEXT
55 #define NONAMELESSUNION
67 #include "wine/debug.h"
68 #include "wine/unicode.h"
70 /******************************************************************************
94 } MyDLGITEMTEMPLATEEX
;
97 typedef struct tagPropPageInfo
99 HPROPSHEETPAGE hpage
; /* to keep track of pages not passed to PropertySheet */
108 typedef struct tagPropSheetInfo
111 PROPSHEETHEADERW ppshheader
;
113 LPWSTR strPropertiesFor
;
123 PropPageInfo
* proppage
;
128 HIMAGELIST hImageList
;
139 /******************************************************************************
140 * Defines and global variables
143 static const WCHAR PropSheetInfoStr
[] =
144 {'P','r','o','p','e','r','t','y','S','h','e','e','t','I','n','f','o',0 };
146 #define PSP_INTERNAL_UNICODE 0x80000000
148 #define MAX_CAPTION_LENGTH 255
149 #define MAX_TABTEXT_LENGTH 255
150 #define MAX_BUTTONTEXT_LENGTH 64
152 #define INTRNL_ANY_WIZARD (PSH_WIZARD | PSH_WIZARD97_OLD | PSH_WIZARD97_NEW | PSH_WIZARD_LITE)
154 /* Wizard metrics specified in DLUs */
155 #define WIZARD_PADDING 7
156 #define WIZARD_HEADER_HEIGHT 36
158 /******************************************************************************
161 static PADDING_INFO
PROPSHEET_GetPaddingInfo(HWND hwndDlg
);
162 static void PROPSHEET_SetTitleW(HWND hwndDlg
, DWORD dwStyle
, LPCWSTR lpszText
);
163 static BOOL
PROPSHEET_CanSetCurSel(HWND hwndDlg
);
164 static BOOL
PROPSHEET_SetCurSel(HWND hwndDlg
,
167 HPROPSHEETPAGE hpage
);
168 static int PROPSHEET_GetPageIndex(HPROPSHEETPAGE hpage
, const PropSheetInfo
* psInfo
, int original_index
);
169 static PADDING_INFO
PROPSHEET_GetPaddingInfoWizard(HWND hwndDlg
, const PropSheetInfo
* psInfo
);
170 static BOOL
PROPSHEET_DoCommand(HWND hwnd
, WORD wID
);
171 static BOOL
PROPSHEET_RemovePage(HWND hwndDlg
, int index
, HPROPSHEETPAGE hpage
);
173 static INT_PTR CALLBACK
174 PROPSHEET_DialogProc(HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
);
176 WINE_DEFAULT_DEBUG_CHANNEL(propsheet
);
178 static WCHAR
*heap_strdupW(const WCHAR
*str
)
180 int len
= strlenW(str
) + 1;
181 WCHAR
*ret
= Alloc(len
* sizeof(WCHAR
));
186 static WCHAR
*heap_strdupAtoW(const char *str
)
191 len
= MultiByteToWideChar(CP_ACP
, 0, str
, -1, 0, 0);
192 ret
= Alloc(len
* sizeof(WCHAR
));
193 MultiByteToWideChar(CP_ACP
, 0, str
, -1, ret
, len
);
198 #define add_flag(a) if (dwFlags & a) {strcat(string, #a );strcat(string," ");}
199 /******************************************************************************
200 * PROPSHEET_UnImplementedFlags
202 * Document use of flags we don't implement yet.
204 static VOID
PROPSHEET_UnImplementedFlags(DWORD dwFlags
)
211 * unhandled header flags:
212 * PSH_RTLREADING 0x00000800
213 * PSH_STRETCHWATERMARK 0x00040000
214 * PSH_USEPAGELANG 0x00200000
217 add_flag(PSH_RTLREADING
);
218 add_flag(PSH_STRETCHWATERMARK
);
219 add_flag(PSH_USEPAGELANG
);
220 if (string
[0] != '\0')
221 FIXME("%s\n", string
);
225 /******************************************************************************
226 * PROPSHEET_GetPageRect
228 * Retrieve rect from tab control and map into the dialog for SetWindowPos
230 static void PROPSHEET_GetPageRect(const PropSheetInfo
* psInfo
, HWND hwndDlg
,
231 RECT
*rc
, LPCPROPSHEETPAGEW ppshpage
)
233 if (psInfo
->ppshheader
.dwFlags
& INTRNL_ANY_WIZARD
) {
237 if (((psInfo
->ppshheader
.dwFlags
& (PSH_WIZARD97_NEW
| PSH_WIZARD97_OLD
)) &&
238 (psInfo
->ppshheader
.dwFlags
& PSH_HEADER
) &&
239 !(ppshpage
->dwFlags
& PSP_HIDEHEADER
)) ||
240 (psInfo
->ppshheader
.dwFlags
& PSH_WIZARD
))
242 rc
->left
= rc
->top
= WIZARD_PADDING
;
246 rc
->left
= rc
->top
= 0;
248 rc
->right
= psInfo
->width
- rc
->left
;
249 rc
->bottom
= psInfo
->height
- rc
->top
;
250 MapDialogRect(hwndDlg
, rc
);
252 if ((psInfo
->ppshheader
.dwFlags
& (PSH_WIZARD97_NEW
| PSH_WIZARD97_OLD
)) &&
253 (psInfo
->ppshheader
.dwFlags
& PSH_HEADER
) &&
254 !(ppshpage
->dwFlags
& PSP_HIDEHEADER
))
256 hwndChild
= GetDlgItem(hwndDlg
, IDC_SUNKEN_LINEHEADER
);
257 GetClientRect(hwndChild
, &r
);
258 MapWindowPoints(hwndChild
, hwndDlg
, (LPPOINT
) &r
, 2);
259 rc
->top
+= r
.bottom
+ 1;
262 HWND hwndTabCtrl
= GetDlgItem(hwndDlg
, IDC_TABCONTROL
);
263 GetClientRect(hwndTabCtrl
, rc
);
264 SendMessageW(hwndTabCtrl
, TCM_ADJUSTRECT
, FALSE
, (LPARAM
)rc
);
265 MapWindowPoints(hwndTabCtrl
, hwndDlg
, (LPPOINT
)rc
, 2);
269 /******************************************************************************
270 * PROPSHEET_FindPageByResId
272 * Find page index corresponding to page resource id.
274 static INT
PROPSHEET_FindPageByResId(const PropSheetInfo
* psInfo
, LRESULT resId
)
278 for (i
= 0; i
< psInfo
->nPages
; i
++)
280 LPCPROPSHEETPAGEA lppsp
= (LPCPROPSHEETPAGEA
)psInfo
->proppage
[i
].hpage
;
282 /* Fixme: if resource ID is a string shall we use strcmp ??? */
283 if (lppsp
->u
.pszTemplate
== (LPVOID
)resId
)
290 /******************************************************************************
291 * PROPSHEET_CollectSheetInfoCommon
293 * Common code for PROPSHEET_CollectSheetInfoA/W
295 static void PROPSHEET_CollectSheetInfoCommon(PropSheetInfo
* psInfo
, DWORD dwFlags
)
297 PROPSHEET_UnImplementedFlags(dwFlags
);
299 psInfo
->hasHelp
= dwFlags
& PSH_HASHELP
;
300 psInfo
->hasApply
= !(dwFlags
& PSH_NOAPPLYNOW
);
301 psInfo
->hasFinish
= dwFlags
& PSH_WIZARDHASFINISH
;
302 psInfo
->isModeless
= dwFlags
& PSH_MODELESS
;
303 psInfo
->usePropPage
= dwFlags
& PSH_PROPSHEETPAGE
;
304 if (psInfo
->active_page
< 0 || psInfo
->active_page
>= psInfo
->nPages
)
305 psInfo
->active_page
= 0;
308 psInfo
->hImageList
= 0;
309 psInfo
->activeValid
= FALSE
;
312 /******************************************************************************
313 * PROPSHEET_CollectSheetInfoA
315 * Collect relevant data.
317 static void PROPSHEET_CollectSheetInfoA(LPCPROPSHEETHEADERA lppsh
,
318 PropSheetInfo
* psInfo
)
320 DWORD dwSize
= min(lppsh
->dwSize
,sizeof(PROPSHEETHEADERA
));
321 DWORD dwFlags
= lppsh
->dwFlags
;
323 psInfo
->useCallback
= (dwFlags
& PSH_USECALLBACK
)&& (lppsh
->pfnCallback
);
325 memcpy(&psInfo
->ppshheader
,lppsh
,dwSize
);
326 TRACE("\n** PROPSHEETHEADER **\ndwSize\t\t%d\ndwFlags\t\t%08x\nhwndParent\t%p\nhInstance\t%p\npszCaption\t'%s'\nnPages\t\t%d\npfnCallback\t%p\n",
327 lppsh
->dwSize
, lppsh
->dwFlags
, lppsh
->hwndParent
, lppsh
->hInstance
,
328 debugstr_a(lppsh
->pszCaption
), lppsh
->nPages
, lppsh
->pfnCallback
);
330 if (lppsh
->dwFlags
& INTRNL_ANY_WIZARD
)
331 psInfo
->ppshheader
.pszCaption
= NULL
;
334 if (!IS_INTRESOURCE(lppsh
->pszCaption
))
336 int len
= MultiByteToWideChar(CP_ACP
, 0, lppsh
->pszCaption
, -1, NULL
, 0);
337 WCHAR
*caption
= Alloc( len
*sizeof (WCHAR
) );
339 MultiByteToWideChar(CP_ACP
, 0, lppsh
->pszCaption
, -1, caption
, len
);
340 psInfo
->ppshheader
.pszCaption
= caption
;
343 psInfo
->nPages
= lppsh
->nPages
;
345 if (dwFlags
& PSH_USEPSTARTPAGE
)
347 TRACE("PSH_USEPSTARTPAGE is on\n");
348 psInfo
->active_page
= 0;
351 psInfo
->active_page
= lppsh
->u2
.nStartPage
;
353 PROPSHEET_CollectSheetInfoCommon(psInfo
, dwFlags
);
356 /******************************************************************************
357 * PROPSHEET_CollectSheetInfoW
359 * Collect relevant data.
361 static void PROPSHEET_CollectSheetInfoW(LPCPROPSHEETHEADERW lppsh
,
362 PropSheetInfo
* psInfo
)
364 DWORD dwSize
= min(lppsh
->dwSize
,sizeof(PROPSHEETHEADERW
));
365 DWORD dwFlags
= lppsh
->dwFlags
;
367 psInfo
->useCallback
= (dwFlags
& PSH_USECALLBACK
) && (lppsh
->pfnCallback
);
369 memcpy(&psInfo
->ppshheader
,lppsh
,dwSize
);
370 TRACE("\n** PROPSHEETHEADER **\ndwSize\t\t%d\ndwFlags\t\t%08x\nhwndParent\t%p\nhInstance\t%p\npszCaption\t%s\nnPages\t\t%d\npfnCallback\t%p\n",
371 lppsh
->dwSize
, lppsh
->dwFlags
, lppsh
->hwndParent
, lppsh
->hInstance
, debugstr_w(lppsh
->pszCaption
), lppsh
->nPages
, lppsh
->pfnCallback
);
373 if (lppsh
->dwFlags
& INTRNL_ANY_WIZARD
)
374 psInfo
->ppshheader
.pszCaption
= NULL
;
377 if (!IS_INTRESOURCE(lppsh
->pszCaption
))
378 psInfo
->ppshheader
.pszCaption
= heap_strdupW( lppsh
->pszCaption
);
380 psInfo
->nPages
= lppsh
->nPages
;
382 if (dwFlags
& PSH_USEPSTARTPAGE
)
384 TRACE("PSH_USEPSTARTPAGE is on\n");
385 psInfo
->active_page
= 0;
388 psInfo
->active_page
= lppsh
->u2
.nStartPage
;
390 PROPSHEET_CollectSheetInfoCommon(psInfo
, dwFlags
);
393 /******************************************************************************
394 * PROPSHEET_CollectPageInfo
396 * Collect property sheet data.
397 * With code taken from DIALOG_ParseTemplate32.
399 static BOOL
PROPSHEET_CollectPageInfo(LPCPROPSHEETPAGEW lppsp
,
400 PropSheetInfo
* psInfo
,
401 int index
, BOOL resize
)
403 const DLGTEMPLATE
* pTemplate
;
412 psInfo
->proppage
[index
].hpage
= (HPROPSHEETPAGE
)lppsp
;
413 psInfo
->proppage
[index
].hwndPage
= 0;
414 psInfo
->proppage
[index
].isDirty
= FALSE
;
417 * Process property page flags.
419 dwFlags
= lppsp
->dwFlags
;
420 psInfo
->proppage
[index
].useCallback
= (dwFlags
& PSP_USECALLBACK
) && (lppsp
->pfnCallback
);
421 psInfo
->proppage
[index
].hasHelp
= dwFlags
& PSP_HASHELP
;
422 psInfo
->proppage
[index
].hasIcon
= dwFlags
& (PSP_USEHICON
| PSP_USEICONID
);
424 /* as soon as we have a page with the help flag, set the sheet flag on */
425 if (psInfo
->proppage
[index
].hasHelp
)
426 psInfo
->hasHelp
= TRUE
;
429 * Process page template.
431 if (dwFlags
& PSP_DLGINDIRECT
)
432 pTemplate
= lppsp
->u
.pResource
;
433 else if(dwFlags
& PSP_INTERNAL_UNICODE
)
435 HRSRC hResource
= FindResourceW(lppsp
->hInstance
,
436 lppsp
->u
.pszTemplate
,
438 HGLOBAL hTemplate
= LoadResource(lppsp
->hInstance
,
440 pTemplate
= LockResource(hTemplate
);
444 HRSRC hResource
= FindResourceA(lppsp
->hInstance
,
445 (LPCSTR
)lppsp
->u
.pszTemplate
,
447 HGLOBAL hTemplate
= LoadResource(lppsp
->hInstance
,
449 pTemplate
= LockResource(hTemplate
);
453 * Extract the size of the page and the caption.
458 p
= (const WORD
*)pTemplate
;
460 if (((const MyDLGTEMPLATEEX
*)pTemplate
)->signature
== 0xFFFF)
462 /* DLGTEMPLATEEX (not defined in any std. header file) */
466 p
+= 2; /* help ID */
467 p
+= 2; /* ext style */
475 p
+= 2; /* ext style */
481 width
= (WORD
)*p
; p
++;
482 height
= (WORD
)*p
; p
++;
484 if (lppsp
->dwFlags
& (PSP_USEHEADERTITLE
| PSP_USEHEADERSUBTITLE
))
485 psInfo
->ppshheader
.dwFlags
|= PSH_HEADER
;
487 /* Special calculation for interior wizard pages so the largest page is
488 * calculated correctly. We need to add all the padding and space occupied
489 * by the header so the width and height sums up to the whole wizard client
491 if ((psInfo
->ppshheader
.dwFlags
& (PSH_WIZARD97_OLD
| PSH_WIZARD97_NEW
)) &&
492 (psInfo
->ppshheader
.dwFlags
& PSH_HEADER
) &&
493 !(dwFlags
& PSP_HIDEHEADER
))
495 height
+= 2 * WIZARD_PADDING
+ WIZARD_HEADER_HEIGHT
;
496 width
+= 2 * WIZARD_PADDING
;
498 if (psInfo
->ppshheader
.dwFlags
& PSH_WIZARD
)
500 height
+= 2 * WIZARD_PADDING
;
501 width
+= 2 * WIZARD_PADDING
;
504 /* remember the largest width and height */
507 if (width
> psInfo
->width
)
508 psInfo
->width
= width
;
510 if (height
> psInfo
->height
)
511 psInfo
->height
= height
;
524 p
+= lstrlenW( p
) + 1;
538 p
+= lstrlenW( p
) + 1;
542 /* Extract the caption */
543 psInfo
->proppage
[index
].pszText
= p
;
544 TRACE("Tab %d %s\n",index
,debugstr_w( p
));
546 if (dwFlags
& PSP_USETITLE
)
550 static const WCHAR pszNull
[] = { '(','n','u','l','l',')',0 };
552 if (IS_INTRESOURCE( lppsp
->pszTitle
))
554 if (LoadStringW( lppsp
->hInstance
, (DWORD_PTR
)lppsp
->pszTitle
, szTitle
, sizeof(szTitle
)/sizeof(szTitle
[0]) ))
562 pTitle
= lppsp
->pszTitle
;
564 psInfo
->proppage
[index
].pszText
= heap_strdupW( pTitle
);
568 * Build the image list for icons
570 if ((dwFlags
& PSP_USEHICON
) || (dwFlags
& PSP_USEICONID
))
573 int icon_cx
= GetSystemMetrics(SM_CXSMICON
);
574 int icon_cy
= GetSystemMetrics(SM_CYSMICON
);
576 if (dwFlags
& PSP_USEICONID
)
577 hIcon
= LoadImageW(lppsp
->hInstance
, lppsp
->u2
.pszIcon
, IMAGE_ICON
,
578 icon_cx
, icon_cy
, LR_DEFAULTCOLOR
);
580 hIcon
= lppsp
->u2
.hIcon
;
584 if (psInfo
->hImageList
== 0 )
585 psInfo
->hImageList
= ImageList_Create(icon_cx
, icon_cy
, ILC_COLOR
, 1, 1);
587 ImageList_AddIcon(psInfo
->hImageList
, hIcon
);
595 /******************************************************************************
596 * PROPSHEET_CreateDialog
598 * Creates the actual property sheet.
600 static INT_PTR
PROPSHEET_CreateDialog(PropSheetInfo
* psInfo
)
607 WORD resID
= IDD_PROPSHEET
;
609 TRACE("(%p)\n", psInfo
);
610 if (psInfo
->ppshheader
.dwFlags
& INTRNL_ANY_WIZARD
)
613 if( psInfo
->unicode
)
615 if(!(hRes
= FindResourceW(COMCTL32_hModule
,
616 MAKEINTRESOURCEW(resID
),
622 if(!(hRes
= FindResourceA(COMCTL32_hModule
,
623 MAKEINTRESOURCEA(resID
),
628 if(!(template = LoadResource(COMCTL32_hModule
, hRes
)))
632 * Make a copy of the dialog template.
634 resSize
= SizeofResource(COMCTL32_hModule
, hRes
);
636 temp
= Alloc(2 * resSize
);
641 memcpy(temp
, template, resSize
);
643 if (psInfo
->ppshheader
.dwFlags
& PSH_NOCONTEXTHELP
)
645 if (((MyDLGTEMPLATEEX
*)temp
)->signature
== 0xFFFF)
646 ((MyDLGTEMPLATEEX
*)temp
)->style
&= ~DS_CONTEXTHELP
;
648 ((DLGTEMPLATE
*)temp
)->style
&= ~DS_CONTEXTHELP
;
650 if ((psInfo
->ppshheader
.dwFlags
& INTRNL_ANY_WIZARD
) &&
651 (psInfo
->ppshheader
.dwFlags
& PSH_WIZARDCONTEXTHELP
))
653 if (((MyDLGTEMPLATEEX
*)temp
)->signature
== 0xFFFF)
654 ((MyDLGTEMPLATEEX
*)temp
)->style
|= DS_CONTEXTHELP
;
656 ((DLGTEMPLATE
*)temp
)->style
|= DS_CONTEXTHELP
;
659 if (psInfo
->useCallback
)
660 (*(psInfo
->ppshheader
.pfnCallback
))(0, PSCB_PRECREATE
, (LPARAM
)temp
);
662 /* NOTE: MSDN states "Returns a positive value if successful, or -1
663 * otherwise for modal property sheets.", but this is wrong. The
664 * actual return value is either TRUE (success), FALSE (cancel) or
666 if( psInfo
->unicode
)
668 ret
= (INT_PTR
)CreateDialogIndirectParamW(psInfo
->ppshheader
.hInstance
,
669 temp
, psInfo
->ppshheader
.hwndParent
,
670 PROPSHEET_DialogProc
, (LPARAM
)psInfo
);
671 if ( !ret
) ret
= -1;
675 ret
= (INT_PTR
)CreateDialogIndirectParamA(psInfo
->ppshheader
.hInstance
,
676 temp
, psInfo
->ppshheader
.hwndParent
,
677 PROPSHEET_DialogProc
, (LPARAM
)psInfo
);
678 if ( !ret
) ret
= -1;
686 /******************************************************************************
687 * PROPSHEET_SizeMismatch
689 * Verify that the tab control and the "largest" property sheet page dlg. template
692 static BOOL
PROPSHEET_SizeMismatch(HWND hwndDlg
, const PropSheetInfo
* psInfo
)
694 HWND hwndTabCtrl
= GetDlgItem(hwndDlg
, IDC_TABCONTROL
);
695 RECT rcOrigTab
, rcPage
;
700 GetClientRect(hwndTabCtrl
, &rcOrigTab
);
701 TRACE("orig tab %s\n", wine_dbgstr_rect(&rcOrigTab
));
706 SetRect(&rcPage
, 0, 0, psInfo
->width
, psInfo
->height
);
707 MapDialogRect(hwndDlg
, &rcPage
);
708 TRACE("biggest page %s\n", wine_dbgstr_rect(&rcPage
));
710 if ( (rcPage
.right
- rcPage
.left
) != (rcOrigTab
.right
- rcOrigTab
.left
) )
712 if ( (rcPage
.bottom
- rcPage
.top
) != (rcOrigTab
.bottom
- rcOrigTab
.top
) )
718 /******************************************************************************
719 * PROPSHEET_AdjustSize
721 * Resizes the property sheet and the tab control to fit the largest page.
723 static BOOL
PROPSHEET_AdjustSize(HWND hwndDlg
, PropSheetInfo
* psInfo
)
725 HWND hwndTabCtrl
= GetDlgItem(hwndDlg
, IDC_TABCONTROL
);
726 HWND hwndButton
= GetDlgItem(hwndDlg
, IDOK
);
729 PADDING_INFO padding
= PROPSHEET_GetPaddingInfo(hwndDlg
);
733 /* Get the height of buttons */
734 GetClientRect(hwndButton
, &rc
);
735 buttonHeight
= rc
.bottom
;
740 SetRect(&rc
, 0, 0, psInfo
->width
, psInfo
->height
);
741 MapDialogRect(hwndDlg
, &rc
);
743 /* retrieve the dialog units */
744 units
.left
= units
.right
= 4;
745 units
.top
= units
.bottom
= 8;
746 MapDialogRect(hwndDlg
, &units
);
749 * Resize the tab control.
751 GetClientRect(hwndTabCtrl
,&tabRect
);
753 SendMessageW(hwndTabCtrl
, TCM_ADJUSTRECT
, FALSE
, (LPARAM
)&tabRect
);
755 if ((rc
.bottom
- rc
.top
) < (tabRect
.bottom
- tabRect
.top
))
757 rc
.bottom
= rc
.top
+ tabRect
.bottom
- tabRect
.top
;
758 psInfo
->height
= MulDiv((rc
.bottom
- rc
.top
),8,units
.top
);
761 if ((rc
.right
- rc
.left
) < (tabRect
.right
- tabRect
.left
))
763 rc
.right
= rc
.left
+ tabRect
.right
- tabRect
.left
;
764 psInfo
->width
= MulDiv((rc
.right
- rc
.left
),4,units
.left
);
767 SendMessageW(hwndTabCtrl
, TCM_ADJUSTRECT
, TRUE
, (LPARAM
)&rc
);
771 TRACE("setting tab %p, rc (0,0)-(%d,%d)\n",
772 hwndTabCtrl
, rc
.right
, rc
.bottom
);
773 SetWindowPos(hwndTabCtrl
, 0, 0, 0, rc
.right
, rc
.bottom
,
774 SWP_NOMOVE
| SWP_NOZORDER
| SWP_NOACTIVATE
);
776 GetClientRect(hwndTabCtrl
, &rc
);
778 TRACE("tab client rc %s\n", wine_dbgstr_rect(&rc
));
780 rc
.right
+= (padding
.x
* 2);
781 rc
.bottom
+= buttonHeight
+ (3 * padding
.y
);
783 style
= GetWindowLongW(hwndDlg
, GWL_STYLE
);
784 if (!(style
& WS_CHILD
))
785 AdjustWindowRect(&rc
, style
, FALSE
);
791 * Resize the property sheet.
793 TRACE("setting dialog %p, rc (0,0)-(%d,%d)\n",
794 hwndDlg
, rc
.right
, rc
.bottom
);
795 SetWindowPos(hwndDlg
, 0, 0, 0, rc
.right
, rc
.bottom
,
796 SWP_NOMOVE
| SWP_NOZORDER
| SWP_NOACTIVATE
);
800 /******************************************************************************
801 * PROPSHEET_AdjustSizeWizard
803 * Resizes the property sheet to fit the largest page.
805 static BOOL
PROPSHEET_AdjustSizeWizard(HWND hwndDlg
, const PropSheetInfo
* psInfo
)
807 HWND hwndLine
= GetDlgItem(hwndDlg
, IDC_SUNKEN_LINE
);
808 RECT rc
, lineRect
, dialogRect
;
810 /* Biggest page size */
811 SetRect(&rc
, 0, 0, psInfo
->width
, psInfo
->height
);
812 MapDialogRect(hwndDlg
, &rc
);
814 TRACE("Biggest page %s\n", wine_dbgstr_rect(&rc
));
816 /* Add space for the buttons row */
817 GetWindowRect(hwndLine
, &lineRect
);
818 MapWindowPoints(NULL
, hwndDlg
, (LPPOINT
)&lineRect
, 2);
819 GetClientRect(hwndDlg
, &dialogRect
);
820 rc
.bottom
+= dialogRect
.bottom
- lineRect
.top
- 1;
822 /* Convert the client coordinates to window coordinates */
823 AdjustWindowRect(&rc
, GetWindowLongW(hwndDlg
, GWL_STYLE
), FALSE
);
825 /* Resize the property sheet */
826 TRACE("setting dialog %p, rc (0,0)-(%d,%d)\n",
827 hwndDlg
, rc
.right
, rc
.bottom
);
828 SetWindowPos(hwndDlg
, 0, 0, 0, rc
.right
- rc
.left
, rc
.bottom
- rc
.top
,
829 SWP_NOMOVE
| SWP_NOZORDER
| SWP_NOACTIVATE
);
834 /******************************************************************************
835 * PROPSHEET_AdjustButtons
837 * Adjusts the buttons' positions.
839 static BOOL
PROPSHEET_AdjustButtons(HWND hwndParent
, const PropSheetInfo
* psInfo
)
841 HWND hwndButton
= GetDlgItem(hwndParent
, IDOK
);
845 int buttonWidth
, buttonHeight
;
846 PADDING_INFO padding
= PROPSHEET_GetPaddingInfo(hwndParent
);
848 if (psInfo
->hasApply
)
855 * Obtain the size of the buttons.
857 GetClientRect(hwndButton
, &rcSheet
);
858 buttonWidth
= rcSheet
.right
;
859 buttonHeight
= rcSheet
.bottom
;
862 * Get the size of the property sheet.
864 GetClientRect(hwndParent
, &rcSheet
);
867 * All buttons will be at this y coordinate.
869 y
= rcSheet
.bottom
- (padding
.y
+ buttonHeight
);
872 * Position OK button and make it default.
874 hwndButton
= GetDlgItem(hwndParent
, IDOK
);
876 x
= rcSheet
.right
- ((padding
.x
+ buttonWidth
) * num_buttons
);
878 SetWindowPos(hwndButton
, 0, x
, y
, 0, 0,
879 SWP_NOSIZE
| SWP_NOZORDER
| SWP_NOACTIVATE
);
881 SendMessageW(hwndParent
, DM_SETDEFID
, IDOK
, 0);
885 * Position Cancel button.
887 hwndButton
= GetDlgItem(hwndParent
, IDCANCEL
);
889 x
+= padding
.x
+ buttonWidth
;
891 SetWindowPos(hwndButton
, 0, x
, y
, 0, 0,
892 SWP_NOSIZE
| SWP_NOZORDER
| SWP_NOACTIVATE
);
895 * Position Apply button.
897 hwndButton
= GetDlgItem(hwndParent
, IDC_APPLY_BUTTON
);
900 x
+= padding
.x
+ buttonWidth
;
902 ShowWindow(hwndButton
, SW_HIDE
);
904 SetWindowPos(hwndButton
, 0, x
, y
, 0, 0,
905 SWP_NOSIZE
| SWP_NOZORDER
| SWP_NOACTIVATE
);
906 EnableWindow(hwndButton
, FALSE
);
909 * Position Help button.
911 hwndButton
= GetDlgItem(hwndParent
, IDHELP
);
913 x
+= padding
.x
+ buttonWidth
;
914 SetWindowPos(hwndButton
, 0, x
, y
, 0, 0,
915 SWP_NOSIZE
| SWP_NOZORDER
| SWP_NOACTIVATE
);
918 ShowWindow(hwndButton
, SW_HIDE
);
923 /******************************************************************************
924 * PROPSHEET_AdjustButtonsWizard
926 * Adjusts the buttons' positions.
928 static BOOL
PROPSHEET_AdjustButtonsWizard(HWND hwndParent
,
929 const PropSheetInfo
* psInfo
)
931 HWND hwndButton
= GetDlgItem(hwndParent
, IDCANCEL
);
932 HWND hwndLine
= GetDlgItem(hwndParent
, IDC_SUNKEN_LINE
);
933 HWND hwndLineHeader
= GetDlgItem(hwndParent
, IDC_SUNKEN_LINEHEADER
);
937 int buttonWidth
, buttonHeight
, lineHeight
, lineWidth
;
938 PADDING_INFO padding
= PROPSHEET_GetPaddingInfoWizard(hwndParent
, psInfo
);
942 if (psInfo
->hasFinish
)
946 * Obtain the size of the buttons.
948 GetClientRect(hwndButton
, &rcSheet
);
949 buttonWidth
= rcSheet
.right
;
950 buttonHeight
= rcSheet
.bottom
;
952 GetClientRect(hwndLine
, &rcSheet
);
953 lineHeight
= rcSheet
.bottom
;
956 * Get the size of the property sheet.
958 GetClientRect(hwndParent
, &rcSheet
);
961 * All buttons will be at this y coordinate.
963 y
= rcSheet
.bottom
- (padding
.y
+ buttonHeight
);
966 * Position the Back button.
968 hwndButton
= GetDlgItem(hwndParent
, IDC_BACK_BUTTON
);
970 x
= rcSheet
.right
- ((padding
.x
+ buttonWidth
) * (num_buttons
- 1)) - buttonWidth
;
972 SetWindowPos(hwndButton
, 0, x
, y
, 0, 0,
973 SWP_NOSIZE
| SWP_NOZORDER
| SWP_NOACTIVATE
);
976 * Position the Next button.
978 hwndButton
= GetDlgItem(hwndParent
, IDC_NEXT_BUTTON
);
982 SetWindowPos(hwndButton
, 0, x
, y
, 0, 0,
983 SWP_NOSIZE
| SWP_NOZORDER
| SWP_NOACTIVATE
);
986 * Position the Finish button.
988 hwndButton
= GetDlgItem(hwndParent
, IDC_FINISH_BUTTON
);
990 if (psInfo
->hasFinish
)
991 x
+= padding
.x
+ buttonWidth
;
993 SetWindowPos(hwndButton
, 0, x
, y
, 0, 0,
994 SWP_NOSIZE
| SWP_NOZORDER
| SWP_NOACTIVATE
);
996 if (!psInfo
->hasFinish
)
997 ShowWindow(hwndButton
, SW_HIDE
);
1000 * Position the Cancel button.
1002 hwndButton
= GetDlgItem(hwndParent
, IDCANCEL
);
1004 x
+= padding
.x
+ buttonWidth
;
1006 SetWindowPos(hwndButton
, 0, x
, y
, 0, 0,
1007 SWP_NOSIZE
| SWP_NOZORDER
| SWP_NOACTIVATE
);
1010 * Position Help button.
1012 hwndButton
= GetDlgItem(hwndParent
, IDHELP
);
1014 if (psInfo
->hasHelp
)
1016 x
+= padding
.x
+ buttonWidth
;
1018 SetWindowPos(hwndButton
, 0, x
, y
, 0, 0,
1019 SWP_NOSIZE
| SWP_NOZORDER
| SWP_NOACTIVATE
);
1022 ShowWindow(hwndButton
, SW_HIDE
);
1024 if (psInfo
->ppshheader
.dwFlags
&
1025 (PSH_WIZARD97_OLD
| PSH_WIZARD97_NEW
| PSH_WIZARD_LITE
))
1029 * Position and resize the sunken line.
1032 y
= rcSheet
.bottom
- ((padding
.y
* 2) + buttonHeight
+ lineHeight
);
1034 lineWidth
= rcSheet
.right
- (padding
.x
* 2);
1035 SetWindowPos(hwndLine
, 0, x
, y
, lineWidth
, 2,
1036 SWP_NOZORDER
| SWP_NOACTIVATE
);
1039 * Position and resize the header sunken line.
1042 SetWindowPos(hwndLineHeader
, 0, 0, 0, rcSheet
.right
, 2,
1043 SWP_NOZORDER
| SWP_NOMOVE
| SWP_NOACTIVATE
);
1044 if (!(psInfo
->ppshheader
.dwFlags
& (PSH_WIZARD97_OLD
| PSH_WIZARD97_NEW
)))
1045 ShowWindow(hwndLineHeader
, SW_HIDE
);
1050 /******************************************************************************
1051 * PROPSHEET_GetPaddingInfo
1053 * Returns the layout information.
1055 static PADDING_INFO
PROPSHEET_GetPaddingInfo(HWND hwndDlg
)
1057 HWND hwndTab
= GetDlgItem(hwndDlg
, IDC_TABCONTROL
);
1059 PADDING_INFO padding
;
1061 GetWindowRect(hwndTab
, &rcTab
);
1062 MapWindowPoints( 0, hwndDlg
, (POINT
*)&rcTab
, 2 );
1064 padding
.x
= rcTab
.left
;
1065 padding
.y
= rcTab
.top
;
1070 /******************************************************************************
1071 * PROPSHEET_GetPaddingInfoWizard
1073 * Returns the layout information.
1074 * Vertical spacing is the distance between the line and the buttons.
1075 * Do NOT use the Help button to gather padding information when it isn't mapped
1076 * (PSH_HASHELP), as app writers aren't forced to supply correct coordinates
1077 * for it in this case !
1078 * FIXME: I'm not sure about any other coordinate problems with these evil
1079 * buttons. Fix it in case additional problems appear or maybe calculate
1080 * a padding in a completely different way, as this is somewhat messy.
1082 static PADDING_INFO
PROPSHEET_GetPaddingInfoWizard(HWND hwndDlg
, const PropSheetInfo
*
1085 PADDING_INFO padding
;
1089 POINT ptButton
, ptLine
;
1092 if (psInfo
->hasHelp
)
1098 if (psInfo
->ppshheader
.dwFlags
& INTRNL_ANY_WIZARD
)
1100 idButton
= IDC_NEXT_BUTTON
;
1104 /* hopefully this is ok */
1105 idButton
= IDCANCEL
;
1109 hwndControl
= GetDlgItem(hwndDlg
, idButton
);
1110 GetWindowRect(hwndControl
, &rc
);
1111 MapWindowPoints( 0, hwndDlg
, (POINT
*)&rc
, 2 );
1112 ptButton
.x
= rc
.left
;
1113 ptButton
.y
= rc
.top
;
1116 hwndControl
= GetDlgItem(hwndDlg
, IDC_SUNKEN_LINE
);
1117 GetWindowRect(hwndControl
, &rc
);
1118 MapWindowPoints( 0, hwndDlg
, (POINT
*)&rc
, 2 );
1120 ptLine
.y
= rc
.bottom
;
1122 padding
.y
= ptButton
.y
- ptLine
.y
;
1125 ERR("padding negative ! Please report this !\n");
1127 /* this is most probably not correct, but the best we have now */
1128 padding
.x
= padding
.y
;
1132 /******************************************************************************
1133 * PROPSHEET_CreateTabControl
1135 * Insert the tabs in the tab control.
1137 static BOOL
PROPSHEET_CreateTabControl(HWND hwndParent
,
1138 const PropSheetInfo
* psInfo
)
1140 HWND hwndTabCtrl
= GetDlgItem(hwndParent
, IDC_TABCONTROL
);
1146 item
.mask
= TCIF_TEXT
;
1147 item
.cchTextMax
= MAX_TABTEXT_LENGTH
;
1149 nTabs
= psInfo
->nPages
;
1152 * Set the image list for icons.
1154 if (psInfo
->hImageList
)
1156 SendMessageW(hwndTabCtrl
, TCM_SETIMAGELIST
, 0, (LPARAM
)psInfo
->hImageList
);
1159 SendMessageW(hwndTabCtrl
, WM_SETREDRAW
, 0, 0);
1160 for (i
= 0; i
< nTabs
; i
++)
1162 if ( psInfo
->proppage
[i
].hasIcon
)
1164 item
.mask
|= TCIF_IMAGE
;
1165 item
.iImage
= iImage
++;
1169 item
.mask
&= ~TCIF_IMAGE
;
1172 item
.pszText
= (LPWSTR
) psInfo
->proppage
[i
].pszText
;
1173 SendMessageW(hwndTabCtrl
, TCM_INSERTITEMW
, i
, (LPARAM
)&item
);
1175 SendMessageW(hwndTabCtrl
, WM_SETREDRAW
, 1, 0);
1180 /******************************************************************************
1181 * PROPSHEET_WizardSubclassProc
1183 * Subclassing window procedure for wizard exterior pages to prevent drawing
1184 * background and so drawing above the watermark.
1186 static LRESULT CALLBACK
1187 PROPSHEET_WizardSubclassProc(HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
, UINT_PTR uID
, DWORD_PTR dwRef
)
1194 case WM_CTLCOLORSTATIC
:
1195 SetBkColor((HDC
)wParam
, GetSysColor(COLOR_WINDOW
));
1196 return (INT_PTR
)GetSysColorBrush(COLOR_WINDOW
);
1199 return DefSubclassProc(hwnd
, uMsg
, wParam
, lParam
);
1203 * Get the size of an in-memory Template
1205 *( Based on the code of PROPSHEET_CollectPageInfo)
1206 * See also dialog.c/DIALOG_ParseTemplate32().
1209 static UINT
GetTemplateSize(const DLGTEMPLATE
* pTemplate
)
1212 const WORD
* p
= (const WORD
*)pTemplate
;
1213 BOOL istemplateex
= (((const MyDLGTEMPLATEEX
*)pTemplate
)->signature
== 0xFFFF);
1219 /* DLGTEMPLATEEX (not defined in any std. header file) */
1221 TRACE("is DLGTEMPLATEEX\n");
1223 p
++; /* signature */
1224 p
+= 2; /* help ID */
1225 p
+= 2; /* ext style */
1232 TRACE("is DLGTEMPLATE\n");
1234 p
+= 2; /* ext style */
1237 nrofitems
= (WORD
)*p
; p
++; /* nb items */
1253 TRACE("menu %s\n",debugstr_w( p
));
1254 p
+= lstrlenW( p
) + 1;
1265 p
+= 2; /* 0xffff plus predefined window class ordinal value */
1268 TRACE("class %s\n",debugstr_w( p
));
1269 p
+= lstrlenW( p
) + 1;
1274 TRACE("title %s\n",debugstr_w( p
));
1275 p
+= lstrlenW( p
) + 1;
1277 /* font, if DS_SETFONT set */
1278 if ((DS_SETFONT
& ((istemplateex
)? ((const MyDLGTEMPLATEEX
*)pTemplate
)->style
:
1281 p
+=(istemplateex
)?3:1;
1282 TRACE("font %s\n",debugstr_w( p
));
1283 p
+= lstrlenW( p
) + 1; /* the font name */
1286 /* now process the DLGITEMTEMPLATE(EX) structs (plus custom data)
1287 * that are following the DLGTEMPLATE(EX) data */
1288 TRACE("%d items\n",nrofitems
);
1289 while (nrofitems
> 0)
1291 p
= (WORD
*)(((DWORD_PTR
)p
+ 3) & ~3); /* DWORD align */
1294 p
+= (istemplateex
? sizeof(MyDLGITEMTEMPLATEEX
) : sizeof(DLGITEMTEMPLATE
))/sizeof(WORD
);
1303 TRACE("class ordinal 0x%08x\n",*(const DWORD
*)p
);
1307 TRACE("class %s\n",debugstr_w( p
));
1308 p
+= lstrlenW( p
) + 1;
1312 /* check title text */
1319 TRACE("text ordinal 0x%08x\n",*(const DWORD
*)p
);
1323 TRACE("text %s\n",debugstr_w( p
));
1324 p
+= lstrlenW( p
) + 1;
1327 p
+= *p
/ sizeof(WORD
) + 1; /* Skip extra data */
1331 ret
= (p
- (const WORD
*)pTemplate
) * sizeof(WORD
);
1332 TRACE("%p %p size 0x%08x\n", p
, pTemplate
, ret
);
1336 /******************************************************************************
1337 * PROPSHEET_CreatePage
1341 static BOOL
PROPSHEET_CreatePage(HWND hwndParent
,
1343 const PropSheetInfo
* psInfo
,
1344 LPCPROPSHEETPAGEW ppshpage
)
1346 const DLGTEMPLATE
* pTemplate
;
1349 DLGTEMPLATE
* pTemplateCopy
= NULL
;
1351 TRACE("index %d\n", index
);
1353 if (ppshpage
== NULL
)
1358 if (ppshpage
->dwFlags
& PSP_DLGINDIRECT
)
1360 pTemplate
= ppshpage
->u
.pResource
;
1361 resSize
= GetTemplateSize(pTemplate
);
1363 else if(ppshpage
->dwFlags
& PSP_INTERNAL_UNICODE
)
1368 hResource
= FindResourceW(ppshpage
->hInstance
,
1369 ppshpage
->u
.pszTemplate
,
1374 resSize
= SizeofResource(ppshpage
->hInstance
, hResource
);
1376 hTemplate
= LoadResource(ppshpage
->hInstance
, hResource
);
1380 pTemplate
= LockResource(hTemplate
);
1382 * Make a copy of the dialog template to make it writable
1390 hResource
= FindResourceA(ppshpage
->hInstance
,
1391 (LPCSTR
)ppshpage
->u
.pszTemplate
,
1396 resSize
= SizeofResource(ppshpage
->hInstance
, hResource
);
1398 hTemplate
= LoadResource(ppshpage
->hInstance
, hResource
);
1402 pTemplate
= LockResource(hTemplate
);
1404 * Make a copy of the dialog template to make it writable
1407 pTemplateCopy
= Alloc(resSize
);
1411 TRACE("copying pTemplate %p into pTemplateCopy %p (%d)\n", pTemplate
, pTemplateCopy
, resSize
);
1412 memcpy(pTemplateCopy
, pTemplate
, resSize
);
1414 if (((MyDLGTEMPLATEEX
*)pTemplateCopy
)->signature
== 0xFFFF)
1416 ((MyDLGTEMPLATEEX
*)pTemplateCopy
)->style
|= WS_CHILD
| WS_TABSTOP
| DS_CONTROL
;
1417 ((MyDLGTEMPLATEEX
*)pTemplateCopy
)->style
&= ~DS_MODALFRAME
;
1418 ((MyDLGTEMPLATEEX
*)pTemplateCopy
)->style
&= ~WS_CAPTION
;
1419 ((MyDLGTEMPLATEEX
*)pTemplateCopy
)->style
&= ~WS_SYSMENU
;
1420 ((MyDLGTEMPLATEEX
*)pTemplateCopy
)->style
&= ~WS_POPUP
;
1421 ((MyDLGTEMPLATEEX
*)pTemplateCopy
)->style
&= ~WS_DISABLED
;
1422 ((MyDLGTEMPLATEEX
*)pTemplateCopy
)->style
&= ~WS_VISIBLE
;
1423 ((MyDLGTEMPLATEEX
*)pTemplateCopy
)->style
&= ~WS_THICKFRAME
;
1425 ((MyDLGTEMPLATEEX
*)pTemplateCopy
)->exStyle
|= WS_EX_CONTROLPARENT
;
1429 pTemplateCopy
->style
|= WS_CHILD
| WS_TABSTOP
| DS_CONTROL
;
1430 pTemplateCopy
->style
&= ~DS_MODALFRAME
;
1431 pTemplateCopy
->style
&= ~WS_CAPTION
;
1432 pTemplateCopy
->style
&= ~WS_SYSMENU
;
1433 pTemplateCopy
->style
&= ~WS_POPUP
;
1434 pTemplateCopy
->style
&= ~WS_DISABLED
;
1435 pTemplateCopy
->style
&= ~WS_VISIBLE
;
1436 pTemplateCopy
->style
&= ~WS_THICKFRAME
;
1438 pTemplateCopy
->dwExtendedStyle
|= WS_EX_CONTROLPARENT
;
1441 if (psInfo
->proppage
[index
].useCallback
)
1442 (*(ppshpage
->pfnCallback
))(0, PSPCB_CREATE
,
1443 (LPPROPSHEETPAGEW
)ppshpage
);
1445 if(ppshpage
->dwFlags
& PSP_INTERNAL_UNICODE
)
1446 hwndPage
= CreateDialogIndirectParamW(ppshpage
->hInstance
,
1449 ppshpage
->pfnDlgProc
,
1452 hwndPage
= CreateDialogIndirectParamA(ppshpage
->hInstance
,
1455 ppshpage
->pfnDlgProc
,
1457 /* Free a no more needed copy */
1458 Free(pTemplateCopy
);
1463 psInfo
->proppage
[index
].hwndPage
= hwndPage
;
1465 /* Subclass exterior wizard pages */
1466 if((psInfo
->ppshheader
.dwFlags
& (PSH_WIZARD97_NEW
| PSH_WIZARD97_OLD
)) &&
1467 (psInfo
->ppshheader
.dwFlags
& PSH_WATERMARK
) &&
1468 (ppshpage
->dwFlags
& PSP_HIDEHEADER
))
1470 SetWindowSubclass(hwndPage
, PROPSHEET_WizardSubclassProc
, 1,
1471 (DWORD_PTR
)ppshpage
);
1473 if (!(psInfo
->ppshheader
.dwFlags
& INTRNL_ANY_WIZARD
))
1474 EnableThemeDialogTexture (hwndPage
, ETDT_ENABLETAB
);
1479 /******************************************************************************
1480 * PROPSHEET_LoadWizardBitmaps
1482 * Loads the watermark and header bitmaps for a wizard.
1484 static VOID
PROPSHEET_LoadWizardBitmaps(PropSheetInfo
*psInfo
)
1486 if (psInfo
->ppshheader
.dwFlags
& (PSH_WIZARD97_NEW
| PSH_WIZARD97_OLD
))
1488 /* if PSH_USEHBMWATERMARK is not set, load the resource from pszbmWatermark
1489 and put the HBITMAP in hbmWatermark. Thus all the rest of the code always
1490 considers hbmWatermark as valid. */
1491 if ((psInfo
->ppshheader
.dwFlags
& PSH_WATERMARK
) &&
1492 !(psInfo
->ppshheader
.dwFlags
& PSH_USEHBMWATERMARK
))
1494 psInfo
->ppshheader
.u4
.hbmWatermark
=
1495 CreateMappedBitmap(psInfo
->ppshheader
.hInstance
, (INT_PTR
)psInfo
->ppshheader
.u4
.pszbmWatermark
, 0, NULL
, 0);
1498 /* Same behavior as for watermarks */
1499 if ((psInfo
->ppshheader
.dwFlags
& PSH_HEADER
) &&
1500 !(psInfo
->ppshheader
.dwFlags
& PSH_USEHBMHEADER
))
1502 psInfo
->ppshheader
.u5
.hbmHeader
=
1503 CreateMappedBitmap(psInfo
->ppshheader
.hInstance
, (INT_PTR
)psInfo
->ppshheader
.u5
.pszbmHeader
, 0, NULL
, 0);
1509 /******************************************************************************
1510 * PROPSHEET_ShowPage
1512 * Displays or creates the specified page.
1514 static BOOL
PROPSHEET_ShowPage(HWND hwndDlg
, int index
, PropSheetInfo
* psInfo
)
1517 HWND hwndLineHeader
;
1519 LPCPROPSHEETPAGEW ppshpage
;
1521 TRACE("active_page %d, index %d\n", psInfo
->active_page
, index
);
1522 if (index
== psInfo
->active_page
)
1524 if (GetTopWindow(hwndDlg
) != psInfo
->proppage
[index
].hwndPage
)
1525 SetWindowPos(psInfo
->proppage
[index
].hwndPage
, HWND_TOP
, 0, 0, 0, 0, SWP_NOSIZE
| SWP_NOMOVE
);
1529 ppshpage
= (LPCPROPSHEETPAGEW
)psInfo
->proppage
[index
].hpage
;
1530 if (psInfo
->proppage
[index
].hwndPage
== 0)
1532 PROPSHEET_CreatePage(hwndDlg
, index
, psInfo
, ppshpage
);
1535 if (psInfo
->ppshheader
.dwFlags
& INTRNL_ANY_WIZARD
)
1537 PROPSHEET_SetTitleW(hwndDlg
, psInfo
->ppshheader
.dwFlags
,
1538 psInfo
->proppage
[index
].pszText
);
1540 control
= GetNextDlgTabItem(psInfo
->proppage
[index
].hwndPage
, NULL
, FALSE
);
1545 if (psInfo
->active_page
!= -1)
1546 ShowWindow(psInfo
->proppage
[psInfo
->active_page
].hwndPage
, SW_HIDE
);
1548 ShowWindow(psInfo
->proppage
[index
].hwndPage
, SW_SHOW
);
1550 /* Synchronize current selection with tab control
1551 * It seems to be needed even in case of PSH_WIZARD (no tab controls there) */
1552 hwndTabCtrl
= GetDlgItem(hwndDlg
, IDC_TABCONTROL
);
1553 SendMessageW(hwndTabCtrl
, TCM_SETCURSEL
, index
, 0);
1555 psInfo
->active_page
= index
;
1556 psInfo
->activeValid
= TRUE
;
1558 if (psInfo
->ppshheader
.dwFlags
& (PSH_WIZARD97_OLD
| PSH_WIZARD97_NEW
) )
1560 hwndLineHeader
= GetDlgItem(hwndDlg
, IDC_SUNKEN_LINEHEADER
);
1561 ppshpage
= (LPCPROPSHEETPAGEW
)psInfo
->proppage
[index
].hpage
;
1563 if ((ppshpage
->dwFlags
& PSP_HIDEHEADER
) || (!(psInfo
->ppshheader
.dwFlags
& PSH_HEADER
)) )
1564 ShowWindow(hwndLineHeader
, SW_HIDE
);
1566 ShowWindow(hwndLineHeader
, SW_SHOW
);
1572 /******************************************************************************
1575 static BOOL
PROPSHEET_Back(HWND hwndDlg
)
1579 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
1583 TRACE("active_page %d\n", psInfo
->active_page
);
1584 if (psInfo
->active_page
< 0)
1587 psn
.hdr
.code
= PSN_WIZBACK
;
1588 psn
.hdr
.hwndFrom
= hwndDlg
;
1592 hwndPage
= psInfo
->proppage
[psInfo
->active_page
].hwndPage
;
1594 result
= SendMessageW(hwndPage
, WM_NOTIFY
, 0, (LPARAM
) &psn
);
1597 else if (result
== 0)
1598 idx
= psInfo
->active_page
- 1;
1600 idx
= PROPSHEET_FindPageByResId(psInfo
, result
);
1602 if (idx
>= 0 && idx
< psInfo
->nPages
)
1604 if (PROPSHEET_CanSetCurSel(hwndDlg
))
1606 SetFocus(GetDlgItem(hwndDlg
, IDC_BACK_BUTTON
));
1607 SendMessageW(hwndDlg
, DM_SETDEFID
, IDC_BACK_BUTTON
, 0);
1608 PROPSHEET_SetCurSel(hwndDlg
, idx
, -1, 0);
1614 /******************************************************************************
1617 static BOOL
PROPSHEET_Next(HWND hwndDlg
)
1621 LRESULT msgResult
= 0;
1622 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
1625 TRACE("active_page %d\n", psInfo
->active_page
);
1626 if (psInfo
->active_page
< 0)
1629 psn
.hdr
.code
= PSN_WIZNEXT
;
1630 psn
.hdr
.hwndFrom
= hwndDlg
;
1634 hwndPage
= psInfo
->proppage
[psInfo
->active_page
].hwndPage
;
1636 msgResult
= SendMessageW(hwndPage
, WM_NOTIFY
, 0, (LPARAM
) &psn
);
1637 if (msgResult
== -1)
1639 else if (msgResult
== 0)
1640 idx
= psInfo
->active_page
+ 1;
1642 idx
= PROPSHEET_FindPageByResId(psInfo
, msgResult
);
1644 if (idx
< psInfo
->nPages
)
1646 if (PROPSHEET_CanSetCurSel(hwndDlg
) != FALSE
)
1648 SetFocus(GetDlgItem(hwndDlg
, IDC_NEXT_BUTTON
));
1649 SendMessageW(hwndDlg
, DM_SETDEFID
, IDC_NEXT_BUTTON
, 0);
1650 PROPSHEET_SetCurSel(hwndDlg
, idx
, 1, 0);
1657 /******************************************************************************
1660 static BOOL
PROPSHEET_Finish(HWND hwndDlg
)
1664 LRESULT msgResult
= 0;
1665 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
1667 TRACE("active_page %d\n", psInfo
->active_page
);
1668 if (psInfo
->active_page
< 0)
1671 psn
.hdr
.code
= PSN_WIZFINISH
;
1672 psn
.hdr
.hwndFrom
= hwndDlg
;
1676 hwndPage
= psInfo
->proppage
[psInfo
->active_page
].hwndPage
;
1678 msgResult
= SendMessageW(hwndPage
, WM_NOTIFY
, 0, (LPARAM
) &psn
);
1680 TRACE("msg result %ld\n", msgResult
);
1685 if (psInfo
->result
== 0)
1686 psInfo
->result
= IDOK
;
1687 if (psInfo
->isModeless
)
1688 psInfo
->activeValid
= FALSE
;
1690 psInfo
->ended
= TRUE
;
1695 /******************************************************************************
1698 static BOOL
PROPSHEET_Apply(HWND hwndDlg
, LPARAM lParam
)
1703 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
1705 TRACE("active_page %d\n", psInfo
->active_page
);
1706 if (psInfo
->active_page
< 0)
1709 psn
.hdr
.hwndFrom
= hwndDlg
;
1715 * Send PSN_KILLACTIVE to the current page.
1717 psn
.hdr
.code
= PSN_KILLACTIVE
;
1719 hwndPage
= psInfo
->proppage
[psInfo
->active_page
].hwndPage
;
1721 if (SendMessageW(hwndPage
, WM_NOTIFY
, 0, (LPARAM
) &psn
) != FALSE
)
1725 * Send PSN_APPLY to all pages.
1727 psn
.hdr
.code
= PSN_APPLY
;
1728 psn
.lParam
= lParam
;
1730 for (i
= 0; i
< psInfo
->nPages
; i
++)
1732 hwndPage
= psInfo
->proppage
[i
].hwndPage
;
1735 switch (SendMessageW(hwndPage
, WM_NOTIFY
, 0, (LPARAM
) &psn
))
1737 case PSNRET_INVALID
:
1738 PROPSHEET_ShowPage(hwndDlg
, i
, psInfo
);
1740 case PSNRET_INVALID_NOCHANGEPAGE
:
1748 psInfo
->activeValid
= FALSE
;
1750 else if(psInfo
->active_page
>= 0)
1752 psn
.hdr
.code
= PSN_SETACTIVE
;
1754 hwndPage
= psInfo
->proppage
[psInfo
->active_page
].hwndPage
;
1755 SendMessageW(hwndPage
, WM_NOTIFY
, 0, (LPARAM
) &psn
);
1761 /******************************************************************************
1764 static void PROPSHEET_Cancel(HWND hwndDlg
, LPARAM lParam
)
1766 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
1771 TRACE("active_page %d\n", psInfo
->active_page
);
1772 if (psInfo
->active_page
< 0)
1775 hwndPage
= psInfo
->proppage
[psInfo
->active_page
].hwndPage
;
1776 psn
.hdr
.code
= PSN_QUERYCANCEL
;
1777 psn
.hdr
.hwndFrom
= hwndDlg
;
1781 if (SendMessageW(hwndPage
, WM_NOTIFY
, 0, (LPARAM
) &psn
))
1784 psn
.hdr
.code
= PSN_RESET
;
1785 psn
.lParam
= lParam
;
1787 for (i
= 0; i
< psInfo
->nPages
; i
++)
1789 hwndPage
= psInfo
->proppage
[i
].hwndPage
;
1792 SendMessageW(hwndPage
, WM_NOTIFY
, 0, (LPARAM
) &psn
);
1795 if (psInfo
->isModeless
)
1797 /* makes PSM_GETCURRENTPAGEHWND return NULL */
1798 psInfo
->activeValid
= FALSE
;
1801 psInfo
->ended
= TRUE
;
1804 /******************************************************************************
1807 static void PROPSHEET_Help(HWND hwndDlg
)
1809 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
1813 TRACE("active_page %d\n", psInfo
->active_page
);
1814 if (psInfo
->active_page
< 0)
1817 hwndPage
= psInfo
->proppage
[psInfo
->active_page
].hwndPage
;
1818 psn
.hdr
.code
= PSN_HELP
;
1819 psn
.hdr
.hwndFrom
= hwndDlg
;
1823 SendMessageW(hwndPage
, WM_NOTIFY
, 0, (LPARAM
) &psn
);
1826 /******************************************************************************
1829 static void PROPSHEET_Changed(HWND hwndDlg
, HWND hwndDirtyPage
)
1832 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
1835 if (!psInfo
) return;
1837 * Set the dirty flag of this page.
1839 for (i
= 0; i
< psInfo
->nPages
; i
++)
1841 if (psInfo
->proppage
[i
].hwndPage
== hwndDirtyPage
)
1842 psInfo
->proppage
[i
].isDirty
= TRUE
;
1846 * Enable the Apply button.
1848 if (psInfo
->hasApply
)
1850 HWND hwndApplyBtn
= GetDlgItem(hwndDlg
, IDC_APPLY_BUTTON
);
1852 EnableWindow(hwndApplyBtn
, TRUE
);
1856 /******************************************************************************
1857 * PROPSHEET_UnChanged
1859 static void PROPSHEET_UnChanged(HWND hwndDlg
, HWND hwndCleanPage
)
1862 BOOL noPageDirty
= TRUE
;
1863 HWND hwndApplyBtn
= GetDlgItem(hwndDlg
, IDC_APPLY_BUTTON
);
1864 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
1867 if ( !psInfo
) return;
1868 for (i
= 0; i
< psInfo
->nPages
; i
++)
1870 /* set the specified page as clean */
1871 if (psInfo
->proppage
[i
].hwndPage
== hwndCleanPage
)
1872 psInfo
->proppage
[i
].isDirty
= FALSE
;
1874 /* look to see if there are any dirty pages */
1875 if (psInfo
->proppage
[i
].isDirty
)
1876 noPageDirty
= FALSE
;
1880 * Disable Apply button.
1883 EnableWindow(hwndApplyBtn
, FALSE
);
1886 /******************************************************************************
1887 * PROPSHEET_PressButton
1889 static void PROPSHEET_PressButton(HWND hwndDlg
, int buttonID
)
1891 TRACE("buttonID %d\n", buttonID
);
1894 case PSBTN_APPLYNOW
:
1895 PROPSHEET_DoCommand(hwndDlg
, IDC_APPLY_BUTTON
);
1898 PROPSHEET_Back(hwndDlg
);
1901 PROPSHEET_DoCommand(hwndDlg
, IDCANCEL
);
1904 PROPSHEET_Finish(hwndDlg
);
1907 PROPSHEET_DoCommand(hwndDlg
, IDHELP
);
1910 PROPSHEET_Next(hwndDlg
);
1913 PROPSHEET_DoCommand(hwndDlg
, IDOK
);
1916 FIXME("Invalid button index %d\n", buttonID
);
1921 /*************************************************************************
1922 * BOOL PROPSHEET_CanSetCurSel [Internal]
1924 * Test whether the current page can be changed by sending a PSN_KILLACTIVE
1927 * hwndDlg [I] handle to a Dialog hWnd
1930 * TRUE if Current Selection can change
1934 static BOOL
PROPSHEET_CanSetCurSel(HWND hwndDlg
)
1936 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
1947 TRACE("active_page %d\n", psInfo
->active_page
);
1948 if (psInfo
->active_page
< 0)
1955 * Notify the current page.
1957 hwndPage
= psInfo
->proppage
[psInfo
->active_page
].hwndPage
;
1958 psn
.hdr
.code
= PSN_KILLACTIVE
;
1959 psn
.hdr
.hwndFrom
= hwndDlg
;
1963 res
= !SendMessageW(hwndPage
, WM_NOTIFY
, 0, (LPARAM
) &psn
);
1966 TRACE("<-- %d\n", res
);
1970 /******************************************************************************
1971 * PROPSHEET_SetCurSel
1973 static BOOL
PROPSHEET_SetCurSel(HWND hwndDlg
,
1976 HPROPSHEETPAGE hpage
1979 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
1980 HWND hwndHelp
= GetDlgItem(hwndDlg
, IDHELP
);
1981 HWND hwndTabControl
= GetDlgItem(hwndDlg
, IDC_TABCONTROL
);
1983 TRACE("index %d, skipdir %d, hpage %p\n", index
, skipdir
, hpage
);
1985 index
= PROPSHEET_GetPageIndex(hpage
, psInfo
, index
);
1987 if (index
< 0 || index
>= psInfo
->nPages
)
1989 TRACE("Could not find page to select!\n");
1993 /* unset active page while doing this transition. */
1994 if (psInfo
->active_page
!= -1)
1995 ShowWindow(psInfo
->proppage
[psInfo
->active_page
].hwndPage
, SW_HIDE
);
1996 psInfo
->active_page
= -1;
2002 LPCPROPSHEETPAGEW ppshpage
= (LPCPROPSHEETPAGEW
)psInfo
->proppage
[index
].hpage
;
2005 SendMessageW(hwndTabControl
, TCM_SETCURSEL
, index
, 0);
2007 psn
.hdr
.code
= PSN_SETACTIVE
;
2008 psn
.hdr
.hwndFrom
= hwndDlg
;
2012 if (!psInfo
->proppage
[index
].hwndPage
) {
2013 if(!PROPSHEET_CreatePage(hwndDlg
, index
, psInfo
, ppshpage
)) {
2014 PROPSHEET_RemovePage(hwndDlg
, index
, NULL
);
2015 if(index
>= psInfo
->nPages
)
2023 /* Resize the property sheet page to the fit in the Tab control
2024 * (for regular property sheets) or to fit in the client area (for
2026 * NOTE: The resizing happens every time the page is selected and
2027 * not only when it's created (some applications depend on it). */
2028 PROPSHEET_GetPageRect(psInfo
, hwndDlg
, &rc
, ppshpage
);
2029 TRACE("setting page %p, rc (%s) w=%d, h=%d\n",
2030 psInfo
->proppage
[index
].hwndPage
, wine_dbgstr_rect(&rc
),
2031 rc
.right
- rc
.left
, rc
.bottom
- rc
.top
);
2032 SetWindowPos(psInfo
->proppage
[index
].hwndPage
, HWND_TOP
,
2034 rc
.right
- rc
.left
, rc
.bottom
- rc
.top
, 0);
2036 result
= SendMessageW(psInfo
->proppage
[index
].hwndPage
, WM_NOTIFY
, 0, (LPARAM
) &psn
);
2043 WARN("Tried to skip before first property sheet page!\n");
2046 if (index
>= psInfo
->nPages
) {
2047 WARN("Tried to skip after last property sheet page!\n");
2048 index
= psInfo
->nPages
-1;
2052 else if (result
!= 0)
2054 int old_index
= index
;
2055 index
= PROPSHEET_FindPageByResId(psInfo
, result
);
2056 if(index
>= psInfo
->nPages
) {
2058 WARN("Tried to skip to nonexistent page by res id\n");
2065 /* Invalidate the header area */
2066 if ( (psInfo
->ppshheader
.dwFlags
& (PSH_WIZARD97_OLD
| PSH_WIZARD97_NEW
)) &&
2067 (psInfo
->ppshheader
.dwFlags
& PSH_HEADER
) )
2069 HWND hwndLineHeader
= GetDlgItem(hwndDlg
, IDC_SUNKEN_LINEHEADER
);
2072 GetClientRect(hwndLineHeader
, &r
);
2073 MapWindowPoints(hwndLineHeader
, hwndDlg
, (LPPOINT
) &r
, 2);
2074 SetRect(&r
, 0, 0, r
.right
+ 1, r
.top
- 1);
2076 InvalidateRect(hwndDlg
, &r
, TRUE
);
2080 * Display the new page.
2082 PROPSHEET_ShowPage(hwndDlg
, index
, psInfo
);
2084 if (psInfo
->proppage
[index
].hasHelp
)
2085 EnableWindow(hwndHelp
, TRUE
);
2087 EnableWindow(hwndHelp
, FALSE
);
2092 /******************************************************************************
2093 * PROPSHEET_SetCurSelId
2095 * Selects the page, specified by resource id.
2097 static void PROPSHEET_SetCurSelId(HWND hwndDlg
, int id
)
2100 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
2102 idx
= PROPSHEET_FindPageByResId(psInfo
, id
);
2103 if (idx
< psInfo
->nPages
)
2105 if (PROPSHEET_CanSetCurSel(hwndDlg
) != FALSE
)
2106 PROPSHEET_SetCurSel(hwndDlg
, idx
, 1, 0);
2110 /******************************************************************************
2111 * PROPSHEET_SetTitleA
2113 static void PROPSHEET_SetTitleA(HWND hwndDlg
, DWORD dwStyle
, LPCSTR lpszText
)
2115 if(!IS_INTRESOURCE(lpszText
))
2118 MultiByteToWideChar(CP_ACP
, 0, lpszText
, -1,
2119 szTitle
, sizeof(szTitle
)/sizeof(WCHAR
));
2120 PROPSHEET_SetTitleW(hwndDlg
, dwStyle
, szTitle
);
2124 PROPSHEET_SetTitleW(hwndDlg
, dwStyle
, (LPCWSTR
)lpszText
);
2128 /******************************************************************************
2129 * PROPSHEET_SetTitleW
2131 static void PROPSHEET_SetTitleW(HWND hwndDlg
, DWORD dwStyle
, LPCWSTR lpszText
)
2133 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
2136 TRACE("%s (style %08x)\n", debugstr_w(lpszText
), dwStyle
);
2137 if (IS_INTRESOURCE(lpszText
)) {
2138 if (!LoadStringW(psInfo
->ppshheader
.hInstance
,
2139 LOWORD(lpszText
), szTitle
, sizeof(szTitle
)/sizeof(szTitle
[0])))
2143 if (dwStyle
& PSH_PROPTITLE
)
2146 int lentitle
= strlenW(lpszText
);
2147 int lenprop
= strlenW(psInfo
->strPropertiesFor
);
2149 dest
= Alloc( (lentitle
+ lenprop
+ 1)*sizeof (WCHAR
));
2150 wsprintfW(dest
, psInfo
->strPropertiesFor
, lpszText
);
2152 SetWindowTextW(hwndDlg
, dest
);
2156 SetWindowTextW(hwndDlg
, lpszText
);
2159 /******************************************************************************
2160 * PROPSHEET_SetFinishTextA
2162 static void PROPSHEET_SetFinishTextA(HWND hwndDlg
, LPCSTR lpszText
)
2164 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
2165 HWND hwndButton
= GetDlgItem(hwndDlg
, IDC_FINISH_BUTTON
);
2167 TRACE("'%s'\n", lpszText
);
2168 /* Set text, show and enable the Finish button */
2169 SetWindowTextA(hwndButton
, lpszText
);
2170 ShowWindow(hwndButton
, SW_SHOW
);
2171 EnableWindow(hwndButton
, TRUE
);
2173 /* Make it default pushbutton */
2174 SendMessageW(hwndDlg
, DM_SETDEFID
, IDC_FINISH_BUTTON
, 0);
2176 /* Hide Back button */
2177 hwndButton
= GetDlgItem(hwndDlg
, IDC_BACK_BUTTON
);
2178 ShowWindow(hwndButton
, SW_HIDE
);
2180 if (!psInfo
->hasFinish
)
2182 /* Hide Next button */
2183 hwndButton
= GetDlgItem(hwndDlg
, IDC_NEXT_BUTTON
);
2184 ShowWindow(hwndButton
, SW_HIDE
);
2188 /******************************************************************************
2189 * PROPSHEET_SetFinishTextW
2191 static void PROPSHEET_SetFinishTextW(HWND hwndDlg
, LPCWSTR lpszText
)
2193 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
2194 HWND hwndButton
= GetDlgItem(hwndDlg
, IDC_FINISH_BUTTON
);
2196 TRACE("%s\n", debugstr_w(lpszText
));
2197 /* Set text, show and enable the Finish button */
2198 SetWindowTextW(hwndButton
, lpszText
);
2199 ShowWindow(hwndButton
, SW_SHOW
);
2200 EnableWindow(hwndButton
, TRUE
);
2202 /* Make it default pushbutton */
2203 SendMessageW(hwndDlg
, DM_SETDEFID
, IDC_FINISH_BUTTON
, 0);
2205 /* Hide Back button */
2206 hwndButton
= GetDlgItem(hwndDlg
, IDC_BACK_BUTTON
);
2207 ShowWindow(hwndButton
, SW_HIDE
);
2209 if (!psInfo
->hasFinish
)
2211 /* Hide Next button */
2212 hwndButton
= GetDlgItem(hwndDlg
, IDC_NEXT_BUTTON
);
2213 ShowWindow(hwndButton
, SW_HIDE
);
2217 /******************************************************************************
2218 * PROPSHEET_QuerySiblings
2220 static LRESULT
PROPSHEET_QuerySiblings(HWND hwndDlg
,
2221 WPARAM wParam
, LPARAM lParam
)
2225 LRESULT msgResult
= 0;
2226 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
2228 while ((i
< psInfo
->nPages
) && (msgResult
== 0))
2230 hwndPage
= psInfo
->proppage
[i
].hwndPage
;
2231 msgResult
= SendMessageW(hwndPage
, PSM_QUERYSIBLINGS
, wParam
, lParam
);
2238 /******************************************************************************
2239 * PROPSHEET_InsertPage
2241 static BOOL
PROPSHEET_InsertPage(HWND hwndDlg
, HPROPSHEETPAGE hpageInsertAfter
, HPROPSHEETPAGE hpage
)
2243 PropSheetInfo
*psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
2244 PropPageInfo
*ppi
, *prev_ppi
= psInfo
->proppage
;
2245 HWND hwndTabControl
= GetDlgItem(hwndDlg
, IDC_TABCONTROL
);
2246 LPCPROPSHEETPAGEW ppsp
= (LPCPROPSHEETPAGEW
)hpage
;
2250 TRACE("hwndDlg %p, hpageInsertAfter %p, hpage %p\n", hwndDlg
, hpageInsertAfter
, hpage
);
2252 if (IS_INTRESOURCE(hpageInsertAfter
))
2253 index
= LOWORD(hpageInsertAfter
);
2256 index
= PROPSHEET_GetPageIndex(hpageInsertAfter
, psInfo
, -1);
2259 TRACE("Could not find page to insert after!\n");
2265 if (index
> psInfo
->nPages
)
2266 index
= psInfo
->nPages
;
2268 ppi
= Alloc(sizeof(PropPageInfo
) * (psInfo
->nPages
+ 1));
2273 * Fill in a new PropPageInfo entry.
2276 memcpy(ppi
, prev_ppi
, index
* sizeof(PropPageInfo
));
2277 memset(&ppi
[index
], 0, sizeof(PropPageInfo
));
2278 if (index
< psInfo
->nPages
)
2279 memcpy(&ppi
[index
+ 1], &prev_ppi
[index
], (psInfo
->nPages
- index
) * sizeof(PropPageInfo
));
2280 psInfo
->proppage
= ppi
;
2282 if (!PROPSHEET_CollectPageInfo(ppsp
, psInfo
, index
, FALSE
))
2284 psInfo
->proppage
= prev_ppi
;
2289 psInfo
->proppage
[index
].hpage
= hpage
;
2291 if (ppsp
->dwFlags
& PSP_PREMATURE
)
2293 /* Create the page but don't show it */
2294 if (!PROPSHEET_CreatePage(hwndDlg
, index
, psInfo
, ppsp
))
2296 psInfo
->proppage
= prev_ppi
;
2304 if (index
<= psInfo
->active_page
)
2305 psInfo
->active_page
++;
2308 * Add a new tab to the tab control.
2310 item
.mask
= TCIF_TEXT
;
2311 item
.pszText
= (LPWSTR
) psInfo
->proppage
[index
].pszText
;
2312 item
.cchTextMax
= MAX_TABTEXT_LENGTH
;
2314 if (psInfo
->hImageList
)
2315 SendMessageW(hwndTabControl
, TCM_SETIMAGELIST
, 0, (LPARAM
)psInfo
->hImageList
);
2317 if (psInfo
->proppage
[index
].hasIcon
)
2319 item
.mask
|= TCIF_IMAGE
;
2320 item
.iImage
= index
;
2323 SendMessageW(hwndTabControl
, TCM_INSERTITEMW
, index
, (LPARAM
)&item
);
2325 /* If it is the only page - show it */
2326 if (psInfo
->nPages
== 1)
2327 PROPSHEET_SetCurSel(hwndDlg
, 0, 1, 0);
2332 /******************************************************************************
2335 static BOOL
PROPSHEET_AddPage(HWND hwndDlg
, HPROPSHEETPAGE hpage
)
2337 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
2338 TRACE("hwndDlg %p, hpage %p\n", hwndDlg
, hpage
);
2339 return PROPSHEET_InsertPage(hwndDlg
, UlongToPtr(psInfo
->nPages
), hpage
);
2342 /******************************************************************************
2343 * PROPSHEET_RemovePage
2345 static BOOL
PROPSHEET_RemovePage(HWND hwndDlg
,
2347 HPROPSHEETPAGE hpage
)
2349 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
2350 HWND hwndTabControl
= GetDlgItem(hwndDlg
, IDC_TABCONTROL
);
2351 PropPageInfo
* oldPages
;
2353 TRACE("index %d, hpage %p\n", index
, hpage
);
2358 index
= PROPSHEET_GetPageIndex(hpage
, psInfo
, index
);
2360 /* Make sure that index is within range */
2361 if (index
< 0 || index
>= psInfo
->nPages
)
2363 TRACE("Could not find page to remove!\n");
2367 TRACE("total pages %d removing page %d active page %d\n",
2368 psInfo
->nPages
, index
, psInfo
->active_page
);
2370 * Check if we're removing the active page.
2372 if (index
== psInfo
->active_page
)
2374 if (psInfo
->nPages
> 1)
2378 /* activate previous page */
2379 PROPSHEET_SetCurSel(hwndDlg
, index
- 1, -1, 0);
2383 /* activate the next page */
2384 PROPSHEET_SetCurSel(hwndDlg
, index
+ 1, 1, 0);
2385 psInfo
->active_page
= index
;
2390 psInfo
->active_page
= -1;
2391 if (!psInfo
->isModeless
)
2393 psInfo
->ended
= TRUE
;
2398 else if (index
< psInfo
->active_page
)
2399 psInfo
->active_page
--;
2401 /* Unsubclass the page dialog window */
2402 if((psInfo
->ppshheader
.dwFlags
& (PSH_WIZARD97_NEW
| PSH_WIZARD97_OLD
) &&
2403 (psInfo
->ppshheader
.dwFlags
& PSH_WATERMARK
) &&
2404 ((PROPSHEETPAGEW
*)psInfo
->proppage
[index
].hpage
)->dwFlags
& PSP_HIDEHEADER
))
2406 RemoveWindowSubclass(psInfo
->proppage
[index
].hwndPage
,
2407 PROPSHEET_WizardSubclassProc
, 1);
2410 /* Destroy page dialog window */
2411 DestroyWindow(psInfo
->proppage
[index
].hwndPage
);
2413 /* Free page resources */
2414 if(psInfo
->proppage
[index
].hpage
)
2416 PROPSHEETPAGEW
* psp
= (PROPSHEETPAGEW
*)psInfo
->proppage
[index
].hpage
;
2418 if (psp
->dwFlags
& PSP_USETITLE
)
2419 Free ((LPVOID
)psInfo
->proppage
[index
].pszText
);
2421 DestroyPropertySheetPage(psInfo
->proppage
[index
].hpage
);
2424 /* Remove the tab */
2425 SendMessageW(hwndTabControl
, TCM_DELETEITEM
, index
, 0);
2427 oldPages
= psInfo
->proppage
;
2429 psInfo
->proppage
= Alloc(sizeof(PropPageInfo
) * psInfo
->nPages
);
2432 memcpy(&psInfo
->proppage
[0], &oldPages
[0], index
* sizeof(PropPageInfo
));
2434 if (index
< psInfo
->nPages
)
2435 memcpy(&psInfo
->proppage
[index
], &oldPages
[index
+ 1],
2436 (psInfo
->nPages
- index
) * sizeof(PropPageInfo
));
2443 /******************************************************************************
2444 * PROPSHEET_SetWizButtons
2446 * This code will work if (and assumes that) the Next button is on top of the
2447 * Finish button. ie. Finish comes after Next in the Z order.
2448 * This means make sure the dialog template reflects this.
2451 static void PROPSHEET_SetWizButtons(HWND hwndDlg
, DWORD dwFlags
)
2453 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
2454 HWND hwndBack
= GetDlgItem(hwndDlg
, IDC_BACK_BUTTON
);
2455 HWND hwndNext
= GetDlgItem(hwndDlg
, IDC_NEXT_BUTTON
);
2456 HWND hwndFinish
= GetDlgItem(hwndDlg
, IDC_FINISH_BUTTON
);
2457 BOOL enable_finish
= ((dwFlags
& PSWIZB_FINISH
) || psInfo
->hasFinish
) && !(dwFlags
& PSWIZB_DISABLEDFINISH
);
2459 TRACE("%d\n", dwFlags
);
2461 EnableWindow(hwndBack
, dwFlags
& PSWIZB_BACK
);
2462 EnableWindow(hwndNext
, dwFlags
& PSWIZB_NEXT
);
2463 EnableWindow(hwndFinish
, enable_finish
);
2465 /* set the default pushbutton to an enabled button */
2467 SendMessageW(hwndDlg
, DM_SETDEFID
, IDC_FINISH_BUTTON
, 0);
2468 else if (dwFlags
& PSWIZB_NEXT
)
2469 SendMessageW(hwndDlg
, DM_SETDEFID
, IDC_NEXT_BUTTON
, 0);
2470 else if (dwFlags
& PSWIZB_BACK
)
2471 SendMessageW(hwndDlg
, DM_SETDEFID
, IDC_BACK_BUTTON
, 0);
2473 SendMessageW(hwndDlg
, DM_SETDEFID
, IDCANCEL
, 0);
2475 if (!psInfo
->hasFinish
)
2477 if ((dwFlags
& PSWIZB_FINISH
) || (dwFlags
& PSWIZB_DISABLEDFINISH
))
2479 /* Hide the Next button */
2480 ShowWindow(hwndNext
, SW_HIDE
);
2482 /* Show the Finish button */
2483 ShowWindow(hwndFinish
, SW_SHOW
);
2487 /* Hide the Finish button */
2488 ShowWindow(hwndFinish
, SW_HIDE
);
2489 /* Show the Next button */
2490 ShowWindow(hwndNext
, SW_SHOW
);
2495 /******************************************************************************
2496 * PROPSHEET_SetHeaderTitleW
2498 static void PROPSHEET_SetHeaderTitleW(HWND hwndDlg
, UINT page_index
, const WCHAR
*title
)
2500 PropSheetInfo
*psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
2501 PROPSHEETPAGEW
*page
;
2503 TRACE("(%p, %u, %s)\n", hwndDlg
, page_index
, debugstr_w(title
));
2505 if (page_index
>= psInfo
->nPages
)
2508 page
= (PROPSHEETPAGEW
*)psInfo
->proppage
[page_index
].hpage
;
2510 if (!IS_INTRESOURCE(page
->pszHeaderTitle
))
2511 Free((void *)page
->pszHeaderTitle
);
2513 page
->pszHeaderTitle
= heap_strdupW(title
);
2514 page
->dwFlags
|= PSP_USEHEADERTITLE
;
2517 /******************************************************************************
2518 * PROPSHEET_SetHeaderTitleA
2520 static void PROPSHEET_SetHeaderTitleA(HWND hwndDlg
, UINT page_index
, const char *title
)
2524 TRACE("(%p, %u, %s)\n", hwndDlg
, page_index
, debugstr_a(title
));
2526 titleW
= heap_strdupAtoW(title
);
2527 PROPSHEET_SetHeaderTitleW(hwndDlg
, page_index
, titleW
);
2531 /******************************************************************************
2532 * PROPSHEET_SetHeaderSubTitleW
2534 static void PROPSHEET_SetHeaderSubTitleW(HWND hwndDlg
, UINT page_index
, const WCHAR
*subtitle
)
2536 PropSheetInfo
*psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
2537 PROPSHEETPAGEW
*page
;
2539 TRACE("(%p, %u, %s)\n", hwndDlg
, page_index
, debugstr_w(subtitle
));
2541 if (page_index
>= psInfo
->nPages
)
2544 page
= (PROPSHEETPAGEW
*)psInfo
->proppage
[page_index
].hpage
;
2546 if (!IS_INTRESOURCE(page
->pszHeaderSubTitle
))
2547 Free((void *)page
->pszHeaderSubTitle
);
2549 page
->pszHeaderSubTitle
= heap_strdupW(subtitle
);
2550 page
->dwFlags
|= PSP_USEHEADERSUBTITLE
;
2553 /******************************************************************************
2554 * PROPSHEET_SetHeaderSubTitleA
2556 static void PROPSHEET_SetHeaderSubTitleA(HWND hwndDlg
, UINT page_index
, const char *subtitle
)
2560 TRACE("(%p, %u, %s)\n", hwndDlg
, page_index
, debugstr_a(subtitle
));
2562 subtitleW
= heap_strdupAtoW(subtitle
);
2563 PROPSHEET_SetHeaderSubTitleW(hwndDlg
, page_index
, subtitleW
);
2567 /******************************************************************************
2568 * PROPSHEET_HwndToIndex
2570 static LRESULT
PROPSHEET_HwndToIndex(HWND hwndDlg
, HWND hPageDlg
)
2573 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
2575 TRACE("(%p, %p)\n", hwndDlg
, hPageDlg
);
2577 for (index
= 0; index
< psInfo
->nPages
; index
++)
2578 if (psInfo
->proppage
[index
].hwndPage
== hPageDlg
)
2580 WARN("%p not found\n", hPageDlg
);
2584 /******************************************************************************
2585 * PROPSHEET_IndexToHwnd
2587 static LRESULT
PROPSHEET_IndexToHwnd(HWND hwndDlg
, int iPageIndex
)
2589 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
2590 TRACE("(%p, %d)\n", hwndDlg
, iPageIndex
);
2593 if (iPageIndex
<0 || iPageIndex
>=psInfo
->nPages
) {
2594 WARN("%d out of range.\n", iPageIndex
);
2597 return (LRESULT
)psInfo
->proppage
[iPageIndex
].hwndPage
;
2600 /******************************************************************************
2601 * PROPSHEET_PageToIndex
2603 static LRESULT
PROPSHEET_PageToIndex(HWND hwndDlg
, HPROPSHEETPAGE hPage
)
2605 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
2607 TRACE("(%p, %p)\n", hwndDlg
, hPage
);
2609 return PROPSHEET_GetPageIndex(hPage
, psInfo
, -1);
2612 /******************************************************************************
2613 * PROPSHEET_IndexToPage
2615 static LRESULT
PROPSHEET_IndexToPage(HWND hwndDlg
, int iPageIndex
)
2617 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
2618 TRACE("(%p, %d)\n", hwndDlg
, iPageIndex
);
2619 if (iPageIndex
<0 || iPageIndex
>=psInfo
->nPages
) {
2620 WARN("%d out of range.\n", iPageIndex
);
2623 return (LRESULT
)psInfo
->proppage
[iPageIndex
].hpage
;
2626 /******************************************************************************
2627 * PROPSHEET_IdToIndex
2629 static LRESULT
PROPSHEET_IdToIndex(HWND hwndDlg
, int iPageId
)
2632 LPCPROPSHEETPAGEW psp
;
2633 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
2634 TRACE("(%p, %d)\n", hwndDlg
, iPageId
);
2635 for (index
= 0; index
< psInfo
->nPages
; index
++) {
2636 psp
= (LPCPROPSHEETPAGEW
)psInfo
->proppage
[index
].hpage
;
2637 if (psp
->u
.pszTemplate
== MAKEINTRESOURCEW(iPageId
))
2644 /******************************************************************************
2645 * PROPSHEET_IndexToId
2647 static LRESULT
PROPSHEET_IndexToId(HWND hwndDlg
, int iPageIndex
)
2649 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
2650 LPCPROPSHEETPAGEW psp
;
2651 TRACE("(%p, %d)\n", hwndDlg
, iPageIndex
);
2652 if (iPageIndex
<0 || iPageIndex
>=psInfo
->nPages
) {
2653 WARN("%d out of range.\n", iPageIndex
);
2656 psp
= (LPCPROPSHEETPAGEW
)psInfo
->proppage
[iPageIndex
].hpage
;
2657 if (psp
->dwFlags
& PSP_DLGINDIRECT
|| !IS_INTRESOURCE(psp
->u
.pszTemplate
)) {
2660 return (LRESULT
)psp
->u
.pszTemplate
;
2663 /******************************************************************************
2664 * PROPSHEET_GetResult
2666 static LRESULT
PROPSHEET_GetResult(HWND hwndDlg
)
2668 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
2669 return psInfo
->result
;
2672 /******************************************************************************
2673 * PROPSHEET_RecalcPageSizes
2675 static BOOL
PROPSHEET_RecalcPageSizes(HWND hwndDlg
)
2677 FIXME("(%p): stub\n", hwndDlg
);
2681 /******************************************************************************
2682 * PROPSHEET_GetPageIndex
2684 * Given a HPROPSHEETPAGE, returns the index of the corresponding page from
2685 * the array of PropPageInfo. If page is not found original index is used
2686 * (page takes precedence over index).
2688 static int PROPSHEET_GetPageIndex(HPROPSHEETPAGE page
, const PropSheetInfo
* psInfo
, int original_index
)
2692 TRACE("page %p index %d\n", page
, original_index
);
2694 for (index
= 0; index
< psInfo
->nPages
; index
++)
2695 if (psInfo
->proppage
[index
].hpage
== page
)
2698 return original_index
;
2701 /******************************************************************************
2704 static void PROPSHEET_CleanUp(HWND hwndDlg
)
2707 PropSheetInfo
* psInfo
= RemovePropW(hwndDlg
, PropSheetInfoStr
);
2710 if (!psInfo
) return;
2711 if (!IS_INTRESOURCE(psInfo
->ppshheader
.pszCaption
))
2712 Free ((LPVOID
)psInfo
->ppshheader
.pszCaption
);
2714 for (i
= 0; i
< psInfo
->nPages
; i
++)
2716 PROPSHEETPAGEA
* psp
= (PROPSHEETPAGEA
*)psInfo
->proppage
[i
].hpage
;
2718 /* Unsubclass the page dialog window */
2719 if((psInfo
->ppshheader
.dwFlags
& (PSH_WIZARD97_NEW
| PSH_WIZARD97_OLD
)) &&
2720 (psInfo
->ppshheader
.dwFlags
& PSH_WATERMARK
) &&
2721 (psp
->dwFlags
& PSP_HIDEHEADER
))
2723 RemoveWindowSubclass(psInfo
->proppage
[i
].hwndPage
,
2724 PROPSHEET_WizardSubclassProc
, 1);
2727 if(psInfo
->proppage
[i
].hwndPage
)
2728 DestroyWindow(psInfo
->proppage
[i
].hwndPage
);
2732 if (psp
->dwFlags
& PSP_USETITLE
)
2733 Free ((LPVOID
)psInfo
->proppage
[i
].pszText
);
2735 DestroyPropertySheetPage(psInfo
->proppage
[i
].hpage
);
2739 DeleteObject(psInfo
->hFont
);
2740 DeleteObject(psInfo
->hFontBold
);
2741 /* If we created the bitmaps, destroy them */
2742 if ((psInfo
->ppshheader
.dwFlags
& PSH_WATERMARK
) &&
2743 (!(psInfo
->ppshheader
.dwFlags
& PSH_USEHBMWATERMARK
)) )
2744 DeleteObject(psInfo
->ppshheader
.u4
.hbmWatermark
);
2745 if ((psInfo
->ppshheader
.dwFlags
& PSH_HEADER
) &&
2746 (!(psInfo
->ppshheader
.dwFlags
& PSH_USEHBMHEADER
)) )
2747 DeleteObject(psInfo
->ppshheader
.u5
.hbmHeader
);
2749 Free(psInfo
->proppage
);
2750 Free(psInfo
->strPropertiesFor
);
2751 ImageList_Destroy(psInfo
->hImageList
);
2756 static INT
do_loop(const PropSheetInfo
*psInfo
)
2760 HWND hwnd
= psInfo
->hwnd
;
2761 HWND parent
= psInfo
->ppshheader
.hwndParent
;
2763 while(IsWindow(hwnd
) && !psInfo
->ended
&& (ret
= GetMessageW(&msg
, NULL
, 0, 0)))
2768 if(!IsDialogMessageW(hwnd
, &msg
))
2770 TranslateMessage(&msg
);
2771 DispatchMessageW(&msg
);
2777 PostQuitMessage(msg
.wParam
);
2782 ret
= psInfo
->result
;
2785 EnableWindow(parent
, TRUE
);
2787 DestroyWindow(hwnd
);
2791 /******************************************************************************
2792 * PROPSHEET_PropertySheet
2794 * Common code between PropertySheetA/W
2796 static INT_PTR
PROPSHEET_PropertySheet(PropSheetInfo
* psInfo
, BOOL unicode
)
2800 if (psInfo
->active_page
>= psInfo
->nPages
) psInfo
->active_page
= 0;
2801 TRACE("startpage: %d of %d pages\n", psInfo
->active_page
, psInfo
->nPages
);
2803 psInfo
->unicode
= unicode
;
2804 psInfo
->ended
= FALSE
;
2806 if(!psInfo
->isModeless
)
2808 parent
= psInfo
->ppshheader
.hwndParent
;
2809 if (parent
) EnableWindow(parent
, FALSE
);
2811 bRet
= PROPSHEET_CreateDialog(psInfo
);
2812 if(!psInfo
->isModeless
)
2813 bRet
= do_loop(psInfo
);
2817 /******************************************************************************
2818 * PropertySheet (COMCTL32.@)
2819 * PropertySheetA (COMCTL32.@)
2821 * Creates a property sheet in the specified property sheet header.
2824 * Modal property sheets: Positive if successful or -1 otherwise.
2825 * Modeless property sheets: Property sheet handle.
2827 *| ID_PSREBOOTSYSTEM - The user must reboot the computer for the changes to take effect.
2828 *| ID_PSRESTARTWINDOWS - The user must restart Windows for the changes to take effect.
2830 INT_PTR WINAPI
PropertySheetA(LPCPROPSHEETHEADERA lppsh
)
2832 PropSheetInfo
* psInfo
= GlobalAlloc(GPTR
, sizeof(PropSheetInfo
));
2836 TRACE("(%p)\n", lppsh
);
2838 PROPSHEET_CollectSheetInfoA(lppsh
, psInfo
);
2840 psInfo
->proppage
= Alloc(sizeof(PropPageInfo
) * lppsh
->nPages
);
2841 pByte
= (const BYTE
*) psInfo
->ppshheader
.u3
.ppsp
;
2843 for (n
= i
= 0; i
< lppsh
->nPages
; i
++, n
++)
2845 if (!psInfo
->usePropPage
)
2846 psInfo
->proppage
[n
].hpage
= psInfo
->ppshheader
.u3
.phpage
[i
];
2849 psInfo
->proppage
[n
].hpage
= CreatePropertySheetPageA((LPCPROPSHEETPAGEA
)pByte
);
2850 pByte
+= ((LPCPROPSHEETPAGEA
)pByte
)->dwSize
;
2853 if (!PROPSHEET_CollectPageInfo((LPCPROPSHEETPAGEW
)psInfo
->proppage
[n
].hpage
,
2856 if (psInfo
->usePropPage
)
2857 DestroyPropertySheetPage(psInfo
->proppage
[n
].hpage
);
2863 return PROPSHEET_PropertySheet(psInfo
, FALSE
);
2866 /******************************************************************************
2867 * PropertySheetW (COMCTL32.@)
2869 * See PropertySheetA.
2871 INT_PTR WINAPI
PropertySheetW(LPCPROPSHEETHEADERW lppsh
)
2873 PropSheetInfo
* psInfo
= GlobalAlloc(GPTR
, sizeof(PropSheetInfo
));
2877 TRACE("(%p)\n", lppsh
);
2879 PROPSHEET_CollectSheetInfoW(lppsh
, psInfo
);
2881 psInfo
->proppage
= Alloc(sizeof(PropPageInfo
) * lppsh
->nPages
);
2882 pByte
= (const BYTE
*) psInfo
->ppshheader
.u3
.ppsp
;
2884 for (n
= i
= 0; i
< lppsh
->nPages
; i
++, n
++)
2886 if (!psInfo
->usePropPage
)
2887 psInfo
->proppage
[n
].hpage
= psInfo
->ppshheader
.u3
.phpage
[i
];
2890 psInfo
->proppage
[n
].hpage
= CreatePropertySheetPageW((LPCPROPSHEETPAGEW
)pByte
);
2891 pByte
+= ((LPCPROPSHEETPAGEW
)pByte
)->dwSize
;
2894 if (!PROPSHEET_CollectPageInfo((LPCPROPSHEETPAGEW
)psInfo
->proppage
[n
].hpage
,
2897 if (psInfo
->usePropPage
)
2898 DestroyPropertySheetPage(psInfo
->proppage
[n
].hpage
);
2904 return PROPSHEET_PropertySheet(psInfo
, TRUE
);
2907 static LPWSTR
load_string( HINSTANCE instance
, LPCWSTR str
)
2911 if (IS_INTRESOURCE(str
))
2916 WORD i
, id
= LOWORD(str
);
2919 if (!(hrsrc
= FindResourceW( instance
, MAKEINTRESOURCEW((id
>> 4) + 1), (LPWSTR
)RT_STRING
)))
2921 if (!(hmem
= LoadResource( instance
, hrsrc
))) return NULL
;
2922 if (!(ptr
= LockResource( hmem
))) return NULL
;
2923 for (i
= id
& 0x0f; i
> 0; i
--) ptr
+= *ptr
+ 1;
2925 if (!len
) return NULL
;
2926 ret
= Alloc( (len
+ 1) * sizeof(WCHAR
) );
2929 memcpy( ret
, ptr
+ 1, len
* sizeof(WCHAR
) );
2935 int len
= (strlenW(str
) + 1) * sizeof(WCHAR
);
2937 if (ret
) memcpy( ret
, str
, len
);
2943 /******************************************************************************
2944 * CreatePropertySheetPage (COMCTL32.@)
2945 * CreatePropertySheetPageA (COMCTL32.@)
2947 * Creates a new property sheet page.
2950 * Success: Handle to new property sheet page.
2954 * An application must use the PSM_ADDPAGE message to add the new page to
2955 * an existing property sheet.
2957 HPROPSHEETPAGE WINAPI
CreatePropertySheetPageA(
2958 LPCPROPSHEETPAGEA lpPropSheetPage
)
2960 PROPSHEETPAGEW
*ppsp
;
2962 if (lpPropSheetPage
->dwSize
< PROPSHEETPAGEA_V1_SIZE
)
2965 /* original data is used for callback notifications */
2966 if ((lpPropSheetPage
->dwFlags
& PSP_USECALLBACK
) && lpPropSheetPage
->pfnCallback
)
2968 ppsp
= Alloc(2 * sizeof(*ppsp
));
2969 memcpy(ppsp
, lpPropSheetPage
, min(lpPropSheetPage
->dwSize
, sizeof(PROPSHEETPAGEA
)));
2970 memcpy(ppsp
+ 1, lpPropSheetPage
, min(lpPropSheetPage
->dwSize
, sizeof(PROPSHEETPAGEA
)));
2974 ppsp
= Alloc(sizeof(*ppsp
));
2975 memcpy(ppsp
, lpPropSheetPage
, min(lpPropSheetPage
->dwSize
, sizeof(PROPSHEETPAGEA
)));
2978 ppsp
->dwFlags
&= ~PSP_INTERNAL_UNICODE
;
2980 if ( !(ppsp
->dwFlags
& PSP_DLGINDIRECT
) )
2982 if (!IS_INTRESOURCE( ppsp
->u
.pszTemplate
))
2984 int len
= strlen(lpPropSheetPage
->u
.pszTemplate
) + 1;
2985 char *template = Alloc( len
);
2987 ppsp
->u
.pszTemplate
= (LPWSTR
)strcpy( template, lpPropSheetPage
->u
.pszTemplate
);
2991 if (ppsp
->dwFlags
& PSP_USEICONID
)
2993 if (!IS_INTRESOURCE( ppsp
->u2
.pszIcon
))
2994 ppsp
->u2
.pszIcon
= heap_strdupAtoW( lpPropSheetPage
->u2
.pszIcon
);
2997 if (ppsp
->dwFlags
& PSP_USETITLE
)
2999 if (IS_INTRESOURCE( ppsp
->pszTitle
))
3000 ppsp
->pszTitle
= load_string( ppsp
->hInstance
, ppsp
->pszTitle
);
3002 ppsp
->pszTitle
= heap_strdupAtoW( lpPropSheetPage
->pszTitle
);
3005 ppsp
->pszTitle
= NULL
;
3007 if (ppsp
->dwFlags
& PSP_HIDEHEADER
)
3008 ppsp
->dwFlags
&= ~(PSP_USEHEADERTITLE
| PSP_USEHEADERSUBTITLE
);
3010 if (ppsp
->dwFlags
& PSP_USEHEADERTITLE
)
3012 if (IS_INTRESOURCE( ppsp
->pszHeaderTitle
))
3013 ppsp
->pszHeaderTitle
= load_string( ppsp
->hInstance
, ppsp
->pszHeaderTitle
);
3015 ppsp
->pszHeaderTitle
= heap_strdupAtoW( lpPropSheetPage
->pszHeaderTitle
);
3018 ppsp
->pszHeaderTitle
= NULL
;
3020 if (ppsp
->dwFlags
& PSP_USEHEADERSUBTITLE
)
3022 if (IS_INTRESOURCE( ppsp
->pszHeaderSubTitle
))
3023 ppsp
->pszHeaderSubTitle
= load_string( ppsp
->hInstance
, ppsp
->pszHeaderSubTitle
);
3025 ppsp
->pszHeaderSubTitle
= heap_strdupAtoW( lpPropSheetPage
->pszHeaderSubTitle
);
3028 ppsp
->pszHeaderSubTitle
= NULL
;
3030 if ((ppsp
->dwFlags
& PSP_USECALLBACK
) && ppsp
->dwSize
> PROPSHEETPAGEA_V1_SIZE
&& ppsp
->pfnCallback
)
3031 ppsp
->pfnCallback(0, PSPCB_ADDREF
, ppsp
+ 1);
3033 return (HPROPSHEETPAGE
)ppsp
;
3036 /******************************************************************************
3037 * CreatePropertySheetPageW (COMCTL32.@)
3039 * See CreatePropertySheetA.
3041 HPROPSHEETPAGE WINAPI
CreatePropertySheetPageW(LPCPROPSHEETPAGEW lpPropSheetPage
)
3043 PROPSHEETPAGEW
*ppsp
;
3045 if (lpPropSheetPage
->dwSize
< PROPSHEETPAGEW_V1_SIZE
)
3048 /* original data is used for callback notifications */
3049 if ((lpPropSheetPage
->dwFlags
& PSP_USECALLBACK
) && lpPropSheetPage
->pfnCallback
)
3051 ppsp
= Alloc(2 * sizeof(*ppsp
));
3052 memcpy(ppsp
, lpPropSheetPage
, min(lpPropSheetPage
->dwSize
, sizeof(PROPSHEETPAGEW
)));
3053 memcpy(ppsp
+ 1, lpPropSheetPage
, min(lpPropSheetPage
->dwSize
, sizeof(PROPSHEETPAGEW
)));
3057 ppsp
= Alloc(sizeof(*ppsp
));
3058 memcpy(ppsp
, lpPropSheetPage
, min(lpPropSheetPage
->dwSize
, sizeof(PROPSHEETPAGEW
)));
3061 ppsp
->dwFlags
|= PSP_INTERNAL_UNICODE
;
3063 if ( !(ppsp
->dwFlags
& PSP_DLGINDIRECT
) )
3065 if (!IS_INTRESOURCE( ppsp
->u
.pszTemplate
))
3066 ppsp
->u
.pszTemplate
= heap_strdupW( lpPropSheetPage
->u
.pszTemplate
);
3069 if ( ppsp
->dwFlags
& PSP_USEICONID
)
3071 if (!IS_INTRESOURCE( ppsp
->u2
.pszIcon
))
3072 ppsp
->u2
.pszIcon
= heap_strdupW( lpPropSheetPage
->u2
.pszIcon
);
3075 if (ppsp
->dwFlags
& PSP_USETITLE
)
3076 ppsp
->pszTitle
= load_string( ppsp
->hInstance
, ppsp
->pszTitle
);
3078 ppsp
->pszTitle
= NULL
;
3080 if (ppsp
->dwFlags
& PSP_HIDEHEADER
)
3081 ppsp
->dwFlags
&= ~(PSP_USEHEADERTITLE
| PSP_USEHEADERSUBTITLE
);
3083 if (ppsp
->dwFlags
& PSP_USEHEADERTITLE
)
3084 ppsp
->pszHeaderTitle
= load_string( ppsp
->hInstance
, ppsp
->pszHeaderTitle
);
3086 ppsp
->pszHeaderTitle
= NULL
;
3088 if (ppsp
->dwFlags
& PSP_USEHEADERSUBTITLE
)
3089 ppsp
->pszHeaderSubTitle
= load_string( ppsp
->hInstance
, ppsp
->pszHeaderSubTitle
);
3091 ppsp
->pszHeaderSubTitle
= NULL
;
3093 if ((ppsp
->dwFlags
& PSP_USECALLBACK
) && ppsp
->dwSize
> PROPSHEETPAGEW_V1_SIZE
&& ppsp
->pfnCallback
)
3094 ppsp
->pfnCallback(0, PSPCB_ADDREF
, ppsp
+ 1);
3096 return (HPROPSHEETPAGE
)ppsp
;
3099 /******************************************************************************
3100 * DestroyPropertySheetPage (COMCTL32.@)
3102 * Destroys a property sheet page previously created with
3103 * CreatePropertySheetA() or CreatePropertySheetW() and frees the associated
3110 BOOL WINAPI
DestroyPropertySheetPage(HPROPSHEETPAGE hPropPage
)
3112 PROPSHEETPAGEW
*psp
= (PROPSHEETPAGEW
*)hPropPage
;
3117 if ((psp
->dwFlags
& PSP_USECALLBACK
) && psp
->pfnCallback
)
3118 psp
->pfnCallback(0, PSPCB_RELEASE
, psp
+ 1);
3120 if (!(psp
->dwFlags
& PSP_DLGINDIRECT
) && !IS_INTRESOURCE( psp
->u
.pszTemplate
))
3121 Free ((LPVOID
)psp
->u
.pszTemplate
);
3123 if ((psp
->dwFlags
& PSP_USEICONID
) && !IS_INTRESOURCE( psp
->u2
.pszIcon
))
3124 Free ((LPVOID
)psp
->u2
.pszIcon
);
3126 if ((psp
->dwFlags
& PSP_USETITLE
) && !IS_INTRESOURCE( psp
->pszTitle
))
3127 Free ((LPVOID
)psp
->pszTitle
);
3129 if ((psp
->dwFlags
& PSP_USEHEADERTITLE
) && !IS_INTRESOURCE( psp
->pszHeaderTitle
))
3130 Free ((LPVOID
)psp
->pszHeaderTitle
);
3132 if ((psp
->dwFlags
& PSP_USEHEADERSUBTITLE
) && !IS_INTRESOURCE( psp
->pszHeaderSubTitle
))
3133 Free ((LPVOID
)psp
->pszHeaderSubTitle
);
3140 /******************************************************************************
3141 * PROPSHEET_IsDialogMessage
3143 static BOOL
PROPSHEET_IsDialogMessage(HWND hwnd
, LPMSG lpMsg
)
3145 PropSheetInfo
* psInfo
= GetPropW(hwnd
, PropSheetInfoStr
);
3148 if (!psInfo
|| (hwnd
!= lpMsg
->hwnd
&& !IsChild(hwnd
, lpMsg
->hwnd
)))
3151 if (lpMsg
->message
== WM_KEYDOWN
&& (GetKeyState(VK_CONTROL
) & 0x8000))
3154 INT dlgCode
= SendMessageW(lpMsg
->hwnd
, WM_GETDLGCODE
, 0, (LPARAM
)lpMsg
);
3156 if (!(dlgCode
& DLGC_WANTMESSAGE
))
3158 switch (lpMsg
->wParam
)
3161 if (GetKeyState(VK_SHIFT
) & 0x8000)
3167 case VK_NEXT
: new_page
= 1; break;
3168 case VK_PRIOR
: new_page
= -1; break;
3174 if (PROPSHEET_CanSetCurSel(hwnd
) != FALSE
)
3176 new_page
+= psInfo
->active_page
;
3179 new_page
= psInfo
->nPages
- 1;
3180 else if (new_page
>= psInfo
->nPages
)
3183 PROPSHEET_SetCurSel(hwnd
, new_page
, 1, 0);
3190 return IsDialogMessageW(hwnd
, lpMsg
);
3193 /******************************************************************************
3194 * PROPSHEET_DoCommand
3196 static BOOL
PROPSHEET_DoCommand(HWND hwnd
, WORD wID
)
3202 case IDC_APPLY_BUTTON
:
3204 HWND hwndApplyBtn
= GetDlgItem(hwnd
, IDC_APPLY_BUTTON
);
3206 if (PROPSHEET_Apply(hwnd
, wID
== IDOK
? 1: 0) == FALSE
)
3211 PropSheetInfo
* psInfo
= GetPropW(hwnd
, PropSheetInfoStr
);
3213 /* don't overwrite ID_PSRESTARTWINDOWS or ID_PSREBOOTSYSTEM */
3214 if (psInfo
->result
== 0)
3215 psInfo
->result
= IDOK
;
3217 if (psInfo
->isModeless
)
3218 psInfo
->activeValid
= FALSE
;
3220 psInfo
->ended
= TRUE
;
3223 EnableWindow(hwndApplyBtn
, FALSE
);
3228 case IDC_BACK_BUTTON
:
3229 PROPSHEET_Back(hwnd
);
3232 case IDC_NEXT_BUTTON
:
3233 PROPSHEET_Next(hwnd
);
3236 case IDC_FINISH_BUTTON
:
3237 PROPSHEET_Finish(hwnd
);
3241 PROPSHEET_Cancel(hwnd
, 0);
3245 PROPSHEET_Help(hwnd
);
3255 /******************************************************************************
3258 static LRESULT
PROPSHEET_Paint(HWND hwnd
, HDC hdcParam
)
3260 PropSheetInfo
* psInfo
= GetPropW(hwnd
, PropSheetInfoStr
);
3265 HPALETTE hOldPal
= 0;
3269 LPCPROPSHEETPAGEW ppshpage
;
3270 WCHAR szBuffer
[256];
3273 hdc
= hdcParam
? hdcParam
: BeginPaint(hwnd
, &ps
);
3276 hdcSrc
= CreateCompatibleDC(0);
3278 if (psInfo
->ppshheader
.dwFlags
& PSH_USEHPLWATERMARK
)
3279 hOldPal
= SelectPalette(hdc
, psInfo
->ppshheader
.hplWatermark
, FALSE
);
3281 if (psInfo
->active_page
< 0)
3284 ppshpage
= (LPCPROPSHEETPAGEW
)psInfo
->proppage
[psInfo
->active_page
].hpage
;
3286 if ( (ppshpage
&& !(ppshpage
->dwFlags
& PSP_HIDEHEADER
)) &&
3287 (psInfo
->ppshheader
.dwFlags
& (PSH_WIZARD97_OLD
| PSH_WIZARD97_NEW
)) &&
3288 (psInfo
->ppshheader
.dwFlags
& PSH_HEADER
) )
3290 HWND hwndLineHeader
= GetDlgItem(hwnd
, IDC_SUNKEN_LINEHEADER
);
3292 COLORREF clrOld
= 0;
3295 GetClientRect(hwndLineHeader
, &r
);
3296 MapWindowPoints(hwndLineHeader
, hwnd
, (LPPOINT
) &r
, 2);
3297 SetRect(&rzone
, 0, 0, r
.right
+ 1, r
.top
- 1);
3299 hOldFont
= SelectObject(hdc
, psInfo
->hFontBold
);
3301 if (psInfo
->ppshheader
.dwFlags
& PSH_USEHBMHEADER
)
3303 hbmp
= SelectObject(hdcSrc
, psInfo
->ppshheader
.u5
.hbmHeader
);
3305 GetObjectW(psInfo
->ppshheader
.u5
.hbmHeader
, sizeof(BITMAP
), &bm
);
3306 if (psInfo
->ppshheader
.dwFlags
& PSH_WIZARD97_OLD
)
3308 /* Fill the unoccupied part of the header with color of the
3309 * left-top pixel, but do it only when needed.
3311 if (bm
.bmWidth
< r
.right
|| bm
.bmHeight
< r
.bottom
)
3313 hbr
= CreateSolidBrush(GetPixel(hdcSrc
, 0, 0));
3315 if (bm
.bmWidth
< r
.right
)
3317 r
.left
= bm
.bmWidth
;
3318 FillRect(hdc
, &r
, hbr
);
3320 if (bm
.bmHeight
< r
.bottom
)
3323 r
.top
= bm
.bmHeight
;
3324 FillRect(hdc
, &r
, hbr
);
3329 /* Draw the header itself. */
3330 BitBlt(hdc
, 0, 0, bm
.bmWidth
, min(bm
.bmHeight
, rzone
.bottom
),
3331 hdcSrc
, 0, 0, SRCCOPY
);
3336 hbr
= GetSysColorBrush(COLOR_WINDOW
);
3337 FillRect(hdc
, &rzone
, hbr
);
3339 /* Draw the header bitmap. It's always centered like a
3340 * common 49 x 49 bitmap. */
3341 margin
= (rzone
.bottom
- 49) / 2;
3342 BitBlt(hdc
, rzone
.right
- 49 - margin
, margin
,
3343 min(bm
.bmWidth
, 49), min(bm
.bmHeight
, 49),
3344 hdcSrc
, 0, 0, SRCCOPY
);
3346 /* NOTE: Native COMCTL32 draws a white stripe over the bitmap
3347 * if its height is smaller than 49 pixels. Because the reason
3348 * for this bug is unknown the current code doesn't try to
3352 SelectObject(hdcSrc
, hbmp
);
3355 clrOld
= SetTextColor (hdc
, 0x00000000);
3356 oldBkMode
= SetBkMode (hdc
, TRANSPARENT
);
3358 if (ppshpage
->dwFlags
& PSP_USEHEADERTITLE
) {
3359 SetRect(&r
, 20, 10, 0, 0);
3360 if (!IS_INTRESOURCE(ppshpage
->pszHeaderTitle
))
3361 DrawTextW(hdc
, ppshpage
->pszHeaderTitle
, -1, &r
, DT_LEFT
| DT_SINGLELINE
| DT_NOCLIP
);
3364 nLength
= LoadStringW(ppshpage
->hInstance
, (UINT_PTR
)ppshpage
->pszHeaderTitle
,
3368 DrawTextW(hdc
, szBuffer
, nLength
, &r
, DT_LEFT
| DT_SINGLELINE
| DT_NOCLIP
);
3373 if (ppshpage
->dwFlags
& PSP_USEHEADERSUBTITLE
) {
3374 SelectObject(hdc
, psInfo
->hFont
);
3375 SetRect(&r
, 40, 25, rzone
.right
- 69, rzone
.bottom
);
3376 if (!IS_INTRESOURCE(ppshpage
->pszHeaderTitle
))
3377 DrawTextW(hdc
, ppshpage
->pszHeaderSubTitle
, -1, &r
, DT_LEFT
| DT_WORDBREAK
);
3380 nLength
= LoadStringW(ppshpage
->hInstance
, (UINT_PTR
)ppshpage
->pszHeaderSubTitle
,
3384 DrawTextW(hdc
, szBuffer
, nLength
, &r
, DT_LEFT
| DT_WORDBREAK
);
3389 offsety
= rzone
.bottom
+ 2;
3391 SetTextColor(hdc
, clrOld
);
3392 SetBkMode(hdc
, oldBkMode
);
3393 SelectObject(hdc
, hOldFont
);
3396 if ( (ppshpage
&& (ppshpage
->dwFlags
& PSP_HIDEHEADER
)) &&
3397 (psInfo
->ppshheader
.dwFlags
& (PSH_WIZARD97_OLD
| PSH_WIZARD97_NEW
)) &&
3398 (psInfo
->ppshheader
.dwFlags
& PSH_WATERMARK
) )
3400 HWND hwndLine
= GetDlgItem(hwnd
, IDC_SUNKEN_LINE
);
3402 GetClientRect(hwndLine
, &r
);
3403 MapWindowPoints(hwndLine
, hwnd
, (LPPOINT
) &r
, 2);
3404 SetRect(&rzone
, 0, 0, r
.right
, r
.top
- 1);
3406 hbr
= GetSysColorBrush(COLOR_WINDOW
);
3407 FillRect(hdc
, &rzone
, hbr
);
3409 GetObjectW(psInfo
->ppshheader
.u4
.hbmWatermark
, sizeof(BITMAP
), &bm
);
3410 hbmp
= SelectObject(hdcSrc
, psInfo
->ppshheader
.u4
.hbmWatermark
);
3412 /* The watermark is truncated to a width of 164 pixels */
3413 r
.right
= min(r
.right
, 164);
3414 BitBlt(hdc
, 0, offsety
, min(bm
.bmWidth
, r
.right
),
3415 min(bm
.bmHeight
, r
.bottom
), hdcSrc
, 0, 0, SRCCOPY
);
3417 /* If the bitmap is not big enough, fill the remaining area
3418 with the color of pixel (0,0) of bitmap - see MSDN */
3419 if (r
.top
> bm
.bmHeight
) {
3420 r
.bottom
= r
.top
- 1;
3421 r
.top
= bm
.bmHeight
;
3423 r
.right
= bm
.bmWidth
;
3424 hbr
= CreateSolidBrush(GetPixel(hdcSrc
, 0, 0));
3425 FillRect(hdc
, &r
, hbr
);
3429 SelectObject(hdcSrc
, hbmp
);
3432 if (psInfo
->ppshheader
.dwFlags
& PSH_USEHPLWATERMARK
)
3433 SelectPalette(hdc
, hOldPal
, FALSE
);
3437 if (!hdcParam
) EndPaint(hwnd
, &ps
);
3442 /******************************************************************************
3443 * PROPSHEET_DialogProc
3445 static INT_PTR CALLBACK
3446 PROPSHEET_DialogProc(HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
3448 TRACE("hwnd=%p msg=0x%04x wparam=%lx lparam=%lx\n",
3449 hwnd
, uMsg
, wParam
, lParam
);
3455 PropSheetInfo
* psInfo
= (PropSheetInfo
*) lParam
;
3456 WCHAR
* strCaption
= Alloc(MAX_CAPTION_LENGTH
*sizeof(WCHAR
));
3457 HWND hwndTabCtrl
= GetDlgItem(hwnd
, IDC_TABCONTROL
);
3461 /* Using PropSheetInfoStr to store extra data doesn't match the native
3462 * common control: native uses TCM_[GS]ETITEM
3464 SetPropW(hwnd
, PropSheetInfoStr
, psInfo
);
3467 * psInfo->hwnd is not being used by WINE code - it exists
3468 * for compatibility with "real" Windoze. The same about
3469 * SetWindowLongPtr - WINE is only using the PropSheetInfoStr
3472 psInfo
->hwnd
= hwnd
;
3473 SetWindowLongPtrW(hwnd
, DWLP_USER
, (DWORD_PTR
)psInfo
);
3475 if (psInfo
->ppshheader
.dwFlags
& INTRNL_ANY_WIZARD
)
3477 /* set up the Next and Back buttons by default */
3478 PROPSHEET_SetWizButtons(hwnd
, PSWIZB_BACK
|PSWIZB_NEXT
);
3482 SystemParametersInfoW (SPI_GETICONTITLELOGFONT
, 0, &logFont
, 0);
3483 psInfo
->hFont
= CreateFontIndirectW (&logFont
);
3484 logFont
.lfWeight
= FW_BOLD
;
3485 psInfo
->hFontBold
= CreateFontIndirectW (&logFont
);
3488 * Small icon in the title bar.
3490 if ((psInfo
->ppshheader
.dwFlags
& PSH_USEICONID
) ||
3491 (psInfo
->ppshheader
.dwFlags
& PSH_USEHICON
))
3494 int icon_cx
= GetSystemMetrics(SM_CXSMICON
);
3495 int icon_cy
= GetSystemMetrics(SM_CYSMICON
);
3497 if (psInfo
->ppshheader
.dwFlags
& PSH_USEICONID
)
3498 hIcon
= LoadImageW(psInfo
->ppshheader
.hInstance
,
3499 psInfo
->ppshheader
.u
.pszIcon
,
3504 hIcon
= psInfo
->ppshheader
.u
.hIcon
;
3506 SendMessageW(hwnd
, WM_SETICON
, 0, (LPARAM
)hIcon
);
3509 if (psInfo
->ppshheader
.dwFlags
& PSH_USEHICON
)
3510 SendMessageW(hwnd
, WM_SETICON
, 0, (LPARAM
)psInfo
->ppshheader
.u
.hIcon
);
3512 psInfo
->strPropertiesFor
= strCaption
;
3514 GetWindowTextW(hwnd
, psInfo
->strPropertiesFor
, MAX_CAPTION_LENGTH
);
3516 PROPSHEET_CreateTabControl(hwnd
, psInfo
);
3518 PROPSHEET_LoadWizardBitmaps(psInfo
);
3520 if (psInfo
->ppshheader
.dwFlags
& INTRNL_ANY_WIZARD
)
3522 ShowWindow(hwndTabCtrl
, SW_HIDE
);
3523 PROPSHEET_AdjustSizeWizard(hwnd
, psInfo
);
3524 PROPSHEET_AdjustButtonsWizard(hwnd
, psInfo
);
3525 SetFocus(GetDlgItem(hwnd
, IDC_NEXT_BUTTON
));
3529 if (PROPSHEET_SizeMismatch(hwnd
, psInfo
))
3531 PROPSHEET_AdjustSize(hwnd
, psInfo
);
3532 PROPSHEET_AdjustButtons(hwnd
, psInfo
);
3534 SetFocus(GetDlgItem(hwnd
, IDOK
));
3537 if (IS_INTRESOURCE(psInfo
->ppshheader
.pszCaption
) &&
3538 psInfo
->ppshheader
.hInstance
)
3542 if (LoadStringW(psInfo
->ppshheader
.hInstance
,
3543 (UINT_PTR
)psInfo
->ppshheader
.pszCaption
, szText
, 255))
3544 PROPSHEET_SetTitleW(hwnd
, psInfo
->ppshheader
.dwFlags
, szText
);
3548 PROPSHEET_SetTitleW(hwnd
, psInfo
->ppshheader
.dwFlags
,
3549 psInfo
->ppshheader
.pszCaption
);
3553 if (psInfo
->useCallback
)
3554 (*(psInfo
->ppshheader
.pfnCallback
))(hwnd
, PSCB_INITIALIZED
, 0);
3556 idx
= psInfo
->active_page
;
3557 psInfo
->active_page
= -1;
3559 PROPSHEET_SetCurSel(hwnd
, idx
, 1, psInfo
->proppage
[idx
].hpage
);
3561 /* doing TCM_SETCURSEL seems to be needed even in case of PSH_WIZARD,
3562 * as some programs call TCM_GETCURSEL to get the current selection
3563 * from which to switch to the next page */
3564 SendMessageW(hwndTabCtrl
, TCM_SETCURSEL
, psInfo
->active_page
, 0);
3566 PROPSHEET_UnChanged(hwnd
, NULL
);
3568 /* wizards set their focus during init */
3569 if (psInfo
->ppshheader
.dwFlags
& INTRNL_ANY_WIZARD
)
3575 case WM_PRINTCLIENT
:
3577 PROPSHEET_Paint(hwnd
, (HDC
)wParam
);
3581 PROPSHEET_CleanUp(hwnd
);
3585 PROPSHEET_Cancel(hwnd
, 1);
3586 return FALSE
; /* let DefDlgProc post us WM_COMMAND/IDCANCEL */
3589 if (!PROPSHEET_DoCommand(hwnd
, LOWORD(wParam
)))
3591 PropSheetInfo
* psInfo
= GetPropW(hwnd
, PropSheetInfoStr
);
3596 /* No default handler, forward notification to active page */
3597 if (psInfo
->activeValid
&& psInfo
->active_page
!= -1)
3599 HWND hwndPage
= psInfo
->proppage
[psInfo
->active_page
].hwndPage
;
3600 SendMessageW(hwndPage
, WM_COMMAND
, wParam
, lParam
);
3607 NMHDR
* pnmh
= (LPNMHDR
) lParam
;
3609 if (pnmh
->code
== TCN_SELCHANGE
)
3611 int index
= SendMessageW(pnmh
->hwndFrom
, TCM_GETCURSEL
, 0, 0);
3612 PROPSHEET_SetCurSel(hwnd
, index
, 1, 0);
3615 if(pnmh
->code
== TCN_SELCHANGING
)
3617 BOOL bRet
= PROPSHEET_CanSetCurSel(hwnd
);
3618 SetWindowLongPtrW(hwnd
, DWLP_MSGRESULT
, !bRet
);
3625 case WM_SYSCOLORCHANGE
:
3626 COMCTL32_RefreshSysColors();
3629 case PSM_GETCURRENTPAGEHWND
:
3631 PropSheetInfo
* psInfo
= GetPropW(hwnd
, PropSheetInfoStr
);
3637 if (psInfo
->activeValid
&& psInfo
->active_page
!= -1)
3638 hwndPage
= psInfo
->proppage
[psInfo
->active_page
].hwndPage
;
3640 SetWindowLongPtrW(hwnd
, DWLP_MSGRESULT
, (DWORD_PTR
)hwndPage
);
3646 PROPSHEET_Changed(hwnd
, (HWND
)wParam
);
3650 PROPSHEET_UnChanged(hwnd
, (HWND
)wParam
);
3653 case PSM_GETTABCONTROL
:
3655 HWND hwndTabCtrl
= GetDlgItem(hwnd
, IDC_TABCONTROL
);
3657 SetWindowLongPtrW(hwnd
, DWLP_MSGRESULT
, (DWORD_PTR
)hwndTabCtrl
);
3666 msgResult
= PROPSHEET_CanSetCurSel(hwnd
);
3667 if(msgResult
!= FALSE
)
3669 msgResult
= PROPSHEET_SetCurSel(hwnd
,
3672 (HPROPSHEETPAGE
)lParam
);
3675 SetWindowLongPtrW(hwnd
, DWLP_MSGRESULT
, msgResult
);
3680 case PSM_CANCELTOCLOSE
:
3682 WCHAR buf
[MAX_BUTTONTEXT_LENGTH
];
3683 HWND hwndOK
= GetDlgItem(hwnd
, IDOK
);
3684 HWND hwndCancel
= GetDlgItem(hwnd
, IDCANCEL
);
3686 EnableWindow(hwndCancel
, FALSE
);
3687 if (LoadStringW(COMCTL32_hModule
, IDS_CLOSE
, buf
, sizeof(buf
)/sizeof(buf
[0])))
3688 SetWindowTextW(hwndOK
, buf
);
3693 case PSM_RESTARTWINDOWS
:
3695 PropSheetInfo
* psInfo
= GetPropW(hwnd
, PropSheetInfoStr
);
3700 /* reboot system takes precedence over restart windows */
3701 if (psInfo
->result
!= ID_PSREBOOTSYSTEM
)
3702 psInfo
->result
= ID_PSRESTARTWINDOWS
;
3707 case PSM_REBOOTSYSTEM
:
3709 PropSheetInfo
* psInfo
= GetPropW(hwnd
, PropSheetInfoStr
);
3714 psInfo
->result
= ID_PSREBOOTSYSTEM
;
3720 PROPSHEET_SetTitleA(hwnd
, (DWORD
) wParam
, (LPCSTR
) lParam
);
3724 PROPSHEET_SetTitleW(hwnd
, (DWORD
) wParam
, (LPCWSTR
) lParam
);
3729 BOOL msgResult
= PROPSHEET_Apply(hwnd
, 0);
3731 SetWindowLongPtrW(hwnd
, DWLP_MSGRESULT
, msgResult
);
3736 case PSM_QUERYSIBLINGS
:
3738 LRESULT msgResult
= PROPSHEET_QuerySiblings(hwnd
, wParam
, lParam
);
3740 SetWindowLongPtrW(hwnd
, DWLP_MSGRESULT
, msgResult
);
3748 * Note: MSVC++ 6.0 documentation says that PSM_ADDPAGE does not have
3749 * a return value. This is not true. PSM_ADDPAGE returns TRUE
3750 * on success or FALSE otherwise, as specified on MSDN Online.
3751 * Also see the MFC code for
3752 * CPropertySheet::AddPage(CPropertyPage* pPage).
3755 BOOL msgResult
= PROPSHEET_AddPage(hwnd
, (HPROPSHEETPAGE
)lParam
);
3757 SetWindowLongPtrW(hwnd
, DWLP_MSGRESULT
, msgResult
);
3762 case PSM_REMOVEPAGE
:
3763 PROPSHEET_RemovePage(hwnd
, (int)wParam
, (HPROPSHEETPAGE
)lParam
);
3766 case PSM_ISDIALOGMESSAGE
:
3768 BOOL msgResult
= PROPSHEET_IsDialogMessage(hwnd
, (LPMSG
)lParam
);
3769 SetWindowLongPtrW(hwnd
, DWLP_MSGRESULT
, msgResult
);
3773 case PSM_PRESSBUTTON
:
3774 PROPSHEET_PressButton(hwnd
, (int)wParam
);
3777 case PSM_SETFINISHTEXTA
:
3778 PROPSHEET_SetFinishTextA(hwnd
, (LPCSTR
) lParam
);
3781 case PSM_SETWIZBUTTONS
:
3782 PROPSHEET_SetWizButtons(hwnd
, (DWORD
)lParam
);
3785 case PSM_SETCURSELID
:
3786 PROPSHEET_SetCurSelId(hwnd
, (int)lParam
);
3789 case PSM_SETFINISHTEXTW
:
3790 PROPSHEET_SetFinishTextW(hwnd
, (LPCWSTR
) lParam
);
3793 case PSM_INSERTPAGE
:
3795 BOOL msgResult
= PROPSHEET_InsertPage(hwnd
, (HPROPSHEETPAGE
)wParam
, (HPROPSHEETPAGE
)lParam
);
3796 SetWindowLongPtrW(hwnd
, DWLP_MSGRESULT
, msgResult
);
3800 case PSM_SETHEADERTITLEW
:
3801 PROPSHEET_SetHeaderTitleW(hwnd
, wParam
, (LPCWSTR
)lParam
);
3804 case PSM_SETHEADERTITLEA
:
3805 PROPSHEET_SetHeaderTitleA(hwnd
, wParam
, (LPCSTR
)lParam
);
3808 case PSM_SETHEADERSUBTITLEW
:
3809 PROPSHEET_SetHeaderSubTitleW(hwnd
, wParam
, (LPCWSTR
)lParam
);
3812 case PSM_SETHEADERSUBTITLEA
:
3813 PROPSHEET_SetHeaderSubTitleA(hwnd
, wParam
, (LPCSTR
)lParam
);
3816 case PSM_HWNDTOINDEX
:
3818 LRESULT msgResult
= PROPSHEET_HwndToIndex(hwnd
, (HWND
)wParam
);
3819 SetWindowLongPtrW(hwnd
, DWLP_MSGRESULT
, msgResult
);
3823 case PSM_INDEXTOHWND
:
3825 LRESULT msgResult
= PROPSHEET_IndexToHwnd(hwnd
, (int)wParam
);
3826 SetWindowLongPtrW(hwnd
, DWLP_MSGRESULT
, msgResult
);
3830 case PSM_PAGETOINDEX
:
3832 LRESULT msgResult
= PROPSHEET_PageToIndex(hwnd
, (HPROPSHEETPAGE
)wParam
);
3833 SetWindowLongPtrW(hwnd
, DWLP_MSGRESULT
, msgResult
);
3837 case PSM_INDEXTOPAGE
:
3839 LRESULT msgResult
= PROPSHEET_IndexToPage(hwnd
, (int)wParam
);
3840 SetWindowLongPtrW(hwnd
, DWLP_MSGRESULT
, msgResult
);
3846 LRESULT msgResult
= PROPSHEET_IdToIndex(hwnd
, (int)lParam
);
3847 SetWindowLongPtrW(hwnd
, DWLP_MSGRESULT
, msgResult
);
3853 LRESULT msgResult
= PROPSHEET_IndexToId(hwnd
, (int)wParam
);
3854 SetWindowLongPtrW(hwnd
, DWLP_MSGRESULT
, msgResult
);
3860 LRESULT msgResult
= PROPSHEET_GetResult(hwnd
);
3861 SetWindowLongPtrW(hwnd
, DWLP_MSGRESULT
, msgResult
);
3865 case PSM_RECALCPAGESIZES
:
3867 LRESULT msgResult
= PROPSHEET_RecalcPageSizes(hwnd
);
3868 SetWindowLongPtrW(hwnd
, DWLP_MSGRESULT
, msgResult
);