4 * Copyright 1998 Francis Beaudet
5 * Copyright 1999 Thuy Nguyen
6 * Copyright 2004 Maxime Bellenge
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 * - Unicode property sheets
30 #define NONAMELESSUNION
31 #define NONAMELESSSTRUCT
41 #include "wine/debug.h"
42 #include "wine/unicode.h"
44 /******************************************************************************
68 } MyDLGITEMTEMPLATEEX;
71 typedef struct tagPropPageInfo
73 HPROPSHEETPAGE hpage; /* to keep track of pages not passed to PropertySheet */
82 typedef struct tagPropSheetInfo
85 PROPSHEETHEADERW ppshheader;
87 LPWSTR strPropertiesFor;
97 PropPageInfo* proppage;
104 HIMAGELIST hImageList;
113 /******************************************************************************
114 * Defines and global variables
117 const WCHAR PropSheetInfoStr[] =
118 {'P','r','o','p','e','r','t','y','S','h','e','e','t','I','n','f','o',0 };
120 #define PSP_INTERNAL_UNICODE 0x80000000
122 #define MAX_CAPTION_LENGTH 255
123 #define MAX_TABTEXT_LENGTH 255
124 #define MAX_BUTTONTEXT_LENGTH 64
126 #define INTRNL_ANY_WIZARD (PSH_WIZARD | PSH_WIZARD97_OLD | PSH_WIZARD97_NEW | PSH_WIZARD_LITE)
128 /******************************************************************************
131 static int PROPSHEET_CreateDialog(PropSheetInfo* psInfo);
132 static BOOL PROPSHEET_SizeMismatch(HWND hwndDlg, PropSheetInfo* psInfo);
133 static BOOL PROPSHEET_AdjustSize(HWND hwndDlg, PropSheetInfo* psInfo);
134 static BOOL PROPSHEET_AdjustButtons(HWND hwndParent, PropSheetInfo* psInfo);
135 static BOOL PROPSHEET_CollectSheetInfoA(LPCPROPSHEETHEADERA lppsh,
136 PropSheetInfo * psInfo);
137 static BOOL PROPSHEET_CollectSheetInfoW(LPCPROPSHEETHEADERW lppsh,
138 PropSheetInfo * psInfo);
139 static BOOL PROPSHEET_CollectPageInfo(LPCPROPSHEETPAGEW lppsp,
140 PropSheetInfo * psInfo,
142 static BOOL PROPSHEET_CreateTabControl(HWND hwndParent,
143 PropSheetInfo * psInfo);
144 static BOOL PROPSHEET_CreatePage(HWND hwndParent, int index,
145 const PropSheetInfo * psInfo,
146 LPCPROPSHEETPAGEW ppshpage);
147 static BOOL PROPSHEET_ShowPage(HWND hwndDlg, int index, PropSheetInfo * psInfo);
148 static PADDING_INFO PROPSHEET_GetPaddingInfo(HWND hwndDlg);
149 static BOOL PROPSHEET_Back(HWND hwndDlg);
150 static BOOL PROPSHEET_Next(HWND hwndDlg);
151 static BOOL PROPSHEET_Finish(HWND hwndDlg);
152 static BOOL PROPSHEET_Apply(HWND hwndDlg, LPARAM lParam);
153 static void PROPSHEET_Cancel(HWND hwndDlg, LPARAM lParam);
154 static void PROPSHEET_Help(HWND hwndDlg);
155 static void PROPSHEET_Changed(HWND hwndDlg, HWND hwndDirtyPage);
156 static void PROPSHEET_UnChanged(HWND hwndDlg, HWND hwndCleanPage);
157 static void PROPSHEET_PressButton(HWND hwndDlg, int buttonID);
158 static void PROPSHEET_SetFinishTextA(HWND hwndDlg, LPCSTR lpszText);
159 static void PROPSHEET_SetFinishTextW(HWND hwndDlg, LPCWSTR lpszText);
160 static void PROPSHEET_SetTitleA(HWND hwndDlg, DWORD dwStyle, LPCSTR lpszText);
161 static void PROPSHEET_SetTitleW(HWND hwndDlg, DWORD dwStyle, LPCWSTR lpszText);
162 static BOOL PROPSHEET_CanSetCurSel(HWND hwndDlg);
163 static BOOL PROPSHEET_SetCurSel(HWND hwndDlg,
166 HPROPSHEETPAGE hpage);
167 static void PROPSHEET_SetCurSelId(HWND hwndDlg, int id);
168 static LRESULT PROPSHEET_QuerySiblings(HWND hwndDlg,
169 WPARAM wParam, LPARAM lParam);
170 static BOOL PROPSHEET_AddPage(HWND hwndDlg,
171 HPROPSHEETPAGE hpage);
173 static BOOL PROPSHEET_RemovePage(HWND hwndDlg,
175 HPROPSHEETPAGE hpage);
176 static void PROPSHEET_CleanUp(HWND hwndDlg);
177 static int PROPSHEET_GetPageIndex(HPROPSHEETPAGE hpage, PropSheetInfo* psInfo);
178 static void PROPSHEET_SetWizButtons(HWND hwndDlg, DWORD dwFlags);
179 static PADDING_INFO PROPSHEET_GetPaddingInfoWizard(HWND hwndDlg, const PropSheetInfo* psInfo);
180 static BOOL PROPSHEET_IsDialogMessage(HWND hwnd, LPMSG lpMsg);
181 static BOOL PROPSHEET_DoCommand(HWND hwnd, WORD wID);
184 PROPSHEET_DialogProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
186 WINE_DEFAULT_DEBUG_CHANNEL(propsheet);
188 #define add_flag(a) if (dwFlags & a) {strcat(string, #a );strcat(string," ");}
189 /******************************************************************************
190 * PROPSHEET_UnImplementedFlags
192 * Document use of flags we don't implement yet.
194 static VOID PROPSHEET_UnImplementedFlags(DWORD dwFlags)
201 * unhandled header flags:
202 * PSH_DEFAULT 0x00000000
203 * PSH_WIZARDHASFINISH 0x00000010
204 * PSH_RTLREADING 0x00000800
205 * PSH_WIZARDCONTEXTHELP 0x00001000
206 * PSH_WIZARD97 0x00002000 (pre IE 5)
207 * PSH_WATERMARK 0x00008000
208 * PSH_USEHBMWATERMARK 0x00010000
209 * PSH_USEHPLWATERMARK 0x00020000
210 * PSH_STRETCHWATERMARK 0x00040000
211 * PSH_HEADER 0x00080000
212 * PSH_USEHBMHEADER 0x00100000
213 * PSH_USEPAGELANG 0x00200000
214 * PSH_WIZARD_LITE 0x00400000 also not in .h
215 * PSH_WIZARD97 0x01000000 (IE 5 and above)
216 * PSH_NOCONTEXTHELP 0x02000000 also not in .h
219 add_flag(PSH_WIZARDHASFINISH);
220 add_flag(PSH_RTLREADING);
221 add_flag(PSH_WIZARDCONTEXTHELP);
222 add_flag(PSH_WIZARD97_OLD);
223 add_flag(PSH_STRETCHWATERMARK);
224 add_flag(PSH_USEPAGELANG);
225 add_flag(PSH_WIZARD_LITE);
226 add_flag(PSH_NOCONTEXTHELP);
227 if (string[0] != '\0')
228 FIXME("%s\n", string);
232 /******************************************************************************
233 * PROPSHEET_GetPageRect
235 * Retrieve rect from tab control and map into the dialog for SetWindowPos
237 static void PROPSHEET_GetPageRect(const PropSheetInfo * psInfo, HWND hwndDlg, RECT *rc)
239 HWND hwndTabCtrl = GetDlgItem(hwndDlg, IDC_TABCONTROL);
241 GetClientRect(hwndTabCtrl, rc);
242 SendMessageW(hwndTabCtrl, TCM_ADJUSTRECT, FALSE, (LPARAM)rc);
243 MapWindowPoints(hwndTabCtrl, hwndDlg, (LPPOINT)rc, 2);
246 /******************************************************************************
247 * PROPSHEET_FindPageByResId
249 * Find page index corresponding to page resource id.
251 INT PROPSHEET_FindPageByResId(PropSheetInfo * psInfo, LRESULT resId)
255 for (i = 0; i < psInfo->nPages; i++)
257 LPCPROPSHEETPAGEA lppsp = (LPCPROPSHEETPAGEA)psInfo->proppage[i].hpage;
259 /* Fixme: if resource ID is a string shall we use strcmp ??? */
260 if (lppsp->u.pszTemplate == (LPVOID)resId)
267 /******************************************************************************
270 * Convert ASCII to Unicode since all data is saved as Unicode.
272 static void PROPSHEET_AtoW(LPCWSTR *tostr, LPCSTR frstr)
276 TRACE("<%s>\n", frstr);
277 len = MultiByteToWideChar(CP_ACP, 0, frstr, -1, 0, 0);
278 *tostr = (LPWSTR)HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
279 MultiByteToWideChar(CP_ACP, 0, frstr, -1, (LPWSTR)*tostr, len);
282 /******************************************************************************
283 * PROPSHEET_CollectSheetInfoA
285 * Collect relevant data.
287 static BOOL PROPSHEET_CollectSheetInfoA(LPCPROPSHEETHEADERA lppsh,
288 PropSheetInfo * psInfo)
290 DWORD dwSize = min(lppsh->dwSize,sizeof(PROPSHEETHEADERA));
291 DWORD dwFlags = lppsh->dwFlags;
293 psInfo->hasHelp = dwFlags & PSH_HASHELP;
294 psInfo->hasApply = !(dwFlags & PSH_NOAPPLYNOW);
295 psInfo->useCallback = (dwFlags & PSH_USECALLBACK )&& (lppsh->pfnCallback);
296 psInfo->isModeless = dwFlags & PSH_MODELESS;
298 memcpy(&psInfo->ppshheader,lppsh,dwSize);
299 TRACE("\n** PROPSHEETHEADER **\ndwSize\t\t%ld\ndwFlags\t\t%08lx\nhwndParent\t%p\nhInstance\t%p\npszCaption\t'%s'\nnPages\t\t%d\npfnCallback\t%p\n",
300 lppsh->dwSize, lppsh->dwFlags, lppsh->hwndParent, lppsh->hInstance,
301 debugstr_a(lppsh->pszCaption), lppsh->nPages, lppsh->pfnCallback);
303 PROPSHEET_UnImplementedFlags(lppsh->dwFlags);
305 if (lppsh->dwFlags & INTRNL_ANY_WIZARD)
306 psInfo->ppshheader.pszCaption = NULL;
309 if (HIWORD(lppsh->pszCaption))
311 int len = MultiByteToWideChar(CP_ACP, 0, lppsh->pszCaption, -1, NULL, 0);
312 psInfo->ppshheader.pszCaption = HeapAlloc( GetProcessHeap(), 0, len*sizeof (WCHAR) );
313 MultiByteToWideChar(CP_ACP, 0, lppsh->pszCaption, -1, (LPWSTR) psInfo->ppshheader.pszCaption, len);
316 psInfo->nPages = lppsh->nPages;
318 if (dwFlags & PSH_USEPSTARTPAGE)
320 TRACE("PSH_USEPSTARTPAGE is on\n");
321 psInfo->active_page = 0;
324 psInfo->active_page = lppsh->u2.nStartPage;
326 if (psInfo->active_page < 0 || psInfo->active_page >= psInfo->nPages)
327 psInfo->active_page = 0;
329 psInfo->restartWindows = FALSE;
330 psInfo->rebootSystem = FALSE;
331 psInfo->hImageList = 0;
332 psInfo->activeValid = FALSE;
337 /******************************************************************************
338 * PROPSHEET_CollectSheetInfoW
340 * Collect relevant data.
342 static BOOL PROPSHEET_CollectSheetInfoW(LPCPROPSHEETHEADERW lppsh,
343 PropSheetInfo * psInfo)
345 DWORD dwSize = min(lppsh->dwSize,sizeof(PROPSHEETHEADERW));
346 DWORD dwFlags = lppsh->dwFlags;
348 psInfo->hasHelp = dwFlags & PSH_HASHELP;
349 psInfo->hasApply = !(dwFlags & PSH_NOAPPLYNOW);
350 psInfo->useCallback = (dwFlags & PSH_USECALLBACK) && (lppsh->pfnCallback);
351 psInfo->isModeless = dwFlags & PSH_MODELESS;
353 memcpy(&psInfo->ppshheader,lppsh,dwSize);
354 TRACE("\n** PROPSHEETHEADER **\ndwSize\t\t%ld\ndwFlags\t\t%08lx\nhwndParent\t%p\nhInstance\t%p\npszCaption\t'%s'\nnPages\t\t%d\npfnCallback\t%p\n",
355 lppsh->dwSize, lppsh->dwFlags, lppsh->hwndParent, lppsh->hInstance, debugstr_w(lppsh->pszCaption), lppsh->nPages, lppsh->pfnCallback);
357 PROPSHEET_UnImplementedFlags(lppsh->dwFlags);
359 if (lppsh->dwFlags & INTRNL_ANY_WIZARD)
360 psInfo->ppshheader.pszCaption = NULL;
363 if (HIWORD(lppsh->pszCaption))
365 int len = strlenW(lppsh->pszCaption);
366 psInfo->ppshheader.pszCaption = HeapAlloc( GetProcessHeap(), 0, (len+1)*sizeof(WCHAR) );
367 strcpyW( (WCHAR *)psInfo->ppshheader.pszCaption, lppsh->pszCaption );
370 psInfo->nPages = lppsh->nPages;
372 if (dwFlags & PSH_USEPSTARTPAGE)
374 TRACE("PSH_USEPSTARTPAGE is on\n");
375 psInfo->active_page = 0;
378 psInfo->active_page = lppsh->u2.nStartPage;
380 if (psInfo->active_page < 0 || psInfo->active_page >= psInfo->nPages)
381 psInfo->active_page = 0;
383 psInfo->restartWindows = FALSE;
384 psInfo->rebootSystem = FALSE;
385 psInfo->hImageList = 0;
386 psInfo->activeValid = FALSE;
391 /******************************************************************************
392 * PROPSHEET_CollectPageInfo
394 * Collect property sheet data.
395 * With code taken from DIALOG_ParseTemplate32.
397 BOOL PROPSHEET_CollectPageInfo(LPCPROPSHEETPAGEW lppsp,
398 PropSheetInfo * psInfo,
401 DLGTEMPLATE* pTemplate;
407 psInfo->proppage[index].hpage = (HPROPSHEETPAGE)lppsp;
408 psInfo->proppage[index].hwndPage = 0;
409 psInfo->proppage[index].isDirty = FALSE;
412 * Process property page flags.
414 dwFlags = lppsp->dwFlags;
415 psInfo->proppage[index].useCallback = (dwFlags & PSP_USECALLBACK) && (lppsp->pfnCallback);
416 psInfo->proppage[index].hasHelp = dwFlags & PSP_HASHELP;
417 psInfo->proppage[index].hasIcon = dwFlags & (PSP_USEHICON | PSP_USEICONID);
419 /* as soon as we have a page with the help flag, set the sheet flag on */
420 if (psInfo->proppage[index].hasHelp)
421 psInfo->hasHelp = TRUE;
424 * Process page template.
426 if (dwFlags & PSP_DLGINDIRECT)
427 pTemplate = (DLGTEMPLATE*)lppsp->u.pResource;
428 else if(dwFlags & PSP_INTERNAL_UNICODE )
430 HRSRC hResource = FindResourceW(lppsp->hInstance,
431 lppsp->u.pszTemplate,
433 HGLOBAL hTemplate = LoadResource(lppsp->hInstance,
435 pTemplate = (LPDLGTEMPLATEW)LockResource(hTemplate);
439 HRSRC hResource = FindResourceA(lppsp->hInstance,
440 (LPSTR)lppsp->u.pszTemplate,
442 HGLOBAL hTemplate = LoadResource(lppsp->hInstance,
444 pTemplate = (LPDLGTEMPLATEA)LockResource(hTemplate);
448 * Extract the size of the page and the caption.
453 p = (const WORD *)pTemplate;
455 if (((MyDLGTEMPLATEEX*)pTemplate)->signature == 0xFFFF)
457 /* DLGTEMPLATEEX (not defined in any std. header file) */
461 p += 2; /* help ID */
462 p += 2; /* ext style */
470 p += 2; /* ext style */
476 width = (WORD)*p; p++;
477 height = (WORD)*p; p++;
479 /* remember the largest width and height */
480 if (width > psInfo->width)
481 psInfo->width = width;
483 if (height > psInfo->height)
484 psInfo->height = height;
496 p += lstrlenW( (LPCWSTR)p ) + 1;
510 p += lstrlenW( (LPCWSTR)p ) + 1;
514 /* Extract the caption */
515 psInfo->proppage[index].pszText = (LPCWSTR)p;
516 TRACE("Tab %d %s\n",index,debugstr_w((LPCWSTR)p));
517 p += lstrlenW((LPCWSTR)p) + 1;
519 if (dwFlags & PSP_USETITLE)
523 static const WCHAR pszNull[] = { '(','n','u','l','l',')',0 };
526 if ( !HIWORD( lppsp->pszTitle ) )
528 if (!LoadStringW( lppsp->hInstance, (UINT)lppsp->pszTitle,szTitle,sizeof(szTitle) ))
531 FIXME("Could not load resource #%04x?\n",LOWORD(lppsp->pszTitle));
537 pTitle = lppsp->pszTitle;
539 len = strlenW(pTitle);
540 psInfo->proppage[index].pszText = Alloc( (len+1)*sizeof (WCHAR) );
541 strcpyW( (LPWSTR)psInfo->proppage[index].pszText,pTitle);
545 * Build the image list for icons
547 if ((dwFlags & PSP_USEHICON) || (dwFlags & PSP_USEICONID))
550 int icon_cx = GetSystemMetrics(SM_CXSMICON);
551 int icon_cy = GetSystemMetrics(SM_CYSMICON);
553 if (dwFlags & PSP_USEICONID)
554 hIcon = LoadImageW(lppsp->hInstance, lppsp->u2.pszIcon, IMAGE_ICON,
555 icon_cx, icon_cy, LR_DEFAULTCOLOR);
557 hIcon = lppsp->u2.hIcon;
561 if (psInfo->hImageList == 0 )
562 psInfo->hImageList = ImageList_Create(icon_cx, icon_cy, ILC_COLOR, 1, 1);
564 ImageList_AddIcon(psInfo->hImageList, hIcon);
572 /******************************************************************************
573 * PROPSHEET_CreateDialog
575 * Creates the actual property sheet.
577 int PROPSHEET_CreateDialog(PropSheetInfo* psInfo)
584 WORD resID = IDD_PROPSHEET;
587 if (psInfo->ppshheader.dwFlags & INTRNL_ANY_WIZARD)
590 if( psInfo->unicode )
592 if(!(hRes = FindResourceW(COMCTL32_hModule,
593 MAKEINTRESOURCEW(resID),
599 if(!(hRes = FindResourceA(COMCTL32_hModule,
600 MAKEINTRESOURCEA(resID),
605 if(!(template = (LPVOID)LoadResource(COMCTL32_hModule, hRes)))
609 * Make a copy of the dialog template.
611 resSize = SizeofResource(COMCTL32_hModule, hRes);
613 temp = Alloc(resSize);
618 memcpy(temp, template, resSize);
620 if (psInfo->useCallback)
621 (*(psInfo->ppshheader.pfnCallback))(0, PSCB_PRECREATE, (LPARAM)temp);
623 if( psInfo->unicode )
625 if (!(psInfo->ppshheader.dwFlags & PSH_MODELESS))
626 ret = DialogBoxIndirectParamW(psInfo->ppshheader.hInstance,
627 (LPDLGTEMPLATEW) temp,
628 psInfo->ppshheader.hwndParent,
629 PROPSHEET_DialogProc,
633 ret = (int)CreateDialogIndirectParamW(psInfo->ppshheader.hInstance,
634 (LPDLGTEMPLATEW) temp,
635 psInfo->ppshheader.hwndParent,
636 PROPSHEET_DialogProc,
638 if ( !ret ) ret = -1;
643 if (!(psInfo->ppshheader.dwFlags & PSH_MODELESS))
644 ret = DialogBoxIndirectParamA(psInfo->ppshheader.hInstance,
645 (LPDLGTEMPLATEA) temp,
646 psInfo->ppshheader.hwndParent,
647 PROPSHEET_DialogProc,
651 ret = (int)CreateDialogIndirectParamA(psInfo->ppshheader.hInstance,
652 (LPDLGTEMPLATEA) temp,
653 psInfo->ppshheader.hwndParent,
654 PROPSHEET_DialogProc,
656 if ( !ret ) ret = -1;
665 /******************************************************************************
666 * PROPSHEET_SizeMismatch
668 * Verify that the tab control and the "largest" property sheet page dlg. template
671 static BOOL PROPSHEET_SizeMismatch(HWND hwndDlg, PropSheetInfo* psInfo)
673 HWND hwndTabCtrl = GetDlgItem(hwndDlg, IDC_TABCONTROL);
674 RECT rcOrigTab, rcPage;
679 GetClientRect(hwndTabCtrl, &rcOrigTab);
680 TRACE("orig tab %ld %ld %ld %ld\n", rcOrigTab.left, rcOrigTab.top,
681 rcOrigTab.right, rcOrigTab.bottom);
686 rcPage.left = psInfo->x;
687 rcPage.top = psInfo->y;
688 rcPage.right = psInfo->width;
689 rcPage.bottom = psInfo->height;
691 MapDialogRect(hwndDlg, &rcPage);
692 TRACE("biggest page %ld %ld %ld %ld\n", rcPage.left, rcPage.top,
693 rcPage.right, rcPage.bottom);
695 if ( (rcPage.right - rcPage.left) != (rcOrigTab.right - rcOrigTab.left) )
697 if ( (rcPage.bottom - rcPage.top) != (rcOrigTab.bottom - rcOrigTab.top) )
703 /******************************************************************************
704 * PROPSHEET_IsTooSmallWizard
706 * Verify that the default property sheet is big enough.
708 static BOOL PROPSHEET_IsTooSmallWizard(HWND hwndDlg, PropSheetInfo* psInfo)
710 RECT rcSheetRect, rcPage, rcLine, rcSheetClient;
711 HWND hwndLine = GetDlgItem(hwndDlg, IDC_SUNKEN_LINE);
712 PADDING_INFO padding = PROPSHEET_GetPaddingInfoWizard(hwndDlg, psInfo);
714 GetClientRect(hwndDlg, &rcSheetClient);
715 GetWindowRect(hwndDlg, &rcSheetRect);
716 GetWindowRect(hwndLine, &rcLine);
718 /* Remove the space below the sunken line */
719 rcSheetClient.bottom -= (rcSheetRect.bottom - rcLine.top);
721 /* Remove the buffer zone all around the edge */
722 rcSheetClient.bottom -= (padding.y * 2);
723 rcSheetClient.right -= (padding.x * 2);
728 rcPage.left = psInfo->x;
729 rcPage.top = psInfo->y;
730 rcPage.right = psInfo->width;
731 rcPage.bottom = psInfo->height;
733 MapDialogRect(hwndDlg, &rcPage);
734 TRACE("biggest page %ld %ld %ld %ld\n", rcPage.left, rcPage.top,
735 rcPage.right, rcPage.bottom);
737 if (rcPage.right > rcSheetClient.right)
740 if (rcPage.bottom > rcSheetClient.bottom)
746 /******************************************************************************
747 * PROPSHEET_AdjustSize
749 * Resizes the property sheet and the tab control to fit the largest page.
751 static BOOL PROPSHEET_AdjustSize(HWND hwndDlg, PropSheetInfo* psInfo)
753 HWND hwndTabCtrl = GetDlgItem(hwndDlg, IDC_TABCONTROL);
754 HWND hwndButton = GetDlgItem(hwndDlg, IDOK);
756 int tabOffsetX, tabOffsetY, buttonHeight;
757 PADDING_INFO padding = PROPSHEET_GetPaddingInfo(hwndDlg);
760 /* Get the height of buttons */
761 GetClientRect(hwndButton, &rc);
762 buttonHeight = rc.bottom;
769 rc.right = psInfo->width;
770 rc.bottom = psInfo->height;
772 MapDialogRect(hwndDlg, &rc);
774 /* retrieve the dialog units */
775 units.left = units.right = 4;
776 units.top = units.bottom = 8;
777 MapDialogRect(hwndDlg, &units);
780 * Resize the tab control.
782 GetClientRect(hwndTabCtrl,&tabRect);
784 SendMessageW(hwndTabCtrl, TCM_ADJUSTRECT, FALSE, (LPARAM)&tabRect);
786 if ((rc.bottom - rc.top) < (tabRect.bottom - tabRect.top))
788 rc.bottom = rc.top + tabRect.bottom - tabRect.top;
789 psInfo->height = MulDiv((rc.bottom - rc.top),8,units.top);
792 if ((rc.right - rc.left) < (tabRect.right - tabRect.left))
794 rc.right = rc.left + tabRect.right - tabRect.left;
795 psInfo->width = MulDiv((rc.right - rc.left),4,units.left);
798 SendMessageW(hwndTabCtrl, TCM_ADJUSTRECT, TRUE, (LPARAM)&rc);
800 tabOffsetX = -(rc.left);
801 tabOffsetY = -(rc.top);
805 TRACE("setting tab %08lx, rc (0,0)-(%ld,%ld)\n",
806 (DWORD)hwndTabCtrl, rc.right, rc.bottom);
807 SetWindowPos(hwndTabCtrl, 0, 0, 0, rc.right, rc.bottom,
808 SWP_NOMOVE | SWP_NOZORDER | SWP_NOACTIVATE);
810 GetClientRect(hwndTabCtrl, &rc);
812 TRACE("tab client rc %ld %ld %ld %ld\n",
813 rc.left, rc.top, rc.right, rc.bottom);
815 rc.right += ((padding.x * 2) + tabOffsetX);
816 rc.bottom += (buttonHeight + (3 * padding.y) + tabOffsetY);
819 * Resize the property sheet.
821 TRACE("setting dialog %08lx, rc (0,0)-(%ld,%ld)\n",
822 (DWORD)hwndDlg, rc.right, rc.bottom);
823 SetWindowPos(hwndDlg, 0, 0, 0, rc.right, rc.bottom,
824 SWP_NOMOVE | SWP_NOZORDER | SWP_NOACTIVATE);
828 /******************************************************************************
829 * PROPSHEET_AdjustSizeWizard
831 * Resizes the property sheet to fit the largest page.
833 static BOOL PROPSHEET_AdjustSizeWizard(HWND hwndDlg, PropSheetInfo* psInfo)
835 HWND hwndButton = GetDlgItem(hwndDlg, IDCANCEL);
836 HWND hwndLine = GetDlgItem(hwndDlg, IDC_SUNKEN_LINE);
837 HWND hwndTabCtrl = GetDlgItem(hwndDlg, IDC_TABCONTROL);
839 int buttonHeight, lineHeight;
840 PADDING_INFO padding = PROPSHEET_GetPaddingInfoWizard(hwndDlg, psInfo);
843 /* Get the height of buttons */
844 GetClientRect(hwndButton, &rc);
845 buttonHeight = rc.bottom;
847 GetClientRect(hwndLine, &rc);
848 lineHeight = rc.bottom;
850 /* retrieve the dialog units */
851 units.left = units.right = 4;
852 units.top = units.bottom = 8;
853 MapDialogRect(hwndDlg, &units);
860 rc.right = psInfo->width;
861 rc.bottom = psInfo->height;
863 MapDialogRect(hwndDlg, &rc);
865 GetClientRect(hwndTabCtrl,&tabRect);
867 if ((rc.bottom - rc.top) < (tabRect.bottom - tabRect.top))
869 rc.bottom = rc.top + tabRect.bottom - tabRect.top;
870 psInfo->height = MulDiv((rc.bottom - rc.top), 8, units.top);
873 if ((rc.right - rc.left) < (tabRect.right - tabRect.left))
875 rc.right = rc.left + tabRect.right - tabRect.left;
876 psInfo->width = MulDiv((rc.right - rc.left), 4, units.left);
879 TRACE("Biggest page %ld %ld %ld %ld\n", rc.left, rc.top, rc.right, rc.bottom);
880 TRACE(" constants padx=%d, pady=%d, butH=%d, lH=%d\n",
881 padding.x, padding.y, buttonHeight, lineHeight);
884 rc.right += (padding.x * 2);
885 rc.bottom += (buttonHeight + lineHeight);
886 if (psInfo->ppshheader.dwFlags & (PSH_WIZARD97_OLD | PSH_WIZARD97_NEW))
887 rc.bottom += (4 * padding.y);
889 rc.bottom += (5 * padding.y);
892 * Resize the property sheet.
894 TRACE("setting dialog %08lx, rc (0,0)-(%ld,%ld)\n",
895 (DWORD)hwndDlg, rc.right, rc.bottom);
896 SetWindowPos(hwndDlg, 0, 0, 0, rc.right, rc.bottom,
897 SWP_NOMOVE | SWP_NOZORDER | SWP_NOACTIVATE);
901 /******************************************************************************
902 * PROPSHEET_AdjustButtons
904 * Adjusts the buttons' positions.
906 static BOOL PROPSHEET_AdjustButtons(HWND hwndParent, PropSheetInfo* psInfo)
908 HWND hwndButton = GetDlgItem(hwndParent, IDOK);
912 int buttonWidth, buttonHeight;
913 PADDING_INFO padding = PROPSHEET_GetPaddingInfo(hwndParent);
915 if (psInfo->hasApply)
922 * Obtain the size of the buttons.
924 GetClientRect(hwndButton, &rcSheet);
925 buttonWidth = rcSheet.right;
926 buttonHeight = rcSheet.bottom;
929 * Get the size of the property sheet.
931 GetClientRect(hwndParent, &rcSheet);
934 * All buttons will be at this y coordinate.
936 y = rcSheet.bottom - (padding.y + buttonHeight);
939 * Position OK button.
941 hwndButton = GetDlgItem(hwndParent, IDOK);
943 x = rcSheet.right - ((padding.x + buttonWidth) * num_buttons);
945 SetWindowPos(hwndButton, 0, x, y, 0, 0,
946 SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
949 * Position Cancel button.
951 hwndButton = GetDlgItem(hwndParent, IDCANCEL);
953 x = rcSheet.right - ((padding.x + buttonWidth) * (num_buttons - 1));
955 SetWindowPos(hwndButton, 0, x, y, 0, 0,
956 SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
959 * Position Apply button.
961 hwndButton = GetDlgItem(hwndParent, IDC_APPLY_BUTTON);
963 if (psInfo->hasApply)
966 x = rcSheet.right - ((padding.x + buttonWidth) * 2);
968 x = rcSheet.right - (padding.x + buttonWidth);
970 SetWindowPos(hwndButton, 0, x, y, 0, 0,
971 SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
973 EnableWindow(hwndButton, FALSE);
976 ShowWindow(hwndButton, SW_HIDE);
979 * Position Help button.
981 hwndButton = GetDlgItem(hwndParent, IDHELP);
985 x = rcSheet.right - (padding.x + buttonWidth);
987 SetWindowPos(hwndButton, 0, x, y, 0, 0,
988 SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
991 ShowWindow(hwndButton, SW_HIDE);
996 /******************************************************************************
997 * PROPSHEET_AdjustButtonsWizard
999 * Adjusts the buttons' positions.
1001 static BOOL PROPSHEET_AdjustButtonsWizard(HWND hwndParent,
1002 PropSheetInfo* psInfo)
1004 HWND hwndButton = GetDlgItem(hwndParent, IDCANCEL);
1005 HWND hwndLine = GetDlgItem(hwndParent, IDC_SUNKEN_LINE);
1006 HWND hwndLineHeader = GetDlgItem(hwndParent, IDC_SUNKEN_LINEHEADER);
1009 int num_buttons = 3;
1010 int buttonWidth, buttonHeight, lineHeight, lineWidth;
1011 PADDING_INFO padding = PROPSHEET_GetPaddingInfoWizard(hwndParent, psInfo);
1013 if (psInfo->hasHelp)
1017 * Obtain the size of the buttons.
1019 GetClientRect(hwndButton, &rcSheet);
1020 buttonWidth = rcSheet.right;
1021 buttonHeight = rcSheet.bottom;
1023 GetClientRect(hwndLine, &rcSheet);
1024 lineHeight = rcSheet.bottom;
1027 * Get the size of the property sheet.
1029 GetClientRect(hwndParent, &rcSheet);
1032 * All buttons will be at this y coordinate.
1034 y = rcSheet.bottom - (padding.y + buttonHeight);
1037 * Position the Next and the Finish buttons.
1039 hwndButton = GetDlgItem(hwndParent, IDC_NEXT_BUTTON);
1041 x = rcSheet.right - ((padding.x + buttonWidth) * (num_buttons - 1));
1043 SetWindowPos(hwndButton, 0, x, y, 0, 0,
1044 SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
1046 hwndButton = GetDlgItem(hwndParent, IDC_FINISH_BUTTON);
1048 SetWindowPos(hwndButton, 0, x, y, 0, 0,
1049 SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
1051 ShowWindow(hwndButton, SW_HIDE);
1054 * Position the Back button.
1056 hwndButton = GetDlgItem(hwndParent, IDC_BACK_BUTTON);
1060 SetWindowPos(hwndButton, 0, x, y, 0, 0,
1061 SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
1064 * Position the Cancel button.
1066 hwndButton = GetDlgItem(hwndParent, IDCANCEL);
1068 x = rcSheet.right - ((padding.x + buttonWidth) * (num_buttons - 2));
1070 SetWindowPos(hwndButton, 0, x, y, 0, 0,
1071 SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
1074 * Position Help button.
1076 hwndButton = GetDlgItem(hwndParent, IDHELP);
1078 if (psInfo->hasHelp)
1080 x = rcSheet.right - (padding.x + buttonWidth);
1082 SetWindowPos(hwndButton, 0, x, y, 0, 0,
1083 SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
1086 ShowWindow(hwndButton, SW_HIDE);
1088 if (psInfo->ppshheader.dwFlags & (PSH_WIZARD97_OLD | PSH_WIZARD97_NEW))
1092 * Position and resize the sunken line.
1095 y = rcSheet.bottom - ((padding.y * 2) + buttonHeight + lineHeight);
1097 lineWidth = rcSheet.right - (padding.x * 2);
1099 SetWindowPos(hwndLine, 0, x, y, lineWidth, 2,
1100 SWP_NOZORDER | SWP_NOACTIVATE);
1103 * Position and resize the header sunken line.
1106 SetWindowPos(hwndLineHeader, 0, 0, 0, rcSheet.right, 2,
1107 SWP_NOZORDER | SWP_NOMOVE | SWP_NOACTIVATE);
1108 if (!(psInfo->ppshheader.dwFlags & (PSH_WIZARD97_OLD | PSH_WIZARD97_NEW)))
1109 ShowWindow(hwndLineHeader, SW_HIDE);
1114 /******************************************************************************
1115 * PROPSHEET_GetPaddingInfo
1117 * Returns the layout information.
1119 static PADDING_INFO PROPSHEET_GetPaddingInfo(HWND hwndDlg)
1121 HWND hwndTab = GetDlgItem(hwndDlg, IDC_TABCONTROL);
1124 PADDING_INFO padding;
1126 GetWindowRect(hwndTab, &rcTab);
1131 ScreenToClient(hwndDlg, &tl);
1139 /******************************************************************************
1140 * PROPSHEET_GetPaddingInfoWizard
1142 * Returns the layout information.
1143 * Vertical spacing is the distance between the line and the buttons.
1144 * Do NOT use the Help button to gather padding information when it isn't mapped
1145 * (PSH_HASHELP), as app writers aren't forced to supply correct coordinates
1146 * for it in this case !
1147 * FIXME: I'm not sure about any other coordinate problems with these evil
1148 * buttons. Fix it in case additional problems appear or maybe calculate
1149 * a padding in a completely different way, as this is somewhat messy.
1151 static PADDING_INFO PROPSHEET_GetPaddingInfoWizard(HWND hwndDlg, const PropSheetInfo*
1154 PADDING_INFO padding;
1158 POINT ptButton, ptLine;
1161 if (psInfo->hasHelp)
1167 if (psInfo->ppshheader.dwFlags & INTRNL_ANY_WIZARD)
1169 idButton = IDC_NEXT_BUTTON;
1173 /* hopefully this is ok */
1174 idButton = IDCANCEL;
1178 hwndControl = GetDlgItem(hwndDlg, idButton);
1179 GetWindowRect(hwndControl, &rc);
1181 ptButton.x = rc.left;
1182 ptButton.y = rc.top;
1184 ScreenToClient(hwndDlg, &ptButton);
1187 hwndControl = GetDlgItem(hwndDlg, IDC_SUNKEN_LINE);
1188 GetWindowRect(hwndControl, &rc);
1191 ptLine.y = rc.bottom;
1193 ScreenToClient(hwndDlg, &ptLine);
1195 padding.y = ptButton.y - ptLine.y;
1198 ERR("padding negative ! Please report this !\n");
1200 /* this is most probably not correct, but the best we have now */
1201 padding.x = padding.y;
1205 /******************************************************************************
1206 * PROPSHEET_CreateTabControl
1208 * Insert the tabs in the tab control.
1210 static BOOL PROPSHEET_CreateTabControl(HWND hwndParent,
1211 PropSheetInfo * psInfo)
1213 HWND hwndTabCtrl = GetDlgItem(hwndParent, IDC_TABCONTROL);
1219 item.mask = TCIF_TEXT;
1220 item.cchTextMax = MAX_TABTEXT_LENGTH;
1222 nTabs = psInfo->nPages;
1225 * Set the image list for icons.
1227 if (psInfo->hImageList)
1229 SendMessageW(hwndTabCtrl, TCM_SETIMAGELIST, 0, (LPARAM)psInfo->hImageList);
1232 SendMessageW(GetDlgItem(hwndTabCtrl, IDC_TABCONTROL), WM_SETREDRAW, 0, 0);
1233 for (i = 0; i < nTabs; i++)
1235 if ( psInfo->proppage[i].hasIcon )
1237 item.mask |= TCIF_IMAGE;
1238 item.iImage = iImage++;
1242 item.mask &= ~TCIF_IMAGE;
1245 item.pszText = (LPWSTR) psInfo->proppage[i].pszText;
1246 SendMessageW(hwndTabCtrl, TCM_INSERTITEMW, (WPARAM)i, (LPARAM)&item);
1248 SendMessageW(GetDlgItem(hwndTabCtrl, IDC_TABCONTROL), WM_SETREDRAW, 1, 0);
1253 * Get the size of an in-memory Template
1255 *( Based on the code of PROPSHEET_CollectPageInfo)
1256 * See also dialog.c/DIALOG_ParseTemplate32().
1259 static UINT GetTemplateSize(DLGTEMPLATE* pTemplate)
1262 const WORD* p = (const WORD *)pTemplate;
1263 BOOL istemplateex = (((MyDLGTEMPLATEEX*)pTemplate)->signature == 0xFFFF);
1268 /* DLGTEMPLATEEX (not defined in any std. header file) */
1270 TRACE("is DLGTEMPLATEEX\n");
1272 p++; /* signature */
1273 p += 2; /* help ID */
1274 p += 2; /* ext style */
1281 TRACE("is DLGTEMPLATE\n");
1283 p += 2; /* ext style */
1286 nrofitems = (WORD)*p; p++; /* nb items */
1302 TRACE("menu %s\n",debugstr_w((LPCWSTR)p));
1303 p += lstrlenW( (LPCWSTR)p ) + 1;
1314 p += 2; /* 0xffff plus predefined window class ordinal value */
1317 TRACE("class %s\n",debugstr_w((LPCWSTR)p));
1318 p += lstrlenW( (LPCWSTR)p ) + 1;
1323 TRACE("title %s\n",debugstr_w((LPCWSTR)p));
1324 p += lstrlenW((LPCWSTR)p) + 1;
1326 /* font, if DS_SETFONT set */
1327 if ((DS_SETFONT & ((istemplateex)? ((MyDLGTEMPLATEEX*)pTemplate)->style :
1330 p+=(istemplateex)?3:1;
1331 TRACE("font %s\n",debugstr_w((LPCWSTR)p));
1332 p += lstrlenW( (LPCWSTR)p ) + 1; /* the font name */
1335 /* now process the DLGITEMTEMPLATE(EX) structs (plus custom data)
1336 * that are following the DLGTEMPLATE(EX) data */
1337 TRACE("%d items\n",nrofitems);
1338 while (nrofitems > 0)
1340 p = (WORD*)(((DWORD)p + 3) & ~3); /* DWORD align */
1343 p += (istemplateex ? sizeof(MyDLGITEMTEMPLATEEX) : sizeof(DLGITEMTEMPLATE))/sizeof(WORD);
1352 TRACE("class ordinal 0x%08lx\n",*(DWORD*)p);
1356 TRACE("class %s\n",debugstr_w((LPCWSTR)p));
1357 p += lstrlenW( (LPCWSTR)p ) + 1;
1361 /* check title text */
1368 TRACE("text ordinal 0x%08lx\n",*(DWORD*)p);
1372 TRACE("text %s\n",debugstr_w((LPCWSTR)p));
1373 p += lstrlenW( (LPCWSTR)p ) + 1;
1376 p += *p + 1; /* Skip extra data */
1380 TRACE("%p %p size 0x%08x\n",p, (WORD*)pTemplate,sizeof(WORD)*(p - (WORD*)pTemplate));
1381 return (p - (WORD*)pTemplate)*sizeof(WORD);
1385 /******************************************************************************
1386 * PROPSHEET_CreatePage
1390 static BOOL PROPSHEET_CreatePage(HWND hwndParent,
1392 const PropSheetInfo * psInfo,
1393 LPCPROPSHEETPAGEW ppshpage)
1395 DLGTEMPLATE* pTemplate;
1398 PADDING_INFO padding;
1399 UINT pageWidth,pageHeight;
1403 TRACE("index %d\n", index);
1405 if (ppshpage == NULL)
1410 if (ppshpage->dwFlags & PSP_DLGINDIRECT)
1412 pTemplate = (DLGTEMPLATE*)ppshpage->u.pResource;
1413 resSize = GetTemplateSize(pTemplate);
1415 else if(ppshpage->dwFlags & PSP_INTERNAL_UNICODE)
1420 hResource = FindResourceW(ppshpage->hInstance,
1421 ppshpage->u.pszTemplate,
1426 resSize = SizeofResource(ppshpage->hInstance, hResource);
1428 hTemplate = LoadResource(ppshpage->hInstance, hResource);
1432 pTemplate = (LPDLGTEMPLATEW)LockResource(hTemplate);
1434 * Make a copy of the dialog template to make it writable
1442 hResource = FindResourceA(ppshpage->hInstance,
1443 (LPSTR)ppshpage->u.pszTemplate,
1448 resSize = SizeofResource(ppshpage->hInstance, hResource);
1450 hTemplate = LoadResource(ppshpage->hInstance, hResource);
1454 pTemplate = (LPDLGTEMPLATEA)LockResource(hTemplate);
1456 * Make a copy of the dialog template to make it writable
1459 temp = Alloc(resSize);
1463 TRACE("copying pTemplate %p into temp %p (%ld)\n", pTemplate, temp, resSize);
1464 memcpy(temp, pTemplate, resSize);
1467 if (((MyDLGTEMPLATEEX*)pTemplate)->signature == 0xFFFF)
1469 ((MyDLGTEMPLATEEX*)pTemplate)->style |= WS_CHILD | DS_CONTROL;
1470 ((MyDLGTEMPLATEEX*)pTemplate)->style &= ~DS_MODALFRAME;
1471 ((MyDLGTEMPLATEEX*)pTemplate)->style &= ~WS_CAPTION;
1472 ((MyDLGTEMPLATEEX*)pTemplate)->style &= ~WS_SYSMENU;
1473 ((MyDLGTEMPLATEEX*)pTemplate)->style &= ~WS_POPUP;
1474 ((MyDLGTEMPLATEEX*)pTemplate)->style &= ~WS_DISABLED;
1475 ((MyDLGTEMPLATEEX*)pTemplate)->style &= ~WS_VISIBLE;
1476 ((MyDLGTEMPLATEEX*)pTemplate)->style &= ~WS_THICKFRAME;
1478 ((MyDLGTEMPLATEEX*)pTemplate)->exStyle |= WS_EX_CONTROLPARENT;
1482 pTemplate->style |= WS_CHILD | DS_CONTROL;
1483 pTemplate->style &= ~DS_MODALFRAME;
1484 pTemplate->style &= ~WS_CAPTION;
1485 pTemplate->style &= ~WS_SYSMENU;
1486 pTemplate->style &= ~WS_POPUP;
1487 pTemplate->style &= ~WS_DISABLED;
1488 pTemplate->style &= ~WS_VISIBLE;
1489 pTemplate->style &= ~WS_THICKFRAME;
1491 pTemplate->dwExtendedStyle |= WS_EX_CONTROLPARENT;
1494 if (psInfo->proppage[index].useCallback)
1495 (*(ppshpage->pfnCallback))(0, PSPCB_CREATE,
1496 (LPPROPSHEETPAGEW)ppshpage);
1498 if(ppshpage->dwFlags & PSP_INTERNAL_UNICODE)
1499 hwndPage = CreateDialogIndirectParamW(ppshpage->hInstance,
1502 ppshpage->pfnDlgProc,
1505 hwndPage = CreateDialogIndirectParamA(ppshpage->hInstance,
1508 ppshpage->pfnDlgProc,
1510 /* Free a no more needed copy */
1514 psInfo->proppage[index].hwndPage = hwndPage;
1516 if (psInfo->ppshheader.dwFlags & INTRNL_ANY_WIZARD) {
1521 rc.left = psInfo->x;
1523 rc.right = psInfo->width;
1524 rc.bottom = psInfo->height;
1526 MapDialogRect(hwndParent, &rc);
1528 pageWidth = rc.right - rc.left;
1529 pageHeight = rc.bottom - rc.top;
1531 padding = PROPSHEET_GetPaddingInfoWizard(hwndParent, psInfo);
1532 TRACE("setting page %08lx, rc (%ld,%ld)-(%ld,%ld) w=%d, h=%d, padx=%d, pady=%d\n",
1533 (DWORD)hwndPage, rc.left, rc.top, rc.right, rc.bottom,
1534 pageWidth, pageHeight, padding.x, padding.y);
1536 if (psInfo->ppshheader.dwFlags & (PSH_WIZARD97_NEW | PSH_WIZARD97_OLD) &&
1537 psInfo->ppshheader.dwFlags & PSH_HEADER)
1539 if ((ppshpage->dwFlags & PSP_USEHEADERTITLE) &&
1540 (HIWORD(ppshpage->pszHeaderTitle) == 0))
1542 /* FIXME: load title string into ppshpage->pszHeaderTitle */
1545 if ((ppshpage->dwFlags & PSP_USEHEADERSUBTITLE) &&
1546 (HIWORD(ppshpage->pszHeaderSubTitle) == 0))
1548 /* FIXME: load title string into ppshpage->pszHeaderSubTitle */
1551 hwndChild = GetDlgItem(hwndParent, IDC_SUNKEN_LINEHEADER);
1553 GetClientRect(hwndChild, &r);
1554 MapWindowPoints(hwndChild, hwndParent, (LPPOINT) &r, 2);
1555 offsety = (ppshpage->dwFlags & PSP_HIDEHEADER)?0:r.bottom + 1;
1558 SetWindowPos(hwndPage, HWND_TOP,
1559 rc.left + padding.x/2,
1560 rc.top + padding.y/2 + offsety,
1561 pageWidth, pageHeight - offsety, 0);
1565 * Ask the Tab control to reduce the client rectangle to that
1568 PROPSHEET_GetPageRect(psInfo, hwndParent, &rc);
1569 pageWidth = rc.right - rc.left;
1570 pageHeight = rc.bottom - rc.top;
1571 TRACE("setting page %08lx, rc (%ld,%ld)-(%ld,%ld) w=%d, h=%d\n",
1572 (DWORD)hwndPage, rc.left, rc.top, rc.right, rc.bottom,
1573 pageWidth, pageHeight);
1574 SetWindowPos(hwndPage, HWND_TOP,
1576 pageWidth, pageHeight, 0);
1582 /******************************************************************************
1583 * PROPSHEET_LoadWizardBitmaps
1585 * Loads the watermark and header bitmaps for a wizard.
1587 static VOID PROPSHEET_LoadWizardBitmaps(PropSheetInfo *psInfo)
1589 if (psInfo->ppshheader.dwFlags & (PSH_WIZARD97_NEW | PSH_WIZARD97_OLD))
1591 /* if PSH_USEHBMWATERMARK is not set, load the resource from pszbmWatermark
1592 and put the HBITMAP in hbmWatermark. Thus all the rest of the code always
1593 considers hbmWatermark as valid. */
1594 if ((psInfo->ppshheader.dwFlags & PSH_WATERMARK) &&
1595 !(psInfo->ppshheader.dwFlags & PSH_USEHBMWATERMARK))
1597 ((PropSheetInfo *)psInfo)->ppshheader.u4.hbmWatermark =
1598 CreateMappedBitmap(psInfo->ppshheader.hInstance, (INT)psInfo->ppshheader.u4.pszbmWatermark, 0, NULL, 0);
1601 /* Same behavior as for watermarks */
1602 if ((psInfo->ppshheader.dwFlags & PSH_HEADER) &&
1603 !(psInfo->ppshheader.dwFlags & PSH_USEHBMHEADER))
1605 ((PropSheetInfo *)psInfo)->ppshheader.u5.hbmHeader =
1606 CreateMappedBitmap(psInfo->ppshheader.hInstance, (INT)psInfo->ppshheader.u5.pszbmHeader, 0, NULL, 0);
1612 /******************************************************************************
1613 * PROPSHEET_ShowPage
1615 * Displays or creates the specified page.
1617 static BOOL PROPSHEET_ShowPage(HWND hwndDlg, int index, PropSheetInfo * psInfo)
1620 HWND hwndLineHeader;
1621 LPCPROPSHEETPAGEW ppshpage;
1623 TRACE("active_page %d, index %d\n", psInfo->active_page, index);
1624 if (index == psInfo->active_page)
1626 if (GetTopWindow(hwndDlg) != psInfo->proppage[index].hwndPage)
1627 SetWindowPos(psInfo->proppage[index].hwndPage, HWND_TOP, 0, 0, 0, 0, SWP_NOSIZE | SWP_NOMOVE);
1631 if (psInfo->proppage[index].hwndPage == 0)
1633 ppshpage = (LPCPROPSHEETPAGEW)psInfo->proppage[index].hpage;
1634 PROPSHEET_CreatePage(hwndDlg, index, psInfo, ppshpage);
1637 if ((psInfo->ppshheader.dwFlags & (PSH_WIZARD97_OLD | PSH_WIZARD97_NEW)) == 0)
1639 PROPSHEET_SetTitleW(hwndDlg, psInfo->ppshheader.dwFlags,
1640 psInfo->proppage[index].pszText);
1643 if (psInfo->active_page != -1)
1644 ShowWindow(psInfo->proppage[psInfo->active_page].hwndPage, SW_HIDE);
1646 ShowWindow(psInfo->proppage[index].hwndPage, SW_SHOW);
1648 /* Synchronize current selection with tab control
1649 * It seems to be needed even in case of PSH_WIZARD (no tab controls there) */
1650 hwndTabCtrl = GetDlgItem(hwndDlg, IDC_TABCONTROL);
1651 SendMessageW(hwndTabCtrl, TCM_SETCURSEL, index, 0);
1653 psInfo->active_page = index;
1654 psInfo->activeValid = TRUE;
1656 if (psInfo->ppshheader.dwFlags & (PSH_WIZARD97_OLD | PSH_WIZARD97_NEW) )
1658 hwndLineHeader = GetDlgItem(hwndDlg, IDC_SUNKEN_LINEHEADER);
1659 ppshpage = (LPCPROPSHEETPAGEW)psInfo->proppage[index].hpage;
1661 if ((ppshpage->dwFlags & PSP_HIDEHEADER) || (!(psInfo->ppshheader.dwFlags & PSH_HEADER)) )
1662 ShowWindow(hwndLineHeader, SW_HIDE);
1664 ShowWindow(hwndLineHeader, SW_SHOW);
1666 InvalidateRgn(hwndDlg, NULL, TRUE);
1667 UpdateWindow(hwndDlg);
1673 /******************************************************************************
1676 static BOOL PROPSHEET_Back(HWND hwndDlg)
1680 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
1685 TRACE("active_page %d\n", psInfo->active_page);
1686 if (psInfo->active_page < 0)
1689 psn.hdr.code = PSN_WIZBACK;
1690 psn.hdr.hwndFrom = hwndDlg;
1694 hwndPage = psInfo->proppage[psInfo->active_page].hwndPage;
1696 result = SendMessageW(hwndPage, WM_NOTIFY, 0, (LPARAM) &psn);
1699 else if (result == 0)
1700 idx = psInfo->active_page - 1;
1702 idx = PROPSHEET_FindPageByResId(psInfo, result);
1704 if (idx >= 0 && idx < psInfo->nPages)
1706 if (PROPSHEET_CanSetCurSel(hwndDlg))
1707 PROPSHEET_SetCurSel(hwndDlg, idx, -1, 0);
1712 /******************************************************************************
1715 static BOOL PROPSHEET_Next(HWND hwndDlg)
1719 LRESULT msgResult = 0;
1720 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
1724 TRACE("active_page %d\n", psInfo->active_page);
1725 if (psInfo->active_page < 0)
1728 psn.hdr.code = PSN_WIZNEXT;
1729 psn.hdr.hwndFrom = hwndDlg;
1733 hwndPage = psInfo->proppage[psInfo->active_page].hwndPage;
1735 msgResult = SendMessageA(hwndPage, WM_NOTIFY, 0, (LPARAM) &psn);
1736 if (msgResult == -1)
1738 else if (msgResult == 0)
1739 idx = psInfo->active_page + 1;
1741 idx = PROPSHEET_FindPageByResId(psInfo, msgResult);
1743 if (idx < psInfo->nPages )
1745 if (PROPSHEET_CanSetCurSel(hwndDlg) != FALSE)
1746 PROPSHEET_SetCurSel(hwndDlg, idx, 1, 0);
1752 /******************************************************************************
1755 static BOOL PROPSHEET_Finish(HWND hwndDlg)
1759 LRESULT msgResult = 0;
1760 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
1763 TRACE("active_page %d\n", psInfo->active_page);
1764 if (psInfo->active_page < 0)
1767 psn.hdr.code = PSN_WIZFINISH;
1768 psn.hdr.hwndFrom = hwndDlg;
1772 hwndPage = psInfo->proppage[psInfo->active_page].hwndPage;
1774 msgResult = SendMessageW(hwndPage, WM_NOTIFY, 0, (LPARAM) &psn);
1776 TRACE("msg result %ld\n", msgResult);
1781 if (psInfo->isModeless)
1782 psInfo->activeValid = FALSE;
1784 EndDialog(hwndDlg, TRUE);
1789 /******************************************************************************
1792 static BOOL PROPSHEET_Apply(HWND hwndDlg, LPARAM lParam)
1797 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
1800 TRACE("active_page %d\n", psInfo->active_page);
1801 if (psInfo->active_page < 0)
1804 psn.hdr.hwndFrom = hwndDlg;
1810 * Send PSN_KILLACTIVE to the current page.
1812 psn.hdr.code = PSN_KILLACTIVE;
1814 hwndPage = psInfo->proppage[psInfo->active_page].hwndPage;
1816 if (SendMessageA(hwndPage, WM_NOTIFY, 0, (LPARAM) &psn) != FALSE)
1820 * Send PSN_APPLY to all pages.
1822 psn.hdr.code = PSN_APPLY;
1823 psn.lParam = lParam;
1825 for (i = 0; i < psInfo->nPages; i++)
1827 hwndPage = psInfo->proppage[i].hwndPage;
1830 switch (SendMessageA(hwndPage, WM_NOTIFY, 0, (LPARAM) &psn))
1832 case PSNRET_INVALID:
1833 PROPSHEET_ShowPage(hwndDlg, i, psInfo);
1835 case PSNRET_INVALID_NOCHANGEPAGE:
1843 psInfo->activeValid = FALSE;
1845 else if(psInfo->active_page >= 0)
1847 psn.hdr.code = PSN_SETACTIVE;
1849 hwndPage = psInfo->proppage[psInfo->active_page].hwndPage;
1850 SendMessageA(hwndPage, WM_NOTIFY, 0, (LPARAM) &psn);
1856 /******************************************************************************
1859 static void PROPSHEET_Cancel(HWND hwndDlg, LPARAM lParam)
1861 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
1867 TRACE("active_page %d\n", psInfo->active_page);
1868 if (psInfo->active_page < 0)
1871 hwndPage = psInfo->proppage[psInfo->active_page].hwndPage;
1872 psn.hdr.code = PSN_QUERYCANCEL;
1873 psn.hdr.hwndFrom = hwndDlg;
1877 if (SendMessageA(hwndPage, WM_NOTIFY, 0, (LPARAM) &psn))
1880 psn.hdr.code = PSN_RESET;
1881 psn.lParam = lParam;
1883 for (i = 0; i < psInfo->nPages; i++)
1885 hwndPage = psInfo->proppage[i].hwndPage;
1888 SendMessageA(hwndPage, WM_NOTIFY, 0, (LPARAM) &psn);
1891 if (psInfo->isModeless)
1893 /* makes PSM_GETCURRENTPAGEHWND return NULL */
1894 psInfo->activeValid = FALSE;
1897 EndDialog(hwndDlg, FALSE);
1900 /******************************************************************************
1903 static void PROPSHEET_Help(HWND hwndDlg)
1905 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
1910 TRACE("active_page %d\n", psInfo->active_page);
1911 if (psInfo->active_page < 0)
1914 hwndPage = psInfo->proppage[psInfo->active_page].hwndPage;
1915 psn.hdr.code = PSN_HELP;
1916 psn.hdr.hwndFrom = hwndDlg;
1920 SendMessageA(hwndPage, WM_NOTIFY, 0, (LPARAM) &psn);
1923 /******************************************************************************
1926 static void PROPSHEET_Changed(HWND hwndDlg, HWND hwndDirtyPage)
1929 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
1933 if (!psInfo) return;
1935 * Set the dirty flag of this page.
1937 for (i = 0; i < psInfo->nPages; i++)
1939 if (psInfo->proppage[i].hwndPage == hwndDirtyPage)
1940 psInfo->proppage[i].isDirty = TRUE;
1944 * Enable the Apply button.
1946 if (psInfo->hasApply)
1948 HWND hwndApplyBtn = GetDlgItem(hwndDlg, IDC_APPLY_BUTTON);
1950 EnableWindow(hwndApplyBtn, TRUE);
1954 /******************************************************************************
1955 * PROPSHEET_UnChanged
1957 static void PROPSHEET_UnChanged(HWND hwndDlg, HWND hwndCleanPage)
1960 BOOL noPageDirty = TRUE;
1961 HWND hwndApplyBtn = GetDlgItem(hwndDlg, IDC_APPLY_BUTTON);
1962 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
1966 if ( !psInfo ) return;
1967 for (i = 0; i < psInfo->nPages; i++)
1969 /* set the specified page as clean */
1970 if (psInfo->proppage[i].hwndPage == hwndCleanPage)
1971 psInfo->proppage[i].isDirty = FALSE;
1973 /* look to see if there's any dirty pages */
1974 if (psInfo->proppage[i].isDirty)
1975 noPageDirty = FALSE;
1979 * Disable Apply button.
1982 EnableWindow(hwndApplyBtn, FALSE);
1985 /******************************************************************************
1986 * PROPSHEET_PressButton
1988 static void PROPSHEET_PressButton(HWND hwndDlg, int buttonID)
1990 TRACE("buttonID %d\n", buttonID);
1993 case PSBTN_APPLYNOW:
1994 PROPSHEET_DoCommand(hwndDlg, IDC_APPLY_BUTTON);
1997 PROPSHEET_Back(hwndDlg);
2000 PROPSHEET_DoCommand(hwndDlg, IDCANCEL);
2003 PROPSHEET_Finish(hwndDlg);
2006 PROPSHEET_DoCommand(hwndDlg, IDHELP);
2009 PROPSHEET_Next(hwndDlg);
2012 PROPSHEET_DoCommand(hwndDlg, IDOK);
2015 FIXME("Invalid button index %d\n", buttonID);
2020 /*************************************************************************
2021 * BOOL PROPSHEET_CanSetCurSel [Internal]
2023 * Test whether the current page can be changed by sending a PSN_KILLACTIVE
2026 * hwndDlg [I] handle to a Dialog hWnd
2029 * TRUE if Current Selection can change
2033 static BOOL PROPSHEET_CanSetCurSel(HWND hwndDlg)
2035 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
2041 TRACE("active_page %d\n", psInfo->active_page);
2048 if (psInfo->active_page < 0)
2055 * Notify the current page.
2057 hwndPage = psInfo->proppage[psInfo->active_page].hwndPage;
2058 psn.hdr.code = PSN_KILLACTIVE;
2059 psn.hdr.hwndFrom = hwndDlg;
2063 res = !SendMessageA(hwndPage, WM_NOTIFY, 0, (LPARAM) &psn);
2066 TRACE("<-- %d\n", res);
2070 /******************************************************************************
2071 * PROPSHEET_SetCurSel
2073 static BOOL PROPSHEET_SetCurSel(HWND hwndDlg,
2076 HPROPSHEETPAGE hpage
2079 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwndDlg, PropSheetInfoStr);
2080 HWND hwndHelp = GetDlgItem(hwndDlg, IDHELP);
2081 HWND hwndTabControl = GetDlgItem(hwndDlg, IDC_TABCONTROL);
2083 TRACE("index %d, skipdir %d, hpage %p\n", index, skipdir, hpage);
2084 /* hpage takes precedence over index */
2086 index = PROPSHEET_GetPageIndex(hpage, psInfo);
2088 if (index < 0 || index >= psInfo->nPages)
2090 TRACE("Could not find page to select!\n");
2099 SendMessageW(hwndTabControl, TCM_SETCURSEL, index, 0);
2101 psn.hdr.code = PSN_SETACTIVE;
2102 psn.hdr.hwndFrom = hwndDlg;
2106 if (!psInfo->proppage[index].hwndPage) {
2107 LPCPROPSHEETPAGEW ppshpage = (LPCPROPSHEETPAGEW)psInfo->proppage[index].hpage;
2108 PROPSHEET_CreatePage(hwndDlg, index, psInfo, ppshpage);
2111 result = SendMessageW(psInfo->proppage[index].hwndPage, WM_NOTIFY, 0, (LPARAM) &psn);
2118 WARN("Tried to skip before first property sheet page!\n");
2121 if (index >= psInfo->nPages) {
2122 WARN("Tried to skip after last property sheet page!\n");
2123 index = psInfo->nPages-1;
2127 else if (result != 0)
2129 int old_index = index;
2130 index = PROPSHEET_FindPageByResId(psInfo, result);
2131 if(index >= psInfo->nPages) {
2133 WARN("Tried to skip to nonexistant page by res id\n");
2140 * Display the new page.
2142 PROPSHEET_ShowPage(hwndDlg, index, psInfo);
2144 if (psInfo->proppage[index].hasHelp)
2145 EnableWindow(hwndHelp, TRUE);
2147 EnableWindow(hwndHelp, FALSE);
2152 /******************************************************************************
2153 * PROPSHEET_SetCurSelId
2155 * Selects the page, specified by resource id.
2157 static void PROPSHEET_SetCurSelId(HWND hwndDlg, int id)
2160 PropSheetInfo* psInfo =
2161 (PropSheetInfo*) GetPropW(hwndDlg, PropSheetInfoStr);
2163 idx = PROPSHEET_FindPageByResId(psInfo, id);
2164 if (idx < psInfo->nPages )
2166 if (PROPSHEET_CanSetCurSel(hwndDlg) != FALSE)
2167 PROPSHEET_SetCurSel(hwndDlg, idx, 1, 0);
2171 /******************************************************************************
2172 * PROPSHEET_SetTitleA
2174 static void PROPSHEET_SetTitleA(HWND hwndDlg, DWORD dwStyle, LPCSTR lpszText)
2176 if(HIWORD(lpszText))
2179 MultiByteToWideChar(CP_ACP, 0, lpszText, -1,
2180 szTitle, sizeof(szTitle));
2181 PROPSHEET_SetTitleW(hwndDlg, dwStyle, szTitle);
2185 PROPSHEET_SetTitleW(hwndDlg, dwStyle, (LPCWSTR)lpszText);
2189 /******************************************************************************
2190 * PROPSHEET_SetTitleW
2192 static void PROPSHEET_SetTitleW(HWND hwndDlg, DWORD dwStyle, LPCWSTR lpszText)
2194 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwndDlg, PropSheetInfoStr);
2197 TRACE("'%s' (style %08lx)\n", debugstr_w(lpszText), dwStyle);
2198 if (HIWORD(lpszText) == 0) {
2199 if (!LoadStringW(psInfo->ppshheader.hInstance,
2200 LOWORD(lpszText), szTitle, sizeof(szTitle)-sizeof(WCHAR)))
2204 if (dwStyle & PSH_PROPTITLE)
2207 int lentitle = strlenW(lpszText);
2208 int lenprop = strlenW(psInfo->strPropertiesFor);
2210 dest = Alloc( (lentitle + lenprop + 1)*sizeof (WCHAR));
2211 strcpyW(dest, psInfo->strPropertiesFor);
2212 strcatW(dest, lpszText);
2214 SetWindowTextW(hwndDlg, dest);
2218 SetWindowTextW(hwndDlg, lpszText);
2221 /******************************************************************************
2222 * PROPSHEET_SetFinishTextA
2224 static void PROPSHEET_SetFinishTextA(HWND hwndDlg, LPCSTR lpszText)
2226 HWND hwndButton = GetDlgItem(hwndDlg, IDC_FINISH_BUTTON);
2228 TRACE("'%s'\n", lpszText);
2229 /* Set text, show and enable the Finish button */
2230 SetWindowTextA(hwndButton, lpszText);
2231 ShowWindow(hwndButton, SW_SHOW);
2232 EnableWindow(hwndButton, TRUE);
2234 /* Make it default pushbutton */
2235 SendMessageA(hwndDlg, DM_SETDEFID, IDC_FINISH_BUTTON, 0);
2237 /* Hide Back button */
2238 hwndButton = GetDlgItem(hwndDlg, IDC_BACK_BUTTON);
2239 ShowWindow(hwndButton, SW_HIDE);
2241 /* Hide Next button */
2242 hwndButton = GetDlgItem(hwndDlg, IDC_NEXT_BUTTON);
2243 ShowWindow(hwndButton, SW_HIDE);
2246 /******************************************************************************
2247 * PROPSHEET_SetFinishTextW
2249 static void PROPSHEET_SetFinishTextW(HWND hwndDlg, LPCWSTR lpszText)
2251 HWND hwndButton = GetDlgItem(hwndDlg, IDC_FINISH_BUTTON);
2253 TRACE("'%s'\n", debugstr_w(lpszText));
2254 /* Set text, show and enable the Finish button */
2255 SetWindowTextW(hwndButton, lpszText);
2256 ShowWindow(hwndButton, SW_SHOW);
2257 EnableWindow(hwndButton, TRUE);
2259 /* Make it default pushbutton */
2260 SendMessageW(hwndDlg, DM_SETDEFID, IDC_FINISH_BUTTON, 0);
2262 /* Hide Back button */
2263 hwndButton = GetDlgItem(hwndDlg, IDC_BACK_BUTTON);
2264 ShowWindow(hwndButton, SW_HIDE);
2266 /* Hide Next button */
2267 hwndButton = GetDlgItem(hwndDlg, IDC_NEXT_BUTTON);
2268 ShowWindow(hwndButton, SW_HIDE);
2271 /******************************************************************************
2272 * PROPSHEET_QuerySiblings
2274 static LRESULT PROPSHEET_QuerySiblings(HWND hwndDlg,
2275 WPARAM wParam, LPARAM lParam)
2279 LRESULT msgResult = 0;
2280 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
2283 while ((i < psInfo->nPages) && (msgResult == 0))
2285 hwndPage = psInfo->proppage[i].hwndPage;
2286 msgResult = SendMessageA(hwndPage, PSM_QUERYSIBLINGS, wParam, lParam);
2294 /******************************************************************************
2297 static BOOL PROPSHEET_AddPage(HWND hwndDlg,
2298 HPROPSHEETPAGE hpage)
2300 PropSheetInfo * psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
2302 HWND hwndTabControl = GetDlgItem(hwndDlg, IDC_TABCONTROL);
2304 LPCPROPSHEETPAGEW ppsp = (LPCPROPSHEETPAGEW)hpage;
2306 TRACE("hpage %p\n", hpage);
2308 * Allocate and fill in a new PropPageInfo entry.
2310 psInfo->proppage = (PropPageInfo*) ReAlloc(psInfo->proppage,
2311 sizeof(PropPageInfo) *
2312 (psInfo->nPages + 1));
2313 if (!PROPSHEET_CollectPageInfo(ppsp, psInfo, psInfo->nPages))
2316 psInfo->proppage[psInfo->nPages].hpage = hpage;
2318 if (ppsp->dwFlags & PSP_PREMATURE)
2320 /* Create the page but don't show it */
2321 PROPSHEET_CreatePage(hwndDlg, psInfo->nPages, psInfo, ppsp);
2325 * Add a new tab to the tab control.
2327 item.mask = TCIF_TEXT;
2328 item.pszText = (LPWSTR) psInfo->proppage[psInfo->nPages].pszText;
2329 item.cchTextMax = MAX_TABTEXT_LENGTH;
2331 if (psInfo->hImageList)
2333 SendMessageW(hwndTabControl, TCM_SETIMAGELIST, 0, (LPARAM)psInfo->hImageList);
2336 if ( psInfo->proppage[psInfo->nPages].hasIcon )
2338 item.mask |= TCIF_IMAGE;
2339 item.iImage = psInfo->nPages;
2342 SendMessageW(hwndTabControl, TCM_INSERTITEMW, psInfo->nPages + 1,
2347 /* If it is the only page - show it */
2348 if(psInfo->nPages == 1)
2349 PROPSHEET_SetCurSel(hwndDlg, 0, 1, 0);
2353 /******************************************************************************
2354 * PROPSHEET_RemovePage
2356 static BOOL PROPSHEET_RemovePage(HWND hwndDlg,
2358 HPROPSHEETPAGE hpage)
2360 PropSheetInfo * psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
2362 HWND hwndTabControl = GetDlgItem(hwndDlg, IDC_TABCONTROL);
2363 PropPageInfo* oldPages;
2365 TRACE("index %d, hpage %p\n", index, hpage);
2370 * hpage takes precedence over index.
2374 index = PROPSHEET_GetPageIndex(hpage, psInfo);
2377 /* Make sure that index is within range */
2378 if (index < 0 || index >= psInfo->nPages)
2380 TRACE("Could not find page to remove!\n");
2384 TRACE("total pages %d removing page %d active page %d\n",
2385 psInfo->nPages, index, psInfo->active_page);
2387 * Check if we're removing the active page.
2389 if (index == psInfo->active_page)
2391 if (psInfo->nPages > 1)
2395 /* activate previous page */
2396 PROPSHEET_SetCurSel(hwndDlg, index - 1, -1, 0);
2400 /* activate the next page */
2401 PROPSHEET_SetCurSel(hwndDlg, index + 1, 1, 0);
2402 psInfo->active_page = index;
2407 psInfo->active_page = -1;
2408 if (!psInfo->isModeless)
2410 EndDialog(hwndDlg, FALSE);
2415 else if (index < psInfo->active_page)
2416 psInfo->active_page--;
2418 /* Destroy page dialog window */
2419 DestroyWindow(psInfo->proppage[index].hwndPage);
2421 /* Free page resources */
2422 if(psInfo->proppage[index].hpage)
2424 PROPSHEETPAGEW* psp = (PROPSHEETPAGEW*)psInfo->proppage[index].hpage;
2426 if ((psp->dwFlags & PSP_USETITLE) && psInfo->proppage[index].pszText)
2427 HeapFree(GetProcessHeap(), 0, (LPVOID)psInfo->proppage[index].pszText);
2429 DestroyPropertySheetPage(psInfo->proppage[index].hpage);
2432 /* Remove the tab */
2433 SendMessageW(hwndTabControl, TCM_DELETEITEM, index, 0);
2435 oldPages = psInfo->proppage;
2437 psInfo->proppage = Alloc(sizeof(PropPageInfo) * psInfo->nPages);
2440 memcpy(&psInfo->proppage[0], &oldPages[0], index * sizeof(PropPageInfo));
2442 if (index < psInfo->nPages)
2443 memcpy(&psInfo->proppage[index], &oldPages[index + 1],
2444 (psInfo->nPages - index) * sizeof(PropPageInfo));
2451 /******************************************************************************
2452 * PROPSHEET_SetWizButtons
2454 * This code will work if (and assumes that) the Next button is on top of the
2455 * Finish button. ie. Finish comes after Next in the Z order.
2456 * This means make sure the dialog template reflects this.
2459 static void PROPSHEET_SetWizButtons(HWND hwndDlg, DWORD dwFlags)
2461 HWND hwndBack = GetDlgItem(hwndDlg, IDC_BACK_BUTTON);
2462 HWND hwndNext = GetDlgItem(hwndDlg, IDC_NEXT_BUTTON);
2463 HWND hwndFinish = GetDlgItem(hwndDlg, IDC_FINISH_BUTTON);
2465 TRACE("%ld\n", dwFlags);
2467 EnableWindow(hwndBack, FALSE);
2468 EnableWindow(hwndNext, FALSE);
2469 EnableWindow(hwndFinish, FALSE);
2471 if (dwFlags & PSWIZB_BACK)
2472 EnableWindow(hwndBack, TRUE);
2474 if (dwFlags & PSWIZB_NEXT)
2476 /* Hide the Finish button */
2477 ShowWindow(hwndFinish, SW_HIDE);
2479 /* Show and enable the Next button */
2480 ShowWindow(hwndNext, SW_SHOW);
2481 EnableWindow(hwndNext, TRUE);
2483 /* Set the Next button as the default pushbutton */
2484 SendMessageA(hwndDlg, DM_SETDEFID, IDC_NEXT_BUTTON, 0);
2487 if ((dwFlags & PSWIZB_FINISH) || (dwFlags & PSWIZB_DISABLEDFINISH))
2489 /* Hide the Next button */
2490 ShowWindow(hwndNext, SW_HIDE);
2492 /* Show the Finish button */
2493 ShowWindow(hwndFinish, SW_SHOW);
2495 if (dwFlags & PSWIZB_FINISH)
2496 EnableWindow(hwndFinish, TRUE);
2498 /* Set the Finish button as the default pushbutton */
2499 SendMessageA(hwndDlg, DM_SETDEFID, IDC_FINISH_BUTTON, 0);
2503 /******************************************************************************
2504 * PROPSHEET_InsertPage
2506 static BOOL PROPSHEET_InsertPage(HWND hwndDlg, HPROPSHEETPAGE hpageInsertAfter, HPROPSHEETPAGE hpage)
2508 if (!HIWORD(hpageInsertAfter))
2509 FIXME("(%p, %d, %p): stub\n", hwndDlg, LOWORD(hpageInsertAfter), hpage);
2511 FIXME("(%p, %p, %p): stub\n", hwndDlg, hpageInsertAfter, hpage);
2515 /******************************************************************************
2516 * PROPSHEET_SetHeaderTitleW
2518 static void PROPSHEET_SetHeaderTitleW(HWND hwndDlg, int iPageIndex, LPCWSTR pszHeaderTitle)
2520 FIXME("(%p, %d, %s): stub\n", hwndDlg, iPageIndex, debugstr_w(pszHeaderTitle));
2523 /******************************************************************************
2524 * PROPSHEET_SetHeaderTitleA
2526 static void PROPSHEET_SetHeaderTitleA(HWND hwndDlg, int iPageIndex, LPCSTR pszHeaderTitle)
2528 FIXME("(%p, %d, %s): stub\n", hwndDlg, iPageIndex, debugstr_a(pszHeaderTitle));
2531 /******************************************************************************
2532 * PROPSHEET_SetHeaderSubTitleW
2534 static void PROPSHEET_SetHeaderSubTitleW(HWND hwndDlg, int iPageIndex, LPCWSTR pszHeaderSubTitle)
2536 FIXME("(%p, %d, %s): stub\n", hwndDlg, iPageIndex, debugstr_w(pszHeaderSubTitle));
2539 /******************************************************************************
2540 * PROPSHEET_SetHeaderSubTitleA
2542 static void PROPSHEET_SetHeaderSubTitleA(HWND hwndDlg, int iPageIndex, LPCSTR pszHeaderSubTitle)
2544 FIXME("(%p, %d, %s): stub\n", hwndDlg, iPageIndex, debugstr_a(pszHeaderSubTitle));
2547 /******************************************************************************
2548 * PROPSHEET_HwndToIndex
2550 static LRESULT PROPSHEET_HwndToIndex(HWND hwndDlg, HWND hPageDlg)
2553 PropSheetInfo * psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
2556 TRACE("(%p, %p)\n", hwndDlg, hPageDlg);
2558 for (index = 0; index < psInfo->nPages; index++)
2559 if (psInfo->proppage[index].hwndPage == hPageDlg)
2561 WARN("%p not found\n", hPageDlg);
2565 /******************************************************************************
2566 * PROPSHEET_IndexToHwnd
2568 static LRESULT PROPSHEET_IndexToHwnd(HWND hwndDlg, int iPageIndex)
2570 PropSheetInfo * psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
2572 TRACE("(%p, %d)\n", hwndDlg, iPageIndex);
2573 if (iPageIndex<0 || iPageIndex>=psInfo->nPages) {
2574 WARN("%d out of range.\n", iPageIndex);
2577 return (LRESULT)psInfo->proppage[iPageIndex].hwndPage;
2580 /******************************************************************************
2581 * PROPSHEET_PageToIndex
2583 static LRESULT PROPSHEET_PageToIndex(HWND hwndDlg, HPROPSHEETPAGE hPage)
2585 FIXME("(%p, %p): stub\n", hwndDlg, hPage);
2589 /******************************************************************************
2590 * PROPSHEET_IndexToPage
2592 static LRESULT PROPSHEET_IndexToPage(HWND hwndDlg, int iPageIndex)
2594 FIXME("(%p, %d): stub\n", hwndDlg, iPageIndex);
2598 /******************************************************************************
2599 * PROPSHEET_IdToIndex
2601 static LRESULT PROPSHEET_IdToIndex(HWND hwndDlg, int iPageId)
2603 FIXME("(%p, %d): stub\n", hwndDlg, iPageId);
2607 /******************************************************************************
2608 * PROPSHEET_IndexToId
2610 static LRESULT PROPSHEET_IndexToId(HWND hwndDlg, int iPageIndex)
2612 FIXME("(%p, %d): stub\n", hwndDlg, iPageIndex);
2616 /******************************************************************************
2617 * PROPSHEET_GetResult
2619 static LRESULT PROPSHEET_GetResult(HWND hwndDlg)
2621 FIXME("(%p): stub\n", hwndDlg);
2625 /******************************************************************************
2626 * PROPSHEET_RecalcPageSizes
2628 static BOOL PROPSHEET_RecalcPageSizes(HWND hwndDlg)
2630 FIXME("(%p): stub\n", hwndDlg);
2634 /******************************************************************************
2635 * PROPSHEET_GetPageIndex
2637 * Given a HPROPSHEETPAGE, returns the index of the corresponding page from
2638 * the array of PropPageInfo.
2640 static int PROPSHEET_GetPageIndex(HPROPSHEETPAGE hpage, PropSheetInfo* psInfo)
2645 TRACE("hpage %p\n", hpage);
2646 while ((index < psInfo->nPages) && (found == FALSE))
2648 if (psInfo->proppage[index].hpage == hpage)
2660 /******************************************************************************
2663 static void PROPSHEET_CleanUp(HWND hwndDlg)
2666 PropSheetInfo* psInfo = (PropSheetInfo*) RemovePropW(hwndDlg,
2670 if (!psInfo) return;
2671 if (HIWORD(psInfo->ppshheader.pszCaption))
2672 HeapFree(GetProcessHeap(), 0, (LPVOID)psInfo->ppshheader.pszCaption);
2674 for (i = 0; i < psInfo->nPages; i++)
2676 PROPSHEETPAGEA* psp = (PROPSHEETPAGEA*)psInfo->proppage[i].hpage;
2678 if(psInfo->proppage[i].hwndPage)
2679 DestroyWindow(psInfo->proppage[i].hwndPage);
2683 if ((psp->dwFlags & PSP_USETITLE) && psInfo->proppage[i].pszText)
2684 HeapFree(GetProcessHeap(), 0, (LPVOID)psInfo->proppage[i].pszText);
2686 DestroyPropertySheetPage(psInfo->proppage[i].hpage);
2690 DeleteObject(psInfo->hFont);
2691 DeleteObject(psInfo->hFontBold);
2692 /* If we created the bitmaps, destroy them */
2693 if ((psInfo->ppshheader.dwFlags & PSH_WATERMARK) &&
2694 (!(psInfo->ppshheader.dwFlags & PSH_USEHBMWATERMARK)) )
2695 DeleteObject(psInfo->ppshheader.u4.hbmWatermark);
2696 if ((psInfo->ppshheader.dwFlags & PSH_HEADER) &&
2697 (!(psInfo->ppshheader.dwFlags & PSH_USEHBMHEADER)) )
2698 DeleteObject(psInfo->ppshheader.u5.hbmHeader);
2700 Free(psInfo->proppage);
2701 Free(psInfo->strPropertiesFor);
2702 ImageList_Destroy(psInfo->hImageList);
2704 GlobalFree((HGLOBAL)psInfo);
2707 /******************************************************************************
2708 * PropertySheet (COMCTL32.@)
2709 * PropertySheetA (COMCTL32.@)
2711 * Creates a property sheet in the specified property sheet header.
2714 * Modal property sheets: Positive if successful or -1 otherwise.
2715 * Modeless property sheets: Property sheet handle.
2717 *| ID_PSREBOOTSYSTEM - The user must reboot the computer for the changes to take effect.
2718 *| ID_PSRESTARTWINDOWS - The user must restart Windows for the changes to take effect.
2720 INT WINAPI PropertySheetA(LPCPROPSHEETHEADERA lppsh)
2723 PropSheetInfo* psInfo = (PropSheetInfo*) GlobalAlloc(GPTR,
2724 sizeof(PropSheetInfo));
2728 TRACE("(%p)\n", lppsh);
2730 PROPSHEET_CollectSheetInfoA(lppsh, psInfo);
2732 psInfo->proppage = (PropPageInfo*) Alloc(sizeof(PropPageInfo) *
2734 pByte = (BYTE*) psInfo->ppshheader.u3.ppsp;
2736 for (n = i = 0; i < lppsh->nPages; i++, n++)
2738 if (!(lppsh->dwFlags & PSH_PROPSHEETPAGE))
2739 psInfo->proppage[n].hpage = psInfo->ppshheader.u3.phpage[i];
2742 psInfo->proppage[n].hpage = CreatePropertySheetPageA((LPCPROPSHEETPAGEA)pByte);
2743 pByte += ((LPPROPSHEETPAGEA)pByte)->dwSize;
2746 if (!PROPSHEET_CollectPageInfo((LPCPROPSHEETPAGEW)psInfo->proppage[n].hpage,
2749 if (lppsh->dwFlags & PSH_PROPSHEETPAGE)
2750 DestroyPropertySheetPage(psInfo->proppage[n].hpage);
2756 psInfo->unicode = FALSE;
2757 bRet = PROPSHEET_CreateDialog(psInfo);
2762 /******************************************************************************
2763 * PropertySheetW (COMCTL32.@)
2765 * See PropertySheetA.
2767 INT WINAPI PropertySheetW(LPCPROPSHEETHEADERW lppsh)
2770 PropSheetInfo* psInfo = (PropSheetInfo*) GlobalAlloc(GPTR,
2771 sizeof(PropSheetInfo));
2775 TRACE("(%p)\n", lppsh);
2777 PROPSHEET_CollectSheetInfoW(lppsh, psInfo);
2779 psInfo->proppage = (PropPageInfo*) Alloc(sizeof(PropPageInfo) *
2781 pByte = (BYTE*) psInfo->ppshheader.u3.ppsp;
2783 for (n = i = 0; i < lppsh->nPages; i++, n++)
2785 if (!(lppsh->dwFlags & PSH_PROPSHEETPAGE))
2786 psInfo->proppage[n].hpage = psInfo->ppshheader.u3.phpage[i];
2789 psInfo->proppage[n].hpage = CreatePropertySheetPageW((LPCPROPSHEETPAGEW)pByte);
2790 pByte += ((LPPROPSHEETPAGEW)pByte)->dwSize;
2793 if (!PROPSHEET_CollectPageInfo((LPCPROPSHEETPAGEW)psInfo->proppage[n].hpage,
2796 if (lppsh->dwFlags & PSH_PROPSHEETPAGE)
2797 DestroyPropertySheetPage(psInfo->proppage[n].hpage);
2803 psInfo->unicode = TRUE;
2804 bRet = PROPSHEET_CreateDialog(psInfo);
2809 /******************************************************************************
2810 * CreatePropertySheetPage (COMCTL32.@)
2811 * CreatePropertySheetPageA (COMCTL32.@)
2813 * Creates a new property sheet page.
2816 * Success: Handle to new property sheet page.
2820 * An application must use the PSM_ADDPAGE message to add the new page to
2821 * an existing property sheet.
2823 HPROPSHEETPAGE WINAPI CreatePropertySheetPageA(
2824 LPCPROPSHEETPAGEA lpPropSheetPage)
2826 PROPSHEETPAGEW* ppsp = Alloc(sizeof(PROPSHEETPAGEW));
2828 memcpy(ppsp,lpPropSheetPage,min(lpPropSheetPage->dwSize,sizeof(PROPSHEETPAGEA)));
2830 ppsp->dwFlags &= ~ PSP_INTERNAL_UNICODE;
2831 if ( !(ppsp->dwFlags & PSP_DLGINDIRECT) && HIWORD( ppsp->u.pszTemplate ) )
2833 int len = strlen(lpPropSheetPage->u.pszTemplate);
2835 ppsp->u.pszTemplate = HeapAlloc( GetProcessHeap(),0,len+1 );
2836 strcpy( (LPSTR)ppsp->u.pszTemplate, lpPropSheetPage->u.pszTemplate );
2838 if ( (ppsp->dwFlags & PSP_USEICONID) && HIWORD( ppsp->u2.pszIcon ) )
2840 PROPSHEET_AtoW(&ppsp->u2.pszIcon, lpPropSheetPage->u2.pszIcon);
2843 if ((ppsp->dwFlags & PSP_USETITLE) && HIWORD( ppsp->pszTitle ))
2845 PROPSHEET_AtoW(&ppsp->pszTitle, lpPropSheetPage->pszTitle);
2847 else if ( !(ppsp->dwFlags & PSP_USETITLE) )
2848 ppsp->pszTitle = NULL;
2850 return (HPROPSHEETPAGE)ppsp;
2853 /******************************************************************************
2854 * CreatePropertySheetPageW (COMCTL32.@)
2856 * See CreatePropertySheetA.
2858 HPROPSHEETPAGE WINAPI CreatePropertySheetPageW(LPCPROPSHEETPAGEW lpPropSheetPage)
2860 PROPSHEETPAGEW* ppsp = Alloc(sizeof(PROPSHEETPAGEW));
2862 memcpy(ppsp,lpPropSheetPage,min(lpPropSheetPage->dwSize,sizeof(PROPSHEETPAGEW)));
2864 ppsp->dwFlags |= PSP_INTERNAL_UNICODE;
2866 if ( !(ppsp->dwFlags & PSP_DLGINDIRECT) && HIWORD( ppsp->u.pszTemplate ) )
2868 int len = strlenW(lpPropSheetPage->u.pszTemplate);
2870 ppsp->u.pszTemplate = HeapAlloc( GetProcessHeap(),0,(len+1)*sizeof (WCHAR) );
2871 strcpyW( (WCHAR *)ppsp->u.pszTemplate, lpPropSheetPage->u.pszTemplate );
2873 if ( (ppsp->dwFlags & PSP_USEICONID) && HIWORD( ppsp->u2.pszIcon ) )
2875 int len = strlenW(lpPropSheetPage->u2.pszIcon);
2876 ppsp->u2.pszIcon = HeapAlloc( GetProcessHeap(), 0, (len+1)*sizeof (WCHAR) );
2877 strcpyW( (WCHAR *)ppsp->u2.pszIcon, lpPropSheetPage->u2.pszIcon );
2880 if ((ppsp->dwFlags & PSP_USETITLE) && HIWORD( ppsp->pszTitle ))
2882 int len = strlenW(lpPropSheetPage->pszTitle);
2883 ppsp->pszTitle = HeapAlloc( GetProcessHeap(), 0, (len+1)*sizeof (WCHAR) );
2884 strcpyW( (WCHAR *)ppsp->pszTitle, lpPropSheetPage->pszTitle );
2886 else if ( !(ppsp->dwFlags & PSP_USETITLE) )
2887 ppsp->pszTitle = NULL;
2889 return (HPROPSHEETPAGE)ppsp;
2892 /******************************************************************************
2893 * DestroyPropertySheetPage (COMCTL32.@)
2895 * Destroys a property sheet page previously created with
2896 * CreatePropertySheetA() or CreatePropertySheetW() and frees the associated
2903 BOOL WINAPI DestroyPropertySheetPage(HPROPSHEETPAGE hPropPage)
2905 PROPSHEETPAGEW *psp = (PROPSHEETPAGEW *)hPropPage;
2910 if ( !(psp->dwFlags & PSP_DLGINDIRECT) && HIWORD( psp->u.pszTemplate ) )
2911 HeapFree(GetProcessHeap(), 0, (LPVOID)psp->u.pszTemplate);
2913 if ( (psp->dwFlags & PSP_USEICONID) && HIWORD( psp->u2.pszIcon ) )
2914 HeapFree(GetProcessHeap(), 0, (LPVOID)psp->u2.pszIcon);
2916 if ((psp->dwFlags & PSP_USETITLE) && HIWORD( psp->pszTitle ))
2917 HeapFree(GetProcessHeap(), 0, (LPVOID)psp->pszTitle);
2924 /******************************************************************************
2925 * PROPSHEET_IsDialogMessage
2927 static BOOL PROPSHEET_IsDialogMessage(HWND hwnd, LPMSG lpMsg)
2929 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwnd, PropSheetInfoStr);
2932 if (!psInfo || (hwnd != lpMsg->hwnd && !IsChild(hwnd, lpMsg->hwnd)))
2935 if (lpMsg->message == WM_KEYDOWN && (GetKeyState(VK_CONTROL) & 0x8000))
2938 INT dlgCode = SendMessageA(lpMsg->hwnd, WM_GETDLGCODE, 0, (LPARAM)lpMsg);
2940 if (!(dlgCode & DLGC_WANTMESSAGE))
2942 switch (lpMsg->wParam)
2945 if (GetKeyState(VK_SHIFT) & 0x8000)
2951 case VK_NEXT: new_page = 1; break;
2952 case VK_PRIOR: new_page = -1; break;
2958 if (PROPSHEET_CanSetCurSel(hwnd) != FALSE)
2960 new_page += psInfo->active_page;
2963 new_page = psInfo->nPages - 1;
2964 else if (new_page >= psInfo->nPages)
2967 PROPSHEET_SetCurSel(hwnd, new_page, 1, 0);
2974 return IsDialogMessageA(hwnd, lpMsg);
2977 /******************************************************************************
2978 * PROPSHEET_DoCommand
2980 static BOOL PROPSHEET_DoCommand(HWND hwnd, WORD wID)
2986 case IDC_APPLY_BUTTON:
2988 HWND hwndApplyBtn = GetDlgItem(hwnd, IDC_APPLY_BUTTON);
2990 if (PROPSHEET_Apply(hwnd, wID == IDOK ? 1: 0) == FALSE)
2995 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwnd,
2999 if (psInfo->restartWindows)
3000 result = ID_PSRESTARTWINDOWS;
3002 /* reboot system takes precedence over restart windows */
3003 if (psInfo->rebootSystem)
3004 result = ID_PSREBOOTSYSTEM;
3006 if (psInfo->isModeless)
3007 psInfo->activeValid = FALSE;
3009 EndDialog(hwnd, result);
3012 EnableWindow(hwndApplyBtn, FALSE);
3017 case IDC_BACK_BUTTON:
3018 PROPSHEET_Back(hwnd);
3021 case IDC_NEXT_BUTTON:
3022 PROPSHEET_Next(hwnd);
3025 case IDC_FINISH_BUTTON:
3026 PROPSHEET_Finish(hwnd);
3030 PROPSHEET_Cancel(hwnd, 0);
3034 PROPSHEET_Help(hwnd);
3044 /******************************************************************************
3047 static LRESULT PROPSHEET_Paint(HWND hwnd)
3049 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwnd, PropSheetInfoStr);
3054 HPALETTE hOldPal = 0;
3058 LPCPROPSHEETPAGEW ppshpage;
3060 hdc = BeginPaint(hwnd, &ps);
3063 hdcSrc = CreateCompatibleDC(0);
3064 ppshpage = (LPCPROPSHEETPAGEW)psInfo->proppage[psInfo->active_page].hpage;
3066 if (psInfo->ppshheader.dwFlags & PSH_USEHPLWATERMARK)
3067 hOldPal = SelectPalette(hdc, psInfo->ppshheader.hplWatermark, FALSE);
3069 if ( (!(ppshpage->dwFlags & PSP_HIDEHEADER)) &&
3070 (psInfo->ppshheader.dwFlags & (PSH_WIZARD97_OLD | PSH_WIZARD97_NEW)) &&
3071 (psInfo->ppshheader.dwFlags & PSH_HEADER) )
3074 HWND hwndLineHeader = GetDlgItem(hwnd, IDC_SUNKEN_LINEHEADER);
3076 COLORREF clrOld = 0;
3079 hbmp = SelectObject(hdcSrc, psInfo->ppshheader.u5.hbmHeader);
3080 hOldFont = SelectObject(hdc, psInfo->hFontBold);
3082 GetClientRect(hwndLineHeader, &r);
3083 MapWindowPoints(hwndLineHeader, hwnd, (LPPOINT) &r, 2);
3084 SetRect(&rzone, 0, 0, r.right, r.top - 1);
3086 GetObjectA(psInfo->ppshheader.u5.hbmHeader, sizeof(BITMAP), (LPVOID)&bm);
3088 if (psInfo->ppshheader.dwFlags & PSH_WIZARD97_OLD)
3090 /* Fill the unoccupied part of the header with color of the
3091 * left-top pixel, but do it only when needed.
3093 if (bm.bmWidth < r.right || bm.bmHeight < r.bottom)
3095 hbr = CreateSolidBrush(GetPixel(hdcSrc, 0, 0));
3096 CopyRect(&r, &rzone);
3097 if (bm.bmWidth < r.right)
3099 r.left = bm.bmWidth;
3100 FillRect(hdc, &r, hbr);
3102 if (bm.bmHeight < r.bottom)
3105 r.top = bm.bmHeight;
3106 FillRect(hdc, &r, hbr);
3113 hbr = CreateSolidBrush(GetSysColor(COLOR_WINDOW));
3114 FillRect(hdc, &rzone, hbr);
3118 clrOld = SetTextColor (hdc, 0x00000000);
3119 oldBkMode = SetBkMode (hdc, TRANSPARENT);
3121 if (ppshpage->dwFlags & PSP_USEHEADERTITLE) {
3122 SetRect(&r, 20, 10, rzone.right - bm.bmWidth, 18);
3123 if (psInfo->unicode)
3124 DrawTextW(hdc, (LPWSTR)ppshpage->pszHeaderTitle,
3125 -1, &r, DT_LEFT | DT_SINGLELINE | DT_NOCLIP);
3127 DrawTextA(hdc, (LPCSTR)ppshpage->pszHeaderTitle,
3128 -1, &r, DT_LEFT | DT_SINGLELINE | DT_NOCLIP);
3131 if (ppshpage->dwFlags & PSP_USEHEADERSUBTITLE) {
3132 SelectObject(hdc, psInfo->hFont);
3133 SetRect(&r, 40, 25, rzone.right - bm.bmWidth, 43);
3134 if (psInfo->unicode)
3135 DrawTextW(hdc, (LPWSTR)ppshpage->pszHeaderSubTitle,
3136 -1, &r, DT_LEFT | DT_SINGLELINE);
3138 DrawTextA(hdc, (LPCSTR)ppshpage->pszHeaderSubTitle,
3139 -1, &r, DT_LEFT | DT_SINGLELINE);
3142 if (psInfo->ppshheader.dwFlags & PSH_WIZARD97_OLD)
3145 bm.bmWidth, min(bm.bmHeight, rzone.bottom),
3146 hdcSrc, 0, 0, SRCCOPY);
3150 BitBlt(hdc, rzone.right - bm.bmWidth,
3151 (rzone.bottom - bm.bmHeight) / 2,
3152 bm.bmWidth, bm.bmHeight,
3153 hdcSrc, 0, 0, SRCCOPY);
3156 offsety = rzone.bottom + 2;
3158 SetTextColor(hdc, clrOld);
3159 SetBkMode(hdc, oldBkMode);
3160 SelectObject(hdc, hOldFont);
3161 SelectObject(hdcSrc, hbmp);
3164 if ( ((psInfo->active_page == 0) || (psInfo->active_page == psInfo->nPages - 1)) &&
3165 (psInfo->ppshheader.dwFlags & (PSH_WIZARD97_OLD | PSH_WIZARD97_NEW)) &&
3166 (psInfo->ppshheader.dwFlags & PSH_WATERMARK) )
3168 HWND hwndLine = GetDlgItem(hwnd, IDC_SUNKEN_LINE);
3170 GetClientRect(hwndLine, &r);
3171 MapWindowPoints(hwndLine, hwnd, (LPPOINT) &r, 2);
3173 GetObjectA(psInfo->ppshheader.u4.hbmWatermark, sizeof(BITMAP), (LPVOID)&bm);
3174 hbmp = SelectObject(hdcSrc, psInfo->ppshheader.u4.hbmWatermark);
3176 BitBlt(hdc, 0, offsety, min(bm.bmWidth, r.right),
3177 min(bm.bmHeight, r.bottom), hdcSrc, 0, 0, SRCCOPY);
3179 /* If the bitmap is not big enough, fill the remaining area
3180 with the color of pixel (0,0) of bitmap - see MSDN */
3181 if (r.top > bm.bmHeight) {
3182 r.bottom = r.top - 1;
3183 r.top = bm.bmHeight;
3185 r.right = bm.bmWidth;
3186 hbr = CreateSolidBrush(GetPixel(hdcSrc, 0, 0));
3187 FillRect(hdc, &r, hbr);
3191 SelectObject(hdcSrc, hbmp);
3194 if (psInfo->ppshheader.dwFlags & PSH_USEHPLWATERMARK)
3195 SelectPalette(hdc, hOldPal, FALSE);
3199 EndPaint(hwnd, &ps);
3204 /******************************************************************************
3205 * PROPSHEET_DialogProc
3208 PROPSHEET_DialogProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
3210 TRACE("hwnd=%p msg=0x%04x wparam=%x lparam=%lx\n",
3211 hwnd, uMsg, wParam, lParam);
3217 PropSheetInfo* psInfo = (PropSheetInfo*) lParam;
3218 WCHAR* strCaption = (WCHAR*)Alloc(MAX_CAPTION_LENGTH*sizeof(WCHAR));
3219 HWND hwndTabCtrl = GetDlgItem(hwnd, IDC_TABCONTROL);
3220 LPCPROPSHEETPAGEW ppshpage;
3224 /* Using PropSheetInfoStr to store extra data doesn't match the native
3225 * common control: native uses TCM_[GS]ETITEM
3227 SetPropW(hwnd, PropSheetInfoStr, (HANDLE)psInfo);
3230 * psInfo->hwnd is not being used by WINE code - it exists
3231 * for compatibility with "real" Windoze. The same about
3232 * SetWindowLong - WINE is only using the PropSheetInfoStr
3235 psInfo->hwnd = hwnd;
3236 SetWindowLongW(hwnd,DWL_USER,(LONG)psInfo);
3238 /* set up the Next and Back buttons by default */
3239 PROPSHEET_SetWizButtons(hwnd, PSWIZB_BACK|PSWIZB_NEXT);
3242 SystemParametersInfoA (SPI_GETICONTITLELOGFONT, 0, &logFont, 0);
3243 psInfo->hFont = CreateFontIndirectA (&logFont);
3244 logFont.lfWeight = FW_BOLD;
3245 psInfo->hFontBold = CreateFontIndirectA (&logFont);
3248 * Small icon in the title bar.
3250 if ((psInfo->ppshheader.dwFlags & PSH_USEICONID) ||
3251 (psInfo->ppshheader.dwFlags & PSH_USEHICON))
3254 int icon_cx = GetSystemMetrics(SM_CXSMICON);
3255 int icon_cy = GetSystemMetrics(SM_CYSMICON);
3257 if (psInfo->ppshheader.dwFlags & PSH_USEICONID)
3258 hIcon = LoadImageW(psInfo->ppshheader.hInstance,
3259 psInfo->ppshheader.u.pszIcon,
3264 hIcon = psInfo->ppshheader.u.hIcon;
3266 SendMessageW(hwnd, WM_SETICON, 0, (LPARAM)hIcon);
3269 if (psInfo->ppshheader.dwFlags & PSH_USEHICON)
3270 SendMessageW(hwnd, WM_SETICON, 0, (LPARAM)psInfo->ppshheader.u.hIcon);
3272 psInfo->strPropertiesFor = strCaption;
3274 GetWindowTextW(hwnd, psInfo->strPropertiesFor, MAX_CAPTION_LENGTH);
3276 PROPSHEET_CreateTabControl(hwnd, psInfo);
3278 PROPSHEET_LoadWizardBitmaps(psInfo);
3280 if (psInfo->ppshheader.dwFlags & INTRNL_ANY_WIZARD)
3282 ShowWindow(hwndTabCtrl, SW_HIDE);
3283 if (PROPSHEET_IsTooSmallWizard(hwnd, psInfo))
3285 PROPSHEET_AdjustSizeWizard(hwnd, psInfo);
3286 PROPSHEET_AdjustButtonsWizard(hwnd, psInfo);
3291 if (PROPSHEET_SizeMismatch(hwnd, psInfo))
3293 PROPSHEET_AdjustSize(hwnd, psInfo);
3294 PROPSHEET_AdjustButtons(hwnd, psInfo);
3298 if (psInfo->useCallback)
3299 (*(psInfo->ppshheader.pfnCallback))(hwnd,
3300 PSCB_INITIALIZED, (LPARAM)0);
3302 idx = psInfo->active_page;
3303 ppshpage = (LPCPROPSHEETPAGEW)psInfo->proppage[idx].hpage;
3304 psInfo->active_page = -1;
3306 PROPSHEET_SetCurSel(hwnd, idx, 1, psInfo->proppage[idx].hpage);
3308 /* doing TCM_SETCURSEL seems to be needed even in case of PSH_WIZARD,
3309 * as some programs call TCM_GETCURSEL to get the current selection
3310 * from which to switch to the next page */
3311 SendMessageW(hwndTabCtrl, TCM_SETCURSEL, psInfo->active_page, 0);
3313 if (!HIWORD(psInfo->ppshheader.pszCaption) &&
3314 psInfo->ppshheader.hInstance)
3318 if (LoadStringW(psInfo->ppshheader.hInstance,
3319 (UINT)psInfo->ppshheader.pszCaption, szText, 255))
3320 PROPSHEET_SetTitleW(hwnd, psInfo->ppshheader.dwFlags, szText);
3324 PROPSHEET_SetTitleW(hwnd, psInfo->ppshheader.dwFlags,
3325 psInfo->ppshheader.pszCaption);
3332 PROPSHEET_Paint(hwnd);
3336 PROPSHEET_CleanUp(hwnd);
3340 PROPSHEET_Cancel(hwnd, 1);
3344 if (!PROPSHEET_DoCommand(hwnd, LOWORD(wParam)))
3346 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwnd, PropSheetInfoStr);
3348 /* No default handler, forward notification to active page */
3349 if (psInfo->activeValid && psInfo->active_page != -1)
3351 HWND hwndPage = psInfo->proppage[psInfo->active_page].hwndPage;
3352 SendMessageW(hwndPage, WM_COMMAND, wParam, lParam);
3359 NMHDR* pnmh = (LPNMHDR) lParam;
3361 if (pnmh->code == TCN_SELCHANGE)
3363 int index = SendMessageW(pnmh->hwndFrom, TCM_GETCURSEL, 0, 0);
3364 PROPSHEET_SetCurSel(hwnd, index, 1, 0);
3367 if(pnmh->code == TCN_SELCHANGING)
3369 BOOL bRet = PROPSHEET_CanSetCurSel(hwnd);
3370 SetWindowLongW(hwnd, DWL_MSGRESULT, !bRet);
3377 case PSM_GETCURRENTPAGEHWND:
3379 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwnd,
3383 if (psInfo->activeValid && psInfo->active_page != -1)
3384 hwndPage = psInfo->proppage[psInfo->active_page].hwndPage;
3386 SetWindowLongW(hwnd, DWL_MSGRESULT, (LONG)hwndPage);
3392 PROPSHEET_Changed(hwnd, (HWND)wParam);
3396 PROPSHEET_UnChanged(hwnd, (HWND)wParam);
3399 case PSM_GETTABCONTROL:
3401 HWND hwndTabCtrl = GetDlgItem(hwnd, IDC_TABCONTROL);
3403 SetWindowLongW(hwnd, DWL_MSGRESULT, (LONG)hwndTabCtrl);
3412 msgResult = PROPSHEET_CanSetCurSel(hwnd);
3413 if(msgResult != FALSE)
3415 msgResult = PROPSHEET_SetCurSel(hwnd,
3418 (HPROPSHEETPAGE)lParam);
3421 SetWindowLongW(hwnd, DWL_MSGRESULT, msgResult);
3426 case PSM_CANCELTOCLOSE:
3428 WCHAR buf[MAX_BUTTONTEXT_LENGTH];
3429 HWND hwndOK = GetDlgItem(hwnd, IDOK);
3430 HWND hwndCancel = GetDlgItem(hwnd, IDCANCEL);
3432 EnableWindow(hwndCancel, FALSE);
3433 if (LoadStringW(COMCTL32_hModule, IDS_CLOSE, buf, sizeof(buf)))
3434 SetWindowTextW(hwndOK, buf);
3439 case PSM_RESTARTWINDOWS:
3441 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwnd,
3444 psInfo->restartWindows = TRUE;
3448 case PSM_REBOOTSYSTEM:
3450 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwnd,
3453 psInfo->rebootSystem = TRUE;
3458 PROPSHEET_SetTitleA(hwnd, (DWORD) wParam, (LPCSTR) lParam);
3462 PROPSHEET_SetTitleW(hwnd, (DWORD) wParam, (LPCWSTR) lParam);
3467 BOOL msgResult = PROPSHEET_Apply(hwnd, 0);
3469 SetWindowLongW(hwnd, DWL_MSGRESULT, msgResult);
3474 case PSM_QUERYSIBLINGS:
3476 LRESULT msgResult = PROPSHEET_QuerySiblings(hwnd, wParam, lParam);
3478 SetWindowLongW(hwnd, DWL_MSGRESULT, msgResult);
3486 * Note: MSVC++ 6.0 documentation says that PSM_ADDPAGE does not have
3487 * a return value. This is not true. PSM_ADDPAGE returns TRUE
3488 * on success or FALSE otherwise, as specified on MSDN Online.
3489 * Also see the MFC code for
3490 * CPropertySheet::AddPage(CPropertyPage* pPage).
3493 BOOL msgResult = PROPSHEET_AddPage(hwnd, (HPROPSHEETPAGE)lParam);
3495 SetWindowLongW(hwnd, DWL_MSGRESULT, msgResult);
3500 case PSM_REMOVEPAGE:
3501 PROPSHEET_RemovePage(hwnd, (int)wParam, (HPROPSHEETPAGE)lParam);
3504 case PSM_ISDIALOGMESSAGE:
3506 BOOL msgResult = PROPSHEET_IsDialogMessage(hwnd, (LPMSG)lParam);
3507 SetWindowLongA(hwnd, DWL_MSGRESULT, msgResult);
3511 case PSM_PRESSBUTTON:
3512 PROPSHEET_PressButton(hwnd, (int)wParam);
3515 case PSM_SETFINISHTEXTA:
3516 PROPSHEET_SetFinishTextA(hwnd, (LPCSTR) lParam);
3519 case PSM_SETWIZBUTTONS:
3520 PROPSHEET_SetWizButtons(hwnd, (DWORD)lParam);
3523 case PSM_SETCURSELID:
3524 PROPSHEET_SetCurSelId(hwnd, (int)lParam);
3527 case PSM_SETFINISHTEXTW:
3528 PROPSHEET_SetFinishTextW(hwnd, (LPCWSTR) lParam);
3531 case PSM_INSERTPAGE:
3533 BOOL msgResult = PROPSHEET_InsertPage(hwnd, (HPROPSHEETPAGE)wParam, (HPROPSHEETPAGE)lParam);
3534 SetWindowLongW(hwnd, DWL_MSGRESULT, msgResult);
3538 case PSM_SETHEADERTITLEW:
3539 PROPSHEET_SetHeaderTitleW(hwnd, (int)wParam, (LPCWSTR)lParam);
3542 case PSM_SETHEADERTITLEA:
3543 PROPSHEET_SetHeaderTitleA(hwnd, (int)wParam, (LPCSTR)lParam);
3546 case PSM_SETHEADERSUBTITLEW:
3547 PROPSHEET_SetHeaderSubTitleW(hwnd, (int)wParam, (LPCWSTR)lParam);
3550 case PSM_SETHEADERSUBTITLEA:
3551 PROPSHEET_SetHeaderSubTitleA(hwnd, (int)wParam, (LPCSTR)lParam);
3554 case PSM_HWNDTOINDEX:
3556 LRESULT msgResult = PROPSHEET_HwndToIndex(hwnd, (HWND)wParam);
3557 SetWindowLongW(hwnd, DWL_MSGRESULT, msgResult);
3561 case PSM_INDEXTOHWND:
3563 LRESULT msgResult = PROPSHEET_IndexToHwnd(hwnd, (int)wParam);
3564 SetWindowLongW(hwnd, DWL_MSGRESULT, msgResult);
3568 case PSM_PAGETOINDEX:
3570 LRESULT msgResult = PROPSHEET_PageToIndex(hwnd, (HPROPSHEETPAGE)wParam);
3571 SetWindowLongW(hwnd, DWL_MSGRESULT, msgResult);
3575 case PSM_INDEXTOPAGE:
3577 LRESULT msgResult = PROPSHEET_IndexToPage(hwnd, (int)wParam);
3578 SetWindowLongW(hwnd, DWL_MSGRESULT, msgResult);
3584 LRESULT msgResult = PROPSHEET_IdToIndex(hwnd, (int)lParam);
3585 SetWindowLongW(hwnd, DWL_MSGRESULT, msgResult);
3591 LRESULT msgResult = PROPSHEET_IndexToId(hwnd, (int)wParam);
3592 SetWindowLongW(hwnd, DWL_MSGRESULT, msgResult);
3598 LRESULT msgResult = PROPSHEET_GetResult(hwnd);
3599 SetWindowLongW(hwnd, DWL_MSGRESULT, msgResult);
3603 case PSM_RECALCPAGESIZES:
3605 LRESULT msgResult = PROPSHEET_RecalcPageSizes(hwnd);
3606 SetWindowLongW(hwnd, DWL_MSGRESULT, msgResult);