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
36 * o PSM_RECALCPAGESIZES
37 * o PSM_SETHEADERSUBTITLE
38 * o PSM_SETHEADERTITLE
43 * o PSN_QUERYINITIALFOCUS
44 * o PSN_TRANSLATEACCELERATOR
47 * o PSH_STRETCHWATERMARK
51 * o PSP_USEFUSIONCONTEXT
58 #define NONAMELESSUNION
59 #define NONAMELESSSTRUCT
70 #include "wine/debug.h"
71 #include "wine/unicode.h"
73 /******************************************************************************
97 } MyDLGITEMTEMPLATEEX
;
100 typedef struct tagPropPageInfo
102 HPROPSHEETPAGE hpage
; /* to keep track of pages not passed to PropertySheet */
111 typedef struct tagPropSheetInfo
114 PROPSHEETHEADERW ppshheader
;
116 LPWSTR strPropertiesFor
;
126 PropPageInfo
* proppage
;
131 HIMAGELIST hImageList
;
142 /******************************************************************************
143 * Defines and global variables
146 static const WCHAR PropSheetInfoStr
[] =
147 {'P','r','o','p','e','r','t','y','S','h','e','e','t','I','n','f','o',0 };
149 #define PSP_INTERNAL_UNICODE 0x80000000
151 #define MAX_CAPTION_LENGTH 255
152 #define MAX_TABTEXT_LENGTH 255
153 #define MAX_BUTTONTEXT_LENGTH 64
155 #define INTRNL_ANY_WIZARD (PSH_WIZARD | PSH_WIZARD97_OLD | PSH_WIZARD97_NEW | PSH_WIZARD_LITE)
157 /* Wizard metrics specified in DLUs */
158 #define WIZARD_PADDING 7
159 #define WIZARD_HEADER_HEIGHT 36
161 /******************************************************************************
164 static PADDING_INFO
PROPSHEET_GetPaddingInfo(HWND hwndDlg
);
165 static void PROPSHEET_SetTitleW(HWND hwndDlg
, DWORD dwStyle
, LPCWSTR lpszText
);
166 static BOOL
PROPSHEET_CanSetCurSel(HWND hwndDlg
);
167 static BOOL
PROPSHEET_SetCurSel(HWND hwndDlg
,
170 HPROPSHEETPAGE hpage
);
171 static int PROPSHEET_GetPageIndex(HPROPSHEETPAGE hpage
, const PropSheetInfo
* psInfo
);
172 static PADDING_INFO
PROPSHEET_GetPaddingInfoWizard(HWND hwndDlg
, const PropSheetInfo
* psInfo
);
173 static BOOL
PROPSHEET_DoCommand(HWND hwnd
, WORD wID
);
175 static INT_PTR CALLBACK
176 PROPSHEET_DialogProc(HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
);
178 WINE_DEFAULT_DEBUG_CHANNEL(propsheet
);
180 #define add_flag(a) if (dwFlags & a) {strcat(string, #a );strcat(string," ");}
181 /******************************************************************************
182 * PROPSHEET_UnImplementedFlags
184 * Document use of flags we don't implement yet.
186 static VOID
PROPSHEET_UnImplementedFlags(DWORD dwFlags
)
193 * unhandled header flags:
194 * PSH_RTLREADING 0x00000800
195 * PSH_STRETCHWATERMARK 0x00040000
196 * PSH_USEPAGELANG 0x00200000
199 add_flag(PSH_RTLREADING
);
200 add_flag(PSH_STRETCHWATERMARK
);
201 add_flag(PSH_USEPAGELANG
);
202 if (string
[0] != '\0')
203 FIXME("%s\n", string
);
207 /******************************************************************************
208 * PROPSHEET_GetPageRect
210 * Retrieve rect from tab control and map into the dialog for SetWindowPos
212 static void PROPSHEET_GetPageRect(const PropSheetInfo
* psInfo
, HWND hwndDlg
,
213 RECT
*rc
, LPCPROPSHEETPAGEW ppshpage
)
215 if (psInfo
->ppshheader
.dwFlags
& INTRNL_ANY_WIZARD
) {
219 if (((psInfo
->ppshheader
.dwFlags
& (PSH_WIZARD97_NEW
| PSH_WIZARD97_OLD
)) &&
220 (psInfo
->ppshheader
.dwFlags
& PSH_HEADER
) &&
221 !(ppshpage
->dwFlags
& PSP_HIDEHEADER
)) ||
222 (psInfo
->ppshheader
.dwFlags
& PSH_WIZARD
))
224 rc
->left
= rc
->top
= WIZARD_PADDING
;
228 rc
->left
= rc
->top
= 0;
230 rc
->right
= psInfo
->width
- rc
->left
;
231 rc
->bottom
= psInfo
->height
- rc
->top
;
232 MapDialogRect(hwndDlg
, rc
);
234 if ((psInfo
->ppshheader
.dwFlags
& (PSH_WIZARD97_NEW
| PSH_WIZARD97_OLD
)) &&
235 (psInfo
->ppshheader
.dwFlags
& PSH_HEADER
) &&
236 !(ppshpage
->dwFlags
& PSP_HIDEHEADER
))
238 hwndChild
= GetDlgItem(hwndDlg
, IDC_SUNKEN_LINEHEADER
);
239 GetClientRect(hwndChild
, &r
);
240 MapWindowPoints(hwndChild
, hwndDlg
, (LPPOINT
) &r
, 2);
241 rc
->top
+= r
.bottom
+ 1;
244 HWND hwndTabCtrl
= GetDlgItem(hwndDlg
, IDC_TABCONTROL
);
245 GetClientRect(hwndTabCtrl
, rc
);
246 SendMessageW(hwndTabCtrl
, TCM_ADJUSTRECT
, FALSE
, (LPARAM
)rc
);
247 MapWindowPoints(hwndTabCtrl
, hwndDlg
, (LPPOINT
)rc
, 2);
251 /******************************************************************************
252 * PROPSHEET_FindPageByResId
254 * Find page index corresponding to page resource id.
256 static INT
PROPSHEET_FindPageByResId(const PropSheetInfo
* psInfo
, LRESULT resId
)
260 for (i
= 0; i
< psInfo
->nPages
; i
++)
262 LPCPROPSHEETPAGEA lppsp
= (LPCPROPSHEETPAGEA
)psInfo
->proppage
[i
].hpage
;
264 /* Fixme: if resource ID is a string shall we use strcmp ??? */
265 if (lppsp
->u
.pszTemplate
== (LPVOID
)resId
)
272 /******************************************************************************
275 * Convert ASCII to Unicode since all data is saved as Unicode.
277 static void PROPSHEET_AtoW(LPCWSTR
*tostr
, LPCSTR frstr
)
282 TRACE("<%s>\n", frstr
);
283 len
= MultiByteToWideChar(CP_ACP
, 0, frstr
, -1, 0, 0);
284 to
= Alloc(len
* sizeof(WCHAR
));
285 MultiByteToWideChar(CP_ACP
, 0, frstr
, -1, to
, len
);
289 /******************************************************************************
290 * PROPSHEET_CollectSheetInfoCommon
292 * Common code for PROPSHEET_CollectSheetInfoA/W
294 static void PROPSHEET_CollectSheetInfoCommon(PropSheetInfo
* psInfo
, DWORD dwFlags
)
296 PROPSHEET_UnImplementedFlags(dwFlags
);
298 psInfo
->hasHelp
= dwFlags
& PSH_HASHELP
;
299 psInfo
->hasApply
= !(dwFlags
& PSH_NOAPPLYNOW
);
300 psInfo
->hasFinish
= dwFlags
& PSH_WIZARDHASFINISH
;
301 psInfo
->isModeless
= dwFlags
& PSH_MODELESS
;
302 psInfo
->usePropPage
= dwFlags
& PSH_PROPSHEETPAGE
;
303 if (psInfo
->active_page
< 0 || psInfo
->active_page
>= psInfo
->nPages
)
304 psInfo
->active_page
= 0;
307 psInfo
->hImageList
= 0;
308 psInfo
->activeValid
= FALSE
;
311 /******************************************************************************
312 * PROPSHEET_CollectSheetInfoA
314 * Collect relevant data.
316 static void PROPSHEET_CollectSheetInfoA(LPCPROPSHEETHEADERA lppsh
,
317 PropSheetInfo
* psInfo
)
319 DWORD dwSize
= min(lppsh
->dwSize
,sizeof(PROPSHEETHEADERA
));
320 DWORD dwFlags
= lppsh
->dwFlags
;
322 psInfo
->useCallback
= (dwFlags
& PSH_USECALLBACK
)&& (lppsh
->pfnCallback
);
324 memcpy(&psInfo
->ppshheader
,lppsh
,dwSize
);
325 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",
326 lppsh
->dwSize
, lppsh
->dwFlags
, lppsh
->hwndParent
, lppsh
->hInstance
,
327 debugstr_a(lppsh
->pszCaption
), lppsh
->nPages
, lppsh
->pfnCallback
);
329 if (lppsh
->dwFlags
& INTRNL_ANY_WIZARD
)
330 psInfo
->ppshheader
.pszCaption
= NULL
;
333 if (HIWORD(lppsh
->pszCaption
))
335 int len
= MultiByteToWideChar(CP_ACP
, 0, lppsh
->pszCaption
, -1, NULL
, 0);
336 WCHAR
*caption
= Alloc( len
*sizeof (WCHAR
) );
338 MultiByteToWideChar(CP_ACP
, 0, lppsh
->pszCaption
, -1, caption
, len
);
339 psInfo
->ppshheader
.pszCaption
= caption
;
342 psInfo
->nPages
= lppsh
->nPages
;
344 if (dwFlags
& PSH_USEPSTARTPAGE
)
346 TRACE("PSH_USEPSTARTPAGE is on\n");
347 psInfo
->active_page
= 0;
350 psInfo
->active_page
= lppsh
->u2
.nStartPage
;
352 PROPSHEET_CollectSheetInfoCommon(psInfo
, dwFlags
);
355 /******************************************************************************
356 * PROPSHEET_CollectSheetInfoW
358 * Collect relevant data.
360 static void PROPSHEET_CollectSheetInfoW(LPCPROPSHEETHEADERW lppsh
,
361 PropSheetInfo
* psInfo
)
363 DWORD dwSize
= min(lppsh
->dwSize
,sizeof(PROPSHEETHEADERW
));
364 DWORD dwFlags
= lppsh
->dwFlags
;
366 psInfo
->useCallback
= (dwFlags
& PSH_USECALLBACK
) && (lppsh
->pfnCallback
);
368 memcpy(&psInfo
->ppshheader
,lppsh
,dwSize
);
369 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",
370 lppsh
->dwSize
, lppsh
->dwFlags
, lppsh
->hwndParent
, lppsh
->hInstance
, debugstr_w(lppsh
->pszCaption
), lppsh
->nPages
, lppsh
->pfnCallback
);
372 if (lppsh
->dwFlags
& INTRNL_ANY_WIZARD
)
373 psInfo
->ppshheader
.pszCaption
= NULL
;
376 if (HIWORD(lppsh
->pszCaption
))
378 int len
= strlenW(lppsh
->pszCaption
);
379 WCHAR
*caption
= Alloc( (len
+1)*sizeof(WCHAR
) );
381 psInfo
->ppshheader
.pszCaption
= strcpyW( caption
, lppsh
->pszCaption
);
384 psInfo
->nPages
= lppsh
->nPages
;
386 if (dwFlags
& PSH_USEPSTARTPAGE
)
388 TRACE("PSH_USEPSTARTPAGE is on\n");
389 psInfo
->active_page
= 0;
392 psInfo
->active_page
= lppsh
->u2
.nStartPage
;
394 PROPSHEET_CollectSheetInfoCommon(psInfo
, dwFlags
);
397 /******************************************************************************
398 * PROPSHEET_CollectPageInfo
400 * Collect property sheet data.
401 * With code taken from DIALOG_ParseTemplate32.
403 static BOOL
PROPSHEET_CollectPageInfo(LPCPROPSHEETPAGEW lppsp
,
404 PropSheetInfo
* psInfo
,
405 int index
, BOOL resize
)
407 const DLGTEMPLATE
* pTemplate
;
416 psInfo
->proppage
[index
].hpage
= (HPROPSHEETPAGE
)lppsp
;
417 psInfo
->proppage
[index
].hwndPage
= 0;
418 psInfo
->proppage
[index
].isDirty
= FALSE
;
421 * Process property page flags.
423 dwFlags
= lppsp
->dwFlags
;
424 psInfo
->proppage
[index
].useCallback
= (dwFlags
& PSP_USECALLBACK
) && (lppsp
->pfnCallback
);
425 psInfo
->proppage
[index
].hasHelp
= dwFlags
& PSP_HASHELP
;
426 psInfo
->proppage
[index
].hasIcon
= dwFlags
& (PSP_USEHICON
| PSP_USEICONID
);
428 /* as soon as we have a page with the help flag, set the sheet flag on */
429 if (psInfo
->proppage
[index
].hasHelp
)
430 psInfo
->hasHelp
= TRUE
;
433 * Process page template.
435 if (dwFlags
& PSP_DLGINDIRECT
)
436 pTemplate
= lppsp
->u
.pResource
;
437 else if(dwFlags
& PSP_INTERNAL_UNICODE
)
439 HRSRC hResource
= FindResourceW(lppsp
->hInstance
,
440 lppsp
->u
.pszTemplate
,
442 HGLOBAL hTemplate
= LoadResource(lppsp
->hInstance
,
444 pTemplate
= LockResource(hTemplate
);
448 HRSRC hResource
= FindResourceA(lppsp
->hInstance
,
449 (LPCSTR
)lppsp
->u
.pszTemplate
,
451 HGLOBAL hTemplate
= LoadResource(lppsp
->hInstance
,
453 pTemplate
= LockResource(hTemplate
);
457 * Extract the size of the page and the caption.
462 p
= (const WORD
*)pTemplate
;
464 if (((const MyDLGTEMPLATEEX
*)pTemplate
)->signature
== 0xFFFF)
466 /* DLGTEMPLATEEX (not defined in any std. header file) */
470 p
+= 2; /* help ID */
471 p
+= 2; /* ext style */
479 p
+= 2; /* ext style */
485 width
= (WORD
)*p
; p
++;
486 height
= (WORD
)*p
; p
++;
488 /* Special calculation for interior wizard pages so the largest page is
489 * calculated correctly. We need to add all the padding and space occupied
490 * by the header so the width and height sums up to the whole wizard client
492 if ((psInfo
->ppshheader
.dwFlags
& (PSH_WIZARD97_OLD
| PSH_WIZARD97_NEW
)) &&
493 (psInfo
->ppshheader
.dwFlags
& PSH_HEADER
) &&
494 !(dwFlags
& PSP_HIDEHEADER
))
496 height
+= 2 * WIZARD_PADDING
+ WIZARD_HEADER_HEIGHT
;
497 width
+= 2 * WIZARD_PADDING
;
499 if (psInfo
->ppshheader
.dwFlags
& PSH_WIZARD
)
501 height
+= 2 * WIZARD_PADDING
;
502 width
+= 2 * WIZARD_PADDING
;
505 /* remember the largest width and height */
508 if (width
> psInfo
->width
)
509 psInfo
->width
= width
;
511 if (height
> psInfo
->height
)
512 psInfo
->height
= height
;
525 p
+= lstrlenW( p
) + 1;
539 p
+= lstrlenW( p
) + 1;
543 /* Extract the caption */
544 psInfo
->proppage
[index
].pszText
= p
;
545 TRACE("Tab %d %s\n",index
,debugstr_w( p
));
546 p
+= lstrlenW( p
) + 1;
548 if (dwFlags
& PSP_USETITLE
)
552 static const WCHAR pszNull
[] = { '(','n','u','l','l',')',0 };
556 if ( !HIWORD( lppsp
->pszTitle
) )
558 if (!LoadStringW( lppsp
->hInstance
, (DWORD_PTR
)lppsp
->pszTitle
,szTitle
,sizeof(szTitle
)/sizeof(szTitle
[0]) ))
561 FIXME("Could not load resource #%04x?\n",LOWORD(lppsp
->pszTitle
));
567 pTitle
= lppsp
->pszTitle
;
569 len
= strlenW(pTitle
);
570 text
= Alloc( (len
+1)*sizeof (WCHAR
) );
571 psInfo
->proppage
[index
].pszText
= strcpyW( text
, pTitle
);
575 * Build the image list for icons
577 if ((dwFlags
& PSP_USEHICON
) || (dwFlags
& PSP_USEICONID
))
580 int icon_cx
= GetSystemMetrics(SM_CXSMICON
);
581 int icon_cy
= GetSystemMetrics(SM_CYSMICON
);
583 if (dwFlags
& PSP_USEICONID
)
584 hIcon
= LoadImageW(lppsp
->hInstance
, lppsp
->u2
.pszIcon
, IMAGE_ICON
,
585 icon_cx
, icon_cy
, LR_DEFAULTCOLOR
);
587 hIcon
= lppsp
->u2
.hIcon
;
591 if (psInfo
->hImageList
== 0 )
592 psInfo
->hImageList
= ImageList_Create(icon_cx
, icon_cy
, ILC_COLOR
, 1, 1);
594 ImageList_AddIcon(psInfo
->hImageList
, hIcon
);
602 /******************************************************************************
603 * PROPSHEET_CreateDialog
605 * Creates the actual property sheet.
607 static INT_PTR
PROPSHEET_CreateDialog(PropSheetInfo
* psInfo
)
614 WORD resID
= IDD_PROPSHEET
;
617 if (psInfo
->ppshheader
.dwFlags
& INTRNL_ANY_WIZARD
)
620 if( psInfo
->unicode
)
622 if(!(hRes
= FindResourceW(COMCTL32_hModule
,
623 MAKEINTRESOURCEW(resID
),
629 if(!(hRes
= FindResourceA(COMCTL32_hModule
,
630 MAKEINTRESOURCEA(resID
),
635 if(!(template = LoadResource(COMCTL32_hModule
, hRes
)))
639 * Make a copy of the dialog template.
641 resSize
= SizeofResource(COMCTL32_hModule
, hRes
);
643 temp
= Alloc(resSize
);
648 memcpy(temp
, template, resSize
);
650 if (psInfo
->ppshheader
.dwFlags
& PSH_NOCONTEXTHELP
)
652 if (((MyDLGTEMPLATEEX
*)temp
)->signature
== 0xFFFF)
653 ((MyDLGTEMPLATEEX
*)temp
)->style
&= ~DS_CONTEXTHELP
;
655 ((DLGTEMPLATE
*)temp
)->style
&= ~DS_CONTEXTHELP
;
657 if ((psInfo
->ppshheader
.dwFlags
& INTRNL_ANY_WIZARD
) &&
658 (psInfo
->ppshheader
.dwFlags
& PSH_WIZARDCONTEXTHELP
))
660 if (((MyDLGTEMPLATEEX
*)temp
)->signature
== 0xFFFF)
661 ((MyDLGTEMPLATEEX
*)temp
)->style
|= DS_CONTEXTHELP
;
663 ((DLGTEMPLATE
*)temp
)->style
|= DS_CONTEXTHELP
;
666 if (psInfo
->useCallback
)
667 (*(psInfo
->ppshheader
.pfnCallback
))(0, PSCB_PRECREATE
, (LPARAM
)temp
);
669 /* NOTE: MSDN states "Returns a positive value if successful, or -1
670 * otherwise for modal property sheets.", but this is wrong. The
671 * actual return value is either TRUE (success), FALSE (cancel) or
673 if( psInfo
->unicode
)
675 ret
= (INT_PTR
)CreateDialogIndirectParamW(psInfo
->ppshheader
.hInstance
,
676 (LPDLGTEMPLATEW
) temp
,
677 psInfo
->ppshheader
.hwndParent
,
678 PROPSHEET_DialogProc
,
680 if ( !ret
) ret
= -1;
684 ret
= (INT_PTR
)CreateDialogIndirectParamA(psInfo
->ppshheader
.hInstance
,
685 (LPDLGTEMPLATEA
) temp
,
686 psInfo
->ppshheader
.hwndParent
,
687 PROPSHEET_DialogProc
,
689 if ( !ret
) ret
= -1;
697 /******************************************************************************
698 * PROPSHEET_SizeMismatch
700 * Verify that the tab control and the "largest" property sheet page dlg. template
703 static BOOL
PROPSHEET_SizeMismatch(HWND hwndDlg
, const PropSheetInfo
* psInfo
)
705 HWND hwndTabCtrl
= GetDlgItem(hwndDlg
, IDC_TABCONTROL
);
706 RECT rcOrigTab
, rcPage
;
711 GetClientRect(hwndTabCtrl
, &rcOrigTab
);
712 TRACE("orig tab %s\n", wine_dbgstr_rect(&rcOrigTab
));
719 rcPage
.right
= psInfo
->width
;
720 rcPage
.bottom
= psInfo
->height
;
722 MapDialogRect(hwndDlg
, &rcPage
);
723 TRACE("biggest page %s\n", wine_dbgstr_rect(&rcPage
));
725 if ( (rcPage
.right
- rcPage
.left
) != (rcOrigTab
.right
- rcOrigTab
.left
) )
727 if ( (rcPage
.bottom
- rcPage
.top
) != (rcOrigTab
.bottom
- rcOrigTab
.top
) )
733 /******************************************************************************
734 * PROPSHEET_AdjustSize
736 * Resizes the property sheet and the tab control to fit the largest page.
738 static BOOL
PROPSHEET_AdjustSize(HWND hwndDlg
, PropSheetInfo
* psInfo
)
740 HWND hwndTabCtrl
= GetDlgItem(hwndDlg
, IDC_TABCONTROL
);
741 HWND hwndButton
= GetDlgItem(hwndDlg
, IDOK
);
744 PADDING_INFO padding
= PROPSHEET_GetPaddingInfo(hwndDlg
);
747 /* Get the height of buttons */
748 GetClientRect(hwndButton
, &rc
);
749 buttonHeight
= rc
.bottom
;
756 rc
.right
= psInfo
->width
;
757 rc
.bottom
= psInfo
->height
;
759 MapDialogRect(hwndDlg
, &rc
);
761 /* retrieve the dialog units */
762 units
.left
= units
.right
= 4;
763 units
.top
= units
.bottom
= 8;
764 MapDialogRect(hwndDlg
, &units
);
767 * Resize the tab control.
769 GetClientRect(hwndTabCtrl
,&tabRect
);
771 SendMessageW(hwndTabCtrl
, TCM_ADJUSTRECT
, FALSE
, (LPARAM
)&tabRect
);
773 if ((rc
.bottom
- rc
.top
) < (tabRect
.bottom
- tabRect
.top
))
775 rc
.bottom
= rc
.top
+ tabRect
.bottom
- tabRect
.top
;
776 psInfo
->height
= MulDiv((rc
.bottom
- rc
.top
),8,units
.top
);
779 if ((rc
.right
- rc
.left
) < (tabRect
.right
- tabRect
.left
))
781 rc
.right
= rc
.left
+ tabRect
.right
- tabRect
.left
;
782 psInfo
->width
= MulDiv((rc
.right
- rc
.left
),4,units
.left
);
785 SendMessageW(hwndTabCtrl
, TCM_ADJUSTRECT
, TRUE
, (LPARAM
)&rc
);
789 TRACE("setting tab %p, rc (0,0)-(%d,%d)\n",
790 hwndTabCtrl
, rc
.right
, rc
.bottom
);
791 SetWindowPos(hwndTabCtrl
, 0, 0, 0, rc
.right
, rc
.bottom
,
792 SWP_NOMOVE
| SWP_NOZORDER
| SWP_NOACTIVATE
);
794 GetClientRect(hwndTabCtrl
, &rc
);
796 TRACE("tab client rc %s\n", wine_dbgstr_rect(&rc
));
798 rc
.right
+= (padding
.x
* 2);
799 rc
.bottom
+= buttonHeight
+ (3 * padding
.y
);
801 if (!psInfo
->isModeless
)
802 AdjustWindowRect(&rc
, GetWindowLongW(hwndDlg
, GWL_STYLE
), FALSE
);
808 * Resize the property sheet.
810 TRACE("setting dialog %p, rc (0,0)-(%d,%d)\n",
811 hwndDlg
, rc
.right
, rc
.bottom
);
812 SetWindowPos(hwndDlg
, 0, 0, 0, rc
.right
, rc
.bottom
,
813 SWP_NOMOVE
| SWP_NOZORDER
| SWP_NOACTIVATE
);
817 /******************************************************************************
818 * PROPSHEET_AdjustSizeWizard
820 * Resizes the property sheet to fit the largest page.
822 static BOOL
PROPSHEET_AdjustSizeWizard(HWND hwndDlg
, const PropSheetInfo
* psInfo
)
824 HWND hwndLine
= GetDlgItem(hwndDlg
, IDC_SUNKEN_LINE
);
825 RECT rc
, lineRect
, dialogRect
;
827 /* Biggest page size */
830 rc
.right
= psInfo
->width
;
831 rc
.bottom
= psInfo
->height
;
832 MapDialogRect(hwndDlg
, &rc
);
834 TRACE("Biggest page %s\n", wine_dbgstr_rect(&rc
));
836 /* Add space for the buttons row */
837 GetWindowRect(hwndLine
, &lineRect
);
838 MapWindowPoints(NULL
, hwndDlg
, (LPPOINT
)&lineRect
, 2);
839 GetClientRect(hwndDlg
, &dialogRect
);
840 rc
.bottom
+= dialogRect
.bottom
- lineRect
.top
- 1;
842 /* Convert the client coordinates to window coordinates */
843 AdjustWindowRect(&rc
, GetWindowLongW(hwndDlg
, GWL_STYLE
), FALSE
);
845 /* Resize the property sheet */
846 TRACE("setting dialog %p, rc (0,0)-(%d,%d)\n",
847 hwndDlg
, rc
.right
, rc
.bottom
);
848 SetWindowPos(hwndDlg
, 0, 0, 0, rc
.right
- rc
.left
, rc
.bottom
- rc
.top
,
849 SWP_NOMOVE
| SWP_NOZORDER
| SWP_NOACTIVATE
);
854 /******************************************************************************
855 * PROPSHEET_AdjustButtons
857 * Adjusts the buttons' positions.
859 static BOOL
PROPSHEET_AdjustButtons(HWND hwndParent
, const PropSheetInfo
* psInfo
)
861 HWND hwndButton
= GetDlgItem(hwndParent
, IDOK
);
865 int buttonWidth
, buttonHeight
;
866 PADDING_INFO padding
= PROPSHEET_GetPaddingInfo(hwndParent
);
868 if (psInfo
->hasApply
)
875 * Obtain the size of the buttons.
877 GetClientRect(hwndButton
, &rcSheet
);
878 buttonWidth
= rcSheet
.right
;
879 buttonHeight
= rcSheet
.bottom
;
882 * Get the size of the property sheet.
884 GetClientRect(hwndParent
, &rcSheet
);
887 * All buttons will be at this y coordinate.
889 y
= rcSheet
.bottom
- (padding
.y
+ buttonHeight
);
892 * Position OK button and make it default.
894 hwndButton
= GetDlgItem(hwndParent
, IDOK
);
896 x
= rcSheet
.right
- ((padding
.x
+ buttonWidth
) * num_buttons
);
898 SetWindowPos(hwndButton
, 0, x
, y
, 0, 0,
899 SWP_NOSIZE
| SWP_NOZORDER
| SWP_NOACTIVATE
);
901 SendMessageW(hwndParent
, DM_SETDEFID
, IDOK
, 0);
905 * Position Cancel button.
907 hwndButton
= GetDlgItem(hwndParent
, IDCANCEL
);
909 x
= rcSheet
.right
- ((padding
.x
+ buttonWidth
) * (num_buttons
- 1));
911 SetWindowPos(hwndButton
, 0, x
, y
, 0, 0,
912 SWP_NOSIZE
| SWP_NOZORDER
| SWP_NOACTIVATE
);
915 * Position Apply button.
917 hwndButton
= GetDlgItem(hwndParent
, IDC_APPLY_BUTTON
);
919 if (psInfo
->hasApply
)
922 x
= rcSheet
.right
- ((padding
.x
+ buttonWidth
) * 2);
924 x
= rcSheet
.right
- (padding
.x
+ buttonWidth
);
926 SetWindowPos(hwndButton
, 0, x
, y
, 0, 0,
927 SWP_NOSIZE
| SWP_NOZORDER
| SWP_NOACTIVATE
);
929 EnableWindow(hwndButton
, FALSE
);
932 ShowWindow(hwndButton
, SW_HIDE
);
935 * Position Help button.
937 hwndButton
= GetDlgItem(hwndParent
, IDHELP
);
941 x
= rcSheet
.right
- (padding
.x
+ buttonWidth
);
943 SetWindowPos(hwndButton
, 0, x
, y
, 0, 0,
944 SWP_NOSIZE
| SWP_NOZORDER
| SWP_NOACTIVATE
);
947 ShowWindow(hwndButton
, SW_HIDE
);
952 /******************************************************************************
953 * PROPSHEET_AdjustButtonsWizard
955 * Adjusts the buttons' positions.
957 static BOOL
PROPSHEET_AdjustButtonsWizard(HWND hwndParent
,
958 const PropSheetInfo
* psInfo
)
960 HWND hwndButton
= GetDlgItem(hwndParent
, IDCANCEL
);
961 HWND hwndLine
= GetDlgItem(hwndParent
, IDC_SUNKEN_LINE
);
962 HWND hwndLineHeader
= GetDlgItem(hwndParent
, IDC_SUNKEN_LINEHEADER
);
966 int buttonWidth
, buttonHeight
, lineHeight
, lineWidth
;
967 PADDING_INFO padding
= PROPSHEET_GetPaddingInfoWizard(hwndParent
, psInfo
);
971 if (psInfo
->hasFinish
)
975 * Obtain the size of the buttons.
977 GetClientRect(hwndButton
, &rcSheet
);
978 buttonWidth
= rcSheet
.right
;
979 buttonHeight
= rcSheet
.bottom
;
981 GetClientRect(hwndLine
, &rcSheet
);
982 lineHeight
= rcSheet
.bottom
;
985 * Get the size of the property sheet.
987 GetClientRect(hwndParent
, &rcSheet
);
990 * All buttons will be at this y coordinate.
992 y
= rcSheet
.bottom
- (padding
.y
+ buttonHeight
);
995 * Position the Back button.
997 hwndButton
= GetDlgItem(hwndParent
, IDC_BACK_BUTTON
);
999 x
= rcSheet
.right
- ((padding
.x
+ buttonWidth
) * (num_buttons
- 1)) - buttonWidth
;
1001 SetWindowPos(hwndButton
, 0, x
, y
, 0, 0,
1002 SWP_NOSIZE
| SWP_NOZORDER
| SWP_NOACTIVATE
);
1005 * Position the Next button.
1007 hwndButton
= GetDlgItem(hwndParent
, IDC_NEXT_BUTTON
);
1011 SetWindowPos(hwndButton
, 0, x
, y
, 0, 0,
1012 SWP_NOSIZE
| SWP_NOZORDER
| SWP_NOACTIVATE
);
1015 * Position the Finish button.
1017 hwndButton
= GetDlgItem(hwndParent
, IDC_FINISH_BUTTON
);
1019 if (psInfo
->hasFinish
)
1020 x
+= padding
.x
+ buttonWidth
;
1022 SetWindowPos(hwndButton
, 0, x
, y
, 0, 0,
1023 SWP_NOSIZE
| SWP_NOZORDER
| SWP_NOACTIVATE
);
1025 if (!psInfo
->hasFinish
)
1026 ShowWindow(hwndButton
, SW_HIDE
);
1029 * Position the Cancel button.
1031 hwndButton
= GetDlgItem(hwndParent
, IDCANCEL
);
1033 x
+= padding
.x
+ buttonWidth
;
1035 SetWindowPos(hwndButton
, 0, x
, y
, 0, 0,
1036 SWP_NOSIZE
| SWP_NOZORDER
| SWP_NOACTIVATE
);
1039 * Position Help button.
1041 hwndButton
= GetDlgItem(hwndParent
, IDHELP
);
1043 if (psInfo
->hasHelp
)
1045 x
+= padding
.x
+ buttonWidth
;
1047 SetWindowPos(hwndButton
, 0, x
, y
, 0, 0,
1048 SWP_NOSIZE
| SWP_NOZORDER
| SWP_NOACTIVATE
);
1051 ShowWindow(hwndButton
, SW_HIDE
);
1053 if (psInfo
->ppshheader
.dwFlags
&
1054 (PSH_WIZARD97_OLD
| PSH_WIZARD97_NEW
| PSH_WIZARD_LITE
))
1058 * Position and resize the sunken line.
1061 y
= rcSheet
.bottom
- ((padding
.y
* 2) + buttonHeight
+ lineHeight
);
1063 lineWidth
= rcSheet
.right
- (padding
.x
* 2);
1064 SetWindowPos(hwndLine
, 0, x
, y
, lineWidth
, 2,
1065 SWP_NOZORDER
| SWP_NOACTIVATE
);
1068 * Position and resize the header sunken line.
1071 SetWindowPos(hwndLineHeader
, 0, 0, 0, rcSheet
.right
, 2,
1072 SWP_NOZORDER
| SWP_NOMOVE
| SWP_NOACTIVATE
);
1073 if (!(psInfo
->ppshheader
.dwFlags
& (PSH_WIZARD97_OLD
| PSH_WIZARD97_NEW
)))
1074 ShowWindow(hwndLineHeader
, SW_HIDE
);
1079 /******************************************************************************
1080 * PROPSHEET_GetPaddingInfo
1082 * Returns the layout information.
1084 static PADDING_INFO
PROPSHEET_GetPaddingInfo(HWND hwndDlg
)
1086 HWND hwndTab
= GetDlgItem(hwndDlg
, IDC_TABCONTROL
);
1089 PADDING_INFO padding
;
1091 GetWindowRect(hwndTab
, &rcTab
);
1096 ScreenToClient(hwndDlg
, &tl
);
1104 /******************************************************************************
1105 * PROPSHEET_GetPaddingInfoWizard
1107 * Returns the layout information.
1108 * Vertical spacing is the distance between the line and the buttons.
1109 * Do NOT use the Help button to gather padding information when it isn't mapped
1110 * (PSH_HASHELP), as app writers aren't forced to supply correct coordinates
1111 * for it in this case !
1112 * FIXME: I'm not sure about any other coordinate problems with these evil
1113 * buttons. Fix it in case additional problems appear or maybe calculate
1114 * a padding in a completely different way, as this is somewhat messy.
1116 static PADDING_INFO
PROPSHEET_GetPaddingInfoWizard(HWND hwndDlg
, const PropSheetInfo
*
1119 PADDING_INFO padding
;
1123 POINT ptButton
, ptLine
;
1126 if (psInfo
->hasHelp
)
1132 if (psInfo
->ppshheader
.dwFlags
& INTRNL_ANY_WIZARD
)
1134 idButton
= IDC_NEXT_BUTTON
;
1138 /* hopefully this is ok */
1139 idButton
= IDCANCEL
;
1143 hwndControl
= GetDlgItem(hwndDlg
, idButton
);
1144 GetWindowRect(hwndControl
, &rc
);
1146 ptButton
.x
= rc
.left
;
1147 ptButton
.y
= rc
.top
;
1149 ScreenToClient(hwndDlg
, &ptButton
);
1152 hwndControl
= GetDlgItem(hwndDlg
, IDC_SUNKEN_LINE
);
1153 GetWindowRect(hwndControl
, &rc
);
1156 ptLine
.y
= rc
.bottom
;
1158 ScreenToClient(hwndDlg
, &ptLine
);
1160 padding
.y
= ptButton
.y
- ptLine
.y
;
1163 ERR("padding negative ! Please report this !\n");
1165 /* this is most probably not correct, but the best we have now */
1166 padding
.x
= padding
.y
;
1170 /******************************************************************************
1171 * PROPSHEET_CreateTabControl
1173 * Insert the tabs in the tab control.
1175 static BOOL
PROPSHEET_CreateTabControl(HWND hwndParent
,
1176 const PropSheetInfo
* psInfo
)
1178 HWND hwndTabCtrl
= GetDlgItem(hwndParent
, IDC_TABCONTROL
);
1184 item
.mask
= TCIF_TEXT
;
1185 item
.cchTextMax
= MAX_TABTEXT_LENGTH
;
1187 nTabs
= psInfo
->nPages
;
1190 * Set the image list for icons.
1192 if (psInfo
->hImageList
)
1194 SendMessageW(hwndTabCtrl
, TCM_SETIMAGELIST
, 0, (LPARAM
)psInfo
->hImageList
);
1197 SendMessageW(GetDlgItem(hwndTabCtrl
, IDC_TABCONTROL
), WM_SETREDRAW
, 0, 0);
1198 for (i
= 0; i
< nTabs
; i
++)
1200 if ( psInfo
->proppage
[i
].hasIcon
)
1202 item
.mask
|= TCIF_IMAGE
;
1203 item
.iImage
= iImage
++;
1207 item
.mask
&= ~TCIF_IMAGE
;
1210 item
.pszText
= (LPWSTR
) psInfo
->proppage
[i
].pszText
;
1211 SendMessageW(hwndTabCtrl
, TCM_INSERTITEMW
, (WPARAM
)i
, (LPARAM
)&item
);
1213 SendMessageW(GetDlgItem(hwndTabCtrl
, IDC_TABCONTROL
), WM_SETREDRAW
, 1, 0);
1218 /******************************************************************************
1219 * PROPSHEET_WizardSubclassProc
1221 * Subclassing window procedure for wizard exterior pages to prevent drawing
1222 * background and so drawing above the watermark.
1224 static LRESULT CALLBACK
1225 PROPSHEET_WizardSubclassProc(HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
, UINT_PTR uID
, DWORD_PTR dwRef
)
1232 case WM_CTLCOLORSTATIC
:
1233 SetBkColor((HDC
)wParam
, GetSysColor(COLOR_WINDOW
));
1234 return (INT_PTR
)GetSysColorBrush(COLOR_WINDOW
);
1237 return DefSubclassProc(hwnd
, uMsg
, wParam
, lParam
);
1241 * Get the size of an in-memory Template
1243 *( Based on the code of PROPSHEET_CollectPageInfo)
1244 * See also dialog.c/DIALOG_ParseTemplate32().
1247 static UINT
GetTemplateSize(const DLGTEMPLATE
* pTemplate
)
1250 const WORD
* p
= (const WORD
*)pTemplate
;
1251 BOOL istemplateex
= (((const MyDLGTEMPLATEEX
*)pTemplate
)->signature
== 0xFFFF);
1257 /* DLGTEMPLATEEX (not defined in any std. header file) */
1259 TRACE("is DLGTEMPLATEEX\n");
1261 p
++; /* signature */
1262 p
+= 2; /* help ID */
1263 p
+= 2; /* ext style */
1270 TRACE("is DLGTEMPLATE\n");
1272 p
+= 2; /* ext style */
1275 nrofitems
= (WORD
)*p
; p
++; /* nb items */
1291 TRACE("menu %s\n",debugstr_w( p
));
1292 p
+= lstrlenW( p
) + 1;
1303 p
+= 2; /* 0xffff plus predefined window class ordinal value */
1306 TRACE("class %s\n",debugstr_w( p
));
1307 p
+= lstrlenW( p
) + 1;
1312 TRACE("title %s\n",debugstr_w( p
));
1313 p
+= lstrlenW( p
) + 1;
1315 /* font, if DS_SETFONT set */
1316 if ((DS_SETFONT
& ((istemplateex
)? ((const MyDLGTEMPLATEEX
*)pTemplate
)->style
:
1319 p
+=(istemplateex
)?3:1;
1320 TRACE("font %s\n",debugstr_w( p
));
1321 p
+= lstrlenW( p
) + 1; /* the font name */
1324 /* now process the DLGITEMTEMPLATE(EX) structs (plus custom data)
1325 * that are following the DLGTEMPLATE(EX) data */
1326 TRACE("%d items\n",nrofitems
);
1327 while (nrofitems
> 0)
1329 p
= (WORD
*)(((DWORD_PTR
)p
+ 3) & ~3); /* DWORD align */
1332 p
+= (istemplateex
? sizeof(MyDLGITEMTEMPLATEEX
) : sizeof(DLGITEMTEMPLATE
))/sizeof(WORD
);
1341 TRACE("class ordinal 0x%08x\n",*(const DWORD
*)p
);
1345 TRACE("class %s\n",debugstr_w( p
));
1346 p
+= lstrlenW( p
) + 1;
1350 /* check title text */
1357 TRACE("text ordinal 0x%08x\n",*(const DWORD
*)p
);
1361 TRACE("text %s\n",debugstr_w( p
));
1362 p
+= lstrlenW( p
) + 1;
1365 p
+= *p
/ sizeof(WORD
) + 1; /* Skip extra data */
1369 ret
= (p
- (const WORD
*)pTemplate
) * sizeof(WORD
);
1370 TRACE("%p %p size 0x%08x\n", p
, pTemplate
, ret
);
1374 /******************************************************************************
1375 * PROPSHEET_CreatePage
1379 static BOOL
PROPSHEET_CreatePage(HWND hwndParent
,
1381 const PropSheetInfo
* psInfo
,
1382 LPCPROPSHEETPAGEW ppshpage
)
1384 DLGTEMPLATE
* pTemplate
;
1389 TRACE("index %d\n", index
);
1391 if (ppshpage
== NULL
)
1396 if (ppshpage
->dwFlags
& PSP_DLGINDIRECT
)
1398 pTemplate
= (DLGTEMPLATE
*)ppshpage
->u
.pResource
;
1399 resSize
= GetTemplateSize(pTemplate
);
1401 else if(ppshpage
->dwFlags
& PSP_INTERNAL_UNICODE
)
1406 hResource
= FindResourceW(ppshpage
->hInstance
,
1407 ppshpage
->u
.pszTemplate
,
1412 resSize
= SizeofResource(ppshpage
->hInstance
, hResource
);
1414 hTemplate
= LoadResource(ppshpage
->hInstance
, hResource
);
1418 pTemplate
= LockResource(hTemplate
);
1420 * Make a copy of the dialog template to make it writable
1428 hResource
= FindResourceA(ppshpage
->hInstance
,
1429 (LPCSTR
)ppshpage
->u
.pszTemplate
,
1434 resSize
= SizeofResource(ppshpage
->hInstance
, hResource
);
1436 hTemplate
= LoadResource(ppshpage
->hInstance
, hResource
);
1440 pTemplate
= LockResource(hTemplate
);
1442 * Make a copy of the dialog template to make it writable
1445 temp
= Alloc(resSize
);
1449 TRACE("copying pTemplate %p into temp %p (%d)\n", pTemplate
, temp
, resSize
);
1450 memcpy(temp
, pTemplate
, resSize
);
1453 if (((MyDLGTEMPLATEEX
*)pTemplate
)->signature
== 0xFFFF)
1455 ((MyDLGTEMPLATEEX
*)pTemplate
)->style
|= WS_CHILD
| WS_TABSTOP
| DS_CONTROL
;
1456 ((MyDLGTEMPLATEEX
*)pTemplate
)->style
&= ~DS_MODALFRAME
;
1457 ((MyDLGTEMPLATEEX
*)pTemplate
)->style
&= ~WS_CAPTION
;
1458 ((MyDLGTEMPLATEEX
*)pTemplate
)->style
&= ~WS_SYSMENU
;
1459 ((MyDLGTEMPLATEEX
*)pTemplate
)->style
&= ~WS_POPUP
;
1460 ((MyDLGTEMPLATEEX
*)pTemplate
)->style
&= ~WS_DISABLED
;
1461 ((MyDLGTEMPLATEEX
*)pTemplate
)->style
&= ~WS_VISIBLE
;
1462 ((MyDLGTEMPLATEEX
*)pTemplate
)->style
&= ~WS_THICKFRAME
;
1464 ((MyDLGTEMPLATEEX
*)pTemplate
)->exStyle
|= WS_EX_CONTROLPARENT
;
1468 pTemplate
->style
|= WS_CHILD
| WS_TABSTOP
| DS_CONTROL
;
1469 pTemplate
->style
&= ~DS_MODALFRAME
;
1470 pTemplate
->style
&= ~WS_CAPTION
;
1471 pTemplate
->style
&= ~WS_SYSMENU
;
1472 pTemplate
->style
&= ~WS_POPUP
;
1473 pTemplate
->style
&= ~WS_DISABLED
;
1474 pTemplate
->style
&= ~WS_VISIBLE
;
1475 pTemplate
->style
&= ~WS_THICKFRAME
;
1477 pTemplate
->dwExtendedStyle
|= WS_EX_CONTROLPARENT
;
1480 if (psInfo
->proppage
[index
].useCallback
)
1481 (*(ppshpage
->pfnCallback
))(0, PSPCB_CREATE
,
1482 (LPPROPSHEETPAGEW
)ppshpage
);
1484 if(ppshpage
->dwFlags
& PSP_INTERNAL_UNICODE
)
1485 hwndPage
= CreateDialogIndirectParamW(ppshpage
->hInstance
,
1488 ppshpage
->pfnDlgProc
,
1491 hwndPage
= CreateDialogIndirectParamA(ppshpage
->hInstance
,
1494 ppshpage
->pfnDlgProc
,
1496 /* Free a no more needed copy */
1499 psInfo
->proppage
[index
].hwndPage
= hwndPage
;
1501 /* Subclass exterior wizard pages */
1502 if((psInfo
->ppshheader
.dwFlags
& (PSH_WIZARD97_NEW
| PSH_WIZARD97_OLD
)) &&
1503 (psInfo
->ppshheader
.dwFlags
& PSH_WATERMARK
) &&
1504 (ppshpage
->dwFlags
& PSP_HIDEHEADER
))
1506 SetWindowSubclass(hwndPage
, PROPSHEET_WizardSubclassProc
, 1,
1507 (DWORD_PTR
)ppshpage
);
1509 if (!(psInfo
->ppshheader
.dwFlags
& INTRNL_ANY_WIZARD
))
1510 EnableThemeDialogTexture (hwndPage
, ETDT_ENABLETAB
);
1515 /******************************************************************************
1516 * PROPSHEET_LoadWizardBitmaps
1518 * Loads the watermark and header bitmaps for a wizard.
1520 static VOID
PROPSHEET_LoadWizardBitmaps(PropSheetInfo
*psInfo
)
1522 if (psInfo
->ppshheader
.dwFlags
& (PSH_WIZARD97_NEW
| PSH_WIZARD97_OLD
))
1524 /* if PSH_USEHBMWATERMARK is not set, load the resource from pszbmWatermark
1525 and put the HBITMAP in hbmWatermark. Thus all the rest of the code always
1526 considers hbmWatermark as valid. */
1527 if ((psInfo
->ppshheader
.dwFlags
& PSH_WATERMARK
) &&
1528 !(psInfo
->ppshheader
.dwFlags
& PSH_USEHBMWATERMARK
))
1530 psInfo
->ppshheader
.u4
.hbmWatermark
=
1531 CreateMappedBitmap(psInfo
->ppshheader
.hInstance
, (INT_PTR
)psInfo
->ppshheader
.u4
.pszbmWatermark
, 0, NULL
, 0);
1534 /* Same behavior as for watermarks */
1535 if ((psInfo
->ppshheader
.dwFlags
& PSH_HEADER
) &&
1536 !(psInfo
->ppshheader
.dwFlags
& PSH_USEHBMHEADER
))
1538 psInfo
->ppshheader
.u5
.hbmHeader
=
1539 CreateMappedBitmap(psInfo
->ppshheader
.hInstance
, (INT_PTR
)psInfo
->ppshheader
.u5
.pszbmHeader
, 0, NULL
, 0);
1545 /******************************************************************************
1546 * PROPSHEET_ShowPage
1548 * Displays or creates the specified page.
1550 static BOOL
PROPSHEET_ShowPage(HWND hwndDlg
, int index
, PropSheetInfo
* psInfo
)
1553 HWND hwndLineHeader
;
1554 LPCPROPSHEETPAGEW ppshpage
;
1556 TRACE("active_page %d, index %d\n", psInfo
->active_page
, index
);
1557 if (index
== psInfo
->active_page
)
1559 if (GetTopWindow(hwndDlg
) != psInfo
->proppage
[index
].hwndPage
)
1560 SetWindowPos(psInfo
->proppage
[index
].hwndPage
, HWND_TOP
, 0, 0, 0, 0, SWP_NOSIZE
| SWP_NOMOVE
);
1564 ppshpage
= (LPCPROPSHEETPAGEW
)psInfo
->proppage
[index
].hpage
;
1565 if (psInfo
->proppage
[index
].hwndPage
== 0)
1567 PROPSHEET_CreatePage(hwndDlg
, index
, psInfo
, ppshpage
);
1570 if (psInfo
->ppshheader
.dwFlags
& INTRNL_ANY_WIZARD
)
1572 PROPSHEET_SetTitleW(hwndDlg
, psInfo
->ppshheader
.dwFlags
,
1573 psInfo
->proppage
[index
].pszText
);
1576 if (psInfo
->active_page
!= -1)
1577 ShowWindow(psInfo
->proppage
[psInfo
->active_page
].hwndPage
, SW_HIDE
);
1579 ShowWindow(psInfo
->proppage
[index
].hwndPage
, SW_SHOW
);
1581 /* Synchronize current selection with tab control
1582 * It seems to be needed even in case of PSH_WIZARD (no tab controls there) */
1583 hwndTabCtrl
= GetDlgItem(hwndDlg
, IDC_TABCONTROL
);
1584 SendMessageW(hwndTabCtrl
, TCM_SETCURSEL
, index
, 0);
1586 psInfo
->active_page
= index
;
1587 psInfo
->activeValid
= TRUE
;
1589 if (psInfo
->ppshheader
.dwFlags
& (PSH_WIZARD97_OLD
| PSH_WIZARD97_NEW
) )
1591 hwndLineHeader
= GetDlgItem(hwndDlg
, IDC_SUNKEN_LINEHEADER
);
1592 ppshpage
= (LPCPROPSHEETPAGEW
)psInfo
->proppage
[index
].hpage
;
1594 if ((ppshpage
->dwFlags
& PSP_HIDEHEADER
) || (!(psInfo
->ppshheader
.dwFlags
& PSH_HEADER
)) )
1595 ShowWindow(hwndLineHeader
, SW_HIDE
);
1597 ShowWindow(hwndLineHeader
, SW_SHOW
);
1603 /******************************************************************************
1606 static BOOL
PROPSHEET_Back(HWND hwndDlg
)
1610 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
1614 TRACE("active_page %d\n", psInfo
->active_page
);
1615 if (psInfo
->active_page
< 0)
1618 psn
.hdr
.code
= PSN_WIZBACK
;
1619 psn
.hdr
.hwndFrom
= hwndDlg
;
1623 hwndPage
= psInfo
->proppage
[psInfo
->active_page
].hwndPage
;
1625 result
= SendMessageW(hwndPage
, WM_NOTIFY
, 0, (LPARAM
) &psn
);
1628 else if (result
== 0)
1629 idx
= psInfo
->active_page
- 1;
1631 idx
= PROPSHEET_FindPageByResId(psInfo
, result
);
1633 if (idx
>= 0 && idx
< psInfo
->nPages
)
1635 if (PROPSHEET_CanSetCurSel(hwndDlg
))
1636 PROPSHEET_SetCurSel(hwndDlg
, idx
, -1, 0);
1641 /******************************************************************************
1644 static BOOL
PROPSHEET_Next(HWND hwndDlg
)
1648 LRESULT msgResult
= 0;
1649 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
1652 TRACE("active_page %d\n", psInfo
->active_page
);
1653 if (psInfo
->active_page
< 0)
1656 psn
.hdr
.code
= PSN_WIZNEXT
;
1657 psn
.hdr
.hwndFrom
= hwndDlg
;
1661 hwndPage
= psInfo
->proppage
[psInfo
->active_page
].hwndPage
;
1663 msgResult
= SendMessageW(hwndPage
, WM_NOTIFY
, 0, (LPARAM
) &psn
);
1664 if (msgResult
== -1)
1666 else if (msgResult
== 0)
1667 idx
= psInfo
->active_page
+ 1;
1669 idx
= PROPSHEET_FindPageByResId(psInfo
, msgResult
);
1671 if (idx
< psInfo
->nPages
)
1673 if (PROPSHEET_CanSetCurSel(hwndDlg
) != FALSE
)
1674 PROPSHEET_SetCurSel(hwndDlg
, idx
, 1, 0);
1680 /******************************************************************************
1683 static BOOL
PROPSHEET_Finish(HWND hwndDlg
)
1687 LRESULT msgResult
= 0;
1688 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
1690 TRACE("active_page %d\n", psInfo
->active_page
);
1691 if (psInfo
->active_page
< 0)
1694 psn
.hdr
.code
= PSN_WIZFINISH
;
1695 psn
.hdr
.hwndFrom
= hwndDlg
;
1699 hwndPage
= psInfo
->proppage
[psInfo
->active_page
].hwndPage
;
1701 msgResult
= SendMessageW(hwndPage
, WM_NOTIFY
, 0, (LPARAM
) &psn
);
1703 TRACE("msg result %ld\n", msgResult
);
1708 if (psInfo
->result
== 0)
1709 psInfo
->result
= IDOK
;
1710 if (psInfo
->isModeless
)
1711 psInfo
->activeValid
= FALSE
;
1713 psInfo
->ended
= TRUE
;
1718 /******************************************************************************
1721 static BOOL
PROPSHEET_Apply(HWND hwndDlg
, LPARAM lParam
)
1726 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
1728 TRACE("active_page %d\n", psInfo
->active_page
);
1729 if (psInfo
->active_page
< 0)
1732 psn
.hdr
.hwndFrom
= hwndDlg
;
1738 * Send PSN_KILLACTIVE to the current page.
1740 psn
.hdr
.code
= PSN_KILLACTIVE
;
1742 hwndPage
= psInfo
->proppage
[psInfo
->active_page
].hwndPage
;
1744 if (SendMessageW(hwndPage
, WM_NOTIFY
, 0, (LPARAM
) &psn
) != FALSE
)
1748 * Send PSN_APPLY to all pages.
1750 psn
.hdr
.code
= PSN_APPLY
;
1751 psn
.lParam
= lParam
;
1753 for (i
= 0; i
< psInfo
->nPages
; i
++)
1755 hwndPage
= psInfo
->proppage
[i
].hwndPage
;
1758 switch (SendMessageW(hwndPage
, WM_NOTIFY
, 0, (LPARAM
) &psn
))
1760 case PSNRET_INVALID
:
1761 PROPSHEET_ShowPage(hwndDlg
, i
, psInfo
);
1763 case PSNRET_INVALID_NOCHANGEPAGE
:
1771 psInfo
->activeValid
= FALSE
;
1773 else if(psInfo
->active_page
>= 0)
1775 psn
.hdr
.code
= PSN_SETACTIVE
;
1777 hwndPage
= psInfo
->proppage
[psInfo
->active_page
].hwndPage
;
1778 SendMessageW(hwndPage
, WM_NOTIFY
, 0, (LPARAM
) &psn
);
1784 /******************************************************************************
1787 static void PROPSHEET_Cancel(HWND hwndDlg
, LPARAM lParam
)
1789 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
1794 TRACE("active_page %d\n", psInfo
->active_page
);
1795 if (psInfo
->active_page
< 0)
1798 hwndPage
= psInfo
->proppage
[psInfo
->active_page
].hwndPage
;
1799 psn
.hdr
.code
= PSN_QUERYCANCEL
;
1800 psn
.hdr
.hwndFrom
= hwndDlg
;
1804 if (SendMessageW(hwndPage
, WM_NOTIFY
, 0, (LPARAM
) &psn
))
1807 psn
.hdr
.code
= PSN_RESET
;
1808 psn
.lParam
= lParam
;
1810 for (i
= 0; i
< psInfo
->nPages
; i
++)
1812 hwndPage
= psInfo
->proppage
[i
].hwndPage
;
1815 SendMessageW(hwndPage
, WM_NOTIFY
, 0, (LPARAM
) &psn
);
1818 if (psInfo
->isModeless
)
1820 /* makes PSM_GETCURRENTPAGEHWND return NULL */
1821 psInfo
->activeValid
= FALSE
;
1824 psInfo
->ended
= TRUE
;
1827 /******************************************************************************
1830 static void PROPSHEET_Help(HWND hwndDlg
)
1832 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
1836 TRACE("active_page %d\n", psInfo
->active_page
);
1837 if (psInfo
->active_page
< 0)
1840 hwndPage
= psInfo
->proppage
[psInfo
->active_page
].hwndPage
;
1841 psn
.hdr
.code
= PSN_HELP
;
1842 psn
.hdr
.hwndFrom
= hwndDlg
;
1846 SendMessageW(hwndPage
, WM_NOTIFY
, 0, (LPARAM
) &psn
);
1849 /******************************************************************************
1852 static void PROPSHEET_Changed(HWND hwndDlg
, HWND hwndDirtyPage
)
1855 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
1858 if (!psInfo
) return;
1860 * Set the dirty flag of this page.
1862 for (i
= 0; i
< psInfo
->nPages
; i
++)
1864 if (psInfo
->proppage
[i
].hwndPage
== hwndDirtyPage
)
1865 psInfo
->proppage
[i
].isDirty
= TRUE
;
1869 * Enable the Apply button.
1871 if (psInfo
->hasApply
)
1873 HWND hwndApplyBtn
= GetDlgItem(hwndDlg
, IDC_APPLY_BUTTON
);
1875 EnableWindow(hwndApplyBtn
, TRUE
);
1879 /******************************************************************************
1880 * PROPSHEET_UnChanged
1882 static void PROPSHEET_UnChanged(HWND hwndDlg
, HWND hwndCleanPage
)
1885 BOOL noPageDirty
= TRUE
;
1886 HWND hwndApplyBtn
= GetDlgItem(hwndDlg
, IDC_APPLY_BUTTON
);
1887 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
1890 if ( !psInfo
) return;
1891 for (i
= 0; i
< psInfo
->nPages
; i
++)
1893 /* set the specified page as clean */
1894 if (psInfo
->proppage
[i
].hwndPage
== hwndCleanPage
)
1895 psInfo
->proppage
[i
].isDirty
= FALSE
;
1897 /* look to see if there's any dirty pages */
1898 if (psInfo
->proppage
[i
].isDirty
)
1899 noPageDirty
= FALSE
;
1903 * Disable Apply button.
1906 EnableWindow(hwndApplyBtn
, FALSE
);
1909 /******************************************************************************
1910 * PROPSHEET_PressButton
1912 static void PROPSHEET_PressButton(HWND hwndDlg
, int buttonID
)
1914 TRACE("buttonID %d\n", buttonID
);
1917 case PSBTN_APPLYNOW
:
1918 PROPSHEET_DoCommand(hwndDlg
, IDC_APPLY_BUTTON
);
1921 PROPSHEET_Back(hwndDlg
);
1924 PROPSHEET_DoCommand(hwndDlg
, IDCANCEL
);
1927 PROPSHEET_Finish(hwndDlg
);
1930 PROPSHEET_DoCommand(hwndDlg
, IDHELP
);
1933 PROPSHEET_Next(hwndDlg
);
1936 PROPSHEET_DoCommand(hwndDlg
, IDOK
);
1939 FIXME("Invalid button index %d\n", buttonID
);
1944 /*************************************************************************
1945 * BOOL PROPSHEET_CanSetCurSel [Internal]
1947 * Test whether the current page can be changed by sending a PSN_KILLACTIVE
1950 * hwndDlg [I] handle to a Dialog hWnd
1953 * TRUE if Current Selection can change
1957 static BOOL
PROPSHEET_CanSetCurSel(HWND hwndDlg
)
1959 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
1964 TRACE("active_page %d\n", psInfo
->active_page
);
1971 if (psInfo
->active_page
< 0)
1978 * Notify the current page.
1980 hwndPage
= psInfo
->proppage
[psInfo
->active_page
].hwndPage
;
1981 psn
.hdr
.code
= PSN_KILLACTIVE
;
1982 psn
.hdr
.hwndFrom
= hwndDlg
;
1986 res
= !SendMessageW(hwndPage
, WM_NOTIFY
, 0, (LPARAM
) &psn
);
1989 TRACE("<-- %d\n", res
);
1993 /******************************************************************************
1994 * PROPSHEET_SetCurSel
1996 static BOOL
PROPSHEET_SetCurSel(HWND hwndDlg
,
1999 HPROPSHEETPAGE hpage
2002 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
2003 HWND hwndHelp
= GetDlgItem(hwndDlg
, IDHELP
);
2004 HWND hwndTabControl
= GetDlgItem(hwndDlg
, IDC_TABCONTROL
);
2006 TRACE("index %d, skipdir %d, hpage %p\n", index
, skipdir
, hpage
);
2007 /* hpage takes precedence over index */
2009 index
= PROPSHEET_GetPageIndex(hpage
, psInfo
);
2011 if (index
< 0 || index
>= psInfo
->nPages
)
2013 TRACE("Could not find page to select!\n");
2017 /* unset active page while doing this transition. */
2018 if (psInfo
->active_page
!= -1)
2019 ShowWindow(psInfo
->proppage
[psInfo
->active_page
].hwndPage
, SW_HIDE
);
2020 psInfo
->active_page
= -1;
2026 LPCPROPSHEETPAGEW ppshpage
= (LPCPROPSHEETPAGEW
)psInfo
->proppage
[index
].hpage
;
2029 SendMessageW(hwndTabControl
, TCM_SETCURSEL
, index
, 0);
2031 psn
.hdr
.code
= PSN_SETACTIVE
;
2032 psn
.hdr
.hwndFrom
= hwndDlg
;
2036 if (!psInfo
->proppage
[index
].hwndPage
) {
2037 PROPSHEET_CreatePage(hwndDlg
, index
, psInfo
, ppshpage
);
2040 /* Resize the property sheet page to the fit in the Tab control
2041 * (for regular property sheets) or to fit in the client area (for
2043 * NOTE: The resizing happens every time the page is selected and
2044 * not only when it's created (some applications depend on it). */
2045 PROPSHEET_GetPageRect(psInfo
, hwndDlg
, &rc
, ppshpage
);
2046 TRACE("setting page %p, rc (%s) w=%d, h=%d\n",
2047 psInfo
->proppage
[index
].hwndPage
, wine_dbgstr_rect(&rc
),
2048 rc
.right
- rc
.left
, rc
.bottom
- rc
.top
);
2049 SetWindowPos(psInfo
->proppage
[index
].hwndPage
, HWND_TOP
,
2051 rc
.right
- rc
.left
, rc
.bottom
- rc
.top
, 0);
2053 result
= SendMessageW(psInfo
->proppage
[index
].hwndPage
, WM_NOTIFY
, 0, (LPARAM
) &psn
);
2060 WARN("Tried to skip before first property sheet page!\n");
2063 if (index
>= psInfo
->nPages
) {
2064 WARN("Tried to skip after last property sheet page!\n");
2065 index
= psInfo
->nPages
-1;
2069 else if (result
!= 0)
2071 int old_index
= index
;
2072 index
= PROPSHEET_FindPageByResId(psInfo
, result
);
2073 if(index
>= psInfo
->nPages
) {
2075 WARN("Tried to skip to nonexistent page by res id\n");
2082 /* Invalidate the header area */
2083 if ( (psInfo
->ppshheader
.dwFlags
& (PSH_WIZARD97_OLD
| PSH_WIZARD97_NEW
)) &&
2084 (psInfo
->ppshheader
.dwFlags
& PSH_HEADER
) )
2086 HWND hwndLineHeader
= GetDlgItem(hwndDlg
, IDC_SUNKEN_LINEHEADER
);
2089 GetClientRect(hwndLineHeader
, &r
);
2090 MapWindowPoints(hwndLineHeader
, hwndDlg
, (LPPOINT
) &r
, 2);
2091 SetRect(&r
, 0, 0, r
.right
+ 1, r
.top
- 1);
2093 InvalidateRect(hwndDlg
, &r
, TRUE
);
2097 * Display the new page.
2099 PROPSHEET_ShowPage(hwndDlg
, index
, psInfo
);
2101 if (psInfo
->proppage
[index
].hasHelp
)
2102 EnableWindow(hwndHelp
, TRUE
);
2104 EnableWindow(hwndHelp
, FALSE
);
2109 /******************************************************************************
2110 * PROPSHEET_SetCurSelId
2112 * Selects the page, specified by resource id.
2114 static void PROPSHEET_SetCurSelId(HWND hwndDlg
, int id
)
2117 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
2119 idx
= PROPSHEET_FindPageByResId(psInfo
, id
);
2120 if (idx
< psInfo
->nPages
)
2122 if (PROPSHEET_CanSetCurSel(hwndDlg
) != FALSE
)
2123 PROPSHEET_SetCurSel(hwndDlg
, idx
, 1, 0);
2127 /******************************************************************************
2128 * PROPSHEET_SetTitleA
2130 static void PROPSHEET_SetTitleA(HWND hwndDlg
, DWORD dwStyle
, LPCSTR lpszText
)
2132 if(HIWORD(lpszText
))
2135 MultiByteToWideChar(CP_ACP
, 0, lpszText
, -1,
2136 szTitle
, sizeof(szTitle
)/sizeof(WCHAR
));
2137 PROPSHEET_SetTitleW(hwndDlg
, dwStyle
, szTitle
);
2141 PROPSHEET_SetTitleW(hwndDlg
, dwStyle
, (LPCWSTR
)lpszText
);
2145 /******************************************************************************
2146 * PROPSHEET_SetTitleW
2148 static void PROPSHEET_SetTitleW(HWND hwndDlg
, DWORD dwStyle
, LPCWSTR lpszText
)
2150 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
2153 TRACE("%s (style %08x)\n", debugstr_w(lpszText
), dwStyle
);
2154 if (HIWORD(lpszText
) == 0) {
2155 if (!LoadStringW(psInfo
->ppshheader
.hInstance
,
2156 LOWORD(lpszText
), szTitle
, sizeof(szTitle
)/sizeof(szTitle
[0])))
2160 if (dwStyle
& PSH_PROPTITLE
)
2163 int lentitle
= strlenW(lpszText
);
2164 int lenprop
= strlenW(psInfo
->strPropertiesFor
);
2166 dest
= Alloc( (lentitle
+ lenprop
+ 1)*sizeof (WCHAR
));
2167 wsprintfW(dest
, psInfo
->strPropertiesFor
, lpszText
);
2169 SetWindowTextW(hwndDlg
, dest
);
2173 SetWindowTextW(hwndDlg
, lpszText
);
2176 /******************************************************************************
2177 * PROPSHEET_SetFinishTextA
2179 static void PROPSHEET_SetFinishTextA(HWND hwndDlg
, LPCSTR lpszText
)
2181 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
2182 HWND hwndButton
= GetDlgItem(hwndDlg
, IDC_FINISH_BUTTON
);
2184 TRACE("'%s'\n", lpszText
);
2185 /* Set text, show and enable the Finish button */
2186 SetWindowTextA(hwndButton
, lpszText
);
2187 ShowWindow(hwndButton
, SW_SHOW
);
2188 EnableWindow(hwndButton
, TRUE
);
2190 /* Make it default pushbutton */
2191 SendMessageW(hwndDlg
, DM_SETDEFID
, IDC_FINISH_BUTTON
, 0);
2193 /* Hide Back button */
2194 hwndButton
= GetDlgItem(hwndDlg
, IDC_BACK_BUTTON
);
2195 ShowWindow(hwndButton
, SW_HIDE
);
2197 if (!psInfo
->hasFinish
)
2199 /* Hide Next button */
2200 hwndButton
= GetDlgItem(hwndDlg
, IDC_NEXT_BUTTON
);
2201 ShowWindow(hwndButton
, SW_HIDE
);
2205 /******************************************************************************
2206 * PROPSHEET_SetFinishTextW
2208 static void PROPSHEET_SetFinishTextW(HWND hwndDlg
, LPCWSTR lpszText
)
2210 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
2211 HWND hwndButton
= GetDlgItem(hwndDlg
, IDC_FINISH_BUTTON
);
2213 TRACE("%s\n", debugstr_w(lpszText
));
2214 /* Set text, show and enable the Finish button */
2215 SetWindowTextW(hwndButton
, lpszText
);
2216 ShowWindow(hwndButton
, SW_SHOW
);
2217 EnableWindow(hwndButton
, TRUE
);
2219 /* Make it default pushbutton */
2220 SendMessageW(hwndDlg
, DM_SETDEFID
, IDC_FINISH_BUTTON
, 0);
2222 /* Hide Back button */
2223 hwndButton
= GetDlgItem(hwndDlg
, IDC_BACK_BUTTON
);
2224 ShowWindow(hwndButton
, SW_HIDE
);
2226 if (!psInfo
->hasFinish
)
2228 /* Hide Next button */
2229 hwndButton
= GetDlgItem(hwndDlg
, IDC_NEXT_BUTTON
);
2230 ShowWindow(hwndButton
, SW_HIDE
);
2234 /******************************************************************************
2235 * PROPSHEET_QuerySiblings
2237 static LRESULT
PROPSHEET_QuerySiblings(HWND hwndDlg
,
2238 WPARAM wParam
, LPARAM lParam
)
2242 LRESULT msgResult
= 0;
2243 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
2245 while ((i
< psInfo
->nPages
) && (msgResult
== 0))
2247 hwndPage
= psInfo
->proppage
[i
].hwndPage
;
2248 msgResult
= SendMessageW(hwndPage
, PSM_QUERYSIBLINGS
, wParam
, lParam
);
2256 /******************************************************************************
2259 static BOOL
PROPSHEET_AddPage(HWND hwndDlg
,
2260 HPROPSHEETPAGE hpage
)
2263 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
2264 HWND hwndTabControl
= GetDlgItem(hwndDlg
, IDC_TABCONTROL
);
2266 LPCPROPSHEETPAGEW ppsp
= (LPCPROPSHEETPAGEW
)hpage
;
2268 TRACE("hpage %p\n", hpage
);
2270 * Allocate and fill in a new PropPageInfo entry.
2272 ppi
= ReAlloc(psInfo
->proppage
, sizeof(PropPageInfo
) * (psInfo
->nPages
+ 1));
2276 psInfo
->proppage
= ppi
;
2277 if (!PROPSHEET_CollectPageInfo(ppsp
, psInfo
, psInfo
->nPages
, FALSE
))
2280 psInfo
->proppage
[psInfo
->nPages
].hpage
= hpage
;
2282 if (ppsp
->dwFlags
& PSP_PREMATURE
)
2284 /* Create the page but don't show it */
2285 PROPSHEET_CreatePage(hwndDlg
, psInfo
->nPages
, psInfo
, ppsp
);
2289 * Add a new tab to the tab control.
2291 item
.mask
= TCIF_TEXT
;
2292 item
.pszText
= (LPWSTR
) psInfo
->proppage
[psInfo
->nPages
].pszText
;
2293 item
.cchTextMax
= MAX_TABTEXT_LENGTH
;
2295 if (psInfo
->hImageList
)
2297 SendMessageW(hwndTabControl
, TCM_SETIMAGELIST
, 0, (LPARAM
)psInfo
->hImageList
);
2300 if ( psInfo
->proppage
[psInfo
->nPages
].hasIcon
)
2302 item
.mask
|= TCIF_IMAGE
;
2303 item
.iImage
= psInfo
->nPages
;
2306 SendMessageW(hwndTabControl
, TCM_INSERTITEMW
, psInfo
->nPages
+ 1,
2311 /* If it is the only page - show it */
2312 if(psInfo
->nPages
== 1)
2313 PROPSHEET_SetCurSel(hwndDlg
, 0, 1, 0);
2317 /******************************************************************************
2318 * PROPSHEET_RemovePage
2320 static BOOL
PROPSHEET_RemovePage(HWND hwndDlg
,
2322 HPROPSHEETPAGE hpage
)
2324 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
2325 HWND hwndTabControl
= GetDlgItem(hwndDlg
, IDC_TABCONTROL
);
2326 PropPageInfo
* oldPages
;
2328 TRACE("index %d, hpage %p\n", index
, hpage
);
2333 * hpage takes precedence over index.
2337 index
= PROPSHEET_GetPageIndex(hpage
, psInfo
);
2340 /* Make sure that index is within range */
2341 if (index
< 0 || index
>= psInfo
->nPages
)
2343 TRACE("Could not find page to remove!\n");
2347 TRACE("total pages %d removing page %d active page %d\n",
2348 psInfo
->nPages
, index
, psInfo
->active_page
);
2350 * Check if we're removing the active page.
2352 if (index
== psInfo
->active_page
)
2354 if (psInfo
->nPages
> 1)
2358 /* activate previous page */
2359 PROPSHEET_SetCurSel(hwndDlg
, index
- 1, -1, 0);
2363 /* activate the next page */
2364 PROPSHEET_SetCurSel(hwndDlg
, index
+ 1, 1, 0);
2365 psInfo
->active_page
= index
;
2370 psInfo
->active_page
= -1;
2371 if (!psInfo
->isModeless
)
2373 psInfo
->ended
= TRUE
;
2378 else if (index
< psInfo
->active_page
)
2379 psInfo
->active_page
--;
2381 /* Unsubclass the page dialog window */
2382 if((psInfo
->ppshheader
.dwFlags
& (PSH_WIZARD97_NEW
| PSH_WIZARD97_OLD
) &&
2383 (psInfo
->ppshheader
.dwFlags
& PSH_WATERMARK
) &&
2384 ((PROPSHEETPAGEW
*)psInfo
->proppage
[index
].hpage
)->dwFlags
& PSP_HIDEHEADER
))
2386 RemoveWindowSubclass(psInfo
->proppage
[index
].hwndPage
,
2387 PROPSHEET_WizardSubclassProc
, 1);
2390 /* Destroy page dialog window */
2391 DestroyWindow(psInfo
->proppage
[index
].hwndPage
);
2393 /* Free page resources */
2394 if(psInfo
->proppage
[index
].hpage
)
2396 PROPSHEETPAGEW
* psp
= (PROPSHEETPAGEW
*)psInfo
->proppage
[index
].hpage
;
2398 if (psp
->dwFlags
& PSP_USETITLE
)
2399 Free ((LPVOID
)psInfo
->proppage
[index
].pszText
);
2401 DestroyPropertySheetPage(psInfo
->proppage
[index
].hpage
);
2404 /* Remove the tab */
2405 SendMessageW(hwndTabControl
, TCM_DELETEITEM
, index
, 0);
2407 oldPages
= psInfo
->proppage
;
2409 psInfo
->proppage
= Alloc(sizeof(PropPageInfo
) * psInfo
->nPages
);
2412 memcpy(&psInfo
->proppage
[0], &oldPages
[0], index
* sizeof(PropPageInfo
));
2414 if (index
< psInfo
->nPages
)
2415 memcpy(&psInfo
->proppage
[index
], &oldPages
[index
+ 1],
2416 (psInfo
->nPages
- index
) * sizeof(PropPageInfo
));
2423 /******************************************************************************
2424 * PROPSHEET_SetWizButtons
2426 * This code will work if (and assumes that) the Next button is on top of the
2427 * Finish button. ie. Finish comes after Next in the Z order.
2428 * This means make sure the dialog template reflects this.
2431 static void PROPSHEET_SetWizButtons(HWND hwndDlg
, DWORD dwFlags
)
2433 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
2434 HWND hwndBack
= GetDlgItem(hwndDlg
, IDC_BACK_BUTTON
);
2435 HWND hwndNext
= GetDlgItem(hwndDlg
, IDC_NEXT_BUTTON
);
2436 HWND hwndFinish
= GetDlgItem(hwndDlg
, IDC_FINISH_BUTTON
);
2438 TRACE("%d\n", dwFlags
);
2440 EnableWindow(hwndBack
, FALSE
);
2441 EnableWindow(hwndNext
, FALSE
);
2442 EnableWindow(hwndFinish
, FALSE
);
2444 /* set the default pushbutton to an enabled button */
2445 if (((dwFlags
& PSWIZB_FINISH
) || psInfo
->hasFinish
) && !(dwFlags
& PSWIZB_DISABLEDFINISH
))
2446 SendMessageW(hwndDlg
, DM_SETDEFID
, IDC_FINISH_BUTTON
, 0);
2447 else if (dwFlags
& PSWIZB_NEXT
)
2448 SendMessageW(hwndDlg
, DM_SETDEFID
, IDC_NEXT_BUTTON
, 0);
2449 else if (dwFlags
& PSWIZB_BACK
)
2450 SendMessageW(hwndDlg
, DM_SETDEFID
, IDC_BACK_BUTTON
, 0);
2452 SendMessageW(hwndDlg
, DM_SETDEFID
, IDCANCEL
, 0);
2455 if (dwFlags
& PSWIZB_BACK
)
2456 EnableWindow(hwndBack
, TRUE
);
2458 if (dwFlags
& PSWIZB_NEXT
)
2459 EnableWindow(hwndNext
, TRUE
);
2461 if (!psInfo
->hasFinish
)
2463 if ((dwFlags
& PSWIZB_FINISH
) || (dwFlags
& PSWIZB_DISABLEDFINISH
))
2465 /* Hide the Next button */
2466 ShowWindow(hwndNext
, SW_HIDE
);
2468 /* Show the Finish button */
2469 ShowWindow(hwndFinish
, SW_SHOW
);
2471 if (!(dwFlags
& PSWIZB_DISABLEDFINISH
))
2472 EnableWindow(hwndFinish
, TRUE
);
2476 /* Hide the Finish button */
2477 ShowWindow(hwndFinish
, SW_HIDE
);
2478 /* Show the Next button */
2479 ShowWindow(hwndNext
, SW_SHOW
);
2482 else if (!(dwFlags
& PSWIZB_DISABLEDFINISH
))
2483 EnableWindow(hwndFinish
, TRUE
);
2486 /******************************************************************************
2487 * PROPSHEET_InsertPage
2489 static BOOL
PROPSHEET_InsertPage(HWND hwndDlg
, HPROPSHEETPAGE hpageInsertAfter
, HPROPSHEETPAGE hpage
)
2491 if (!HIWORD(hpageInsertAfter
))
2492 FIXME("(%p, %d, %p): stub\n", hwndDlg
, LOWORD(hpageInsertAfter
), hpage
);
2494 FIXME("(%p, %p, %p): stub\n", hwndDlg
, hpageInsertAfter
, hpage
);
2498 /******************************************************************************
2499 * PROPSHEET_SetHeaderTitleW
2501 static void PROPSHEET_SetHeaderTitleW(HWND hwndDlg
, int iPageIndex
, LPCWSTR pszHeaderTitle
)
2503 FIXME("(%p, %d, %s): stub\n", hwndDlg
, iPageIndex
, debugstr_w(pszHeaderTitle
));
2506 /******************************************************************************
2507 * PROPSHEET_SetHeaderTitleA
2509 static void PROPSHEET_SetHeaderTitleA(HWND hwndDlg
, int iPageIndex
, LPCSTR pszHeaderTitle
)
2511 FIXME("(%p, %d, %s): stub\n", hwndDlg
, iPageIndex
, debugstr_a(pszHeaderTitle
));
2514 /******************************************************************************
2515 * PROPSHEET_SetHeaderSubTitleW
2517 static void PROPSHEET_SetHeaderSubTitleW(HWND hwndDlg
, int iPageIndex
, LPCWSTR pszHeaderSubTitle
)
2519 FIXME("(%p, %d, %s): stub\n", hwndDlg
, iPageIndex
, debugstr_w(pszHeaderSubTitle
));
2522 /******************************************************************************
2523 * PROPSHEET_SetHeaderSubTitleA
2525 static void PROPSHEET_SetHeaderSubTitleA(HWND hwndDlg
, int iPageIndex
, LPCSTR pszHeaderSubTitle
)
2527 FIXME("(%p, %d, %s): stub\n", hwndDlg
, iPageIndex
, debugstr_a(pszHeaderSubTitle
));
2530 /******************************************************************************
2531 * PROPSHEET_HwndToIndex
2533 static LRESULT
PROPSHEET_HwndToIndex(HWND hwndDlg
, HWND hPageDlg
)
2536 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
2538 TRACE("(%p, %p)\n", hwndDlg
, hPageDlg
);
2540 for (index
= 0; index
< psInfo
->nPages
; index
++)
2541 if (psInfo
->proppage
[index
].hwndPage
== hPageDlg
)
2543 WARN("%p not found\n", hPageDlg
);
2547 /******************************************************************************
2548 * PROPSHEET_IndexToHwnd
2550 static LRESULT
PROPSHEET_IndexToHwnd(HWND hwndDlg
, int iPageIndex
)
2552 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
2553 TRACE("(%p, %d)\n", hwndDlg
, iPageIndex
);
2554 if (iPageIndex
<0 || iPageIndex
>=psInfo
->nPages
) {
2555 WARN("%d out of range.\n", iPageIndex
);
2558 return (LRESULT
)psInfo
->proppage
[iPageIndex
].hwndPage
;
2561 /******************************************************************************
2562 * PROPSHEET_PageToIndex
2564 static LRESULT
PROPSHEET_PageToIndex(HWND hwndDlg
, HPROPSHEETPAGE hPage
)
2567 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
2569 TRACE("(%p, %p)\n", hwndDlg
, hPage
);
2571 for (index
= 0; index
< psInfo
->nPages
; index
++)
2572 if (psInfo
->proppage
[index
].hpage
== hPage
)
2574 WARN("%p not found\n", hPage
);
2578 /******************************************************************************
2579 * PROPSHEET_IndexToPage
2581 static LRESULT
PROPSHEET_IndexToPage(HWND hwndDlg
, int iPageIndex
)
2583 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
2584 TRACE("(%p, %d)\n", hwndDlg
, iPageIndex
);
2585 if (iPageIndex
<0 || iPageIndex
>=psInfo
->nPages
) {
2586 WARN("%d out of range.\n", iPageIndex
);
2589 return (LRESULT
)psInfo
->proppage
[iPageIndex
].hpage
;
2592 /******************************************************************************
2593 * PROPSHEET_IdToIndex
2595 static LRESULT
PROPSHEET_IdToIndex(HWND hwndDlg
, int iPageId
)
2598 LPCPROPSHEETPAGEW psp
;
2599 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
2600 TRACE("(%p, %d)\n", hwndDlg
, iPageId
);
2601 for (index
= 0; index
< psInfo
->nPages
; index
++) {
2602 psp
= (LPCPROPSHEETPAGEW
)psInfo
->proppage
[index
].hpage
;
2603 if (psp
->u
.pszTemplate
== MAKEINTRESOURCEW(iPageId
))
2610 /******************************************************************************
2611 * PROPSHEET_IndexToId
2613 static LRESULT
PROPSHEET_IndexToId(HWND hwndDlg
, int iPageIndex
)
2615 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
2616 LPCPROPSHEETPAGEW psp
;
2617 TRACE("(%p, %d)\n", hwndDlg
, iPageIndex
);
2618 if (iPageIndex
<0 || iPageIndex
>=psInfo
->nPages
) {
2619 WARN("%d out of range.\n", iPageIndex
);
2622 psp
= (LPCPROPSHEETPAGEW
)psInfo
->proppage
[iPageIndex
].hpage
;
2623 if (psp
->dwFlags
& PSP_DLGINDIRECT
|| HIWORD(psp
->u
.pszTemplate
)) {
2626 return (LRESULT
)psp
->u
.pszTemplate
;
2629 /******************************************************************************
2630 * PROPSHEET_GetResult
2632 static LRESULT
PROPSHEET_GetResult(HWND hwndDlg
)
2634 PropSheetInfo
* psInfo
= GetPropW(hwndDlg
, PropSheetInfoStr
);
2635 return psInfo
->result
;
2638 /******************************************************************************
2639 * PROPSHEET_RecalcPageSizes
2641 static BOOL
PROPSHEET_RecalcPageSizes(HWND hwndDlg
)
2643 FIXME("(%p): stub\n", hwndDlg
);
2647 /******************************************************************************
2648 * PROPSHEET_GetPageIndex
2650 * Given a HPROPSHEETPAGE, returns the index of the corresponding page from
2651 * the array of PropPageInfo.
2653 static int PROPSHEET_GetPageIndex(HPROPSHEETPAGE hpage
, const PropSheetInfo
* psInfo
)
2658 TRACE("hpage %p\n", hpage
);
2659 while ((index
< psInfo
->nPages
) && (found
== FALSE
))
2661 if (psInfo
->proppage
[index
].hpage
== hpage
)
2673 /******************************************************************************
2676 static void PROPSHEET_CleanUp(HWND hwndDlg
)
2679 PropSheetInfo
* psInfo
= RemovePropW(hwndDlg
, PropSheetInfoStr
);
2682 if (!psInfo
) return;
2683 if (HIWORD(psInfo
->ppshheader
.pszCaption
))
2684 Free ((LPVOID
)psInfo
->ppshheader
.pszCaption
);
2686 for (i
= 0; i
< psInfo
->nPages
; i
++)
2688 PROPSHEETPAGEA
* psp
= (PROPSHEETPAGEA
*)psInfo
->proppage
[i
].hpage
;
2690 /* Unsubclass the page dialog window */
2691 if((psInfo
->ppshheader
.dwFlags
& (PSH_WIZARD97_NEW
| PSH_WIZARD97_OLD
)) &&
2692 (psInfo
->ppshheader
.dwFlags
& PSH_WATERMARK
) &&
2693 (psp
->dwFlags
& PSP_HIDEHEADER
))
2695 RemoveWindowSubclass(psInfo
->proppage
[i
].hwndPage
,
2696 PROPSHEET_WizardSubclassProc
, 1);
2699 if(psInfo
->proppage
[i
].hwndPage
)
2700 DestroyWindow(psInfo
->proppage
[i
].hwndPage
);
2704 if (psp
->dwFlags
& PSP_USETITLE
)
2705 Free ((LPVOID
)psInfo
->proppage
[i
].pszText
);
2707 DestroyPropertySheetPage(psInfo
->proppage
[i
].hpage
);
2711 DeleteObject(psInfo
->hFont
);
2712 DeleteObject(psInfo
->hFontBold
);
2713 /* If we created the bitmaps, destroy them */
2714 if ((psInfo
->ppshheader
.dwFlags
& PSH_WATERMARK
) &&
2715 (!(psInfo
->ppshheader
.dwFlags
& PSH_USEHBMWATERMARK
)) )
2716 DeleteObject(psInfo
->ppshheader
.u4
.hbmWatermark
);
2717 if ((psInfo
->ppshheader
.dwFlags
& PSH_HEADER
) &&
2718 (!(psInfo
->ppshheader
.dwFlags
& PSH_USEHBMHEADER
)) )
2719 DeleteObject(psInfo
->ppshheader
.u5
.hbmHeader
);
2721 Free(psInfo
->proppage
);
2722 Free(psInfo
->strPropertiesFor
);
2723 ImageList_Destroy(psInfo
->hImageList
);
2725 GlobalFree((HGLOBAL
)psInfo
);
2728 static INT
do_loop(const PropSheetInfo
*psInfo
)
2732 HWND hwnd
= psInfo
->hwnd
;
2734 while(IsWindow(hwnd
) && !psInfo
->ended
&& (ret
= GetMessageW(&msg
, NULL
, 0, 0)))
2739 if(!IsDialogMessageW(hwnd
, &msg
))
2741 TranslateMessage(&msg
);
2742 DispatchMessageW(&msg
);
2748 PostQuitMessage(msg
.wParam
);
2753 ret
= psInfo
->result
;
2755 DestroyWindow(hwnd
);
2759 /******************************************************************************
2760 * PROPSHEET_PropertySheet
2762 * Common code between PropertySheetA/W
2764 static INT_PTR
PROPSHEET_PropertySheet(PropSheetInfo
* psInfo
, BOOL unicode
)
2768 if (psInfo
->active_page
>= psInfo
->nPages
) psInfo
->active_page
= 0;
2769 TRACE("startpage: %d of %d pages\n", psInfo
->active_page
, psInfo
->nPages
);
2771 psInfo
->unicode
= unicode
;
2772 psInfo
->ended
= FALSE
;
2774 if(!psInfo
->isModeless
)
2776 parent
= psInfo
->ppshheader
.hwndParent
;
2777 if (parent
) EnableWindow(parent
, FALSE
);
2779 bRet
= PROPSHEET_CreateDialog(psInfo
);
2780 if(!psInfo
->isModeless
)
2782 bRet
= do_loop(psInfo
);
2783 if (parent
) EnableWindow(parent
, TRUE
);
2788 /******************************************************************************
2789 * PropertySheet (COMCTL32.@)
2790 * PropertySheetA (COMCTL32.@)
2792 * Creates a property sheet in the specified property sheet header.
2795 * Modal property sheets: Positive if successful or -1 otherwise.
2796 * Modeless property sheets: Property sheet handle.
2798 *| ID_PSREBOOTSYSTEM - The user must reboot the computer for the changes to take effect.
2799 *| ID_PSRESTARTWINDOWS - The user must restart Windows for the changes to take effect.
2801 INT_PTR WINAPI
PropertySheetA(LPCPROPSHEETHEADERA lppsh
)
2803 PropSheetInfo
* psInfo
= GlobalAlloc(GPTR
, sizeof(PropSheetInfo
));
2807 TRACE("(%p)\n", lppsh
);
2809 PROPSHEET_CollectSheetInfoA(lppsh
, psInfo
);
2811 psInfo
->proppage
= Alloc(sizeof(PropPageInfo
) * lppsh
->nPages
);
2812 pByte
= (const BYTE
*) psInfo
->ppshheader
.u3
.ppsp
;
2814 for (n
= i
= 0; i
< lppsh
->nPages
; i
++, n
++)
2816 if (!psInfo
->usePropPage
)
2817 psInfo
->proppage
[n
].hpage
= psInfo
->ppshheader
.u3
.phpage
[i
];
2820 psInfo
->proppage
[n
].hpage
= CreatePropertySheetPageA((LPCPROPSHEETPAGEA
)pByte
);
2821 pByte
+= ((LPCPROPSHEETPAGEA
)pByte
)->dwSize
;
2824 if (!PROPSHEET_CollectPageInfo((LPCPROPSHEETPAGEW
)psInfo
->proppage
[n
].hpage
,
2827 if (psInfo
->usePropPage
)
2828 DestroyPropertySheetPage(psInfo
->proppage
[n
].hpage
);
2834 return PROPSHEET_PropertySheet(psInfo
, FALSE
);
2837 /******************************************************************************
2838 * PropertySheetW (COMCTL32.@)
2840 * See PropertySheetA.
2842 INT_PTR WINAPI
PropertySheetW(LPCPROPSHEETHEADERW lppsh
)
2844 PropSheetInfo
* psInfo
= GlobalAlloc(GPTR
, sizeof(PropSheetInfo
));
2848 TRACE("(%p)\n", lppsh
);
2850 PROPSHEET_CollectSheetInfoW(lppsh
, psInfo
);
2852 psInfo
->proppage
= Alloc(sizeof(PropPageInfo
) * lppsh
->nPages
);
2853 pByte
= (const BYTE
*) psInfo
->ppshheader
.u3
.ppsp
;
2855 for (n
= i
= 0; i
< lppsh
->nPages
; i
++, n
++)
2857 if (!psInfo
->usePropPage
)
2858 psInfo
->proppage
[n
].hpage
= psInfo
->ppshheader
.u3
.phpage
[i
];
2861 psInfo
->proppage
[n
].hpage
= CreatePropertySheetPageW((LPCPROPSHEETPAGEW
)pByte
);
2862 pByte
+= ((LPCPROPSHEETPAGEW
)pByte
)->dwSize
;
2865 if (!PROPSHEET_CollectPageInfo((LPCPROPSHEETPAGEW
)psInfo
->proppage
[n
].hpage
,
2868 if (psInfo
->usePropPage
)
2869 DestroyPropertySheetPage(psInfo
->proppage
[n
].hpage
);
2875 return PROPSHEET_PropertySheet(psInfo
, TRUE
);
2878 static LPWSTR
load_string( HINSTANCE instance
, LPCWSTR str
)
2882 if (IS_INTRESOURCE(str
))
2887 WORD i
, id
= LOWORD(str
);
2890 if (!(hrsrc
= FindResourceW( instance
, MAKEINTRESOURCEW((id
>> 4) + 1), (LPWSTR
)RT_STRING
)))
2892 if (!(hmem
= LoadResource( instance
, hrsrc
))) return NULL
;
2893 if (!(ptr
= LockResource( hmem
))) return NULL
;
2894 for (i
= id
& 0x0f; i
> 0; i
--) ptr
+= *ptr
+ 1;
2896 if (!len
) return NULL
;
2897 ret
= Alloc( (len
+ 1) * sizeof(WCHAR
) );
2900 memcpy( ret
, ptr
+ 1, len
* sizeof(WCHAR
) );
2906 int len
= (strlenW(str
) + 1) * sizeof(WCHAR
);
2908 if (ret
) memcpy( ret
, str
, len
);
2914 /******************************************************************************
2915 * CreatePropertySheetPage (COMCTL32.@)
2916 * CreatePropertySheetPageA (COMCTL32.@)
2918 * Creates a new property sheet page.
2921 * Success: Handle to new property sheet page.
2925 * An application must use the PSM_ADDPAGE message to add the new page to
2926 * an existing property sheet.
2928 HPROPSHEETPAGE WINAPI
CreatePropertySheetPageA(
2929 LPCPROPSHEETPAGEA lpPropSheetPage
)
2931 PROPSHEETPAGEW
* ppsp
= Alloc(sizeof(PROPSHEETPAGEW
));
2933 memcpy(ppsp
,lpPropSheetPage
,min(lpPropSheetPage
->dwSize
,sizeof(PROPSHEETPAGEA
)));
2935 ppsp
->dwFlags
&= ~ PSP_INTERNAL_UNICODE
;
2937 if ( !(ppsp
->dwFlags
& PSP_DLGINDIRECT
) )
2939 if (HIWORD( ppsp
->u
.pszTemplate
))
2941 int len
= strlen(lpPropSheetPage
->u
.pszTemplate
) + 1;
2942 char *template = Alloc( len
);
2944 ppsp
->u
.pszTemplate
= (LPWSTR
)strcpy( template, lpPropSheetPage
->u
.pszTemplate
);
2948 if (ppsp
->dwFlags
& PSP_USEICONID
)
2950 if (HIWORD( ppsp
->u2
.pszIcon
))
2951 PROPSHEET_AtoW(&ppsp
->u2
.pszIcon
, lpPropSheetPage
->u2
.pszIcon
);
2954 if (ppsp
->dwFlags
& PSP_USETITLE
)
2956 if (HIWORD( ppsp
->pszTitle
))
2957 PROPSHEET_AtoW( &ppsp
->pszTitle
, lpPropSheetPage
->pszTitle
);
2959 ppsp
->pszTitle
= load_string( ppsp
->hInstance
, ppsp
->pszTitle
);
2962 ppsp
->pszTitle
= NULL
;
2964 if (ppsp
->dwFlags
& PSP_HIDEHEADER
)
2965 ppsp
->dwFlags
&= ~(PSP_USEHEADERTITLE
| PSP_USEHEADERSUBTITLE
);
2967 if (ppsp
->dwFlags
& PSP_USEHEADERTITLE
)
2969 if (HIWORD( ppsp
->pszHeaderTitle
))
2970 PROPSHEET_AtoW(&ppsp
->pszHeaderTitle
, lpPropSheetPage
->pszHeaderTitle
);
2972 ppsp
->pszHeaderTitle
= load_string( ppsp
->hInstance
, ppsp
->pszHeaderTitle
);
2975 ppsp
->pszHeaderTitle
= NULL
;
2977 if (ppsp
->dwFlags
& PSP_USEHEADERSUBTITLE
)
2979 if (HIWORD( ppsp
->pszHeaderSubTitle
))
2980 PROPSHEET_AtoW(&ppsp
->pszHeaderSubTitle
, lpPropSheetPage
->pszHeaderSubTitle
);
2982 ppsp
->pszHeaderSubTitle
= load_string( ppsp
->hInstance
, ppsp
->pszHeaderSubTitle
);
2985 ppsp
->pszHeaderSubTitle
= NULL
;
2987 return (HPROPSHEETPAGE
)ppsp
;
2990 /******************************************************************************
2991 * CreatePropertySheetPageW (COMCTL32.@)
2993 * See CreatePropertySheetA.
2995 HPROPSHEETPAGE WINAPI
CreatePropertySheetPageW(LPCPROPSHEETPAGEW lpPropSheetPage
)
2997 PROPSHEETPAGEW
* ppsp
= Alloc(sizeof(PROPSHEETPAGEW
));
2999 memcpy(ppsp
,lpPropSheetPage
,min(lpPropSheetPage
->dwSize
,sizeof(PROPSHEETPAGEW
)));
3001 ppsp
->dwFlags
|= PSP_INTERNAL_UNICODE
;
3003 if ( !(ppsp
->dwFlags
& PSP_DLGINDIRECT
) )
3005 if (HIWORD( ppsp
->u
.pszTemplate
))
3007 int len
= strlenW(lpPropSheetPage
->u
.pszTemplate
) + 1;
3008 WCHAR
*template = Alloc( len
* sizeof (WCHAR
) );
3010 ppsp
->u
.pszTemplate
= strcpyW( template, lpPropSheetPage
->u
.pszTemplate
);
3014 if ( ppsp
->dwFlags
& PSP_USEICONID
)
3016 if (HIWORD( ppsp
->u2
.pszIcon
))
3018 int len
= strlenW(lpPropSheetPage
->u2
.pszIcon
) + 1;
3019 WCHAR
*icon
= Alloc( len
* sizeof (WCHAR
) );
3021 ppsp
->u2
.pszIcon
= strcpyW( icon
, lpPropSheetPage
->u2
.pszIcon
);
3025 if (ppsp
->dwFlags
& PSP_USETITLE
)
3026 ppsp
->pszTitle
= load_string( ppsp
->hInstance
, ppsp
->pszTitle
);
3028 ppsp
->pszTitle
= NULL
;
3030 if (ppsp
->dwFlags
& PSP_HIDEHEADER
)
3031 ppsp
->dwFlags
&= ~(PSP_USEHEADERTITLE
| PSP_USEHEADERSUBTITLE
);
3033 if (ppsp
->dwFlags
& PSP_USEHEADERTITLE
)
3034 ppsp
->pszHeaderTitle
= load_string( ppsp
->hInstance
, ppsp
->pszHeaderTitle
);
3036 ppsp
->pszHeaderTitle
= NULL
;
3038 if (ppsp
->dwFlags
& PSP_USEHEADERSUBTITLE
)
3039 ppsp
->pszHeaderSubTitle
= load_string( ppsp
->hInstance
, ppsp
->pszHeaderSubTitle
);
3041 ppsp
->pszHeaderSubTitle
= NULL
;
3043 return (HPROPSHEETPAGE
)ppsp
;
3046 /******************************************************************************
3047 * DestroyPropertySheetPage (COMCTL32.@)
3049 * Destroys a property sheet page previously created with
3050 * CreatePropertySheetA() or CreatePropertySheetW() and frees the associated
3057 BOOL WINAPI
DestroyPropertySheetPage(HPROPSHEETPAGE hPropPage
)
3059 PROPSHEETPAGEW
*psp
= (PROPSHEETPAGEW
*)hPropPage
;
3064 if ( !(psp
->dwFlags
& PSP_DLGINDIRECT
) && HIWORD( psp
->u
.pszTemplate
) )
3065 Free ((LPVOID
)psp
->u
.pszTemplate
);
3067 if ( (psp
->dwFlags
& PSP_USEICONID
) && HIWORD( psp
->u2
.pszIcon
) )
3068 Free ((LPVOID
)psp
->u2
.pszIcon
);
3070 if ((psp
->dwFlags
& PSP_USETITLE
) && HIWORD( psp
->pszTitle
))
3071 Free ((LPVOID
)psp
->pszTitle
);
3078 /******************************************************************************
3079 * PROPSHEET_IsDialogMessage
3081 static BOOL
PROPSHEET_IsDialogMessage(HWND hwnd
, LPMSG lpMsg
)
3083 PropSheetInfo
* psInfo
= GetPropW(hwnd
, PropSheetInfoStr
);
3086 if (!psInfo
|| (hwnd
!= lpMsg
->hwnd
&& !IsChild(hwnd
, lpMsg
->hwnd
)))
3089 if (lpMsg
->message
== WM_KEYDOWN
&& (GetKeyState(VK_CONTROL
) & 0x8000))
3092 INT dlgCode
= SendMessageW(lpMsg
->hwnd
, WM_GETDLGCODE
, 0, (LPARAM
)lpMsg
);
3094 if (!(dlgCode
& DLGC_WANTMESSAGE
))
3096 switch (lpMsg
->wParam
)
3099 if (GetKeyState(VK_SHIFT
) & 0x8000)
3105 case VK_NEXT
: new_page
= 1; break;
3106 case VK_PRIOR
: new_page
= -1; break;
3112 if (PROPSHEET_CanSetCurSel(hwnd
) != FALSE
)
3114 new_page
+= psInfo
->active_page
;
3117 new_page
= psInfo
->nPages
- 1;
3118 else if (new_page
>= psInfo
->nPages
)
3121 PROPSHEET_SetCurSel(hwnd
, new_page
, 1, 0);
3128 return IsDialogMessageW(hwnd
, lpMsg
);
3131 /******************************************************************************
3132 * PROPSHEET_DoCommand
3134 static BOOL
PROPSHEET_DoCommand(HWND hwnd
, WORD wID
)
3140 case IDC_APPLY_BUTTON
:
3142 HWND hwndApplyBtn
= GetDlgItem(hwnd
, IDC_APPLY_BUTTON
);
3144 if (PROPSHEET_Apply(hwnd
, wID
== IDOK
? 1: 0) == FALSE
)
3149 PropSheetInfo
* psInfo
= GetPropW(hwnd
, PropSheetInfoStr
);
3151 /* don't overwrite ID_PSRESTARTWINDOWS or ID_PSREBOOTSYSTEM */
3152 if (psInfo
->result
== 0)
3153 psInfo
->result
= IDOK
;
3155 if (psInfo
->isModeless
)
3156 psInfo
->activeValid
= FALSE
;
3158 psInfo
->ended
= TRUE
;
3161 EnableWindow(hwndApplyBtn
, FALSE
);
3166 case IDC_BACK_BUTTON
:
3167 PROPSHEET_Back(hwnd
);
3170 case IDC_NEXT_BUTTON
:
3171 PROPSHEET_Next(hwnd
);
3174 case IDC_FINISH_BUTTON
:
3175 PROPSHEET_Finish(hwnd
);
3179 PROPSHEET_Cancel(hwnd
, 0);
3183 PROPSHEET_Help(hwnd
);
3193 /******************************************************************************
3196 static LRESULT
PROPSHEET_Paint(HWND hwnd
, HDC hdcParam
)
3198 PropSheetInfo
* psInfo
= GetPropW(hwnd
, PropSheetInfoStr
);
3203 HPALETTE hOldPal
= 0;
3207 LPCPROPSHEETPAGEW ppshpage
;
3208 WCHAR szBuffer
[256];
3211 if (psInfo
->active_page
< 0) return 1;
3212 hdc
= hdcParam
? hdcParam
: BeginPaint(hwnd
, &ps
);
3215 hdcSrc
= CreateCompatibleDC(0);
3216 ppshpage
= (LPCPROPSHEETPAGEW
)psInfo
->proppage
[psInfo
->active_page
].hpage
;
3218 if (psInfo
->ppshheader
.dwFlags
& PSH_USEHPLWATERMARK
)
3219 hOldPal
= SelectPalette(hdc
, psInfo
->ppshheader
.hplWatermark
, FALSE
);
3221 if ( (!(ppshpage
->dwFlags
& PSP_HIDEHEADER
)) &&
3222 (psInfo
->ppshheader
.dwFlags
& (PSH_WIZARD97_OLD
| PSH_WIZARD97_NEW
)) &&
3223 (psInfo
->ppshheader
.dwFlags
& PSH_HEADER
) )
3225 HWND hwndLineHeader
= GetDlgItem(hwnd
, IDC_SUNKEN_LINEHEADER
);
3227 COLORREF clrOld
= 0;
3230 hbmp
= SelectObject(hdcSrc
, psInfo
->ppshheader
.u5
.hbmHeader
);
3231 hOldFont
= SelectObject(hdc
, psInfo
->hFontBold
);
3233 GetClientRect(hwndLineHeader
, &r
);
3234 MapWindowPoints(hwndLineHeader
, hwnd
, (LPPOINT
) &r
, 2);
3235 SetRect(&rzone
, 0, 0, r
.right
+ 1, r
.top
- 1);
3237 GetObjectW(psInfo
->ppshheader
.u5
.hbmHeader
, sizeof(BITMAP
), (LPVOID
)&bm
);
3239 if (psInfo
->ppshheader
.dwFlags
& PSH_WIZARD97_OLD
)
3241 /* Fill the unoccupied part of the header with color of the
3242 * left-top pixel, but do it only when needed.
3244 if (bm
.bmWidth
< r
.right
|| bm
.bmHeight
< r
.bottom
)
3246 hbr
= CreateSolidBrush(GetPixel(hdcSrc
, 0, 0));
3247 CopyRect(&r
, &rzone
);
3248 if (bm
.bmWidth
< r
.right
)
3250 r
.left
= bm
.bmWidth
;
3251 FillRect(hdc
, &r
, hbr
);
3253 if (bm
.bmHeight
< r
.bottom
)
3256 r
.top
= bm
.bmHeight
;
3257 FillRect(hdc
, &r
, hbr
);
3262 /* Draw the header itself. */
3264 bm
.bmWidth
, min(bm
.bmHeight
, rzone
.bottom
),
3265 hdcSrc
, 0, 0, SRCCOPY
);
3270 hbr
= GetSysColorBrush(COLOR_WINDOW
);
3271 FillRect(hdc
, &rzone
, hbr
);
3273 /* Draw the header bitmap. It's always centered like a
3274 * common 49 x 49 bitmap. */
3275 margin
= (rzone
.bottom
- 49) / 2;
3276 BitBlt(hdc
, rzone
.right
- 49 - margin
, margin
,
3277 min(bm
.bmWidth
, 49), min(bm
.bmHeight
, 49),
3278 hdcSrc
, 0, 0, SRCCOPY
);
3280 /* NOTE: Native COMCTL32 draws a white stripe over the bitmap
3281 * if its height is smaller than 49 pixels. Because the reason
3282 * for this bug is unknown the current code doesn't try to
3286 clrOld
= SetTextColor (hdc
, 0x00000000);
3287 oldBkMode
= SetBkMode (hdc
, TRANSPARENT
);
3289 if (ppshpage
->dwFlags
& PSP_USEHEADERTITLE
) {
3290 SetRect(&r
, 20, 10, 0, 0);
3291 if (HIWORD(ppshpage
->pszHeaderTitle
))
3292 DrawTextW(hdc
, ppshpage
->pszHeaderTitle
, -1, &r
, DT_LEFT
| DT_SINGLELINE
| DT_NOCLIP
);
3295 nLength
= LoadStringW(ppshpage
->hInstance
, (UINT_PTR
)ppshpage
->pszHeaderTitle
,
3299 DrawTextW(hdc
, szBuffer
, nLength
, &r
, DT_LEFT
| DT_SINGLELINE
| DT_NOCLIP
);
3304 if (ppshpage
->dwFlags
& PSP_USEHEADERSUBTITLE
) {
3305 SelectObject(hdc
, psInfo
->hFont
);
3306 SetRect(&r
, 40, 25, rzone
.right
- 69, rzone
.bottom
);
3307 if (HIWORD(ppshpage
->pszHeaderTitle
))
3308 DrawTextW(hdc
, ppshpage
->pszHeaderSubTitle
, -1, &r
, DT_LEFT
| DT_WORDBREAK
);
3311 nLength
= LoadStringW(ppshpage
->hInstance
, (UINT_PTR
)ppshpage
->pszHeaderSubTitle
,
3315 DrawTextW(hdc
, szBuffer
, nLength
, &r
, DT_LEFT
| DT_WORDBREAK
);
3320 offsety
= rzone
.bottom
+ 2;
3322 SetTextColor(hdc
, clrOld
);
3323 SetBkMode(hdc
, oldBkMode
);
3324 SelectObject(hdc
, hOldFont
);
3325 SelectObject(hdcSrc
, hbmp
);
3328 if ( (ppshpage
->dwFlags
& PSP_HIDEHEADER
) &&
3329 (psInfo
->ppshheader
.dwFlags
& (PSH_WIZARD97_OLD
| PSH_WIZARD97_NEW
)) &&
3330 (psInfo
->ppshheader
.dwFlags
& PSH_WATERMARK
) )
3332 HWND hwndLine
= GetDlgItem(hwnd
, IDC_SUNKEN_LINE
);
3334 GetClientRect(hwndLine
, &r
);
3335 MapWindowPoints(hwndLine
, hwnd
, (LPPOINT
) &r
, 2);
3339 rzone
.right
= r
.right
;
3340 rzone
.bottom
= r
.top
- 1;
3342 hbr
= GetSysColorBrush(COLOR_WINDOW
);
3343 FillRect(hdc
, &rzone
, hbr
);
3345 GetObjectW(psInfo
->ppshheader
.u4
.hbmWatermark
, sizeof(BITMAP
), (LPVOID
)&bm
);
3346 hbmp
= SelectObject(hdcSrc
, psInfo
->ppshheader
.u4
.hbmWatermark
);
3348 /* The watermark is truncated to a width of 164 pixels */
3349 r
.right
= min(r
.right
, 164);
3350 BitBlt(hdc
, 0, offsety
, min(bm
.bmWidth
, r
.right
),
3351 min(bm
.bmHeight
, r
.bottom
), hdcSrc
, 0, 0, SRCCOPY
);
3353 /* If the bitmap is not big enough, fill the remaining area
3354 with the color of pixel (0,0) of bitmap - see MSDN */
3355 if (r
.top
> bm
.bmHeight
) {
3356 r
.bottom
= r
.top
- 1;
3357 r
.top
= bm
.bmHeight
;
3359 r
.right
= bm
.bmWidth
;
3360 hbr
= CreateSolidBrush(GetPixel(hdcSrc
, 0, 0));
3361 FillRect(hdc
, &r
, hbr
);
3365 SelectObject(hdcSrc
, hbmp
);
3368 if (psInfo
->ppshheader
.dwFlags
& PSH_USEHPLWATERMARK
)
3369 SelectPalette(hdc
, hOldPal
, FALSE
);
3373 if (!hdcParam
) EndPaint(hwnd
, &ps
);
3378 /******************************************************************************
3379 * PROPSHEET_DialogProc
3381 static INT_PTR CALLBACK
3382 PROPSHEET_DialogProc(HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
3384 TRACE("hwnd=%p msg=0x%04x wparam=%lx lparam=%lx\n",
3385 hwnd
, uMsg
, wParam
, lParam
);
3391 PropSheetInfo
* psInfo
= (PropSheetInfo
*) lParam
;
3392 WCHAR
* strCaption
= Alloc(MAX_CAPTION_LENGTH
*sizeof(WCHAR
));
3393 HWND hwndTabCtrl
= GetDlgItem(hwnd
, IDC_TABCONTROL
);
3397 /* Using PropSheetInfoStr to store extra data doesn't match the native
3398 * common control: native uses TCM_[GS]ETITEM
3400 SetPropW(hwnd
, PropSheetInfoStr
, (HANDLE
)psInfo
);
3403 * psInfo->hwnd is not being used by WINE code - it exists
3404 * for compatibility with "real" Windoze. The same about
3405 * SetWindowLongPtr - WINE is only using the PropSheetInfoStr
3408 psInfo
->hwnd
= hwnd
;
3409 SetWindowLongPtrW(hwnd
, DWLP_USER
, (DWORD_PTR
)psInfo
);
3411 /* set up the Next and Back buttons by default */
3412 PROPSHEET_SetWizButtons(hwnd
, PSWIZB_BACK
|PSWIZB_NEXT
);
3415 SystemParametersInfoW (SPI_GETICONTITLELOGFONT
, 0, &logFont
, 0);
3416 psInfo
->hFont
= CreateFontIndirectW (&logFont
);
3417 logFont
.lfWeight
= FW_BOLD
;
3418 psInfo
->hFontBold
= CreateFontIndirectW (&logFont
);
3421 * Small icon in the title bar.
3423 if ((psInfo
->ppshheader
.dwFlags
& PSH_USEICONID
) ||
3424 (psInfo
->ppshheader
.dwFlags
& PSH_USEHICON
))
3427 int icon_cx
= GetSystemMetrics(SM_CXSMICON
);
3428 int icon_cy
= GetSystemMetrics(SM_CYSMICON
);
3430 if (psInfo
->ppshheader
.dwFlags
& PSH_USEICONID
)
3431 hIcon
= LoadImageW(psInfo
->ppshheader
.hInstance
,
3432 psInfo
->ppshheader
.u
.pszIcon
,
3437 hIcon
= psInfo
->ppshheader
.u
.hIcon
;
3439 SendMessageW(hwnd
, WM_SETICON
, 0, (LPARAM
)hIcon
);
3442 if (psInfo
->ppshheader
.dwFlags
& PSH_USEHICON
)
3443 SendMessageW(hwnd
, WM_SETICON
, 0, (LPARAM
)psInfo
->ppshheader
.u
.hIcon
);
3445 psInfo
->strPropertiesFor
= strCaption
;
3447 GetWindowTextW(hwnd
, psInfo
->strPropertiesFor
, MAX_CAPTION_LENGTH
);
3449 PROPSHEET_CreateTabControl(hwnd
, psInfo
);
3451 PROPSHEET_LoadWizardBitmaps(psInfo
);
3453 if (psInfo
->ppshheader
.dwFlags
& INTRNL_ANY_WIZARD
)
3455 ShowWindow(hwndTabCtrl
, SW_HIDE
);
3456 PROPSHEET_AdjustSizeWizard(hwnd
, psInfo
);
3457 PROPSHEET_AdjustButtonsWizard(hwnd
, psInfo
);
3461 if (PROPSHEET_SizeMismatch(hwnd
, psInfo
))
3463 PROPSHEET_AdjustSize(hwnd
, psInfo
);
3464 PROPSHEET_AdjustButtons(hwnd
, psInfo
);
3468 if (!HIWORD(psInfo
->ppshheader
.pszCaption
) &&
3469 psInfo
->ppshheader
.hInstance
)
3473 if (LoadStringW(psInfo
->ppshheader
.hInstance
,
3474 (UINT_PTR
)psInfo
->ppshheader
.pszCaption
, szText
, 255))
3475 PROPSHEET_SetTitleW(hwnd
, psInfo
->ppshheader
.dwFlags
, szText
);
3479 PROPSHEET_SetTitleW(hwnd
, psInfo
->ppshheader
.dwFlags
,
3480 psInfo
->ppshheader
.pszCaption
);
3484 if (psInfo
->useCallback
)
3485 (*(psInfo
->ppshheader
.pfnCallback
))(hwnd
, PSCB_INITIALIZED
, 0);
3487 idx
= psInfo
->active_page
;
3488 psInfo
->active_page
= -1;
3490 PROPSHEET_SetCurSel(hwnd
, idx
, 1, psInfo
->proppage
[idx
].hpage
);
3492 /* doing TCM_SETCURSEL seems to be needed even in case of PSH_WIZARD,
3493 * as some programs call TCM_GETCURSEL to get the current selection
3494 * from which to switch to the next page */
3495 SendMessageW(hwndTabCtrl
, TCM_SETCURSEL
, psInfo
->active_page
, 0);
3497 PROPSHEET_UnChanged(hwnd
, (HWND
)wParam
);
3502 case WM_PRINTCLIENT
:
3504 PROPSHEET_Paint(hwnd
, (HDC
)wParam
);
3508 PROPSHEET_CleanUp(hwnd
);
3512 PROPSHEET_Cancel(hwnd
, 1);
3513 return FALSE
; /* let DefDlgProc post us WM_COMMAND/IDCANCEL */
3516 if (!PROPSHEET_DoCommand(hwnd
, LOWORD(wParam
)))
3518 PropSheetInfo
* psInfo
= GetPropW(hwnd
, PropSheetInfoStr
);
3523 /* No default handler, forward notification to active page */
3524 if (psInfo
->activeValid
&& psInfo
->active_page
!= -1)
3526 HWND hwndPage
= psInfo
->proppage
[psInfo
->active_page
].hwndPage
;
3527 SendMessageW(hwndPage
, WM_COMMAND
, wParam
, lParam
);
3534 NMHDR
* pnmh
= (LPNMHDR
) lParam
;
3536 if (pnmh
->code
== TCN_SELCHANGE
)
3538 int index
= SendMessageW(pnmh
->hwndFrom
, TCM_GETCURSEL
, 0, 0);
3539 PROPSHEET_SetCurSel(hwnd
, index
, 1, 0);
3542 if(pnmh
->code
== TCN_SELCHANGING
)
3544 BOOL bRet
= PROPSHEET_CanSetCurSel(hwnd
);
3545 SetWindowLongPtrW(hwnd
, DWLP_MSGRESULT
, !bRet
);
3552 case WM_SYSCOLORCHANGE
:
3553 COMCTL32_RefreshSysColors();
3556 case PSM_GETCURRENTPAGEHWND
:
3558 PropSheetInfo
* psInfo
= GetPropW(hwnd
, PropSheetInfoStr
);
3564 if (psInfo
->activeValid
&& psInfo
->active_page
!= -1)
3565 hwndPage
= psInfo
->proppage
[psInfo
->active_page
].hwndPage
;
3567 SetWindowLongPtrW(hwnd
, DWLP_MSGRESULT
, (DWORD_PTR
)hwndPage
);
3573 PROPSHEET_Changed(hwnd
, (HWND
)wParam
);
3577 PROPSHEET_UnChanged(hwnd
, (HWND
)wParam
);
3580 case PSM_GETTABCONTROL
:
3582 HWND hwndTabCtrl
= GetDlgItem(hwnd
, IDC_TABCONTROL
);
3584 SetWindowLongPtrW(hwnd
, DWLP_MSGRESULT
, (DWORD_PTR
)hwndTabCtrl
);
3593 msgResult
= PROPSHEET_CanSetCurSel(hwnd
);
3594 if(msgResult
!= FALSE
)
3596 msgResult
= PROPSHEET_SetCurSel(hwnd
,
3599 (HPROPSHEETPAGE
)lParam
);
3602 SetWindowLongPtrW(hwnd
, DWLP_MSGRESULT
, msgResult
);
3607 case PSM_CANCELTOCLOSE
:
3609 WCHAR buf
[MAX_BUTTONTEXT_LENGTH
];
3610 HWND hwndOK
= GetDlgItem(hwnd
, IDOK
);
3611 HWND hwndCancel
= GetDlgItem(hwnd
, IDCANCEL
);
3613 EnableWindow(hwndCancel
, FALSE
);
3614 if (LoadStringW(COMCTL32_hModule
, IDS_CLOSE
, buf
, sizeof(buf
)/sizeof(buf
[0])))
3615 SetWindowTextW(hwndOK
, buf
);
3620 case PSM_RESTARTWINDOWS
:
3622 PropSheetInfo
* psInfo
= GetPropW(hwnd
, PropSheetInfoStr
);
3627 /* reboot system takes precedence over restart windows */
3628 if (psInfo
->result
!= ID_PSREBOOTSYSTEM
)
3629 psInfo
->result
= ID_PSRESTARTWINDOWS
;
3634 case PSM_REBOOTSYSTEM
:
3636 PropSheetInfo
* psInfo
= GetPropW(hwnd
, PropSheetInfoStr
);
3641 psInfo
->result
= ID_PSREBOOTSYSTEM
;
3647 PROPSHEET_SetTitleA(hwnd
, (DWORD
) wParam
, (LPCSTR
) lParam
);
3651 PROPSHEET_SetTitleW(hwnd
, (DWORD
) wParam
, (LPCWSTR
) lParam
);
3656 BOOL msgResult
= PROPSHEET_Apply(hwnd
, 0);
3658 SetWindowLongPtrW(hwnd
, DWLP_MSGRESULT
, msgResult
);
3663 case PSM_QUERYSIBLINGS
:
3665 LRESULT msgResult
= PROPSHEET_QuerySiblings(hwnd
, wParam
, lParam
);
3667 SetWindowLongPtrW(hwnd
, DWLP_MSGRESULT
, msgResult
);
3675 * Note: MSVC++ 6.0 documentation says that PSM_ADDPAGE does not have
3676 * a return value. This is not true. PSM_ADDPAGE returns TRUE
3677 * on success or FALSE otherwise, as specified on MSDN Online.
3678 * Also see the MFC code for
3679 * CPropertySheet::AddPage(CPropertyPage* pPage).
3682 BOOL msgResult
= PROPSHEET_AddPage(hwnd
, (HPROPSHEETPAGE
)lParam
);
3684 SetWindowLongPtrW(hwnd
, DWLP_MSGRESULT
, msgResult
);
3689 case PSM_REMOVEPAGE
:
3690 PROPSHEET_RemovePage(hwnd
, (int)wParam
, (HPROPSHEETPAGE
)lParam
);
3693 case PSM_ISDIALOGMESSAGE
:
3695 BOOL msgResult
= PROPSHEET_IsDialogMessage(hwnd
, (LPMSG
)lParam
);
3696 SetWindowLongPtrW(hwnd
, DWLP_MSGRESULT
, msgResult
);
3700 case PSM_PRESSBUTTON
:
3701 PROPSHEET_PressButton(hwnd
, (int)wParam
);
3704 case PSM_SETFINISHTEXTA
:
3705 PROPSHEET_SetFinishTextA(hwnd
, (LPCSTR
) lParam
);
3708 case PSM_SETWIZBUTTONS
:
3709 PROPSHEET_SetWizButtons(hwnd
, (DWORD
)lParam
);
3712 case PSM_SETCURSELID
:
3713 PROPSHEET_SetCurSelId(hwnd
, (int)lParam
);
3716 case PSM_SETFINISHTEXTW
:
3717 PROPSHEET_SetFinishTextW(hwnd
, (LPCWSTR
) lParam
);
3720 case PSM_INSERTPAGE
:
3722 BOOL msgResult
= PROPSHEET_InsertPage(hwnd
, (HPROPSHEETPAGE
)wParam
, (HPROPSHEETPAGE
)lParam
);
3723 SetWindowLongPtrW(hwnd
, DWLP_MSGRESULT
, msgResult
);
3727 case PSM_SETHEADERTITLEW
:
3728 PROPSHEET_SetHeaderTitleW(hwnd
, (int)wParam
, (LPCWSTR
)lParam
);
3731 case PSM_SETHEADERTITLEA
:
3732 PROPSHEET_SetHeaderTitleA(hwnd
, (int)wParam
, (LPCSTR
)lParam
);
3735 case PSM_SETHEADERSUBTITLEW
:
3736 PROPSHEET_SetHeaderSubTitleW(hwnd
, (int)wParam
, (LPCWSTR
)lParam
);
3739 case PSM_SETHEADERSUBTITLEA
:
3740 PROPSHEET_SetHeaderSubTitleA(hwnd
, (int)wParam
, (LPCSTR
)lParam
);
3743 case PSM_HWNDTOINDEX
:
3745 LRESULT msgResult
= PROPSHEET_HwndToIndex(hwnd
, (HWND
)wParam
);
3746 SetWindowLongPtrW(hwnd
, DWLP_MSGRESULT
, msgResult
);
3750 case PSM_INDEXTOHWND
:
3752 LRESULT msgResult
= PROPSHEET_IndexToHwnd(hwnd
, (int)wParam
);
3753 SetWindowLongPtrW(hwnd
, DWLP_MSGRESULT
, msgResult
);
3757 case PSM_PAGETOINDEX
:
3759 LRESULT msgResult
= PROPSHEET_PageToIndex(hwnd
, (HPROPSHEETPAGE
)wParam
);
3760 SetWindowLongPtrW(hwnd
, DWLP_MSGRESULT
, msgResult
);
3764 case PSM_INDEXTOPAGE
:
3766 LRESULT msgResult
= PROPSHEET_IndexToPage(hwnd
, (int)wParam
);
3767 SetWindowLongPtrW(hwnd
, DWLP_MSGRESULT
, msgResult
);
3773 LRESULT msgResult
= PROPSHEET_IdToIndex(hwnd
, (int)lParam
);
3774 SetWindowLongPtrW(hwnd
, DWLP_MSGRESULT
, msgResult
);
3780 LRESULT msgResult
= PROPSHEET_IndexToId(hwnd
, (int)wParam
);
3781 SetWindowLongPtrW(hwnd
, DWLP_MSGRESULT
, msgResult
);
3787 LRESULT msgResult
= PROPSHEET_GetResult(hwnd
);
3788 SetWindowLongPtrW(hwnd
, DWLP_MSGRESULT
, msgResult
);
3792 case PSM_RECALCPAGESIZES
:
3794 LRESULT msgResult
= PROPSHEET_RecalcPageSizes(hwnd
);
3795 SetWindowLongPtrW(hwnd
, DWLP_MSGRESULT
, msgResult
);