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();
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 = strlen(lppsh->pszCaption);
312 psInfo->ppshheader.pszCaption = HeapAlloc( GetProcessHeap(), 0, (len+1)*sizeof (WCHAR) );
313 MultiByteToWideChar(CP_ACP, 0, lppsh->pszCaption, -1, (LPWSTR) psInfo->ppshheader.pszCaption, len+1);
314 /* strcpy( (char *)psInfo->ppshheader.pszCaption, lppsh->pszCaption ); */
317 psInfo->nPages = lppsh->nPages;
319 if (dwFlags & PSH_USEPSTARTPAGE)
321 TRACE("PSH_USEPSTARTPAGE is on\n");
322 psInfo->active_page = 0;
325 psInfo->active_page = lppsh->u2.nStartPage;
327 if (psInfo->active_page < 0 || psInfo->active_page >= psInfo->nPages)
328 psInfo->active_page = 0;
330 psInfo->restartWindows = FALSE;
331 psInfo->rebootSystem = FALSE;
332 psInfo->hImageList = 0;
333 psInfo->activeValid = FALSE;
338 /******************************************************************************
339 * PROPSHEET_CollectSheetInfoW
341 * Collect relevant data.
343 static BOOL PROPSHEET_CollectSheetInfoW(LPCPROPSHEETHEADERW lppsh,
344 PropSheetInfo * psInfo)
346 DWORD dwSize = min(lppsh->dwSize,sizeof(PROPSHEETHEADERW));
347 DWORD dwFlags = lppsh->dwFlags;
349 psInfo->hasHelp = dwFlags & PSH_HASHELP;
350 psInfo->hasApply = !(dwFlags & PSH_NOAPPLYNOW);
351 psInfo->useCallback = (dwFlags & PSH_USECALLBACK) && (lppsh->pfnCallback);
352 psInfo->isModeless = dwFlags & PSH_MODELESS;
354 memcpy(&psInfo->ppshheader,lppsh,dwSize);
355 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",
356 lppsh->dwSize, lppsh->dwFlags, lppsh->hwndParent, lppsh->hInstance, debugstr_w(lppsh->pszCaption), lppsh->nPages, lppsh->pfnCallback);
358 PROPSHEET_UnImplementedFlags(lppsh->dwFlags);
360 if (lppsh->dwFlags & INTRNL_ANY_WIZARD)
361 psInfo->ppshheader.pszCaption = NULL;
364 if (!(lppsh->dwFlags & INTRNL_ANY_WIZARD) && HIWORD(lppsh->pszCaption))
366 int len = strlenW(lppsh->pszCaption);
367 psInfo->ppshheader.pszCaption = HeapAlloc( GetProcessHeap(), 0, (len+1)*sizeof(WCHAR) );
368 strcpyW( (WCHAR *)psInfo->ppshheader.pszCaption, lppsh->pszCaption );
371 psInfo->nPages = lppsh->nPages;
373 if (dwFlags & PSH_USEPSTARTPAGE)
375 TRACE("PSH_USEPSTARTPAGE is on\n");
376 psInfo->active_page = 0;
379 psInfo->active_page = lppsh->u2.nStartPage;
381 if (psInfo->active_page < 0 || psInfo->active_page >= psInfo->nPages)
382 psInfo->active_page = 0;
384 psInfo->restartWindows = FALSE;
385 psInfo->rebootSystem = FALSE;
386 psInfo->hImageList = 0;
387 psInfo->activeValid = FALSE;
392 /******************************************************************************
393 * PROPSHEET_CollectPageInfo
395 * Collect property sheet data.
396 * With code taken from DIALOG_ParseTemplate32.
398 BOOL PROPSHEET_CollectPageInfo(LPCPROPSHEETPAGEW lppsp,
399 PropSheetInfo * psInfo,
402 DLGTEMPLATE* pTemplate;
408 psInfo->proppage[index].hpage = (HPROPSHEETPAGE)lppsp;
409 psInfo->proppage[index].hwndPage = 0;
410 psInfo->proppage[index].isDirty = FALSE;
413 * Process property page flags.
415 dwFlags = lppsp->dwFlags;
416 psInfo->proppage[index].useCallback = (dwFlags & PSP_USECALLBACK) && (lppsp->pfnCallback);
417 psInfo->proppage[index].hasHelp = dwFlags & PSP_HASHELP;
418 psInfo->proppage[index].hasIcon = dwFlags & (PSP_USEHICON | PSP_USEICONID);
420 /* as soon as we have a page with the help flag, set the sheet flag on */
421 if (psInfo->proppage[index].hasHelp)
422 psInfo->hasHelp = TRUE;
425 * Process page template.
427 if (dwFlags & PSP_DLGINDIRECT)
428 pTemplate = (DLGTEMPLATE*)lppsp->u.pResource;
429 else if(dwFlags & PSP_INTERNAL_UNICODE )
431 HRSRC hResource = FindResourceW(lppsp->hInstance,
432 lppsp->u.pszTemplate,
434 HGLOBAL hTemplate = LoadResource(lppsp->hInstance,
436 pTemplate = (LPDLGTEMPLATEW)LockResource(hTemplate);
440 HRSRC hResource = FindResourceA(lppsp->hInstance,
441 (LPSTR)lppsp->u.pszTemplate,
443 HGLOBAL hTemplate = LoadResource(lppsp->hInstance,
445 pTemplate = (LPDLGTEMPLATEA)LockResource(hTemplate);
449 * Extract the size of the page and the caption.
454 p = (const WORD *)pTemplate;
456 if (((MyDLGTEMPLATEEX*)pTemplate)->signature == 0xFFFF)
458 /* DLGTEMPLATEEX (not defined in any std. header file) */
462 p += 2; /* help ID */
463 p += 2; /* ext style */
471 p += 2; /* ext style */
477 width = (WORD)*p; p++;
478 height = (WORD)*p; p++;
480 /* remember the largest width and height */
481 if (width > psInfo->width)
482 psInfo->width = width;
484 if (height > psInfo->height)
485 psInfo->height = height;
497 p += lstrlenW( (LPCWSTR)p ) + 1;
511 p += lstrlenW( (LPCWSTR)p ) + 1;
515 /* Extract the caption */
516 psInfo->proppage[index].pszText = (LPCWSTR)p;
517 TRACE("Tab %d %s\n",index,debugstr_w((LPCWSTR)p));
518 p += lstrlenW((LPCWSTR)p) + 1;
520 if (dwFlags & PSP_USETITLE)
524 static const WCHAR pszNull[] = { '(','n','u','l','l',')',0 };
527 if ( !HIWORD( lppsp->pszTitle ) )
529 if (!LoadStringW( lppsp->hInstance, (UINT)lppsp->pszTitle,szTitle,sizeof(szTitle) ))
532 FIXME("Could not load resource #%04x?\n",LOWORD(lppsp->pszTitle));
538 pTitle = lppsp->pszTitle;
540 len = strlenW(pTitle);
541 psInfo->proppage[index].pszText = Alloc( (len+1)*sizeof (WCHAR) );
542 strcpyW( (LPWSTR)psInfo->proppage[index].pszText,pTitle);
546 * Build the image list for icons
548 if ((dwFlags & PSP_USEHICON) || (dwFlags & PSP_USEICONID))
551 int icon_cx = GetSystemMetrics(SM_CXSMICON);
552 int icon_cy = GetSystemMetrics(SM_CYSMICON);
554 if (dwFlags & PSP_USEICONID)
555 hIcon = LoadImageW(lppsp->hInstance, lppsp->u2.pszIcon, IMAGE_ICON,
556 icon_cx, icon_cy, LR_DEFAULTCOLOR);
558 hIcon = lppsp->u2.hIcon;
562 if (psInfo->hImageList == 0 )
563 psInfo->hImageList = ImageList_Create(icon_cx, icon_cy, ILC_COLOR, 1, 1);
565 ImageList_AddIcon(psInfo->hImageList, hIcon);
573 /******************************************************************************
574 * PROPSHEET_CreateDialog
576 * Creates the actual property sheet.
578 int PROPSHEET_CreateDialog(PropSheetInfo* psInfo)
585 WORD resID = IDD_PROPSHEET;
588 if (psInfo->ppshheader.dwFlags & INTRNL_ANY_WIZARD)
591 if( psInfo->unicode )
593 if(!(hRes = FindResourceW(COMCTL32_hModule,
594 MAKEINTRESOURCEW(resID),
600 if(!(hRes = FindResourceA(COMCTL32_hModule,
601 MAKEINTRESOURCEA(resID),
606 if(!(template = (LPVOID)LoadResource(COMCTL32_hModule, hRes)))
610 * Make a copy of the dialog template.
612 resSize = SizeofResource(COMCTL32_hModule, hRes);
614 temp = Alloc(resSize);
619 memcpy(temp, template, resSize);
621 if (psInfo->useCallback)
622 (*(psInfo->ppshheader.pfnCallback))(0, PSCB_PRECREATE, (LPARAM)temp);
624 if( psInfo->unicode )
626 if (!(psInfo->ppshheader.dwFlags & PSH_MODELESS))
627 ret = DialogBoxIndirectParamW(psInfo->ppshheader.hInstance,
628 (LPDLGTEMPLATEW) temp,
629 psInfo->ppshheader.hwndParent,
630 PROPSHEET_DialogProc,
634 ret = (int)CreateDialogIndirectParamW(psInfo->ppshheader.hInstance,
635 (LPDLGTEMPLATEW) temp,
636 psInfo->ppshheader.hwndParent,
637 PROPSHEET_DialogProc,
639 if ( !ret ) ret = -1;
644 if (!(psInfo->ppshheader.dwFlags & PSH_MODELESS))
645 ret = DialogBoxIndirectParamA(psInfo->ppshheader.hInstance,
646 (LPDLGTEMPLATEA) temp,
647 psInfo->ppshheader.hwndParent,
648 PROPSHEET_DialogProc,
652 ret = (int)CreateDialogIndirectParamA(psInfo->ppshheader.hInstance,
653 (LPDLGTEMPLATEA) temp,
654 psInfo->ppshheader.hwndParent,
655 PROPSHEET_DialogProc,
657 if ( !ret ) ret = -1;
666 /******************************************************************************
667 * PROPSHEET_SizeMismatch
669 * Verify that the tab control and the "largest" property sheet page dlg. template
672 static BOOL PROPSHEET_SizeMismatch(HWND hwndDlg, PropSheetInfo* psInfo)
674 HWND hwndTabCtrl = GetDlgItem(hwndDlg, IDC_TABCONTROL);
675 RECT rcOrigTab, rcPage;
680 GetClientRect(hwndTabCtrl, &rcOrigTab);
681 TRACE("orig tab %ld %ld %ld %ld\n", rcOrigTab.left, rcOrigTab.top,
682 rcOrigTab.right, rcOrigTab.bottom);
687 rcPage.left = psInfo->x;
688 rcPage.top = psInfo->y;
689 rcPage.right = psInfo->width;
690 rcPage.bottom = psInfo->height;
692 MapDialogRect(hwndDlg, &rcPage);
693 TRACE("biggest page %ld %ld %ld %ld\n", rcPage.left, rcPage.top,
694 rcPage.right, rcPage.bottom);
696 if ( (rcPage.right - rcPage.left) != (rcOrigTab.right - rcOrigTab.left) )
698 if ( (rcPage.bottom - rcPage.top) != (rcOrigTab.bottom - rcOrigTab.top) )
704 /******************************************************************************
705 * PROPSHEET_IsTooSmallWizard
707 * Verify that the default property sheet is big enough.
709 static BOOL PROPSHEET_IsTooSmallWizard(HWND hwndDlg, PropSheetInfo* psInfo)
711 RECT rcSheetRect, rcPage, rcLine, rcSheetClient;
712 HWND hwndLine = GetDlgItem(hwndDlg, IDC_SUNKEN_LINE);
713 PADDING_INFO padding = PROPSHEET_GetPaddingInfoWizard(hwndDlg, psInfo);
715 GetClientRect(hwndDlg, &rcSheetClient);
716 GetWindowRect(hwndDlg, &rcSheetRect);
717 GetWindowRect(hwndLine, &rcLine);
719 /* Remove the space below the sunken line */
720 rcSheetClient.bottom -= (rcSheetRect.bottom - rcLine.top);
722 /* Remove the buffer zone all around the edge */
723 rcSheetClient.bottom -= (padding.y * 2);
724 rcSheetClient.right -= (padding.x * 2);
729 rcPage.left = psInfo->x;
730 rcPage.top = psInfo->y;
731 rcPage.right = psInfo->width;
732 rcPage.bottom = psInfo->height;
734 MapDialogRect(hwndDlg, &rcPage);
735 TRACE("biggest page %ld %ld %ld %ld\n", rcPage.left, rcPage.top,
736 rcPage.right, rcPage.bottom);
738 if (rcPage.right > rcSheetClient.right)
741 if (rcPage.bottom > rcSheetClient.bottom)
747 /******************************************************************************
748 * PROPSHEET_AdjustSize
750 * Resizes the property sheet and the tab control to fit the largest page.
752 static BOOL PROPSHEET_AdjustSize(HWND hwndDlg, PropSheetInfo* psInfo)
754 HWND hwndTabCtrl = GetDlgItem(hwndDlg, IDC_TABCONTROL);
755 HWND hwndButton = GetDlgItem(hwndDlg, IDOK);
757 int tabOffsetX, tabOffsetY, buttonHeight;
758 PADDING_INFO padding = PROPSHEET_GetPaddingInfo(hwndDlg);
761 /* Get the height of buttons */
762 GetClientRect(hwndButton, &rc);
763 buttonHeight = rc.bottom;
770 rc.right = psInfo->width;
771 rc.bottom = psInfo->height;
773 MapDialogRect(hwndDlg, &rc);
775 /* retrieve the dialog units */
776 units.left = units.right = 4;
777 units.top = units.bottom = 8;
778 MapDialogRect(hwndDlg, &units);
781 * Resize the tab control.
783 GetClientRect(hwndTabCtrl,&tabRect);
785 SendMessageW(hwndTabCtrl, TCM_ADJUSTRECT, FALSE, (LPARAM)&tabRect);
787 if ((rc.bottom - rc.top) < (tabRect.bottom - tabRect.top))
789 rc.bottom = rc.top + tabRect.bottom - tabRect.top;
790 psInfo->height = MulDiv((rc.bottom - rc.top),8,units.top);
793 if ((rc.right - rc.left) < (tabRect.right - tabRect.left))
795 rc.right = rc.left + tabRect.right - tabRect.left;
796 psInfo->width = MulDiv((rc.right - rc.left),4,units.left);
799 SendMessageW(hwndTabCtrl, TCM_ADJUSTRECT, TRUE, (LPARAM)&rc);
801 tabOffsetX = -(rc.left);
802 tabOffsetY = -(rc.top);
806 TRACE("setting tab %08lx, rc (0,0)-(%ld,%ld)\n",
807 (DWORD)hwndTabCtrl, rc.right, rc.bottom);
808 SetWindowPos(hwndTabCtrl, 0, 0, 0, rc.right, rc.bottom,
809 SWP_NOMOVE | SWP_NOZORDER | SWP_NOACTIVATE);
811 GetClientRect(hwndTabCtrl, &rc);
813 TRACE("tab client rc %ld %ld %ld %ld\n",
814 rc.left, rc.top, rc.right, rc.bottom);
816 rc.right += ((padding.x * 2) + tabOffsetX);
817 rc.bottom += (buttonHeight + (3 * padding.y) + tabOffsetY);
820 * Resize the property sheet.
822 TRACE("setting dialog %08lx, rc (0,0)-(%ld,%ld)\n",
823 (DWORD)hwndDlg, rc.right, rc.bottom);
824 SetWindowPos(hwndDlg, 0, 0, 0, rc.right, rc.bottom,
825 SWP_NOMOVE | SWP_NOZORDER | SWP_NOACTIVATE);
829 /******************************************************************************
830 * PROPSHEET_AdjustSizeWizard
832 * Resizes the property sheet to fit the largest page.
834 static BOOL PROPSHEET_AdjustSizeWizard(HWND hwndDlg, PropSheetInfo* psInfo)
836 HWND hwndButton = GetDlgItem(hwndDlg, IDCANCEL);
837 HWND hwndLine = GetDlgItem(hwndDlg, IDC_SUNKEN_LINE);
838 HWND hwndTabCtrl = GetDlgItem(hwndDlg, IDC_TABCONTROL);
840 int buttonHeight, lineHeight;
841 PADDING_INFO padding = PROPSHEET_GetPaddingInfoWizard(hwndDlg, psInfo);
844 /* Get the height of buttons */
845 GetClientRect(hwndButton, &rc);
846 buttonHeight = rc.bottom;
848 GetClientRect(hwndLine, &rc);
849 lineHeight = rc.bottom;
851 /* retrieve the dialog units */
852 units.left = units.right = 4;
853 units.top = units.bottom = 8;
854 MapDialogRect(hwndDlg, &units);
861 rc.right = psInfo->width;
862 rc.bottom = psInfo->height;
864 MapDialogRect(hwndDlg, &rc);
866 GetClientRect(hwndTabCtrl,&tabRect);
868 if ((rc.bottom - rc.top) < (tabRect.bottom - tabRect.top))
870 rc.bottom = rc.top + tabRect.bottom - tabRect.top;
871 psInfo->height = MulDiv((rc.bottom - rc.top), 8, units.top);
874 if ((rc.right - rc.left) < (tabRect.right - tabRect.left))
876 rc.right = rc.left + tabRect.right - tabRect.left;
877 psInfo->width = MulDiv((rc.right - rc.left), 4, units.left);
880 TRACE("Biggest page %ld %ld %ld %ld\n", rc.left, rc.top, rc.right, rc.bottom);
881 TRACE(" constants padx=%d, pady=%d, butH=%d, lH=%d\n",
882 padding.x, padding.y, buttonHeight, lineHeight);
885 rc.right += (padding.x * 2);
886 rc.bottom += (buttonHeight + lineHeight);
887 if (psInfo->ppshheader.dwFlags & (PSH_WIZARD97_OLD | PSH_WIZARD97_NEW))
888 rc.bottom += (4 * padding.y);
890 rc.bottom += (5 * padding.y);
893 * Resize the property sheet.
895 TRACE("setting dialog %08lx, rc (0,0)-(%ld,%ld)\n",
896 (DWORD)hwndDlg, rc.right, rc.bottom);
897 SetWindowPos(hwndDlg, 0, 0, 0, rc.right, rc.bottom,
898 SWP_NOMOVE | SWP_NOZORDER | SWP_NOACTIVATE);
902 /******************************************************************************
903 * PROPSHEET_AdjustButtons
905 * Adjusts the buttons' positions.
907 static BOOL PROPSHEET_AdjustButtons(HWND hwndParent, PropSheetInfo* psInfo)
909 HWND hwndButton = GetDlgItem(hwndParent, IDOK);
913 int buttonWidth, buttonHeight;
914 PADDING_INFO padding = PROPSHEET_GetPaddingInfo(hwndParent);
916 if (psInfo->hasApply)
923 * Obtain the size of the buttons.
925 GetClientRect(hwndButton, &rcSheet);
926 buttonWidth = rcSheet.right;
927 buttonHeight = rcSheet.bottom;
930 * Get the size of the property sheet.
932 GetClientRect(hwndParent, &rcSheet);
935 * All buttons will be at this y coordinate.
937 y = rcSheet.bottom - (padding.y + buttonHeight);
940 * Position OK button.
942 hwndButton = GetDlgItem(hwndParent, IDOK);
944 x = rcSheet.right - ((padding.x + buttonWidth) * num_buttons);
946 SetWindowPos(hwndButton, 0, x, y, 0, 0,
947 SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
950 * Position Cancel button.
952 hwndButton = GetDlgItem(hwndParent, IDCANCEL);
954 x = rcSheet.right - ((padding.x + buttonWidth) * (num_buttons - 1));
956 SetWindowPos(hwndButton, 0, x, y, 0, 0,
957 SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
960 * Position Apply button.
962 hwndButton = GetDlgItem(hwndParent, IDC_APPLY_BUTTON);
964 if (psInfo->hasApply)
967 x = rcSheet.right - ((padding.x + buttonWidth) * 2);
969 x = rcSheet.right - (padding.x + buttonWidth);
971 SetWindowPos(hwndButton, 0, x, y, 0, 0,
972 SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
974 EnableWindow(hwndButton, FALSE);
977 ShowWindow(hwndButton, SW_HIDE);
980 * Position Help button.
982 hwndButton = GetDlgItem(hwndParent, IDHELP);
986 x = rcSheet.right - (padding.x + buttonWidth);
988 SetWindowPos(hwndButton, 0, x, y, 0, 0,
989 SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
992 ShowWindow(hwndButton, SW_HIDE);
997 /******************************************************************************
998 * PROPSHEET_AdjustButtonsWizard
1000 * Adjusts the buttons' positions.
1002 static BOOL PROPSHEET_AdjustButtonsWizard(HWND hwndParent,
1003 PropSheetInfo* psInfo)
1005 HWND hwndButton = GetDlgItem(hwndParent, IDCANCEL);
1006 HWND hwndLine = GetDlgItem(hwndParent, IDC_SUNKEN_LINE);
1007 HWND hwndLineHeader = GetDlgItem(hwndParent, IDC_SUNKEN_LINEHEADER);
1010 int num_buttons = 3;
1011 int buttonWidth, buttonHeight, lineHeight, lineWidth;
1012 PADDING_INFO padding = PROPSHEET_GetPaddingInfoWizard(hwndParent, psInfo);
1014 if (psInfo->hasHelp)
1018 * Obtain the size of the buttons.
1020 GetClientRect(hwndButton, &rcSheet);
1021 buttonWidth = rcSheet.right;
1022 buttonHeight = rcSheet.bottom;
1024 GetClientRect(hwndLine, &rcSheet);
1025 lineHeight = rcSheet.bottom;
1028 * Get the size of the property sheet.
1030 GetClientRect(hwndParent, &rcSheet);
1033 * All buttons will be at this y coordinate.
1035 y = rcSheet.bottom - (padding.y + buttonHeight);
1038 * Position the Next and the Finish buttons.
1040 hwndButton = GetDlgItem(hwndParent, IDC_NEXT_BUTTON);
1042 x = rcSheet.right - ((padding.x + buttonWidth) * (num_buttons - 1));
1044 SetWindowPos(hwndButton, 0, x, y, 0, 0,
1045 SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
1047 hwndButton = GetDlgItem(hwndParent, IDC_FINISH_BUTTON);
1049 SetWindowPos(hwndButton, 0, x, y, 0, 0,
1050 SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
1052 ShowWindow(hwndButton, SW_HIDE);
1055 * Position the Back button.
1057 hwndButton = GetDlgItem(hwndParent, IDC_BACK_BUTTON);
1061 SetWindowPos(hwndButton, 0, x, y, 0, 0,
1062 SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
1065 * Position the Cancel button.
1067 hwndButton = GetDlgItem(hwndParent, IDCANCEL);
1069 x = rcSheet.right - ((padding.x + buttonWidth) * (num_buttons - 2));
1071 SetWindowPos(hwndButton, 0, x, y, 0, 0,
1072 SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
1075 * Position Help button.
1077 hwndButton = GetDlgItem(hwndParent, IDHELP);
1079 if (psInfo->hasHelp)
1081 x = rcSheet.right - (padding.x + buttonWidth);
1083 SetWindowPos(hwndButton, 0, x, y, 0, 0,
1084 SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
1087 ShowWindow(hwndButton, SW_HIDE);
1089 if (psInfo->ppshheader.dwFlags & (PSH_WIZARD97_OLD | PSH_WIZARD97_NEW))
1093 * Position and resize the sunken line.
1096 y = rcSheet.bottom - ((padding.y * 2) + buttonHeight + lineHeight);
1098 lineWidth = rcSheet.right - (padding.x * 2);
1100 SetWindowPos(hwndLine, 0, x, y, lineWidth, 2,
1101 SWP_NOZORDER | SWP_NOACTIVATE);
1104 * Position and resize the header sunken line.
1107 SetWindowPos(hwndLineHeader, 0, 0, 0, rcSheet.right, 2,
1108 SWP_NOZORDER | SWP_NOMOVE | SWP_NOACTIVATE);
1109 if (!(psInfo->ppshheader.dwFlags & (PSH_WIZARD97_OLD | PSH_WIZARD97_NEW)))
1110 ShowWindow(hwndLineHeader, SW_HIDE);
1115 /******************************************************************************
1116 * PROPSHEET_GetPaddingInfo
1118 * Returns the layout information.
1120 static PADDING_INFO PROPSHEET_GetPaddingInfo(HWND hwndDlg)
1122 HWND hwndTab = GetDlgItem(hwndDlg, IDC_TABCONTROL);
1125 PADDING_INFO padding;
1127 GetWindowRect(hwndTab, &rcTab);
1132 ScreenToClient(hwndDlg, &tl);
1140 /******************************************************************************
1141 * PROPSHEET_GetPaddingInfoWizard
1143 * Returns the layout information.
1144 * Vertical spacing is the distance between the line and the buttons.
1145 * Do NOT use the Help button to gather padding information when it isn't mapped
1146 * (PSH_HASHELP), as app writers aren't forced to supply correct coordinates
1147 * for it in this case !
1148 * FIXME: I'm not sure about any other coordinate problems with these evil
1149 * buttons. Fix it in case additional problems appear or maybe calculate
1150 * a padding in a completely different way, as this is somewhat messy.
1152 static PADDING_INFO PROPSHEET_GetPaddingInfoWizard(HWND hwndDlg, const PropSheetInfo*
1155 PADDING_INFO padding;
1159 POINT ptButton, ptLine;
1162 if (psInfo->hasHelp)
1168 if (psInfo->ppshheader.dwFlags & INTRNL_ANY_WIZARD)
1170 idButton = IDC_NEXT_BUTTON;
1174 /* hopefully this is ok */
1175 idButton = IDCANCEL;
1179 hwndControl = GetDlgItem(hwndDlg, idButton);
1180 GetWindowRect(hwndControl, &rc);
1182 ptButton.x = rc.left;
1183 ptButton.y = rc.top;
1185 ScreenToClient(hwndDlg, &ptButton);
1188 hwndControl = GetDlgItem(hwndDlg, IDC_SUNKEN_LINE);
1189 GetWindowRect(hwndControl, &rc);
1192 ptLine.y = rc.bottom;
1194 ScreenToClient(hwndDlg, &ptLine);
1196 padding.y = ptButton.y - ptLine.y;
1199 ERR("padding negative ! Please report this !\n");
1201 /* this is most probably not correct, but the best we have now */
1202 padding.x = padding.y;
1206 /******************************************************************************
1207 * PROPSHEET_CreateTabControl
1209 * Insert the tabs in the tab control.
1211 static BOOL PROPSHEET_CreateTabControl(HWND hwndParent,
1212 PropSheetInfo * psInfo)
1214 HWND hwndTabCtrl = GetDlgItem(hwndParent, IDC_TABCONTROL);
1220 item.mask = TCIF_TEXT;
1221 item.cchTextMax = MAX_TABTEXT_LENGTH;
1223 nTabs = psInfo->nPages;
1226 * Set the image list for icons.
1228 if (psInfo->hImageList)
1230 SendMessageW(hwndTabCtrl, TCM_SETIMAGELIST, 0, (LPARAM)psInfo->hImageList);
1233 SendMessageW(GetDlgItem(hwndTabCtrl, IDC_TABCONTROL), WM_SETREDRAW, 0, 0);
1234 for (i = 0; i < nTabs; i++)
1236 if ( psInfo->proppage[i].hasIcon )
1238 item.mask |= TCIF_IMAGE;
1239 item.iImage = iImage++;
1243 item.mask &= ~TCIF_IMAGE;
1246 item.pszText = (LPWSTR) psInfo->proppage[i].pszText;
1247 SendMessageW(hwndTabCtrl, TCM_INSERTITEMW, (WPARAM)i, (LPARAM)&item);
1249 SendMessageW(GetDlgItem(hwndTabCtrl, IDC_TABCONTROL), WM_SETREDRAW, 1, 0);
1254 * Get the size of an in-memory Template
1256 *( Based on the code of PROPSHEET_CollectPageInfo)
1257 * See also dialog.c/DIALOG_ParseTemplate32().
1260 static UINT GetTemplateSize(DLGTEMPLATE* pTemplate)
1263 const WORD* p = (const WORD *)pTemplate;
1264 BOOL istemplateex = (((MyDLGTEMPLATEEX*)pTemplate)->signature == 0xFFFF);
1269 /* DLGTEMPLATEEX (not defined in any std. header file) */
1271 TRACE("is DLGTEMPLATEEX\n");
1273 p++; /* signature */
1274 p += 2; /* help ID */
1275 p += 2; /* ext style */
1282 TRACE("is DLGTEMPLATE\n");
1284 p += 2; /* ext style */
1287 nrofitems = (WORD)*p; p++; /* nb items */
1303 TRACE("menu %s\n",debugstr_w((LPCWSTR)p));
1304 p += lstrlenW( (LPCWSTR)p ) + 1;
1315 p += 2; /* 0xffff plus predefined window class ordinal value */
1318 TRACE("class %s\n",debugstr_w((LPCWSTR)p));
1319 p += lstrlenW( (LPCWSTR)p ) + 1;
1324 TRACE("title %s\n",debugstr_w((LPCWSTR)p));
1325 p += lstrlenW((LPCWSTR)p) + 1;
1327 /* font, if DS_SETFONT set */
1328 if ((DS_SETFONT & ((istemplateex)? ((MyDLGTEMPLATEEX*)pTemplate)->style :
1331 p+=(istemplateex)?3:1;
1332 TRACE("font %s\n",debugstr_w((LPCWSTR)p));
1333 p += lstrlenW( (LPCWSTR)p ) + 1; /* the font name */
1336 /* now process the DLGITEMTEMPLATE(EX) structs (plus custom data)
1337 * that are following the DLGTEMPLATE(EX) data */
1338 TRACE("%d items\n",nrofitems);
1339 while (nrofitems > 0)
1341 p = (WORD*)(((DWORD)p + 3) & ~3); /* DWORD align */
1344 p += (istemplateex ? sizeof(MyDLGITEMTEMPLATEEX) : sizeof(DLGITEMTEMPLATE))/sizeof(WORD);
1353 TRACE("class ordinal 0x%08lx\n",*(DWORD*)p);
1357 TRACE("class %s\n",debugstr_w((LPCWSTR)p));
1358 p += lstrlenW( (LPCWSTR)p ) + 1;
1362 /* check title text */
1369 TRACE("text ordinal 0x%08lx\n",*(DWORD*)p);
1373 TRACE("text %s\n",debugstr_w((LPCWSTR)p));
1374 p += lstrlenW( (LPCWSTR)p ) + 1;
1377 p += *p + 1; /* Skip extra data */
1381 TRACE("%p %p size 0x%08x\n",p, (WORD*)pTemplate,sizeof(WORD)*(p - (WORD*)pTemplate));
1382 return (p - (WORD*)pTemplate)*sizeof(WORD);
1386 /******************************************************************************
1387 * PROPSHEET_CreatePage
1391 static BOOL PROPSHEET_CreatePage(HWND hwndParent,
1393 const PropSheetInfo * psInfo,
1394 LPCPROPSHEETPAGEW ppshpage)
1396 DLGTEMPLATE* pTemplate;
1399 PADDING_INFO padding;
1400 UINT pageWidth,pageHeight;
1404 TRACE("index %d\n", index);
1406 if (ppshpage == NULL)
1411 if (ppshpage->dwFlags & PSP_DLGINDIRECT)
1413 pTemplate = (DLGTEMPLATE*)ppshpage->u.pResource;
1414 resSize = GetTemplateSize(pTemplate);
1416 else if(ppshpage->dwFlags & PSP_INTERNAL_UNICODE)
1421 hResource = FindResourceW(ppshpage->hInstance,
1422 ppshpage->u.pszTemplate,
1427 resSize = SizeofResource(ppshpage->hInstance, hResource);
1429 hTemplate = LoadResource(ppshpage->hInstance, hResource);
1433 pTemplate = (LPDLGTEMPLATEW)LockResource(hTemplate);
1435 * Make a copy of the dialog template to make it writable
1443 hResource = FindResourceA(ppshpage->hInstance,
1444 (LPSTR)ppshpage->u.pszTemplate,
1449 resSize = SizeofResource(ppshpage->hInstance, hResource);
1451 hTemplate = LoadResource(ppshpage->hInstance, hResource);
1455 pTemplate = (LPDLGTEMPLATEA)LockResource(hTemplate);
1457 * Make a copy of the dialog template to make it writable
1460 temp = Alloc(resSize);
1464 TRACE("copying pTemplate %p into temp %p (%ld)\n", pTemplate, temp, resSize);
1465 memcpy(temp, pTemplate, resSize);
1468 if (((MyDLGTEMPLATEEX*)pTemplate)->signature == 0xFFFF)
1470 ((MyDLGTEMPLATEEX*)pTemplate)->style |= WS_CHILD | DS_CONTROL;
1471 ((MyDLGTEMPLATEEX*)pTemplate)->style &= ~DS_MODALFRAME;
1472 ((MyDLGTEMPLATEEX*)pTemplate)->style &= ~WS_CAPTION;
1473 ((MyDLGTEMPLATEEX*)pTemplate)->style &= ~WS_SYSMENU;
1474 ((MyDLGTEMPLATEEX*)pTemplate)->style &= ~WS_POPUP;
1475 ((MyDLGTEMPLATEEX*)pTemplate)->style &= ~WS_DISABLED;
1476 ((MyDLGTEMPLATEEX*)pTemplate)->style &= ~WS_VISIBLE;
1477 ((MyDLGTEMPLATEEX*)pTemplate)->style &= ~WS_THICKFRAME;
1481 pTemplate->style |= WS_CHILD | DS_CONTROL;
1482 pTemplate->style &= ~DS_MODALFRAME;
1483 pTemplate->style &= ~WS_CAPTION;
1484 pTemplate->style &= ~WS_SYSMENU;
1485 pTemplate->style &= ~WS_POPUP;
1486 pTemplate->style &= ~WS_DISABLED;
1487 pTemplate->style &= ~WS_VISIBLE;
1488 pTemplate->style &= ~WS_THICKFRAME;
1491 if (psInfo->proppage[index].useCallback)
1492 (*(ppshpage->pfnCallback))(0, PSPCB_CREATE,
1493 (LPPROPSHEETPAGEW)ppshpage);
1495 if(ppshpage->dwFlags & PSP_INTERNAL_UNICODE)
1496 hwndPage = CreateDialogIndirectParamW(ppshpage->hInstance,
1499 ppshpage->pfnDlgProc,
1502 hwndPage = CreateDialogIndirectParamA(ppshpage->hInstance,
1505 ppshpage->pfnDlgProc,
1507 /* Free a no more needed copy */
1511 psInfo->proppage[index].hwndPage = hwndPage;
1513 if (psInfo->ppshheader.dwFlags & INTRNL_ANY_WIZARD) {
1519 rc.left = psInfo->x;
1521 rc.right = psInfo->width;
1522 rc.bottom = psInfo->height;
1524 MapDialogRect(hwndParent, &rc);
1526 pageWidth = rc.right - rc.left;
1527 pageHeight = rc.bottom - rc.top;
1529 padding = PROPSHEET_GetPaddingInfoWizard(hwndParent, psInfo);
1530 TRACE("setting page %08lx, rc (%ld,%ld)-(%ld,%ld) w=%d, h=%d, padx=%d, pady=%d\n",
1531 (DWORD)hwndPage, rc.left, rc.top, rc.right, rc.bottom,
1532 pageWidth, pageHeight, padding.x, padding.y);
1534 /* If there is a watermark, offset the dialog items */
1535 if ( (psInfo->ppshheader.dwFlags & (PSH_WATERMARK | PSH_WIZARD97_NEW | PSH_WIZARD97_OLD)) &&
1536 ((index == 0) || (index == psInfo->nPages - 1)) )
1540 /* if PSH_USEHBMWATERMARK is not set, load the resource from pszbmWatermark
1541 and put the HBITMAP in hbmWatermark. Thus all the rest of the code always
1542 considers hbmWatermark as valid. */
1543 if (!(psInfo->ppshheader.dwFlags & PSH_USEHBMWATERMARK))
1545 ((PropSheetInfo *)psInfo)->ppshheader.u4.hbmWatermark =
1546 CreateMappedBitmap(ppshpage->hInstance, (INT)psInfo->ppshheader.u4.pszbmWatermark, 0, NULL, 0);
1549 /* Compute the offset x */
1550 GetObjectA(psInfo->ppshheader.u4.hbmWatermark, sizeof(BITMAP), (LPVOID)&bm);
1551 offsetx = bm.bmWidth;
1554 if (psInfo->ppshheader.dwFlags & (PSH_HEADER | PSH_WIZARD97_NEW | PSH_WIZARD97_OLD))
1556 /* Same behavior as for watermarks */
1557 if (!(psInfo->ppshheader.dwFlags & PSH_USEHBMHEADER))
1559 ((PropSheetInfo *)psInfo)->ppshheader.u5.hbmHeader =
1560 CreateMappedBitmap(ppshpage->hInstance, (INT)psInfo->ppshheader.u5.pszbmHeader, 0, NULL, 0);
1563 hwndChild = GetDlgItem(hwndParent, IDC_SUNKEN_LINEHEADER);
1565 GetClientRect(hwndChild, &r);
1566 MapWindowPoints(hwndChild, hwndParent, (LPPOINT) &r, 2);
1567 offsety = (ppshpage->dwFlags & PSP_HIDEHEADER)?0:r.bottom + 1;
1570 hwndChild = GetWindow(hwndPage, GW_CHILD);
1571 while((offsetx!=0) && (hwndChild)) {
1572 GetWindowRect(hwndChild, &r);
1573 MapWindowPoints(0, hwndPage, (LPPOINT)&r, 2);
1574 OffsetRect(&r, -offsetx, 0);
1575 SetWindowPos(hwndChild, 0, r.left, r.top,
1576 0, 0, SWP_NOSIZE | SWP_NOZORDER);
1578 hwndChild = GetWindow(hwndChild, GW_HWNDNEXT);
1581 SetWindowPos(hwndPage, HWND_TOP,
1582 rc.left + padding.x/2 + offsetx,
1583 rc.top + padding.y/2 + offsety,
1584 pageWidth - offsetx, pageHeight - offsety, 0);
1588 * Ask the Tab control to reduce the client rectangle to that
1591 PROPSHEET_GetPageRect(psInfo, hwndParent, &rc);
1592 pageWidth = rc.right - rc.left;
1593 pageHeight = rc.bottom - rc.top;
1594 TRACE("setting page %08lx, rc (%ld,%ld)-(%ld,%ld) w=%d, h=%d\n",
1595 (DWORD)hwndPage, rc.left, rc.top, rc.right, rc.bottom,
1596 pageWidth, pageHeight);
1597 SetWindowPos(hwndPage, HWND_TOP,
1599 pageWidth, pageHeight, 0);
1605 /******************************************************************************
1606 * PROPSHEET_ShowPage
1608 * Displays or creates the specified page.
1610 static BOOL PROPSHEET_ShowPage(HWND hwndDlg, int index, PropSheetInfo * psInfo)
1613 HWND hwndLineHeader;
1614 LPCPROPSHEETPAGEW ppshpage;
1616 TRACE("active_page %d, index %d\n", psInfo->active_page, index);
1617 if (index == psInfo->active_page)
1619 if (GetTopWindow(hwndDlg) != psInfo->proppage[index].hwndPage)
1620 SetWindowPos(psInfo->proppage[index].hwndPage, HWND_TOP, 0, 0, 0, 0, SWP_NOSIZE | SWP_NOMOVE);
1624 if (psInfo->proppage[index].hwndPage == 0)
1626 ppshpage = (LPCPROPSHEETPAGEW)psInfo->proppage[index].hpage;
1627 PROPSHEET_CreatePage(hwndDlg, index, psInfo, ppshpage);
1630 PROPSHEET_SetTitleW(hwndDlg, psInfo->ppshheader.dwFlags,
1631 psInfo->proppage[index].pszText);
1633 if (psInfo->active_page != -1)
1634 ShowWindow(psInfo->proppage[psInfo->active_page].hwndPage, SW_HIDE);
1636 ShowWindow(psInfo->proppage[index].hwndPage, SW_SHOW);
1638 /* Synchronize current selection with tab control
1639 * It seems to be needed even in case of PSH_WIZARD (no tab controls there) */
1640 hwndTabCtrl = GetDlgItem(hwndDlg, IDC_TABCONTROL);
1641 SendMessageW(hwndTabCtrl, TCM_SETCURSEL, index, 0);
1643 psInfo->active_page = index;
1644 psInfo->activeValid = TRUE;
1646 if (psInfo->ppshheader.dwFlags & (PSH_WIZARD97_OLD | PSH_WIZARD97_NEW) )
1648 hwndLineHeader = GetDlgItem(hwndDlg, IDC_SUNKEN_LINEHEADER);
1649 ppshpage = (LPCPROPSHEETPAGEW)psInfo->proppage[index].hpage;
1651 if ((ppshpage->dwFlags & PSP_HIDEHEADER) || (!(psInfo->ppshheader.dwFlags & PSH_HEADER)) )
1652 ShowWindow(hwndLineHeader, SW_HIDE);
1654 ShowWindow(hwndLineHeader, SW_SHOW);
1656 InvalidateRgn(hwndDlg, NULL, TRUE);
1657 UpdateWindow(hwndDlg);
1663 /******************************************************************************
1666 static BOOL PROPSHEET_Back(HWND hwndDlg)
1670 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
1675 TRACE("active_page %d\n", psInfo->active_page);
1676 if (psInfo->active_page < 0)
1679 psn.hdr.code = PSN_WIZBACK;
1680 psn.hdr.hwndFrom = hwndDlg;
1684 hwndPage = psInfo->proppage[psInfo->active_page].hwndPage;
1686 result = SendMessageW(hwndPage, WM_NOTIFY, 0, (LPARAM) &psn);
1689 else if (result == 0)
1690 idx = psInfo->active_page - 1;
1692 idx = PROPSHEET_FindPageByResId(psInfo, result);
1694 if (idx >= 0 && idx < psInfo->nPages)
1696 if (PROPSHEET_CanSetCurSel(hwndDlg))
1697 PROPSHEET_SetCurSel(hwndDlg, idx, -1, 0);
1702 /******************************************************************************
1705 static BOOL PROPSHEET_Next(HWND hwndDlg)
1709 LRESULT msgResult = 0;
1710 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
1714 TRACE("active_page %d\n", psInfo->active_page);
1715 if (psInfo->active_page < 0)
1718 psn.hdr.code = PSN_WIZNEXT;
1719 psn.hdr.hwndFrom = hwndDlg;
1723 hwndPage = psInfo->proppage[psInfo->active_page].hwndPage;
1725 msgResult = SendMessageA(hwndPage, WM_NOTIFY, 0, (LPARAM) &psn);
1726 if (msgResult == -1)
1728 else if (msgResult == 0)
1729 idx = psInfo->active_page + 1;
1731 idx = PROPSHEET_FindPageByResId(psInfo, msgResult);
1733 if (idx < psInfo->nPages )
1735 if (PROPSHEET_CanSetCurSel(hwndDlg) != FALSE)
1736 PROPSHEET_SetCurSel(hwndDlg, idx, 1, 0);
1742 /******************************************************************************
1745 static BOOL PROPSHEET_Finish(HWND hwndDlg)
1749 LRESULT msgResult = 0;
1750 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
1753 TRACE("active_page %d\n", psInfo->active_page);
1754 if (psInfo->active_page < 0)
1757 psn.hdr.code = PSN_WIZFINISH;
1758 psn.hdr.hwndFrom = hwndDlg;
1762 hwndPage = psInfo->proppage[psInfo->active_page].hwndPage;
1764 msgResult = SendMessageW(hwndPage, WM_NOTIFY, 0, (LPARAM) &psn);
1766 TRACE("msg result %ld\n", msgResult);
1771 if (psInfo->isModeless)
1772 psInfo->activeValid = FALSE;
1774 EndDialog(hwndDlg, TRUE);
1779 /******************************************************************************
1782 static BOOL PROPSHEET_Apply(HWND hwndDlg, LPARAM lParam)
1787 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
1790 TRACE("active_page %d\n", psInfo->active_page);
1791 if (psInfo->active_page < 0)
1794 psn.hdr.hwndFrom = hwndDlg;
1800 * Send PSN_KILLACTIVE to the current page.
1802 psn.hdr.code = PSN_KILLACTIVE;
1804 hwndPage = psInfo->proppage[psInfo->active_page].hwndPage;
1806 if (SendMessageA(hwndPage, WM_NOTIFY, 0, (LPARAM) &psn) != FALSE)
1810 * Send PSN_APPLY to all pages.
1812 psn.hdr.code = PSN_APPLY;
1813 psn.lParam = lParam;
1815 for (i = 0; i < psInfo->nPages; i++)
1817 hwndPage = psInfo->proppage[i].hwndPage;
1820 switch (SendMessageA(hwndPage, WM_NOTIFY, 0, (LPARAM) &psn))
1822 case PSNRET_INVALID:
1823 PROPSHEET_ShowPage(hwndDlg, i, psInfo);
1825 case PSNRET_INVALID_NOCHANGEPAGE:
1833 psInfo->activeValid = FALSE;
1835 else if(psInfo->active_page >= 0)
1837 psn.hdr.code = PSN_SETACTIVE;
1839 hwndPage = psInfo->proppage[psInfo->active_page].hwndPage;
1840 SendMessageA(hwndPage, WM_NOTIFY, 0, (LPARAM) &psn);
1846 /******************************************************************************
1849 static void PROPSHEET_Cancel(HWND hwndDlg, LPARAM lParam)
1851 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
1857 TRACE("active_page %d\n", psInfo->active_page);
1858 if (psInfo->active_page < 0)
1861 hwndPage = psInfo->proppage[psInfo->active_page].hwndPage;
1862 psn.hdr.code = PSN_QUERYCANCEL;
1863 psn.hdr.hwndFrom = hwndDlg;
1867 if (SendMessageA(hwndPage, WM_NOTIFY, 0, (LPARAM) &psn))
1870 psn.hdr.code = PSN_RESET;
1871 psn.lParam = lParam;
1873 for (i = 0; i < psInfo->nPages; i++)
1875 hwndPage = psInfo->proppage[i].hwndPage;
1878 SendMessageA(hwndPage, WM_NOTIFY, 0, (LPARAM) &psn);
1881 if (psInfo->isModeless)
1883 /* makes PSM_GETCURRENTPAGEHWND return NULL */
1884 psInfo->activeValid = FALSE;
1887 EndDialog(hwndDlg, FALSE);
1890 /******************************************************************************
1893 static void PROPSHEET_Help(HWND hwndDlg)
1895 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
1900 TRACE("active_page %d\n", psInfo->active_page);
1901 if (psInfo->active_page < 0)
1904 hwndPage = psInfo->proppage[psInfo->active_page].hwndPage;
1905 psn.hdr.code = PSN_HELP;
1906 psn.hdr.hwndFrom = hwndDlg;
1910 SendMessageA(hwndPage, WM_NOTIFY, 0, (LPARAM) &psn);
1913 /******************************************************************************
1916 static void PROPSHEET_Changed(HWND hwndDlg, HWND hwndDirtyPage)
1919 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
1923 if (!psInfo) return;
1925 * Set the dirty flag of this page.
1927 for (i = 0; i < psInfo->nPages; i++)
1929 if (psInfo->proppage[i].hwndPage == hwndDirtyPage)
1930 psInfo->proppage[i].isDirty = TRUE;
1934 * Enable the Apply button.
1936 if (psInfo->hasApply)
1938 HWND hwndApplyBtn = GetDlgItem(hwndDlg, IDC_APPLY_BUTTON);
1940 EnableWindow(hwndApplyBtn, TRUE);
1944 /******************************************************************************
1945 * PROPSHEET_UnChanged
1947 static void PROPSHEET_UnChanged(HWND hwndDlg, HWND hwndCleanPage)
1950 BOOL noPageDirty = TRUE;
1951 HWND hwndApplyBtn = GetDlgItem(hwndDlg, IDC_APPLY_BUTTON);
1952 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
1956 if ( !psInfo ) return;
1957 for (i = 0; i < psInfo->nPages; i++)
1959 /* set the specified page as clean */
1960 if (psInfo->proppage[i].hwndPage == hwndCleanPage)
1961 psInfo->proppage[i].isDirty = FALSE;
1963 /* look to see if there's any dirty pages */
1964 if (psInfo->proppage[i].isDirty)
1965 noPageDirty = FALSE;
1969 * Disable Apply button.
1972 EnableWindow(hwndApplyBtn, FALSE);
1975 /******************************************************************************
1976 * PROPSHEET_PressButton
1978 static void PROPSHEET_PressButton(HWND hwndDlg, int buttonID)
1980 TRACE("buttonID %d\n", buttonID);
1983 case PSBTN_APPLYNOW:
1984 PROPSHEET_DoCommand(hwndDlg, IDC_APPLY_BUTTON);
1987 PROPSHEET_Back(hwndDlg);
1990 PROPSHEET_DoCommand(hwndDlg, IDCANCEL);
1993 PROPSHEET_Finish(hwndDlg);
1996 PROPSHEET_DoCommand(hwndDlg, IDHELP);
1999 PROPSHEET_Next(hwndDlg);
2002 PROPSHEET_DoCommand(hwndDlg, IDOK);
2005 FIXME("Invalid button index %d\n", buttonID);
2010 /*************************************************************************
2011 * BOOL PROPSHEET_CanSetCurSel [Internal]
2013 * Test whether the current page can be changed by sending a PSN_KILLACTIVE
2016 * hwndDlg [I] handle to a Dialog hWnd
2019 * TRUE if Current Selection can change
2023 static BOOL PROPSHEET_CanSetCurSel(HWND hwndDlg)
2025 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
2031 TRACE("active_page %d\n", psInfo->active_page);
2038 if (psInfo->active_page < 0)
2045 * Notify the current page.
2047 hwndPage = psInfo->proppage[psInfo->active_page].hwndPage;
2048 psn.hdr.code = PSN_KILLACTIVE;
2049 psn.hdr.hwndFrom = hwndDlg;
2053 res = !SendMessageA(hwndPage, WM_NOTIFY, 0, (LPARAM) &psn);
2056 TRACE("<-- %d\n", res);
2060 /******************************************************************************
2061 * PROPSHEET_SetCurSel
2063 static BOOL PROPSHEET_SetCurSel(HWND hwndDlg,
2066 HPROPSHEETPAGE hpage
2069 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwndDlg, PropSheetInfoStr);
2070 HWND hwndHelp = GetDlgItem(hwndDlg, IDHELP);
2071 HWND hwndTabControl = GetDlgItem(hwndDlg, IDC_TABCONTROL);
2073 TRACE("index %d, skipdir %d, hpage %p\n", index, skipdir, hpage);
2074 /* hpage takes precedence over index */
2076 index = PROPSHEET_GetPageIndex(hpage, psInfo);
2078 if (index < 0 || index >= psInfo->nPages)
2080 TRACE("Could not find page to select!\n");
2089 SendMessageW(hwndTabControl, TCM_SETCURSEL, index, 0);
2091 psn.hdr.code = PSN_SETACTIVE;
2092 psn.hdr.hwndFrom = hwndDlg;
2096 if (!psInfo->proppage[index].hwndPage) {
2097 LPCPROPSHEETPAGEW ppshpage = (LPCPROPSHEETPAGEW)psInfo->proppage[index].hpage;
2098 PROPSHEET_CreatePage(hwndDlg, index, psInfo, ppshpage);
2101 result = SendMessageW(psInfo->proppage[index].hwndPage, WM_NOTIFY, 0, (LPARAM) &psn);
2108 WARN("Tried to skip before first property sheet page!\n");
2111 if (index >= psInfo->nPages) {
2112 WARN("Tried to skip after last property sheet page!\n");
2113 index = psInfo->nPages-1;
2117 else if (result != 0)
2119 int old_index = index;
2120 index = PROPSHEET_FindPageByResId(psInfo, result);
2121 if(index >= psInfo->nPages) {
2123 WARN("Tried to skip to nonexistant page by res id\n");
2130 * Display the new page.
2132 PROPSHEET_ShowPage(hwndDlg, index, psInfo);
2134 if (psInfo->proppage[index].hasHelp)
2135 EnableWindow(hwndHelp, TRUE);
2137 EnableWindow(hwndHelp, FALSE);
2142 /******************************************************************************
2143 * PROPSHEET_SetCurSelId
2145 * Selects the page, specified by resource id.
2147 static void PROPSHEET_SetCurSelId(HWND hwndDlg, int id)
2150 PropSheetInfo* psInfo =
2151 (PropSheetInfo*) GetPropW(hwndDlg, PropSheetInfoStr);
2153 idx = PROPSHEET_FindPageByResId(psInfo, id);
2154 if (idx < psInfo->nPages )
2156 if (PROPSHEET_CanSetCurSel(hwndDlg) != FALSE)
2157 PROPSHEET_SetCurSel(hwndDlg, idx, 1, 0);
2161 /******************************************************************************
2162 * PROPSHEET_SetTitleA
2164 static void PROPSHEET_SetTitleA(HWND hwndDlg, DWORD dwStyle, LPCSTR lpszText)
2166 if(HIWORD(lpszText))
2169 MultiByteToWideChar(CP_ACP, 0, lpszText, -1,
2170 szTitle, sizeof(szTitle));
2171 PROPSHEET_SetTitleW(hwndDlg, dwStyle, szTitle);
2175 PROPSHEET_SetTitleW(hwndDlg, dwStyle, (LPCWSTR)lpszText);
2179 /******************************************************************************
2180 * PROPSHEET_SetTitleW
2182 static void PROPSHEET_SetTitleW(HWND hwndDlg, DWORD dwStyle, LPCWSTR lpszText)
2184 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwndDlg, PropSheetInfoStr);
2187 TRACE("'%s' (style %08lx)\n", debugstr_w(lpszText), dwStyle);
2188 if (HIWORD(lpszText) == 0) {
2189 if (!LoadStringW(psInfo->ppshheader.hInstance,
2190 LOWORD(lpszText), szTitle, sizeof(szTitle)-sizeof(WCHAR)))
2194 if (dwStyle & PSH_PROPTITLE)
2197 int lentitle = strlenW(lpszText);
2198 int lenprop = strlenW(psInfo->strPropertiesFor);
2200 dest = Alloc( (lentitle + lenprop + 1)*sizeof (WCHAR));
2201 strcpyW(dest, psInfo->strPropertiesFor);
2202 strcatW(dest, lpszText);
2204 SetWindowTextW(hwndDlg, dest);
2208 SetWindowTextW(hwndDlg, lpszText);
2211 /******************************************************************************
2212 * PROPSHEET_SetFinishTextA
2214 static void PROPSHEET_SetFinishTextA(HWND hwndDlg, LPCSTR lpszText)
2216 HWND hwndButton = GetDlgItem(hwndDlg, IDC_FINISH_BUTTON);
2218 TRACE("'%s'\n", lpszText);
2219 /* Set text, show and enable the Finish button */
2220 SetWindowTextA(hwndButton, lpszText);
2221 ShowWindow(hwndButton, SW_SHOW);
2222 EnableWindow(hwndButton, TRUE);
2224 /* Make it default pushbutton */
2225 SendMessageA(hwndDlg, DM_SETDEFID, IDC_FINISH_BUTTON, 0);
2227 /* Hide Back button */
2228 hwndButton = GetDlgItem(hwndDlg, IDC_BACK_BUTTON);
2229 ShowWindow(hwndButton, SW_HIDE);
2231 /* Hide Next button */
2232 hwndButton = GetDlgItem(hwndDlg, IDC_NEXT_BUTTON);
2233 ShowWindow(hwndButton, SW_HIDE);
2236 /******************************************************************************
2237 * PROPSHEET_SetFinishTextW
2239 static void PROPSHEET_SetFinishTextW(HWND hwndDlg, LPCWSTR lpszText)
2241 HWND hwndButton = GetDlgItem(hwndDlg, IDC_FINISH_BUTTON);
2243 TRACE("'%s'\n", debugstr_w(lpszText));
2244 /* Set text, show and enable the Finish button */
2245 SetWindowTextW(hwndButton, lpszText);
2246 ShowWindow(hwndButton, SW_SHOW);
2247 EnableWindow(hwndButton, TRUE);
2249 /* Make it default pushbutton */
2250 SendMessageW(hwndDlg, DM_SETDEFID, IDC_FINISH_BUTTON, 0);
2252 /* Hide Back button */
2253 hwndButton = GetDlgItem(hwndDlg, IDC_BACK_BUTTON);
2254 ShowWindow(hwndButton, SW_HIDE);
2256 /* Hide Next button */
2257 hwndButton = GetDlgItem(hwndDlg, IDC_NEXT_BUTTON);
2258 ShowWindow(hwndButton, SW_HIDE);
2261 /******************************************************************************
2262 * PROPSHEET_QuerySiblings
2264 static LRESULT PROPSHEET_QuerySiblings(HWND hwndDlg,
2265 WPARAM wParam, LPARAM lParam)
2269 LRESULT msgResult = 0;
2270 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
2273 while ((i < psInfo->nPages) && (msgResult == 0))
2275 hwndPage = psInfo->proppage[i].hwndPage;
2276 msgResult = SendMessageA(hwndPage, PSM_QUERYSIBLINGS, wParam, lParam);
2284 /******************************************************************************
2287 static BOOL PROPSHEET_AddPage(HWND hwndDlg,
2288 HPROPSHEETPAGE hpage)
2290 PropSheetInfo * psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
2292 HWND hwndTabControl = GetDlgItem(hwndDlg, IDC_TABCONTROL);
2294 LPCPROPSHEETPAGEW ppsp = (LPCPROPSHEETPAGEW)hpage;
2296 TRACE("hpage %p\n", hpage);
2298 * Allocate and fill in a new PropPageInfo entry.
2300 psInfo->proppage = (PropPageInfo*) ReAlloc(psInfo->proppage,
2301 sizeof(PropPageInfo) *
2302 (psInfo->nPages + 1));
2303 if (!PROPSHEET_CollectPageInfo(ppsp, psInfo, psInfo->nPages))
2306 psInfo->proppage[psInfo->nPages].hpage = hpage;
2308 if (ppsp->dwFlags & PSP_PREMATURE)
2310 /* Create the page but don't show it */
2311 PROPSHEET_CreatePage(hwndDlg, psInfo->nPages, psInfo, ppsp);
2315 * Add a new tab to the tab control.
2317 item.mask = TCIF_TEXT;
2318 item.pszText = (LPWSTR) psInfo->proppage[psInfo->nPages].pszText;
2319 item.cchTextMax = MAX_TABTEXT_LENGTH;
2321 if (psInfo->hImageList)
2323 SendMessageW(hwndTabControl, TCM_SETIMAGELIST, 0, (LPARAM)psInfo->hImageList);
2326 if ( psInfo->proppage[psInfo->nPages].hasIcon )
2328 item.mask |= TCIF_IMAGE;
2329 item.iImage = psInfo->nPages;
2332 SendMessageW(hwndTabControl, TCM_INSERTITEMW, psInfo->nPages + 1,
2337 /* If it is the only page - show it */
2338 if(psInfo->nPages == 1)
2339 PROPSHEET_SetCurSel(hwndDlg, 0, 1, 0);
2343 /******************************************************************************
2344 * PROPSHEET_RemovePage
2346 static BOOL PROPSHEET_RemovePage(HWND hwndDlg,
2348 HPROPSHEETPAGE hpage)
2350 PropSheetInfo * psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
2352 HWND hwndTabControl = GetDlgItem(hwndDlg, IDC_TABCONTROL);
2353 PropPageInfo* oldPages;
2355 TRACE("index %d, hpage %p\n", index, hpage);
2360 * hpage takes precedence over index.
2364 index = PROPSHEET_GetPageIndex(hpage, psInfo);
2367 /* Make sure that index is within range */
2368 if (index < 0 || index >= psInfo->nPages)
2370 TRACE("Could not find page to remove!\n");
2374 TRACE("total pages %d removing page %d active page %d\n",
2375 psInfo->nPages, index, psInfo->active_page);
2377 * Check if we're removing the active page.
2379 if (index == psInfo->active_page)
2381 if (psInfo->nPages > 1)
2385 /* activate previous page */
2386 PROPSHEET_SetCurSel(hwndDlg, index - 1, -1, 0);
2390 /* activate the next page */
2391 PROPSHEET_SetCurSel(hwndDlg, index + 1, 1, 0);
2392 psInfo->active_page = index;
2397 psInfo->active_page = -1;
2398 if (!psInfo->isModeless)
2400 EndDialog(hwndDlg, FALSE);
2405 else if (index < psInfo->active_page)
2406 psInfo->active_page--;
2408 /* Destroy page dialog window */
2409 DestroyWindow(psInfo->proppage[index].hwndPage);
2411 /* Free page resources */
2412 if(psInfo->proppage[index].hpage)
2414 PROPSHEETPAGEW* psp = (PROPSHEETPAGEW*)psInfo->proppage[index].hpage;
2416 if ((psp->dwFlags & PSP_USETITLE) && psInfo->proppage[index].pszText)
2417 HeapFree(GetProcessHeap(), 0, (LPVOID)psInfo->proppage[index].pszText);
2419 DestroyPropertySheetPage(psInfo->proppage[index].hpage);
2422 /* Remove the tab */
2423 SendMessageW(hwndTabControl, TCM_DELETEITEM, index, 0);
2425 oldPages = psInfo->proppage;
2427 psInfo->proppage = Alloc(sizeof(PropPageInfo) * psInfo->nPages);
2430 memcpy(&psInfo->proppage[0], &oldPages[0], index * sizeof(PropPageInfo));
2432 if (index < psInfo->nPages)
2433 memcpy(&psInfo->proppage[index], &oldPages[index + 1],
2434 (psInfo->nPages - index) * sizeof(PropPageInfo));
2441 /******************************************************************************
2442 * PROPSHEET_SetWizButtons
2444 * This code will work if (and assumes that) the Next button is on top of the
2445 * Finish button. ie. Finish comes after Next in the Z order.
2446 * This means make sure the dialog template reflects this.
2449 static void PROPSHEET_SetWizButtons(HWND hwndDlg, DWORD dwFlags)
2451 HWND hwndBack = GetDlgItem(hwndDlg, IDC_BACK_BUTTON);
2452 HWND hwndNext = GetDlgItem(hwndDlg, IDC_NEXT_BUTTON);
2453 HWND hwndFinish = GetDlgItem(hwndDlg, IDC_FINISH_BUTTON);
2455 TRACE("%ld\n", dwFlags);
2457 EnableWindow(hwndBack, FALSE);
2458 EnableWindow(hwndNext, FALSE);
2459 EnableWindow(hwndFinish, FALSE);
2461 if (dwFlags & PSWIZB_BACK)
2462 EnableWindow(hwndBack, TRUE);
2464 if (dwFlags & PSWIZB_NEXT)
2466 /* Hide the Finish button */
2467 ShowWindow(hwndFinish, SW_HIDE);
2469 /* Show and enable the Next button */
2470 ShowWindow(hwndNext, SW_SHOW);
2471 EnableWindow(hwndNext, TRUE);
2473 /* Set the Next button as the default pushbutton */
2474 SendMessageA(hwndDlg, DM_SETDEFID, IDC_NEXT_BUTTON, 0);
2477 if ((dwFlags & PSWIZB_FINISH) || (dwFlags & PSWIZB_DISABLEDFINISH))
2479 /* Hide the Next button */
2480 ShowWindow(hwndNext, SW_HIDE);
2482 /* Show the Finish button */
2483 ShowWindow(hwndFinish, SW_SHOW);
2485 if (dwFlags & PSWIZB_FINISH)
2486 EnableWindow(hwndFinish, TRUE);
2488 /* Set the Finish button as the default pushbutton */
2489 SendMessageA(hwndDlg, DM_SETDEFID, IDC_FINISH_BUTTON, 0);
2493 /******************************************************************************
2494 * PROPSHEET_InsertPage
2496 static BOOL PROPSHEET_InsertPage(HWND hwndDlg, HPROPSHEETPAGE hpageInsertAfter, HPROPSHEETPAGE hpage)
2498 if (!HIWORD(hpageInsertAfter))
2499 FIXME("(%p, %d, %p): stub\n", hwndDlg, LOWORD(hpageInsertAfter), hpage);
2501 FIXME("(%p, %p, %p): stub\n", hwndDlg, hpageInsertAfter, hpage);
2505 /******************************************************************************
2506 * PROPSHEET_SetHeaderTitleW
2508 static void PROPSHEET_SetHeaderTitleW(HWND hwndDlg, int iPageIndex, LPCWSTR pszHeaderTitle)
2510 FIXME("(%p, %d, %s): stub\n", hwndDlg, iPageIndex, debugstr_w(pszHeaderTitle));
2513 /******************************************************************************
2514 * PROPSHEET_SetHeaderTitleA
2516 static void PROPSHEET_SetHeaderTitleA(HWND hwndDlg, int iPageIndex, LPCSTR pszHeaderTitle)
2518 FIXME("(%p, %d, %s): stub\n", hwndDlg, iPageIndex, debugstr_a(pszHeaderTitle));
2521 /******************************************************************************
2522 * PROPSHEET_SetHeaderSubTitleW
2524 static void PROPSHEET_SetHeaderSubTitleW(HWND hwndDlg, int iPageIndex, LPCWSTR pszHeaderSubTitle)
2526 FIXME("(%p, %d, %s): stub\n", hwndDlg, iPageIndex, debugstr_w(pszHeaderSubTitle));
2529 /******************************************************************************
2530 * PROPSHEET_SetHeaderSubTitleA
2532 static void PROPSHEET_SetHeaderSubTitleA(HWND hwndDlg, int iPageIndex, LPCSTR pszHeaderSubTitle)
2534 FIXME("(%p, %d, %s): stub\n", hwndDlg, iPageIndex, debugstr_a(pszHeaderSubTitle));
2537 /******************************************************************************
2538 * PROPSHEET_HwndToIndex
2540 static LRESULT PROPSHEET_HwndToIndex(HWND hwndDlg, HWND hPageDlg)
2543 PropSheetInfo * psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
2546 TRACE("(%p, %p)\n", hwndDlg, hPageDlg);
2548 for (index = 0; index < psInfo->nPages; index++)
2549 if (psInfo->proppage[index].hwndPage == hPageDlg)
2552 WARN("%p not found\n", hPageDlg);
2557 /******************************************************************************
2558 * PROPSHEET_IndexToHwnd
2560 static LRESULT PROPSHEET_IndexToHwnd(HWND hwndDlg, int iPageIndex)
2562 FIXME("(%p, %d): stub\n", hwndDlg, iPageIndex);
2566 /******************************************************************************
2567 * PROPSHEET_PageToIndex
2569 static LRESULT PROPSHEET_PageToIndex(HWND hwndDlg, HPROPSHEETPAGE hPage)
2571 FIXME("(%p, %p): stub\n", hwndDlg, hPage);
2575 /******************************************************************************
2576 * PROPSHEET_IndexToPage
2578 static LRESULT PROPSHEET_IndexToPage(HWND hwndDlg, int iPageIndex)
2580 FIXME("(%p, %d): stub\n", hwndDlg, iPageIndex);
2584 /******************************************************************************
2585 * PROPSHEET_IdToIndex
2587 static LRESULT PROPSHEET_IdToIndex(HWND hwndDlg, int iPageId)
2589 FIXME("(%p, %d): stub\n", hwndDlg, iPageId);
2593 /******************************************************************************
2594 * PROPSHEET_IndexToId
2596 static LRESULT PROPSHEET_IndexToId(HWND hwndDlg, int iPageIndex)
2598 FIXME("(%p, %d): stub\n", hwndDlg, iPageIndex);
2602 /******************************************************************************
2603 * PROPSHEET_GetResult
2605 static LRESULT PROPSHEET_GetResult(HWND hwndDlg)
2607 FIXME("(%p): stub\n", hwndDlg);
2611 /******************************************************************************
2612 * PROPSHEET_RecalcPageSizes
2614 static BOOL PROPSHEET_RecalcPageSizes(HWND hwndDlg)
2616 FIXME("(%p): stub\n", hwndDlg);
2620 /******************************************************************************
2621 * PROPSHEET_GetPageIndex
2623 * Given a HPROPSHEETPAGE, returns the index of the corresponding page from
2624 * the array of PropPageInfo.
2626 static int PROPSHEET_GetPageIndex(HPROPSHEETPAGE hpage, PropSheetInfo* psInfo)
2631 TRACE("hpage %p\n", hpage);
2632 while ((index < psInfo->nPages) && (found == FALSE))
2634 if (psInfo->proppage[index].hpage == hpage)
2646 /******************************************************************************
2649 static void PROPSHEET_CleanUp(HWND hwndDlg)
2652 PropSheetInfo* psInfo = (PropSheetInfo*) RemovePropW(hwndDlg,
2656 if (!psInfo) return;
2657 if (HIWORD(psInfo->ppshheader.pszCaption))
2658 HeapFree(GetProcessHeap(), 0, (LPVOID)psInfo->ppshheader.pszCaption);
2660 for (i = 0; i < psInfo->nPages; i++)
2662 PROPSHEETPAGEA* psp = (PROPSHEETPAGEA*)psInfo->proppage[i].hpage;
2664 if(psInfo->proppage[i].hwndPage)
2665 DestroyWindow(psInfo->proppage[i].hwndPage);
2669 if ((psp->dwFlags & PSP_USETITLE) && psInfo->proppage[i].pszText)
2670 HeapFree(GetProcessHeap(), 0, (LPVOID)psInfo->proppage[i].pszText);
2672 DestroyPropertySheetPage(psInfo->proppage[i].hpage);
2676 DeleteObject(psInfo->hFont);
2677 DeleteObject(psInfo->hFontBold);
2678 /* If we created the bitmaps, destroy them */
2679 if ((psInfo->ppshheader.dwFlags & PSH_WATERMARK) &&
2680 (!(psInfo->ppshheader.dwFlags & PSH_USEHBMWATERMARK)) )
2681 DeleteObject(psInfo->ppshheader.u4.hbmWatermark);
2682 if ((psInfo->ppshheader.dwFlags & PSH_HEADER) &&
2683 (!(psInfo->ppshheader.dwFlags & PSH_USEHBMHEADER)) )
2684 DeleteObject(psInfo->ppshheader.u5.hbmHeader);
2686 Free(psInfo->proppage);
2687 Free(psInfo->strPropertiesFor);
2688 ImageList_Destroy(psInfo->hImageList);
2690 GlobalFree((HGLOBAL)psInfo);
2693 /******************************************************************************
2694 * PropertySheet (COMCTL32.@)
2695 * PropertySheetA (COMCTL32.@)
2697 * Creates a property sheet in the specified property sheet header.
2700 * Modal property sheets: Positive if successful or -1 otherwise.
2701 * Modeless property sheets: Property sheet handle.
2703 *| ID_PSREBOOTSYSTEM - The user must reboot the computer for the changes to take effect.
2704 *| ID_PSRESTARTWINDOWS - The user must restart Windows for the changes to take effect.
2706 INT WINAPI PropertySheetA(LPCPROPSHEETHEADERA lppsh)
2709 PropSheetInfo* psInfo = (PropSheetInfo*) GlobalAlloc(GPTR,
2710 sizeof(PropSheetInfo));
2714 TRACE("(%p)\n", lppsh);
2716 PROPSHEET_CollectSheetInfoA(lppsh, psInfo);
2718 psInfo->proppage = (PropPageInfo*) Alloc(sizeof(PropPageInfo) *
2720 pByte = (BYTE*) psInfo->ppshheader.u3.ppsp;
2722 for (n = i = 0; i < lppsh->nPages; i++, n++)
2724 if (!(lppsh->dwFlags & PSH_PROPSHEETPAGE))
2725 psInfo->proppage[n].hpage = psInfo->ppshheader.u3.phpage[i];
2728 psInfo->proppage[n].hpage = CreatePropertySheetPageA((LPCPROPSHEETPAGEA)pByte);
2729 pByte += ((LPPROPSHEETPAGEA)pByte)->dwSize;
2732 if (!PROPSHEET_CollectPageInfo((LPCPROPSHEETPAGEW)psInfo->proppage[n].hpage,
2735 if (lppsh->dwFlags & PSH_PROPSHEETPAGE)
2736 DestroyPropertySheetPage(psInfo->proppage[n].hpage);
2742 psInfo->unicode = FALSE;
2743 bRet = PROPSHEET_CreateDialog(psInfo);
2748 /******************************************************************************
2749 * PropertySheetW (COMCTL32.@)
2751 * See PropertySheetA.
2753 INT WINAPI PropertySheetW(LPCPROPSHEETHEADERW lppsh)
2756 PropSheetInfo* psInfo = (PropSheetInfo*) GlobalAlloc(GPTR,
2757 sizeof(PropSheetInfo));
2761 TRACE("(%p)\n", lppsh);
2763 PROPSHEET_CollectSheetInfoW(lppsh, psInfo);
2765 psInfo->proppage = (PropPageInfo*) Alloc(sizeof(PropPageInfo) *
2767 pByte = (BYTE*) psInfo->ppshheader.u3.ppsp;
2769 for (n = i = 0; i < lppsh->nPages; i++, n++)
2771 if (!(lppsh->dwFlags & PSH_PROPSHEETPAGE))
2772 psInfo->proppage[n].hpage = psInfo->ppshheader.u3.phpage[i];
2775 psInfo->proppage[n].hpage = CreatePropertySheetPageW((LPCPROPSHEETPAGEW)pByte);
2776 pByte += ((LPPROPSHEETPAGEW)pByte)->dwSize;
2779 if (!PROPSHEET_CollectPageInfo((LPCPROPSHEETPAGEW)psInfo->proppage[n].hpage,
2782 if (lppsh->dwFlags & PSH_PROPSHEETPAGE)
2783 DestroyPropertySheetPage(psInfo->proppage[n].hpage);
2789 psInfo->unicode = TRUE;
2790 bRet = PROPSHEET_CreateDialog(psInfo);
2795 /******************************************************************************
2796 * CreatePropertySheetPage (COMCTL32.@)
2797 * CreatePropertySheetPageA (COMCTL32.@)
2799 * Creates a new property sheet page.
2802 * Success: Handle to new property sheet page.
2806 * An application must use the PSM_ADDPAGE message to add the new page to
2807 * an existing property sheet.
2809 HPROPSHEETPAGE WINAPI CreatePropertySheetPageA(
2810 LPCPROPSHEETPAGEA lpPropSheetPage)
2812 PROPSHEETPAGEW* ppsp = Alloc(sizeof(PROPSHEETPAGEW));
2814 memcpy(ppsp,lpPropSheetPage,min(lpPropSheetPage->dwSize,sizeof(PROPSHEETPAGEA)));
2816 ppsp->dwFlags &= ~ PSP_INTERNAL_UNICODE;
2817 if ( !(ppsp->dwFlags & PSP_DLGINDIRECT) && HIWORD( ppsp->u.pszTemplate ) )
2819 int len = strlen(lpPropSheetPage->u.pszTemplate);
2821 ppsp->u.pszTemplate = HeapAlloc( GetProcessHeap(),0,len+1 );
2822 strcpy( (LPSTR)ppsp->u.pszTemplate, lpPropSheetPage->u.pszTemplate );
2824 if ( (ppsp->dwFlags & PSP_USEICONID) && HIWORD( ppsp->u2.pszIcon ) )
2826 PROPSHEET_AtoW(&ppsp->u2.pszIcon, lpPropSheetPage->u2.pszIcon);
2829 if ((ppsp->dwFlags & PSP_USETITLE) && HIWORD( ppsp->pszTitle ))
2831 PROPSHEET_AtoW(&ppsp->pszTitle, lpPropSheetPage->pszTitle);
2833 else if ( !(ppsp->dwFlags & PSP_USETITLE) )
2834 ppsp->pszTitle = NULL;
2836 return (HPROPSHEETPAGE)ppsp;
2839 /******************************************************************************
2840 * CreatePropertySheetPageW (COMCTL32.@)
2842 * See CreatePropertySheetA.
2844 HPROPSHEETPAGE WINAPI CreatePropertySheetPageW(LPCPROPSHEETPAGEW lpPropSheetPage)
2846 PROPSHEETPAGEW* ppsp = Alloc(sizeof(PROPSHEETPAGEW));
2848 memcpy(ppsp,lpPropSheetPage,min(lpPropSheetPage->dwSize,sizeof(PROPSHEETPAGEW)));
2850 ppsp->dwFlags |= PSP_INTERNAL_UNICODE;
2852 if ( !(ppsp->dwFlags & PSP_DLGINDIRECT) && HIWORD( ppsp->u.pszTemplate ) )
2854 int len = strlenW(lpPropSheetPage->u.pszTemplate);
2856 ppsp->u.pszTemplate = HeapAlloc( GetProcessHeap(),0,(len+1)*sizeof (WCHAR) );
2857 strcpyW( (WCHAR *)ppsp->u.pszTemplate, lpPropSheetPage->u.pszTemplate );
2859 if ( (ppsp->dwFlags & PSP_USEICONID) && HIWORD( ppsp->u2.pszIcon ) )
2861 int len = strlenW(lpPropSheetPage->u2.pszIcon);
2862 ppsp->u2.pszIcon = HeapAlloc( GetProcessHeap(), 0, (len+1)*sizeof (WCHAR) );
2863 strcpyW( (WCHAR *)ppsp->u2.pszIcon, lpPropSheetPage->u2.pszIcon );
2866 if ((ppsp->dwFlags & PSP_USETITLE) && HIWORD( ppsp->pszTitle ))
2868 int len = strlenW(lpPropSheetPage->pszTitle);
2869 ppsp->pszTitle = HeapAlloc( GetProcessHeap(), 0, (len+1)*sizeof (WCHAR) );
2870 strcpyW( (WCHAR *)ppsp->pszTitle, lpPropSheetPage->pszTitle );
2872 else if ( !(ppsp->dwFlags & PSP_USETITLE) )
2873 ppsp->pszTitle = NULL;
2875 return (HPROPSHEETPAGE)ppsp;
2878 /******************************************************************************
2879 * DestroyPropertySheetPage (COMCTL32.@)
2881 * Destroys a property sheet page previously created with
2882 * CreatePropertySheetA() or CreatePropertySheetW() and frees the associated
2889 BOOL WINAPI DestroyPropertySheetPage(HPROPSHEETPAGE hPropPage)
2891 PROPSHEETPAGEW *psp = (PROPSHEETPAGEW *)hPropPage;
2896 if ( !(psp->dwFlags & PSP_DLGINDIRECT) && HIWORD( psp->u.pszTemplate ) )
2897 HeapFree(GetProcessHeap(), 0, (LPVOID)psp->u.pszTemplate);
2899 if ( (psp->dwFlags & PSP_USEICONID) && HIWORD( psp->u2.pszIcon ) )
2900 HeapFree(GetProcessHeap(), 0, (LPVOID)psp->u2.pszIcon);
2902 if ((psp->dwFlags & PSP_USETITLE) && HIWORD( psp->pszTitle ))
2903 HeapFree(GetProcessHeap(), 0, (LPVOID)psp->pszTitle);
2910 /******************************************************************************
2911 * PROPSHEET_IsDialogMessage
2913 static BOOL PROPSHEET_IsDialogMessage(HWND hwnd, LPMSG lpMsg)
2915 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwnd, PropSheetInfoStr);
2918 if (!psInfo || (hwnd != lpMsg->hwnd && !IsChild(hwnd, lpMsg->hwnd)))
2921 if (lpMsg->message == WM_KEYDOWN && (GetKeyState(VK_CONTROL) & 0x8000))
2924 INT dlgCode = SendMessageA(lpMsg->hwnd, WM_GETDLGCODE, 0, (LPARAM)lpMsg);
2926 if (!(dlgCode & DLGC_WANTMESSAGE))
2928 switch (lpMsg->wParam)
2931 if (GetKeyState(VK_SHIFT) & 0x8000)
2937 case VK_NEXT: new_page = 1; break;
2938 case VK_PRIOR: new_page = -1; break;
2944 if (PROPSHEET_CanSetCurSel(hwnd) != FALSE)
2946 new_page += psInfo->active_page;
2949 new_page = psInfo->nPages - 1;
2950 else if (new_page >= psInfo->nPages)
2953 PROPSHEET_SetCurSel(hwnd, new_page, 1, 0);
2960 return IsDialogMessageA(hwnd, lpMsg);
2963 /******************************************************************************
2964 * PROPSHEET_DoCommand
2966 static BOOL PROPSHEET_DoCommand(HWND hwnd, WORD wID)
2972 case IDC_APPLY_BUTTON:
2974 HWND hwndApplyBtn = GetDlgItem(hwnd, IDC_APPLY_BUTTON);
2976 if (PROPSHEET_Apply(hwnd, wID == IDOK ? 1: 0) == FALSE)
2981 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwnd,
2985 if (psInfo->restartWindows)
2986 result = ID_PSRESTARTWINDOWS;
2988 /* reboot system takes precedence over restart windows */
2989 if (psInfo->rebootSystem)
2990 result = ID_PSREBOOTSYSTEM;
2992 if (psInfo->isModeless)
2993 psInfo->activeValid = FALSE;
2995 EndDialog(hwnd, result);
2998 EnableWindow(hwndApplyBtn, FALSE);
3003 case IDC_BACK_BUTTON:
3004 PROPSHEET_Back(hwnd);
3007 case IDC_NEXT_BUTTON:
3008 PROPSHEET_Next(hwnd);
3011 case IDC_FINISH_BUTTON:
3012 PROPSHEET_Finish(hwnd);
3016 PROPSHEET_Cancel(hwnd, 0);
3020 PROPSHEET_Help(hwnd);
3030 /******************************************************************************
3033 static LRESULT PROPSHEET_Paint(HWND hwnd)
3035 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwnd, PropSheetInfoStr);
3040 HPALETTE hOldPal = 0;
3044 LPCPROPSHEETPAGEW ppshpage;
3046 hdc = BeginPaint(hwnd, &ps);
3049 hdcSrc = CreateCompatibleDC(0);
3050 ppshpage = (LPCPROPSHEETPAGEW)psInfo->proppage[psInfo->active_page].hpage;
3052 if (psInfo->ppshheader.dwFlags & PSH_USEHPLWATERMARK)
3053 hOldPal = SelectPalette(hdc, psInfo->ppshheader.hplWatermark, FALSE);
3055 if ( (!(ppshpage->dwFlags & PSP_HIDEHEADER)) &&
3056 (psInfo->ppshheader.dwFlags & (PSH_WIZARD97_NEW | PSH_HEADER)) )
3059 HWND hwndLineHeader = GetDlgItem(hwnd, IDC_SUNKEN_LINEHEADER);
3061 COLORREF clrOld = 0;
3064 hbmp = SelectObject(hdcSrc, psInfo->ppshheader.u5.hbmHeader);
3065 hOldFont = SelectObject(hdc, psInfo->hFontBold);
3067 GetClientRect(hwndLineHeader, &r);
3068 MapWindowPoints(hwndLineHeader, hwnd, (LPPOINT) &r, 2);
3069 SetRect(&rzone, 0, 0, r.right, r.top - 1);
3070 hbr = CreateSolidBrush(GetPixel(hdcSrc, 0, 0));
3071 FillRect(hdc, &rzone, hbr);
3074 GetObjectA(psInfo->ppshheader.u5.hbmHeader, sizeof(BITMAP), (LPVOID)&bm);
3076 clrOld = SetTextColor (hdc, 0x00000000);
3077 oldBkMode = SetBkMode (hdc, TRANSPARENT);
3079 if (ppshpage->dwFlags & PSP_USEHEADERTITLE) {
3080 SetRect(&r, 20, 10, rzone.right - bm.bmWidth, 18);
3081 if (psInfo->unicode)
3082 DrawTextW(hdc, (LPWSTR)ppshpage->pszHeaderTitle,
3083 -1, &r, DT_LEFT | DT_SINGLELINE | DT_NOCLIP);
3085 DrawTextA(hdc, (LPCSTR)ppshpage->pszHeaderTitle,
3086 -1, &r, DT_LEFT | DT_SINGLELINE | DT_NOCLIP);
3089 if (ppshpage->dwFlags & PSP_USEHEADERSUBTITLE) {
3090 SelectObject(hdc, psInfo->hFont);
3091 SetRect(&r, 40, 25, rzone.right - bm.bmWidth, 43);
3092 if (psInfo->unicode)
3093 DrawTextW(hdc, (LPWSTR)ppshpage->pszHeaderSubTitle,
3094 -1, &r, DT_LEFT | DT_SINGLELINE);
3096 DrawTextA(hdc, (LPCSTR)ppshpage->pszHeaderSubTitle,
3097 -1, &r, DT_LEFT | DT_SINGLELINE);
3100 BitBlt(hdc, rzone.right - bm.bmWidth, (rzone.bottom - bm.bmHeight)/2,
3101 bm.bmWidth, bm.bmHeight,
3102 hdcSrc, 0, 0, SRCCOPY);
3103 offsety = rzone.bottom + 2;
3105 SetTextColor(hdc, clrOld);
3106 SetBkMode(hdc, oldBkMode);
3107 SelectObject(hdc, hOldFont);
3108 SelectObject(hdcSrc, hbmp);
3111 if ( ((psInfo->active_page == 0) || (psInfo->active_page == psInfo->nPages - 1)) &&
3112 (psInfo->ppshheader.dwFlags & (PSH_WIZARD97_NEW | PSH_WATERMARK)) )
3114 if (psInfo->ppshheader.dwFlags & PSH_USEHBMWATERMARK )
3116 HWND hwndLine = GetDlgItem(hwnd, IDC_SUNKEN_LINE);
3118 GetClientRect(hwndLine, &r);
3119 MapWindowPoints(hwndLine, hwnd, (LPPOINT) &r, 2);
3121 GetObjectA(psInfo->ppshheader.u4.hbmWatermark, sizeof(BITMAP), (LPVOID)&bm);
3122 hbmp = SelectObject(hdcSrc, psInfo->ppshheader.u4.hbmWatermark);
3124 BitBlt(hdc, 0, offsety, bm.bmWidth, bm.bmHeight,
3125 hdcSrc, 0, 0, SRCCOPY);
3127 /* If the bitmap is not big enough, fill the remaining area
3128 with the color of pixel (0,0) of bitmap - see MSDN */
3129 if (r.top > bm.bmHeight) {
3130 r.bottom = r.top - 1;
3131 r.top = bm.bmHeight;
3133 r.right = bm.bmWidth;
3134 hbr = CreateSolidBrush(GetPixel(hdcSrc, 0, 0));
3135 FillRect(hdc, &r, hbr);
3139 SelectObject(hdcSrc, hbmp);
3143 if (psInfo->ppshheader.dwFlags & PSH_USEHPLWATERMARK)
3144 SelectPalette(hdc, hOldPal, FALSE);
3148 EndPaint(hwnd, &ps);
3153 /******************************************************************************
3154 * PROPSHEET_DialogProc
3157 PROPSHEET_DialogProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
3159 TRACE("hwnd=%p msg=0x%04x wparam=%x lparam=%lx\n",
3160 hwnd, uMsg, wParam, lParam);
3166 PropSheetInfo* psInfo = (PropSheetInfo*) lParam;
3167 WCHAR* strCaption = (WCHAR*)Alloc(MAX_CAPTION_LENGTH*sizeof(WCHAR));
3168 HWND hwndTabCtrl = GetDlgItem(hwnd, IDC_TABCONTROL);
3169 LPCPROPSHEETPAGEW ppshpage;
3173 /* Using PropSheetInfoStr to store extra data doesn't match the native
3174 * common control: native uses TCM_[GS]ETITEM
3176 SetPropW(hwnd, PropSheetInfoStr, (HANDLE)psInfo);
3179 * psInfo->hwnd is not being used by WINE code - it exists
3180 * for compatibility with "real" Windoze. The same about
3181 * SetWindowLong - WINE is only using the PropSheetInfoStr
3184 psInfo->hwnd = hwnd;
3185 SetWindowLongW(hwnd,DWL_USER,(LONG)psInfo);
3187 /* set up the Next and Back buttons by default */
3188 PROPSHEET_SetWizButtons(hwnd, PSWIZB_BACK|PSWIZB_NEXT);
3191 SystemParametersInfoA (SPI_GETICONTITLELOGFONT, 0, &logFont, 0);
3192 psInfo->hFont = CreateFontIndirectA (&logFont);
3193 logFont.lfWeight = FW_BOLD;
3194 psInfo->hFontBold = CreateFontIndirectA (&logFont);
3197 * Small icon in the title bar.
3199 if ((psInfo->ppshheader.dwFlags & PSH_USEICONID) ||
3200 (psInfo->ppshheader.dwFlags & PSH_USEHICON))
3203 int icon_cx = GetSystemMetrics(SM_CXSMICON);
3204 int icon_cy = GetSystemMetrics(SM_CYSMICON);
3206 if (psInfo->ppshheader.dwFlags & PSH_USEICONID)
3207 hIcon = LoadImageW(psInfo->ppshheader.hInstance,
3208 psInfo->ppshheader.u.pszIcon,
3213 hIcon = psInfo->ppshheader.u.hIcon;
3215 SendMessageW(hwnd, WM_SETICON, 0, (LPARAM)hIcon);
3218 if (psInfo->ppshheader.dwFlags & PSH_USEHICON)
3219 SendMessageW(hwnd, WM_SETICON, 0, (LPARAM)psInfo->ppshheader.u.hIcon);
3221 psInfo->strPropertiesFor = strCaption;
3223 GetWindowTextW(hwnd, psInfo->strPropertiesFor, MAX_CAPTION_LENGTH);
3225 PROPSHEET_CreateTabControl(hwnd, psInfo);
3227 if (psInfo->ppshheader.dwFlags & INTRNL_ANY_WIZARD)
3229 ShowWindow(hwndTabCtrl, SW_HIDE);
3230 if (PROPSHEET_IsTooSmallWizard(hwnd, psInfo))
3232 PROPSHEET_AdjustSizeWizard(hwnd, psInfo);
3233 PROPSHEET_AdjustButtonsWizard(hwnd, psInfo);
3238 if (PROPSHEET_SizeMismatch(hwnd, psInfo))
3240 PROPSHEET_AdjustSize(hwnd, psInfo);
3241 PROPSHEET_AdjustButtons(hwnd, psInfo);
3245 if (psInfo->useCallback)
3246 (*(psInfo->ppshheader.pfnCallback))(hwnd,
3247 PSCB_INITIALIZED, (LPARAM)0);
3249 idx = psInfo->active_page;
3250 ppshpage = (LPCPROPSHEETPAGEW)psInfo->proppage[idx].hpage;
3251 psInfo->active_page = -1;
3253 PROPSHEET_SetCurSel(hwnd, idx, 1, psInfo->proppage[idx].hpage);
3255 /* doing TCM_SETCURSEL seems to be needed even in case of PSH_WIZARD,
3256 * as some programs call TCM_GETCURSEL to get the current selection
3257 * from which to switch to the next page */
3258 SendMessageW(hwndTabCtrl, TCM_SETCURSEL, psInfo->active_page, 0);
3260 if (!HIWORD(psInfo->ppshheader.pszCaption) &&
3261 psInfo->ppshheader.hInstance)
3265 if (LoadStringW(psInfo->ppshheader.hInstance,
3266 (UINT)psInfo->ppshheader.pszCaption, szText, 255))
3267 PROPSHEET_SetTitleW(hwnd, psInfo->ppshheader.dwFlags, szText);
3271 PROPSHEET_SetTitleW(hwnd, psInfo->ppshheader.dwFlags,
3272 psInfo->ppshheader.pszCaption);
3279 PROPSHEET_Paint(hwnd);
3283 PROPSHEET_CleanUp(hwnd);
3287 PROPSHEET_Cancel(hwnd, 1);
3291 if (!PROPSHEET_DoCommand(hwnd, LOWORD(wParam)))
3293 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwnd, PropSheetInfoStr);
3295 /* No default handler, forward notification to active page */
3296 if (psInfo->activeValid && psInfo->active_page != -1)
3298 HWND hwndPage = psInfo->proppage[psInfo->active_page].hwndPage;
3299 SendMessageW(hwndPage, WM_COMMAND, wParam, lParam);
3306 NMHDR* pnmh = (LPNMHDR) lParam;
3308 if (pnmh->code == TCN_SELCHANGE)
3310 int index = SendMessageW(pnmh->hwndFrom, TCM_GETCURSEL, 0, 0);
3311 PROPSHEET_SetCurSel(hwnd, index, 1, 0);
3314 if(pnmh->code == TCN_SELCHANGING)
3316 BOOL bRet = PROPSHEET_CanSetCurSel(hwnd);
3317 SetWindowLongW(hwnd, DWL_MSGRESULT, !bRet);
3324 case PSM_GETCURRENTPAGEHWND:
3326 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwnd,
3330 if (psInfo->activeValid && psInfo->active_page != -1)
3331 hwndPage = psInfo->proppage[psInfo->active_page].hwndPage;
3333 SetWindowLongW(hwnd, DWL_MSGRESULT, (LONG)hwndPage);
3339 PROPSHEET_Changed(hwnd, (HWND)wParam);
3343 PROPSHEET_UnChanged(hwnd, (HWND)wParam);
3346 case PSM_GETTABCONTROL:
3348 HWND hwndTabCtrl = GetDlgItem(hwnd, IDC_TABCONTROL);
3350 SetWindowLongW(hwnd, DWL_MSGRESULT, (LONG)hwndTabCtrl);
3359 msgResult = PROPSHEET_CanSetCurSel(hwnd);
3360 if(msgResult != FALSE)
3362 msgResult = PROPSHEET_SetCurSel(hwnd,
3365 (HPROPSHEETPAGE)lParam);
3368 SetWindowLongW(hwnd, DWL_MSGRESULT, msgResult);
3373 case PSM_CANCELTOCLOSE:
3375 WCHAR buf[MAX_BUTTONTEXT_LENGTH];
3376 HWND hwndOK = GetDlgItem(hwnd, IDOK);
3377 HWND hwndCancel = GetDlgItem(hwnd, IDCANCEL);
3379 EnableWindow(hwndCancel, FALSE);
3380 if (LoadStringW(COMCTL32_hModule, IDS_CLOSE, buf, sizeof(buf)))
3381 SetWindowTextW(hwndOK, buf);
3386 case PSM_RESTARTWINDOWS:
3388 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwnd,
3391 psInfo->restartWindows = TRUE;
3395 case PSM_REBOOTSYSTEM:
3397 PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwnd,
3400 psInfo->rebootSystem = TRUE;
3405 PROPSHEET_SetTitleA(hwnd, (DWORD) wParam, (LPCSTR) lParam);
3409 PROPSHEET_SetTitleW(hwnd, (DWORD) wParam, (LPCWSTR) lParam);
3414 BOOL msgResult = PROPSHEET_Apply(hwnd, 0);
3416 SetWindowLongW(hwnd, DWL_MSGRESULT, msgResult);
3421 case PSM_QUERYSIBLINGS:
3423 LRESULT msgResult = PROPSHEET_QuerySiblings(hwnd, wParam, lParam);
3425 SetWindowLongW(hwnd, DWL_MSGRESULT, msgResult);
3433 * Note: MSVC++ 6.0 documentation says that PSM_ADDPAGE does not have
3434 * a return value. This is not true. PSM_ADDPAGE returns TRUE
3435 * on success or FALSE otherwise, as specified on MSDN Online.
3436 * Also see the MFC code for
3437 * CPropertySheet::AddPage(CPropertyPage* pPage).
3440 BOOL msgResult = PROPSHEET_AddPage(hwnd, (HPROPSHEETPAGE)lParam);
3442 SetWindowLongW(hwnd, DWL_MSGRESULT, msgResult);
3447 case PSM_REMOVEPAGE:
3448 PROPSHEET_RemovePage(hwnd, (int)wParam, (HPROPSHEETPAGE)lParam);
3451 case PSM_ISDIALOGMESSAGE:
3453 BOOL msgResult = PROPSHEET_IsDialogMessage(hwnd, (LPMSG)lParam);
3454 SetWindowLongA(hwnd, DWL_MSGRESULT, msgResult);
3458 case PSM_PRESSBUTTON:
3459 PROPSHEET_PressButton(hwnd, (int)wParam);
3462 case PSM_SETFINISHTEXTA:
3463 PROPSHEET_SetFinishTextA(hwnd, (LPCSTR) lParam);
3466 case PSM_SETWIZBUTTONS:
3467 PROPSHEET_SetWizButtons(hwnd, (DWORD)lParam);
3470 case PSM_SETCURSELID:
3471 PROPSHEET_SetCurSelId(hwnd, (int)lParam);
3474 case PSM_SETFINISHTEXTW:
3475 PROPSHEET_SetFinishTextW(hwnd, (LPCWSTR) lParam);
3478 case PSM_INSERTPAGE:
3480 BOOL msgResult = PROPSHEET_InsertPage(hwnd, (HPROPSHEETPAGE)wParam, (HPROPSHEETPAGE)lParam);
3481 SetWindowLongW(hwnd, DWL_MSGRESULT, msgResult);
3485 case PSM_SETHEADERTITLEW:
3486 PROPSHEET_SetHeaderTitleW(hwnd, (int)wParam, (LPCWSTR)lParam);
3489 case PSM_SETHEADERTITLEA:
3490 PROPSHEET_SetHeaderTitleA(hwnd, (int)wParam, (LPCSTR)lParam);
3493 case PSM_SETHEADERSUBTITLEW:
3494 PROPSHEET_SetHeaderSubTitleW(hwnd, (int)wParam, (LPCWSTR)lParam);
3497 case PSM_SETHEADERSUBTITLEA:
3498 PROPSHEET_SetHeaderSubTitleA(hwnd, (int)wParam, (LPCSTR)lParam);
3501 case PSM_HWNDTOINDEX:
3503 LRESULT msgResult = PROPSHEET_HwndToIndex(hwnd, (HWND)wParam);
3504 SetWindowLongW(hwnd, DWL_MSGRESULT, msgResult);
3508 case PSM_INDEXTOHWND:
3510 LRESULT msgResult = PROPSHEET_IndexToHwnd(hwnd, (int)wParam);
3511 SetWindowLongW(hwnd, DWL_MSGRESULT, msgResult);
3515 case PSM_PAGETOINDEX:
3517 LRESULT msgResult = PROPSHEET_PageToIndex(hwnd, (HPROPSHEETPAGE)wParam);
3518 SetWindowLongW(hwnd, DWL_MSGRESULT, msgResult);
3522 case PSM_INDEXTOPAGE:
3524 LRESULT msgResult = PROPSHEET_IndexToPage(hwnd, (int)wParam);
3525 SetWindowLongW(hwnd, DWL_MSGRESULT, msgResult);
3531 LRESULT msgResult = PROPSHEET_IdToIndex(hwnd, (int)lParam);
3532 SetWindowLongW(hwnd, DWL_MSGRESULT, msgResult);
3538 LRESULT msgResult = PROPSHEET_IndexToId(hwnd, (int)wParam);
3539 SetWindowLongW(hwnd, DWL_MSGRESULT, msgResult);
3545 LRESULT msgResult = PROPSHEET_GetResult(hwnd);
3546 SetWindowLongW(hwnd, DWL_MSGRESULT, msgResult);
3550 case PSM_RECALCPAGESIZES:
3552 LRESULT msgResult = PROPSHEET_RecalcPageSizes(hwnd);
3553 SetWindowLongW(hwnd, DWL_MSGRESULT, msgResult);