1998-12-10 16:49:22 +01:00
|
|
|
/*
|
|
|
|
* Property Sheets
|
|
|
|
*
|
|
|
|
* Copyright 1998 Francis Beaudet
|
1999-04-22 11:24:47 +02:00
|
|
|
* Copyright 1999 Thuy Nguyen
|
1998-12-10 16:49:22 +01:00
|
|
|
*
|
2002-03-10 00:29:33 +01:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
1998-12-10 16:49:22 +01:00
|
|
|
* TODO:
|
1999-09-19 14:14:38 +02:00
|
|
|
* - Tab order
|
1999-05-01 12:27:05 +02:00
|
|
|
* - Unicode property sheets
|
1998-12-10 16:49:22 +01:00
|
|
|
*/
|
|
|
|
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
1999-04-22 11:24:47 +02:00
|
|
|
#include <string.h>
|
2002-10-23 22:19:22 +02:00
|
|
|
|
2003-01-07 21:36:20 +01:00
|
|
|
#define NONAMELESSUNION
|
|
|
|
#define NONAMELESSSTRUCT
|
2003-09-06 01:08:26 +02:00
|
|
|
#include "windef.h"
|
1999-03-16 11:53:11 +01:00
|
|
|
#include "winbase.h"
|
2003-09-06 01:08:26 +02:00
|
|
|
#include "wingdi.h"
|
|
|
|
#include "winuser.h"
|
|
|
|
#include "winnls.h"
|
1998-12-10 16:49:22 +01:00
|
|
|
#include "commctrl.h"
|
1999-02-11 17:22:12 +01:00
|
|
|
#include "prsht.h"
|
1999-05-22 12:52:31 +02:00
|
|
|
#include "comctl32.h"
|
1998-12-10 16:49:22 +01:00
|
|
|
|
2002-10-23 22:19:22 +02:00
|
|
|
#include "wine/debug.h"
|
|
|
|
#include "wine/unicode.h"
|
1999-04-22 11:24:47 +02:00
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* Data structures
|
|
|
|
*/
|
2002-10-13 19:54:48 +02:00
|
|
|
#include "pshpack2.h"
|
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
WORD dlgVer;
|
|
|
|
WORD signature;
|
|
|
|
DWORD helpID;
|
|
|
|
DWORD exStyle;
|
|
|
|
DWORD style;
|
|
|
|
} MyDLGTEMPLATEEX;
|
|
|
|
|
2002-10-13 19:54:48 +02:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
DWORD helpid;
|
|
|
|
DWORD exStyle;
|
|
|
|
DWORD style;
|
|
|
|
short x;
|
|
|
|
short y;
|
2002-11-25 03:45:19 +01:00
|
|
|
short cx;
|
2002-10-13 19:54:48 +02:00
|
|
|
short cy;
|
|
|
|
DWORD id;
|
|
|
|
} MyDLGITEMTEMPLATEEX;
|
|
|
|
#include "poppack.h"
|
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
typedef struct tagPropPageInfo
|
|
|
|
{
|
1999-05-01 12:27:05 +02:00
|
|
|
HPROPSHEETPAGE hpage; /* to keep track of pages not passed to PropertySheet */
|
1999-04-22 11:24:47 +02:00
|
|
|
HWND hwndPage;
|
|
|
|
BOOL isDirty;
|
|
|
|
LPCWSTR pszText;
|
|
|
|
BOOL hasHelp;
|
|
|
|
BOOL useCallback;
|
1999-11-28 22:01:47 +01:00
|
|
|
BOOL hasIcon;
|
1999-04-22 11:24:47 +02:00
|
|
|
} PropPageInfo;
|
|
|
|
|
|
|
|
typedef struct tagPropSheetInfo
|
|
|
|
{
|
2000-07-08 14:48:13 +02:00
|
|
|
HWND hwnd;
|
2002-01-29 18:14:53 +01:00
|
|
|
PROPSHEETHEADERW ppshheader;
|
2003-07-09 04:49:52 +02:00
|
|
|
BOOL unicode;
|
2002-01-29 18:14:53 +01:00
|
|
|
LPWSTR strPropertiesFor;
|
1999-05-01 12:27:05 +02:00
|
|
|
int nPages;
|
1999-04-22 11:24:47 +02:00
|
|
|
int active_page;
|
|
|
|
BOOL isModeless;
|
|
|
|
BOOL hasHelp;
|
|
|
|
BOOL hasApply;
|
|
|
|
BOOL useCallback;
|
|
|
|
BOOL restartWindows;
|
|
|
|
BOOL rebootSystem;
|
1999-11-28 22:01:47 +01:00
|
|
|
BOOL activeValid;
|
1999-04-22 11:24:47 +02:00
|
|
|
PropPageInfo* proppage;
|
|
|
|
int x;
|
|
|
|
int y;
|
|
|
|
int width;
|
|
|
|
int height;
|
1999-08-14 17:51:10 +02:00
|
|
|
HIMAGELIST hImageList;
|
1999-04-22 11:24:47 +02:00
|
|
|
} PropSheetInfo;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int x;
|
|
|
|
int y;
|
|
|
|
} PADDING_INFO;
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* Defines and global variables
|
|
|
|
*/
|
1999-05-01 12:27:05 +02:00
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
const WCHAR PropSheetInfoStr[] =
|
2002-01-29 18:14:53 +01:00
|
|
|
{'P','r','o','p','e','r','t','y','S','h','e','e','t','I','n','f','o',0 };
|
1999-04-22 11:24:47 +02:00
|
|
|
|
2003-07-09 04:49:52 +02:00
|
|
|
#define PSP_INTERNAL_UNICODE 0x80000000
|
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
#define MAX_CAPTION_LENGTH 255
|
1999-05-01 12:27:05 +02:00
|
|
|
#define MAX_TABTEXT_LENGTH 255
|
1999-11-28 22:01:47 +01:00
|
|
|
#define MAX_BUTTONTEXT_LENGTH 64
|
1999-04-22 11:24:47 +02:00
|
|
|
|
2002-01-29 18:14:53 +01:00
|
|
|
#define INTRNL_ANY_WIZARD (PSH_WIZARD | PSH_WIZARD97_OLD | PSH_WIZARD97_NEW | PSH_WIZARD_LITE)
|
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Prototypes
|
|
|
|
*/
|
2003-03-07 21:29:58 +01:00
|
|
|
static int PROPSHEET_CreateDialog(PropSheetInfo* psInfo);
|
2000-02-25 21:49:49 +01:00
|
|
|
static BOOL PROPSHEET_SizeMismatch(HWND hwndDlg, PropSheetInfo* psInfo);
|
1999-04-22 11:24:47 +02:00
|
|
|
static BOOL PROPSHEET_AdjustSize(HWND hwndDlg, PropSheetInfo* psInfo);
|
|
|
|
static BOOL PROPSHEET_AdjustButtons(HWND hwndParent, PropSheetInfo* psInfo);
|
2002-01-29 18:14:53 +01:00
|
|
|
static BOOL PROPSHEET_CollectSheetInfoA(LPCPROPSHEETHEADERA lppsh,
|
|
|
|
PropSheetInfo * psInfo);
|
|
|
|
static BOOL PROPSHEET_CollectSheetInfoW(LPCPROPSHEETHEADERW lppsh,
|
1999-04-22 11:24:47 +02:00
|
|
|
PropSheetInfo * psInfo);
|
2002-05-14 05:48:48 +02:00
|
|
|
static BOOL PROPSHEET_CollectPageInfo(LPCPROPSHEETPAGEW lppsp,
|
1999-05-01 12:27:05 +02:00
|
|
|
PropSheetInfo * psInfo,
|
|
|
|
int index);
|
1999-04-22 11:24:47 +02:00
|
|
|
static BOOL PROPSHEET_CreateTabControl(HWND hwndParent,
|
|
|
|
PropSheetInfo * psInfo);
|
2000-11-09 21:25:27 +01:00
|
|
|
static BOOL PROPSHEET_CreatePage(HWND hwndParent, int index,
|
1999-05-01 12:27:05 +02:00
|
|
|
const PropSheetInfo * psInfo,
|
2002-01-29 18:14:53 +01:00
|
|
|
LPCPROPSHEETPAGEW ppshpage);
|
1999-04-22 11:24:47 +02:00
|
|
|
static BOOL PROPSHEET_ShowPage(HWND hwndDlg, int index, PropSheetInfo * psInfo);
|
|
|
|
static PADDING_INFO PROPSHEET_GetPaddingInfo(HWND hwndDlg);
|
1999-09-19 14:14:38 +02:00
|
|
|
static BOOL PROPSHEET_Back(HWND hwndDlg);
|
|
|
|
static BOOL PROPSHEET_Next(HWND hwndDlg);
|
|
|
|
static BOOL PROPSHEET_Finish(HWND hwndDlg);
|
1999-11-28 22:01:47 +01:00
|
|
|
static BOOL PROPSHEET_Apply(HWND hwndDlg, LPARAM lParam);
|
|
|
|
static void PROPSHEET_Cancel(HWND hwndDlg, LPARAM lParam);
|
1999-05-01 12:27:05 +02:00
|
|
|
static void PROPSHEET_Help(HWND hwndDlg);
|
1999-04-22 11:24:47 +02:00
|
|
|
static void PROPSHEET_Changed(HWND hwndDlg, HWND hwndDirtyPage);
|
|
|
|
static void PROPSHEET_UnChanged(HWND hwndDlg, HWND hwndCleanPage);
|
|
|
|
static void PROPSHEET_PressButton(HWND hwndDlg, int buttonID);
|
1999-09-19 14:14:38 +02:00
|
|
|
static void PROPSHEET_SetFinishTextA(HWND hwndDlg, LPCSTR lpszText);
|
2002-01-29 18:14:53 +01:00
|
|
|
static void PROPSHEET_SetFinishTextW(HWND hwndDlg, LPCWSTR lpszText);
|
1999-04-22 11:24:47 +02:00
|
|
|
static void PROPSHEET_SetTitleA(HWND hwndDlg, DWORD dwStyle, LPCSTR lpszText);
|
2002-01-29 18:14:53 +01:00
|
|
|
static void PROPSHEET_SetTitleW(HWND hwndDlg, DWORD dwStyle, LPCWSTR lpszText);
|
1999-10-13 17:54:08 +02:00
|
|
|
static BOOL PROPSHEET_CanSetCurSel(HWND hwndDlg);
|
1999-04-22 11:24:47 +02:00
|
|
|
static BOOL PROPSHEET_SetCurSel(HWND hwndDlg,
|
|
|
|
int index,
|
2001-06-06 23:03:21 +02:00
|
|
|
int skipdir,
|
1999-04-22 11:24:47 +02:00
|
|
|
HPROPSHEETPAGE hpage);
|
2002-08-26 23:47:06 +02:00
|
|
|
static void PROPSHEET_SetCurSelId(HWND hwndDlg, int id);
|
1999-04-22 11:24:47 +02:00
|
|
|
static LRESULT PROPSHEET_QuerySiblings(HWND hwndDlg,
|
|
|
|
WPARAM wParam, LPARAM lParam);
|
|
|
|
static BOOL PROPSHEET_AddPage(HWND hwndDlg,
|
|
|
|
HPROPSHEETPAGE hpage);
|
|
|
|
|
|
|
|
static BOOL PROPSHEET_RemovePage(HWND hwndDlg,
|
|
|
|
int index,
|
|
|
|
HPROPSHEETPAGE hpage);
|
|
|
|
static void PROPSHEET_CleanUp();
|
1999-05-01 12:27:05 +02:00
|
|
|
static int PROPSHEET_GetPageIndex(HPROPSHEETPAGE hpage, PropSheetInfo* psInfo);
|
1999-09-19 14:14:38 +02:00
|
|
|
static void PROPSHEET_SetWizButtons(HWND hwndDlg, DWORD dwFlags);
|
2000-08-26 22:28:02 +02:00
|
|
|
static PADDING_INFO PROPSHEET_GetPaddingInfoWizard(HWND hwndDlg, const PropSheetInfo* psInfo);
|
1999-11-28 22:01:47 +01:00
|
|
|
static BOOL PROPSHEET_IsDialogMessage(HWND hwnd, LPMSG lpMsg);
|
2002-01-29 18:14:53 +01:00
|
|
|
static BOOL PROPSHEET_DoCommand(HWND hwnd, WORD wID);
|
1999-04-22 11:24:47 +02:00
|
|
|
|
2002-10-31 02:04:39 +01:00
|
|
|
INT_PTR CALLBACK
|
1999-04-22 11:24:47 +02:00
|
|
|
PROPSHEET_DialogProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
|
|
|
|
2002-03-10 00:29:33 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(propsheet);
|
1999-04-19 16:56:29 +02:00
|
|
|
|
2002-01-29 18:14:53 +01:00
|
|
|
#define add_flag(a) if (dwFlags & a) {strcat(string, #a );strcat(string," ");}
|
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_UnImplementedFlags
|
|
|
|
*
|
|
|
|
* Document use of flags we don't implement yet.
|
|
|
|
*/
|
|
|
|
static VOID PROPSHEET_UnImplementedFlags(DWORD dwFlags)
|
|
|
|
{
|
|
|
|
CHAR string[256];
|
|
|
|
|
|
|
|
string[0] = '\0';
|
|
|
|
|
|
|
|
/*
|
|
|
|
* unhandled header flags:
|
|
|
|
* PSH_DEFAULT 0x00000000
|
|
|
|
* PSH_WIZARDHASFINISH 0x00000010
|
|
|
|
* PSH_RTLREADING 0x00000800
|
|
|
|
* PSH_WIZARDCONTEXTHELP 0x00001000
|
|
|
|
* PSH_WIZARD97 0x00002000 (pre IE 5)
|
|
|
|
* PSH_WATERMARK 0x00008000
|
|
|
|
* PSH_USEHBMWATERMARK 0x00010000
|
|
|
|
* PSH_USEHPLWATERMARK 0x00020000
|
|
|
|
* PSH_STRETCHWATERMARK 0x00040000
|
|
|
|
* PSH_HEADER 0x00080000
|
|
|
|
* PSH_USEHBMHEADER 0x00100000
|
|
|
|
* PSH_USEPAGELANG 0x00200000
|
|
|
|
* PSH_WIZARD_LITE 0x00400000 also not in .h
|
|
|
|
* PSH_WIZARD97 0x01000000 (IE 5 and above)
|
|
|
|
* PSH_NOCONTEXTHELP 0x02000000 also not in .h
|
|
|
|
*/
|
|
|
|
|
|
|
|
add_flag(PSH_WIZARDHASFINISH);
|
|
|
|
add_flag(PSH_RTLREADING);
|
|
|
|
add_flag(PSH_WIZARDCONTEXTHELP);
|
|
|
|
add_flag(PSH_WIZARD97_OLD);
|
|
|
|
add_flag(PSH_WATERMARK);
|
|
|
|
add_flag(PSH_USEHBMWATERMARK);
|
|
|
|
add_flag(PSH_USEHPLWATERMARK);
|
|
|
|
add_flag(PSH_STRETCHWATERMARK);
|
|
|
|
add_flag(PSH_HEADER);
|
|
|
|
add_flag(PSH_USEHBMHEADER);
|
|
|
|
add_flag(PSH_USEPAGELANG);
|
|
|
|
add_flag(PSH_WIZARD_LITE);
|
|
|
|
add_flag(PSH_WIZARD97_NEW);
|
|
|
|
add_flag(PSH_NOCONTEXTHELP);
|
|
|
|
if (string[0] != '\0')
|
|
|
|
FIXME("%s\n", string);
|
|
|
|
}
|
2002-04-02 21:16:08 +02:00
|
|
|
#undef add_flag
|
2002-01-29 18:14:53 +01:00
|
|
|
|
2002-06-13 21:10:28 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_GetPageRect
|
|
|
|
*
|
|
|
|
* Retrieve rect from tab control and map into the dialog for SetWindowPos
|
|
|
|
*/
|
|
|
|
static void PROPSHEET_GetPageRect(const PropSheetInfo * psInfo, HWND hwndDlg, RECT *rc)
|
|
|
|
{
|
|
|
|
HWND hwndTabCtrl = GetDlgItem(hwndDlg, IDC_TABCONTROL);
|
|
|
|
|
|
|
|
GetClientRect(hwndTabCtrl, rc);
|
|
|
|
SendMessageW(hwndTabCtrl, TCM_ADJUSTRECT, FALSE, (LPARAM)rc);
|
|
|
|
MapWindowPoints(hwndTabCtrl, hwndDlg, (LPPOINT)rc, 2);
|
|
|
|
}
|
|
|
|
|
2002-05-14 20:38:07 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_FindPageByResId
|
|
|
|
*
|
|
|
|
* Find page index corresponding to page resource id.
|
|
|
|
*/
|
|
|
|
INT PROPSHEET_FindPageByResId(PropSheetInfo * psInfo, LRESULT resId)
|
|
|
|
{
|
|
|
|
INT i;
|
|
|
|
|
|
|
|
for (i = 0; i < psInfo->nPages; i++)
|
|
|
|
{
|
|
|
|
LPCPROPSHEETPAGEA lppsp = (LPCPROPSHEETPAGEA)psInfo->proppage[i].hpage;
|
|
|
|
|
|
|
|
/* Fixme: if resource ID is a string shall we use strcmp ??? */
|
|
|
|
if (lppsp->u.pszTemplate == (LPVOID)resId)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2002-05-14 05:48:48 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_AtoW
|
|
|
|
*
|
|
|
|
* Convert ASCII to Unicode since all data is saved as Unicode.
|
|
|
|
*/
|
|
|
|
static void PROPSHEET_AtoW(LPCWSTR *tostr, LPCSTR frstr)
|
|
|
|
{
|
|
|
|
INT len;
|
|
|
|
|
|
|
|
TRACE("<%s>\n", frstr);
|
|
|
|
len = MultiByteToWideChar(CP_ACP, 0, frstr, -1, 0, 0);
|
|
|
|
*tostr = (LPWSTR)HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, frstr, -1, (LPWSTR)*tostr, len);
|
|
|
|
}
|
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
/******************************************************************************
|
2002-01-29 18:14:53 +01:00
|
|
|
* PROPSHEET_CollectSheetInfoA
|
1999-04-22 11:24:47 +02:00
|
|
|
*
|
|
|
|
* Collect relevant data.
|
|
|
|
*/
|
2002-01-29 18:14:53 +01:00
|
|
|
static BOOL PROPSHEET_CollectSheetInfoA(LPCPROPSHEETHEADERA lppsh,
|
1999-04-22 11:24:47 +02:00
|
|
|
PropSheetInfo * psInfo)
|
|
|
|
{
|
2000-07-08 14:48:13 +02:00
|
|
|
DWORD dwSize = min(lppsh->dwSize,sizeof(PROPSHEETHEADERA));
|
1999-04-22 11:24:47 +02:00
|
|
|
DWORD dwFlags = lppsh->dwFlags;
|
|
|
|
|
|
|
|
psInfo->hasHelp = dwFlags & PSH_HASHELP;
|
|
|
|
psInfo->hasApply = !(dwFlags & PSH_NOAPPLYNOW);
|
2003-01-03 04:06:42 +01:00
|
|
|
psInfo->useCallback = (dwFlags & PSH_USECALLBACK )&& (lppsh->pfnCallback);
|
1999-04-22 11:24:47 +02:00
|
|
|
psInfo->isModeless = dwFlags & PSH_MODELESS;
|
1999-11-28 22:01:47 +01:00
|
|
|
|
2000-07-08 14:48:13 +02:00
|
|
|
memcpy(&psInfo->ppshheader,lppsh,dwSize);
|
2002-10-24 00:19:10 +02:00
|
|
|
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",
|
2002-01-29 18:14:53 +01:00
|
|
|
lppsh->dwSize, lppsh->dwFlags, lppsh->hwndParent, lppsh->hInstance,
|
|
|
|
debugstr_a(lppsh->pszCaption), lppsh->nPages, lppsh->pfnCallback);
|
|
|
|
|
|
|
|
PROPSHEET_UnImplementedFlags(lppsh->dwFlags);
|
1999-11-28 22:01:47 +01:00
|
|
|
|
2003-10-02 06:26:53 +02:00
|
|
|
if (lppsh->dwFlags & INTRNL_ANY_WIZARD)
|
|
|
|
psInfo->ppshheader.pszCaption = NULL;
|
|
|
|
else
|
2001-07-24 23:45:22 +02:00
|
|
|
{
|
2003-10-02 06:26:53 +02:00
|
|
|
if (HIWORD(lppsh->pszCaption))
|
|
|
|
{
|
|
|
|
int len = strlen(lppsh->pszCaption);
|
|
|
|
psInfo->ppshheader.pszCaption = HeapAlloc( GetProcessHeap(), 0, (len+1)*sizeof (WCHAR) );
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, lppsh->pszCaption, -1, (LPWSTR) psInfo->ppshheader.pszCaption, len+1);
|
|
|
|
/* strcpy( (char *)psInfo->ppshheader.pszCaption, lppsh->pszCaption ); */
|
|
|
|
}
|
2001-07-24 23:45:22 +02:00
|
|
|
}
|
1999-05-01 12:27:05 +02:00
|
|
|
psInfo->nPages = lppsh->nPages;
|
1999-04-22 11:24:47 +02:00
|
|
|
|
|
|
|
if (dwFlags & PSH_USEPSTARTPAGE)
|
|
|
|
{
|
2004-01-27 01:01:43 +01:00
|
|
|
TRACE("PSH_USEPSTARTPAGE is on\n");
|
1999-04-22 11:24:47 +02:00
|
|
|
psInfo->active_page = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
psInfo->active_page = lppsh->u2.nStartPage;
|
|
|
|
|
1999-11-28 22:01:47 +01:00
|
|
|
if (psInfo->active_page < 0 || psInfo->active_page >= psInfo->nPages)
|
|
|
|
psInfo->active_page = 0;
|
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
psInfo->restartWindows = FALSE;
|
|
|
|
psInfo->rebootSystem = FALSE;
|
1999-08-14 17:51:10 +02:00
|
|
|
psInfo->hImageList = 0;
|
1999-11-28 22:01:47 +01:00
|
|
|
psInfo->activeValid = FALSE;
|
1999-04-22 11:24:47 +02:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
2002-01-29 18:14:53 +01:00
|
|
|
* PROPSHEET_CollectSheetInfoW
|
|
|
|
*
|
|
|
|
* Collect relevant data.
|
|
|
|
*/
|
|
|
|
static BOOL PROPSHEET_CollectSheetInfoW(LPCPROPSHEETHEADERW lppsh,
|
|
|
|
PropSheetInfo * psInfo)
|
|
|
|
{
|
|
|
|
DWORD dwSize = min(lppsh->dwSize,sizeof(PROPSHEETHEADERW));
|
|
|
|
DWORD dwFlags = lppsh->dwFlags;
|
|
|
|
|
|
|
|
psInfo->hasHelp = dwFlags & PSH_HASHELP;
|
|
|
|
psInfo->hasApply = !(dwFlags & PSH_NOAPPLYNOW);
|
2003-01-03 04:06:42 +01:00
|
|
|
psInfo->useCallback = (dwFlags & PSH_USECALLBACK) && (lppsh->pfnCallback);
|
2002-01-29 18:14:53 +01:00
|
|
|
psInfo->isModeless = dwFlags & PSH_MODELESS;
|
|
|
|
|
|
|
|
memcpy(&psInfo->ppshheader,lppsh,dwSize);
|
2002-10-24 00:19:10 +02:00
|
|
|
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",
|
2002-01-29 18:14:53 +01:00
|
|
|
lppsh->dwSize, lppsh->dwFlags, lppsh->hwndParent, lppsh->hInstance, debugstr_w(lppsh->pszCaption), lppsh->nPages, lppsh->pfnCallback);
|
|
|
|
|
|
|
|
PROPSHEET_UnImplementedFlags(lppsh->dwFlags);
|
|
|
|
|
2003-10-02 06:26:53 +02:00
|
|
|
if (lppsh->dwFlags & INTRNL_ANY_WIZARD)
|
|
|
|
psInfo->ppshheader.pszCaption = NULL;
|
|
|
|
else
|
2002-01-29 18:14:53 +01:00
|
|
|
{
|
2003-10-02 06:26:53 +02:00
|
|
|
if (!(lppsh->dwFlags & INTRNL_ANY_WIZARD) && HIWORD(lppsh->pszCaption))
|
|
|
|
{
|
|
|
|
int len = strlenW(lppsh->pszCaption);
|
|
|
|
psInfo->ppshheader.pszCaption = HeapAlloc( GetProcessHeap(), 0, (len+1)*sizeof(WCHAR) );
|
|
|
|
strcpyW( (WCHAR *)psInfo->ppshheader.pszCaption, lppsh->pszCaption );
|
|
|
|
}
|
2002-01-29 18:14:53 +01:00
|
|
|
}
|
|
|
|
psInfo->nPages = lppsh->nPages;
|
|
|
|
|
|
|
|
if (dwFlags & PSH_USEPSTARTPAGE)
|
|
|
|
{
|
2004-01-27 01:01:43 +01:00
|
|
|
TRACE("PSH_USEPSTARTPAGE is on\n");
|
2002-01-29 18:14:53 +01:00
|
|
|
psInfo->active_page = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
psInfo->active_page = lppsh->u2.nStartPage;
|
|
|
|
|
|
|
|
if (psInfo->active_page < 0 || psInfo->active_page >= psInfo->nPages)
|
|
|
|
psInfo->active_page = 0;
|
|
|
|
|
|
|
|
psInfo->restartWindows = FALSE;
|
|
|
|
psInfo->rebootSystem = FALSE;
|
|
|
|
psInfo->hImageList = 0;
|
|
|
|
psInfo->activeValid = FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
2002-05-14 05:48:48 +02:00
|
|
|
* PROPSHEET_CollectPageInfo
|
1999-04-22 11:24:47 +02:00
|
|
|
*
|
|
|
|
* Collect property sheet data.
|
|
|
|
* With code taken from DIALOG_ParseTemplate32.
|
|
|
|
*/
|
2002-05-14 05:48:48 +02:00
|
|
|
BOOL PROPSHEET_CollectPageInfo(LPCPROPSHEETPAGEW lppsp,
|
2002-01-29 18:14:53 +01:00
|
|
|
PropSheetInfo * psInfo,
|
|
|
|
int index)
|
|
|
|
{
|
|
|
|
DLGTEMPLATE* pTemplate;
|
|
|
|
const WORD* p;
|
|
|
|
DWORD dwFlags;
|
|
|
|
int width, height;
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
psInfo->proppage[index].hpage = (HPROPSHEETPAGE)lppsp;
|
|
|
|
psInfo->proppage[index].hwndPage = 0;
|
|
|
|
psInfo->proppage[index].isDirty = FALSE;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Process property page flags.
|
|
|
|
*/
|
|
|
|
dwFlags = lppsp->dwFlags;
|
|
|
|
psInfo->proppage[index].useCallback = (dwFlags & PSP_USECALLBACK) && (lppsp->pfnCallback);
|
|
|
|
psInfo->proppage[index].hasHelp = dwFlags & PSP_HASHELP;
|
|
|
|
psInfo->proppage[index].hasIcon = dwFlags & (PSP_USEHICON | PSP_USEICONID);
|
|
|
|
|
|
|
|
/* as soon as we have a page with the help flag, set the sheet flag on */
|
|
|
|
if (psInfo->proppage[index].hasHelp)
|
|
|
|
psInfo->hasHelp = TRUE;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Process page template.
|
|
|
|
*/
|
|
|
|
if (dwFlags & PSP_DLGINDIRECT)
|
|
|
|
pTemplate = (DLGTEMPLATE*)lppsp->u.pResource;
|
2003-07-09 04:49:52 +02:00
|
|
|
else if(dwFlags & PSP_INTERNAL_UNICODE )
|
2002-01-29 18:14:53 +01:00
|
|
|
{
|
|
|
|
HRSRC hResource = FindResourceW(lppsp->hInstance,
|
|
|
|
lppsp->u.pszTemplate,
|
2003-09-10 05:56:47 +02:00
|
|
|
(LPWSTR)RT_DIALOG);
|
2002-01-29 18:14:53 +01:00
|
|
|
HGLOBAL hTemplate = LoadResource(lppsp->hInstance,
|
|
|
|
hResource);
|
|
|
|
pTemplate = (LPDLGTEMPLATEW)LockResource(hTemplate);
|
|
|
|
}
|
2003-07-09 04:49:52 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
HRSRC hResource = FindResourceA(lppsp->hInstance,
|
|
|
|
(LPSTR)lppsp->u.pszTemplate,
|
2003-09-10 05:56:47 +02:00
|
|
|
(LPSTR)RT_DIALOG);
|
2003-07-09 04:49:52 +02:00
|
|
|
HGLOBAL hTemplate = LoadResource(lppsp->hInstance,
|
|
|
|
hResource);
|
|
|
|
pTemplate = (LPDLGTEMPLATEA)LockResource(hTemplate);
|
|
|
|
}
|
2002-01-29 18:14:53 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Extract the size of the page and the caption.
|
|
|
|
*/
|
|
|
|
if (!pTemplate)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
p = (const WORD *)pTemplate;
|
|
|
|
|
|
|
|
if (((MyDLGTEMPLATEEX*)pTemplate)->signature == 0xFFFF)
|
|
|
|
{
|
2002-11-25 03:45:19 +01:00
|
|
|
/* DLGTEMPLATEEX (not defined in any std. header file) */
|
2002-01-29 18:14:53 +01:00
|
|
|
|
|
|
|
p++; /* dlgVer */
|
|
|
|
p++; /* signature */
|
|
|
|
p += 2; /* help ID */
|
|
|
|
p += 2; /* ext style */
|
|
|
|
p += 2; /* style */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2002-11-25 03:45:19 +01:00
|
|
|
/* DLGTEMPLATE */
|
2002-01-29 18:14:53 +01:00
|
|
|
|
|
|
|
p += 2; /* style */
|
|
|
|
p += 2; /* ext style */
|
|
|
|
}
|
|
|
|
|
|
|
|
p++; /* nb items */
|
|
|
|
p++; /* x */
|
|
|
|
p++; /* y */
|
|
|
|
width = (WORD)*p; p++;
|
|
|
|
height = (WORD)*p; p++;
|
|
|
|
|
|
|
|
/* remember the largest width and height */
|
|
|
|
if (width > psInfo->width)
|
|
|
|
psInfo->width = width;
|
|
|
|
|
|
|
|
if (height > psInfo->height)
|
|
|
|
psInfo->height = height;
|
|
|
|
|
|
|
|
/* menu */
|
|
|
|
switch ((WORD)*p)
|
|
|
|
{
|
|
|
|
case 0x0000:
|
|
|
|
p++;
|
|
|
|
break;
|
|
|
|
case 0xffff:
|
|
|
|
p += 2;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
p += lstrlenW( (LPCWSTR)p ) + 1;
|
|
|
|
break;
|
2002-06-01 01:06:46 +02:00
|
|
|
}
|
2002-01-29 18:14:53 +01:00
|
|
|
|
|
|
|
/* class */
|
|
|
|
switch ((WORD)*p)
|
|
|
|
{
|
|
|
|
case 0x0000:
|
|
|
|
p++;
|
|
|
|
break;
|
|
|
|
case 0xffff:
|
|
|
|
p += 2;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
p += lstrlenW( (LPCWSTR)p ) + 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Extract the caption */
|
|
|
|
psInfo->proppage[index].pszText = (LPCWSTR)p;
|
|
|
|
TRACE("Tab %d %s\n",index,debugstr_w((LPCWSTR)p));
|
|
|
|
p += lstrlenW((LPCWSTR)p) + 1;
|
|
|
|
|
|
|
|
if (dwFlags & PSP_USETITLE)
|
|
|
|
{
|
|
|
|
WCHAR szTitle[256];
|
|
|
|
const WCHAR *pTitle;
|
|
|
|
static WCHAR pszNull[] = { '(','n','u','l','l',')',0 };
|
|
|
|
int len;
|
|
|
|
|
|
|
|
if ( !HIWORD( lppsp->pszTitle ) )
|
|
|
|
{
|
2003-06-18 21:45:22 +02:00
|
|
|
if (!LoadStringW( lppsp->hInstance, (UINT)lppsp->pszTitle,szTitle,sizeof(szTitle) ))
|
2002-01-29 18:14:53 +01:00
|
|
|
{
|
|
|
|
pTitle = pszNull;
|
|
|
|
FIXME("Could not load resource #%04x?\n",LOWORD(lppsp->pszTitle));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
pTitle = szTitle;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
pTitle = lppsp->pszTitle;
|
|
|
|
|
2002-05-29 00:41:19 +02:00
|
|
|
len = strlenW(pTitle);
|
2003-09-22 23:32:33 +02:00
|
|
|
psInfo->proppage[index].pszText = Alloc( (len+1)*sizeof (WCHAR) );
|
2002-01-29 18:14:53 +01:00
|
|
|
strcpyW( (LPWSTR)psInfo->proppage[index].pszText,pTitle);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Build the image list for icons
|
|
|
|
*/
|
2002-06-01 01:06:46 +02:00
|
|
|
if ((dwFlags & PSP_USEHICON) || (dwFlags & PSP_USEICONID))
|
2002-01-29 18:14:53 +01:00
|
|
|
{
|
|
|
|
HICON hIcon;
|
|
|
|
int icon_cx = GetSystemMetrics(SM_CXSMICON);
|
|
|
|
int icon_cy = GetSystemMetrics(SM_CYSMICON);
|
|
|
|
|
|
|
|
if (dwFlags & PSP_USEICONID)
|
2002-06-01 01:06:46 +02:00
|
|
|
hIcon = LoadImageW(lppsp->hInstance, lppsp->u2.pszIcon, IMAGE_ICON,
|
2002-01-29 18:14:53 +01:00
|
|
|
icon_cx, icon_cy, LR_DEFAULTCOLOR);
|
|
|
|
else
|
|
|
|
hIcon = lppsp->u2.hIcon;
|
|
|
|
|
|
|
|
if ( hIcon )
|
|
|
|
{
|
|
|
|
if (psInfo->hImageList == 0 )
|
|
|
|
psInfo->hImageList = ImageList_Create(icon_cx, icon_cy, ILC_COLOR, 1, 1);
|
|
|
|
|
|
|
|
ImageList_AddIcon(psInfo->hImageList, hIcon);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
1999-11-28 22:01:47 +01:00
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_CreateDialog
|
|
|
|
*
|
|
|
|
* Creates the actual property sheet.
|
|
|
|
*/
|
2003-03-07 21:29:58 +01:00
|
|
|
int PROPSHEET_CreateDialog(PropSheetInfo* psInfo)
|
1999-04-22 11:24:47 +02:00
|
|
|
{
|
|
|
|
LRESULT ret;
|
|
|
|
LPCVOID template;
|
1999-09-04 13:09:20 +02:00
|
|
|
LPVOID temp = 0;
|
1999-04-25 20:31:35 +02:00
|
|
|
HRSRC hRes;
|
1999-09-04 13:09:20 +02:00
|
|
|
DWORD resSize;
|
1999-09-19 14:14:38 +02:00
|
|
|
WORD resID = IDD_PROPSHEET;
|
|
|
|
|
2001-08-06 19:51:09 +02:00
|
|
|
TRACE("\n");
|
2002-01-29 18:14:53 +01:00
|
|
|
if (psInfo->ppshheader.dwFlags & INTRNL_ANY_WIZARD)
|
1999-09-19 14:14:38 +02:00
|
|
|
resID = IDD_WIZARD;
|
1999-04-22 11:24:47 +02:00
|
|
|
|
2003-07-09 04:49:52 +02:00
|
|
|
if( psInfo->unicode )
|
|
|
|
{
|
|
|
|
if(!(hRes = FindResourceW(COMCTL32_hModule,
|
2002-01-29 18:14:53 +01:00
|
|
|
MAKEINTRESOURCEW(resID),
|
2003-09-10 05:56:47 +02:00
|
|
|
(LPWSTR)RT_DIALOG)))
|
2003-07-09 04:49:52 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(!(hRes = FindResourceA(COMCTL32_hModule,
|
|
|
|
MAKEINTRESOURCEA(resID),
|
2003-09-10 05:56:47 +02:00
|
|
|
(LPSTR)RT_DIALOG)))
|
2003-07-09 04:49:52 +02:00
|
|
|
return -1;
|
|
|
|
}
|
1999-04-25 20:31:35 +02:00
|
|
|
|
|
|
|
if(!(template = (LPVOID)LoadResource(COMCTL32_hModule, hRes)))
|
2003-03-07 21:29:58 +01:00
|
|
|
return -1;
|
1999-04-22 11:24:47 +02:00
|
|
|
|
1999-09-04 13:09:20 +02:00
|
|
|
/*
|
|
|
|
* Make a copy of the dialog template.
|
|
|
|
*/
|
|
|
|
resSize = SizeofResource(COMCTL32_hModule, hRes);
|
|
|
|
|
2003-09-22 23:32:33 +02:00
|
|
|
temp = Alloc(resSize);
|
1999-09-04 13:09:20 +02:00
|
|
|
|
|
|
|
if (!temp)
|
2003-03-07 21:29:58 +01:00
|
|
|
return -1;
|
1999-09-04 13:09:20 +02:00
|
|
|
|
|
|
|
memcpy(temp, template, resSize);
|
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
if (psInfo->useCallback)
|
2000-07-08 14:48:13 +02:00
|
|
|
(*(psInfo->ppshheader.pfnCallback))(0, PSCB_PRECREATE, (LPARAM)temp);
|
1999-04-22 11:24:47 +02:00
|
|
|
|
2003-07-09 04:49:52 +02:00
|
|
|
if( psInfo->unicode )
|
|
|
|
{
|
|
|
|
if (!(psInfo->ppshheader.dwFlags & PSH_MODELESS))
|
2002-01-29 18:14:53 +01:00
|
|
|
ret = DialogBoxIndirectParamW(psInfo->ppshheader.hInstance,
|
|
|
|
(LPDLGTEMPLATEW) temp,
|
2000-11-29 19:38:24 +01:00
|
|
|
psInfo->ppshheader.hwndParent,
|
2002-10-31 02:04:39 +01:00
|
|
|
PROPSHEET_DialogProc,
|
2000-11-29 19:38:24 +01:00
|
|
|
(LPARAM)psInfo);
|
2003-07-09 04:49:52 +02:00
|
|
|
else
|
|
|
|
{
|
2003-03-07 21:29:58 +01:00
|
|
|
ret = (int)CreateDialogIndirectParamW(psInfo->ppshheader.hInstance,
|
|
|
|
(LPDLGTEMPLATEW) temp,
|
|
|
|
psInfo->ppshheader.hwndParent,
|
|
|
|
PROPSHEET_DialogProc,
|
|
|
|
(LPARAM)psInfo);
|
|
|
|
if ( !ret ) ret = -1;
|
2003-07-09 04:49:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!(psInfo->ppshheader.dwFlags & PSH_MODELESS))
|
|
|
|
ret = DialogBoxIndirectParamA(psInfo->ppshheader.hInstance,
|
|
|
|
(LPDLGTEMPLATEA) temp,
|
|
|
|
psInfo->ppshheader.hwndParent,
|
|
|
|
PROPSHEET_DialogProc,
|
|
|
|
(LPARAM)psInfo);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ret = (int)CreateDialogIndirectParamA(psInfo->ppshheader.hInstance,
|
|
|
|
(LPDLGTEMPLATEA) temp,
|
|
|
|
psInfo->ppshheader.hwndParent,
|
|
|
|
PROPSHEET_DialogProc,
|
|
|
|
(LPARAM)psInfo);
|
|
|
|
if ( !ret ) ret = -1;
|
|
|
|
}
|
2003-03-07 21:29:58 +01:00
|
|
|
}
|
2000-11-29 19:38:24 +01:00
|
|
|
|
2003-09-22 23:32:33 +02:00
|
|
|
Free(temp);
|
1999-09-04 13:09:20 +02:00
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
2000-02-25 21:49:49 +01:00
|
|
|
* PROPSHEET_SizeMismatch
|
2002-06-01 01:06:46 +02:00
|
|
|
*
|
2000-02-25 21:49:49 +01:00
|
|
|
* Verify that the tab control and the "largest" property sheet page dlg. template
|
|
|
|
* match in size.
|
1999-04-22 11:24:47 +02:00
|
|
|
*/
|
2000-02-25 21:49:49 +01:00
|
|
|
static BOOL PROPSHEET_SizeMismatch(HWND hwndDlg, PropSheetInfo* psInfo)
|
1999-04-22 11:24:47 +02:00
|
|
|
{
|
|
|
|
HWND hwndTabCtrl = GetDlgItem(hwndDlg, IDC_TABCONTROL);
|
|
|
|
RECT rcOrigTab, rcPage;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Original tab size.
|
|
|
|
*/
|
|
|
|
GetClientRect(hwndTabCtrl, &rcOrigTab);
|
2003-01-08 22:09:25 +01:00
|
|
|
TRACE("orig tab %ld %ld %ld %ld\n", rcOrigTab.left, rcOrigTab.top,
|
1999-04-22 11:24:47 +02:00
|
|
|
rcOrigTab.right, rcOrigTab.bottom);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Biggest page size.
|
|
|
|
*/
|
|
|
|
rcPage.left = psInfo->x;
|
|
|
|
rcPage.top = psInfo->y;
|
|
|
|
rcPage.right = psInfo->width;
|
|
|
|
rcPage.bottom = psInfo->height;
|
|
|
|
|
|
|
|
MapDialogRect(hwndDlg, &rcPage);
|
2003-01-08 22:09:25 +01:00
|
|
|
TRACE("biggest page %ld %ld %ld %ld\n", rcPage.left, rcPage.top,
|
1999-04-22 11:24:47 +02:00
|
|
|
rcPage.right, rcPage.bottom);
|
|
|
|
|
2000-02-25 21:49:49 +01:00
|
|
|
if ( (rcPage.right - rcPage.left) != (rcOrigTab.right - rcOrigTab.left) )
|
1999-04-22 11:24:47 +02:00
|
|
|
return TRUE;
|
2000-02-25 21:49:49 +01:00
|
|
|
if ( (rcPage.bottom - rcPage.top) != (rcOrigTab.bottom - rcOrigTab.top) )
|
1999-04-22 11:24:47 +02:00
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
1999-09-19 14:14:38 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_IsTooSmallWizard
|
|
|
|
*
|
|
|
|
* Verify that the default property sheet is big enough.
|
|
|
|
*/
|
|
|
|
static BOOL PROPSHEET_IsTooSmallWizard(HWND hwndDlg, PropSheetInfo* psInfo)
|
|
|
|
{
|
|
|
|
RECT rcSheetRect, rcPage, rcLine, rcSheetClient;
|
|
|
|
HWND hwndLine = GetDlgItem(hwndDlg, IDC_SUNKEN_LINE);
|
2000-08-26 22:28:02 +02:00
|
|
|
PADDING_INFO padding = PROPSHEET_GetPaddingInfoWizard(hwndDlg, psInfo);
|
1999-09-19 14:14:38 +02:00
|
|
|
|
|
|
|
GetClientRect(hwndDlg, &rcSheetClient);
|
|
|
|
GetWindowRect(hwndDlg, &rcSheetRect);
|
|
|
|
GetWindowRect(hwndLine, &rcLine);
|
|
|
|
|
|
|
|
/* Remove the space below the sunken line */
|
|
|
|
rcSheetClient.bottom -= (rcSheetRect.bottom - rcLine.top);
|
|
|
|
|
|
|
|
/* Remove the buffer zone all around the edge */
|
|
|
|
rcSheetClient.bottom -= (padding.y * 2);
|
|
|
|
rcSheetClient.right -= (padding.x * 2);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Biggest page size.
|
|
|
|
*/
|
|
|
|
rcPage.left = psInfo->x;
|
|
|
|
rcPage.top = psInfo->y;
|
|
|
|
rcPage.right = psInfo->width;
|
|
|
|
rcPage.bottom = psInfo->height;
|
|
|
|
|
|
|
|
MapDialogRect(hwndDlg, &rcPage);
|
2003-01-08 22:09:25 +01:00
|
|
|
TRACE("biggest page %ld %ld %ld %ld\n", rcPage.left, rcPage.top,
|
1999-09-19 14:14:38 +02:00
|
|
|
rcPage.right, rcPage.bottom);
|
|
|
|
|
|
|
|
if (rcPage.right > rcSheetClient.right)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
if (rcPage.bottom > rcSheetClient.bottom)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_AdjustSize
|
|
|
|
*
|
|
|
|
* Resizes the property sheet and the tab control to fit the largest page.
|
|
|
|
*/
|
|
|
|
static BOOL PROPSHEET_AdjustSize(HWND hwndDlg, PropSheetInfo* psInfo)
|
|
|
|
{
|
|
|
|
HWND hwndTabCtrl = GetDlgItem(hwndDlg, IDC_TABCONTROL);
|
|
|
|
HWND hwndButton = GetDlgItem(hwndDlg, IDOK);
|
2000-02-25 21:49:49 +01:00
|
|
|
RECT rc,tabRect;
|
1999-04-22 11:24:47 +02:00
|
|
|
int tabOffsetX, tabOffsetY, buttonHeight;
|
|
|
|
PADDING_INFO padding = PROPSHEET_GetPaddingInfo(hwndDlg);
|
2000-11-29 19:38:24 +01:00
|
|
|
RECT units;
|
1999-04-22 11:24:47 +02:00
|
|
|
|
|
|
|
/* Get the height of buttons */
|
|
|
|
GetClientRect(hwndButton, &rc);
|
|
|
|
buttonHeight = rc.bottom;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Biggest page size.
|
|
|
|
*/
|
|
|
|
rc.left = psInfo->x;
|
|
|
|
rc.top = psInfo->y;
|
|
|
|
rc.right = psInfo->width;
|
|
|
|
rc.bottom = psInfo->height;
|
|
|
|
|
|
|
|
MapDialogRect(hwndDlg, &rc);
|
|
|
|
|
2000-11-29 19:38:24 +01:00
|
|
|
/* retrieve the dialog units */
|
|
|
|
units.left = units.right = 4;
|
|
|
|
units.top = units.bottom = 8;
|
|
|
|
MapDialogRect(hwndDlg, &units);
|
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
/*
|
|
|
|
* Resize the tab control.
|
|
|
|
*/
|
2000-02-25 21:49:49 +01:00
|
|
|
GetClientRect(hwndTabCtrl,&tabRect);
|
|
|
|
|
2002-01-29 18:14:53 +01:00
|
|
|
SendMessageW(hwndTabCtrl, TCM_ADJUSTRECT, FALSE, (LPARAM)&tabRect);
|
2000-02-25 21:49:49 +01:00
|
|
|
|
|
|
|
if ((rc.bottom - rc.top) < (tabRect.bottom - tabRect.top))
|
|
|
|
{
|
|
|
|
rc.bottom = rc.top + tabRect.bottom - tabRect.top;
|
2000-11-29 19:38:24 +01:00
|
|
|
psInfo->height = MulDiv((rc.bottom - rc.top),8,units.top);
|
2000-02-25 21:49:49 +01:00
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-02-25 21:49:49 +01:00
|
|
|
if ((rc.right - rc.left) < (tabRect.right - tabRect.left))
|
|
|
|
{
|
|
|
|
rc.right = rc.left + tabRect.right - tabRect.left;
|
2000-11-29 19:38:24 +01:00
|
|
|
psInfo->width = MulDiv((rc.right - rc.left),4,units.left);
|
2000-02-25 21:49:49 +01:00
|
|
|
}
|
|
|
|
|
2002-01-29 18:14:53 +01:00
|
|
|
SendMessageW(hwndTabCtrl, TCM_ADJUSTRECT, TRUE, (LPARAM)&rc);
|
1999-04-22 11:24:47 +02:00
|
|
|
|
|
|
|
tabOffsetX = -(rc.left);
|
|
|
|
tabOffsetY = -(rc.top);
|
|
|
|
|
|
|
|
rc.right -= rc.left;
|
|
|
|
rc.bottom -= rc.top;
|
2003-01-08 22:09:25 +01:00
|
|
|
TRACE("setting tab %08lx, rc (0,0)-(%ld,%ld)\n",
|
2002-06-13 21:10:28 +02:00
|
|
|
(DWORD)hwndTabCtrl, rc.right, rc.bottom);
|
1999-04-22 11:24:47 +02:00
|
|
|
SetWindowPos(hwndTabCtrl, 0, 0, 0, rc.right, rc.bottom,
|
|
|
|
SWP_NOMOVE | SWP_NOZORDER | SWP_NOACTIVATE);
|
|
|
|
|
|
|
|
GetClientRect(hwndTabCtrl, &rc);
|
|
|
|
|
2003-01-08 22:09:25 +01:00
|
|
|
TRACE("tab client rc %ld %ld %ld %ld\n",
|
1999-04-22 11:24:47 +02:00
|
|
|
rc.left, rc.top, rc.right, rc.bottom);
|
|
|
|
|
|
|
|
rc.right += ((padding.x * 2) + tabOffsetX);
|
|
|
|
rc.bottom += (buttonHeight + (3 * padding.y) + tabOffsetY);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Resize the property sheet.
|
|
|
|
*/
|
2003-01-08 22:09:25 +01:00
|
|
|
TRACE("setting dialog %08lx, rc (0,0)-(%ld,%ld)\n",
|
2002-06-13 21:10:28 +02:00
|
|
|
(DWORD)hwndDlg, rc.right, rc.bottom);
|
1999-04-22 11:24:47 +02:00
|
|
|
SetWindowPos(hwndDlg, 0, 0, 0, rc.right, rc.bottom,
|
|
|
|
SWP_NOMOVE | SWP_NOZORDER | SWP_NOACTIVATE);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
1999-09-19 14:14:38 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_AdjustSizeWizard
|
|
|
|
*
|
|
|
|
* Resizes the property sheet to fit the largest page.
|
|
|
|
*/
|
|
|
|
static BOOL PROPSHEET_AdjustSizeWizard(HWND hwndDlg, PropSheetInfo* psInfo)
|
|
|
|
{
|
|
|
|
HWND hwndButton = GetDlgItem(hwndDlg, IDCANCEL);
|
|
|
|
HWND hwndLine = GetDlgItem(hwndDlg, IDC_SUNKEN_LINE);
|
2000-02-25 21:49:49 +01:00
|
|
|
HWND hwndTabCtrl = GetDlgItem(hwndDlg, IDC_TABCONTROL);
|
|
|
|
RECT rc,tabRect;
|
1999-09-19 14:14:38 +02:00
|
|
|
int buttonHeight, lineHeight;
|
2000-08-26 22:28:02 +02:00
|
|
|
PADDING_INFO padding = PROPSHEET_GetPaddingInfoWizard(hwndDlg, psInfo);
|
2000-11-29 19:38:24 +01:00
|
|
|
RECT units;
|
1999-09-19 14:14:38 +02:00
|
|
|
|
|
|
|
/* Get the height of buttons */
|
|
|
|
GetClientRect(hwndButton, &rc);
|
|
|
|
buttonHeight = rc.bottom;
|
|
|
|
|
|
|
|
GetClientRect(hwndLine, &rc);
|
|
|
|
lineHeight = rc.bottom;
|
|
|
|
|
2000-11-29 19:38:24 +01:00
|
|
|
/* retrieve the dialog units */
|
|
|
|
units.left = units.right = 4;
|
|
|
|
units.top = units.bottom = 8;
|
|
|
|
MapDialogRect(hwndDlg, &units);
|
|
|
|
|
1999-09-19 14:14:38 +02:00
|
|
|
/*
|
|
|
|
* Biggest page size.
|
|
|
|
*/
|
|
|
|
rc.left = psInfo->x;
|
|
|
|
rc.top = psInfo->y;
|
|
|
|
rc.right = psInfo->width;
|
|
|
|
rc.bottom = psInfo->height;
|
|
|
|
|
|
|
|
MapDialogRect(hwndDlg, &rc);
|
|
|
|
|
2000-02-25 21:49:49 +01:00
|
|
|
GetClientRect(hwndTabCtrl,&tabRect);
|
|
|
|
|
|
|
|
if ((rc.bottom - rc.top) < (tabRect.bottom - tabRect.top))
|
|
|
|
{
|
|
|
|
rc.bottom = rc.top + tabRect.bottom - tabRect.top;
|
2000-11-29 19:38:24 +01:00
|
|
|
psInfo->height = MulDiv((rc.bottom - rc.top), 8, units.top);
|
2000-02-25 21:49:49 +01:00
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-02-25 21:49:49 +01:00
|
|
|
if ((rc.right - rc.left) < (tabRect.right - tabRect.left))
|
|
|
|
{
|
|
|
|
rc.right = rc.left + tabRect.right - tabRect.left;
|
2000-11-29 19:38:24 +01:00
|
|
|
psInfo->width = MulDiv((rc.right - rc.left), 4, units.left);
|
2000-02-25 21:49:49 +01:00
|
|
|
}
|
|
|
|
|
2003-01-08 22:09:25 +01:00
|
|
|
TRACE("Biggest page %ld %ld %ld %ld\n", rc.left, rc.top, rc.right, rc.bottom);
|
2002-06-13 21:10:28 +02:00
|
|
|
TRACE(" constants padx=%d, pady=%d, butH=%d, lH=%d\n",
|
|
|
|
padding.x, padding.y, buttonHeight, lineHeight);
|
1999-09-19 14:14:38 +02:00
|
|
|
|
|
|
|
/* Make room */
|
|
|
|
rc.right += (padding.x * 2);
|
|
|
|
rc.bottom += (buttonHeight + (5 * padding.y) + lineHeight);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Resize the property sheet.
|
|
|
|
*/
|
2003-01-08 22:09:25 +01:00
|
|
|
TRACE("setting dialog %08lx, rc (0,0)-(%ld,%ld)\n",
|
2002-06-13 21:10:28 +02:00
|
|
|
(DWORD)hwndDlg, rc.right, rc.bottom);
|
1999-09-19 14:14:38 +02:00
|
|
|
SetWindowPos(hwndDlg, 0, 0, 0, rc.right, rc.bottom,
|
|
|
|
SWP_NOMOVE | SWP_NOZORDER | SWP_NOACTIVATE);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_AdjustButtons
|
|
|
|
*
|
|
|
|
* Adjusts the buttons' positions.
|
|
|
|
*/
|
|
|
|
static BOOL PROPSHEET_AdjustButtons(HWND hwndParent, PropSheetInfo* psInfo)
|
|
|
|
{
|
|
|
|
HWND hwndButton = GetDlgItem(hwndParent, IDOK);
|
|
|
|
RECT rcSheet;
|
|
|
|
int x, y;
|
|
|
|
int num_buttons = 2;
|
|
|
|
int buttonWidth, buttonHeight;
|
|
|
|
PADDING_INFO padding = PROPSHEET_GetPaddingInfo(hwndParent);
|
|
|
|
|
|
|
|
if (psInfo->hasApply)
|
|
|
|
num_buttons++;
|
|
|
|
|
|
|
|
if (psInfo->hasHelp)
|
|
|
|
num_buttons++;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Obtain the size of the buttons.
|
|
|
|
*/
|
|
|
|
GetClientRect(hwndButton, &rcSheet);
|
|
|
|
buttonWidth = rcSheet.right;
|
|
|
|
buttonHeight = rcSheet.bottom;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the size of the property sheet.
|
2002-06-01 01:06:46 +02:00
|
|
|
*/
|
1999-04-22 11:24:47 +02:00
|
|
|
GetClientRect(hwndParent, &rcSheet);
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
/*
|
1999-04-22 11:24:47 +02:00
|
|
|
* All buttons will be at this y coordinate.
|
|
|
|
*/
|
|
|
|
y = rcSheet.bottom - (padding.y + buttonHeight);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Position OK button.
|
|
|
|
*/
|
|
|
|
hwndButton = GetDlgItem(hwndParent, IDOK);
|
|
|
|
|
|
|
|
x = rcSheet.right - ((padding.x + buttonWidth) * num_buttons);
|
|
|
|
|
|
|
|
SetWindowPos(hwndButton, 0, x, y, 0, 0,
|
|
|
|
SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Position Cancel button.
|
|
|
|
*/
|
|
|
|
hwndButton = GetDlgItem(hwndParent, IDCANCEL);
|
|
|
|
|
|
|
|
x = rcSheet.right - ((padding.x + buttonWidth) * (num_buttons - 1));
|
|
|
|
|
|
|
|
SetWindowPos(hwndButton, 0, x, y, 0, 0,
|
|
|
|
SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Position Apply button.
|
|
|
|
*/
|
|
|
|
hwndButton = GetDlgItem(hwndParent, IDC_APPLY_BUTTON);
|
|
|
|
|
|
|
|
if (psInfo->hasApply)
|
|
|
|
{
|
|
|
|
if (psInfo->hasHelp)
|
|
|
|
x = rcSheet.right - ((padding.x + buttonWidth) * 2);
|
|
|
|
else
|
|
|
|
x = rcSheet.right - (padding.x + buttonWidth);
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
SetWindowPos(hwndButton, 0, x, y, 0, 0,
|
|
|
|
SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
|
|
|
|
|
|
|
|
EnableWindow(hwndButton, FALSE);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ShowWindow(hwndButton, SW_HIDE);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Position Help button.
|
|
|
|
*/
|
|
|
|
hwndButton = GetDlgItem(hwndParent, IDHELP);
|
|
|
|
|
|
|
|
if (psInfo->hasHelp)
|
|
|
|
{
|
|
|
|
x = rcSheet.right - (padding.x + buttonWidth);
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
SetWindowPos(hwndButton, 0, x, y, 0, 0,
|
|
|
|
SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ShowWindow(hwndButton, SW_HIDE);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
1999-09-19 14:14:38 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_AdjustButtonsWizard
|
|
|
|
*
|
|
|
|
* Adjusts the buttons' positions.
|
|
|
|
*/
|
|
|
|
static BOOL PROPSHEET_AdjustButtonsWizard(HWND hwndParent,
|
|
|
|
PropSheetInfo* psInfo)
|
|
|
|
{
|
|
|
|
HWND hwndButton = GetDlgItem(hwndParent, IDCANCEL);
|
|
|
|
HWND hwndLine = GetDlgItem(hwndParent, IDC_SUNKEN_LINE);
|
|
|
|
RECT rcSheet;
|
|
|
|
int x, y;
|
|
|
|
int num_buttons = 3;
|
|
|
|
int buttonWidth, buttonHeight, lineHeight, lineWidth;
|
2000-08-26 22:28:02 +02:00
|
|
|
PADDING_INFO padding = PROPSHEET_GetPaddingInfoWizard(hwndParent, psInfo);
|
1999-09-19 14:14:38 +02:00
|
|
|
|
|
|
|
if (psInfo->hasHelp)
|
|
|
|
num_buttons++;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Obtain the size of the buttons.
|
|
|
|
*/
|
|
|
|
GetClientRect(hwndButton, &rcSheet);
|
|
|
|
buttonWidth = rcSheet.right;
|
|
|
|
buttonHeight = rcSheet.bottom;
|
|
|
|
|
|
|
|
GetClientRect(hwndLine, &rcSheet);
|
|
|
|
lineHeight = rcSheet.bottom;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the size of the property sheet.
|
|
|
|
*/
|
|
|
|
GetClientRect(hwndParent, &rcSheet);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* All buttons will be at this y coordinate.
|
|
|
|
*/
|
|
|
|
y = rcSheet.bottom - (padding.y + buttonHeight);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Position the Next and the Finish buttons.
|
|
|
|
*/
|
|
|
|
hwndButton = GetDlgItem(hwndParent, IDC_NEXT_BUTTON);
|
|
|
|
|
|
|
|
x = rcSheet.right - ((padding.x + buttonWidth) * (num_buttons - 1));
|
|
|
|
|
|
|
|
SetWindowPos(hwndButton, 0, x, y, 0, 0,
|
|
|
|
SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
|
|
|
|
|
|
|
|
hwndButton = GetDlgItem(hwndParent, IDC_FINISH_BUTTON);
|
|
|
|
|
|
|
|
SetWindowPos(hwndButton, 0, x, y, 0, 0,
|
|
|
|
SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
|
|
|
|
|
|
|
|
ShowWindow(hwndButton, SW_HIDE);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Position the Back button.
|
|
|
|
*/
|
|
|
|
hwndButton = GetDlgItem(hwndParent, IDC_BACK_BUTTON);
|
|
|
|
|
|
|
|
x -= buttonWidth;
|
|
|
|
|
|
|
|
SetWindowPos(hwndButton, 0, x, y, 0, 0,
|
|
|
|
SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Position the Cancel button.
|
|
|
|
*/
|
|
|
|
hwndButton = GetDlgItem(hwndParent, IDCANCEL);
|
|
|
|
|
|
|
|
x = rcSheet.right - ((padding.x + buttonWidth) * (num_buttons - 2));
|
|
|
|
|
|
|
|
SetWindowPos(hwndButton, 0, x, y, 0, 0,
|
|
|
|
SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Position Help button.
|
|
|
|
*/
|
|
|
|
hwndButton = GetDlgItem(hwndParent, IDHELP);
|
|
|
|
|
|
|
|
if (psInfo->hasHelp)
|
|
|
|
{
|
|
|
|
x = rcSheet.right - (padding.x + buttonWidth);
|
|
|
|
|
|
|
|
SetWindowPos(hwndButton, 0, x, y, 0, 0,
|
|
|
|
SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ShowWindow(hwndButton, SW_HIDE);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Position and resize the sunken line.
|
|
|
|
*/
|
|
|
|
x = padding.x;
|
|
|
|
y = rcSheet.bottom - ((padding.y * 2) + buttonHeight + lineHeight);
|
|
|
|
|
|
|
|
GetClientRect(hwndParent, &rcSheet);
|
|
|
|
lineWidth = rcSheet.right - (padding.x * 2);
|
|
|
|
|
|
|
|
SetWindowPos(hwndLine, 0, x, y, lineWidth, 2,
|
|
|
|
SWP_NOZORDER | SWP_NOACTIVATE);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_GetPaddingInfo
|
|
|
|
*
|
|
|
|
* Returns the layout information.
|
|
|
|
*/
|
|
|
|
static PADDING_INFO PROPSHEET_GetPaddingInfo(HWND hwndDlg)
|
|
|
|
{
|
|
|
|
HWND hwndTab = GetDlgItem(hwndDlg, IDC_TABCONTROL);
|
|
|
|
RECT rcTab;
|
|
|
|
POINT tl;
|
|
|
|
PADDING_INFO padding;
|
|
|
|
|
|
|
|
GetWindowRect(hwndTab, &rcTab);
|
|
|
|
|
|
|
|
tl.x = rcTab.left;
|
|
|
|
tl.y = rcTab.top;
|
|
|
|
|
|
|
|
ScreenToClient(hwndDlg, &tl);
|
|
|
|
|
|
|
|
padding.x = tl.x;
|
|
|
|
padding.y = tl.y;
|
|
|
|
|
|
|
|
return padding;
|
|
|
|
}
|
|
|
|
|
1999-09-19 14:14:38 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_GetPaddingInfoWizard
|
|
|
|
*
|
|
|
|
* Returns the layout information.
|
|
|
|
* Vertical spacing is the distance between the line and the buttons.
|
2000-08-26 22:28:02 +02:00
|
|
|
* Do NOT use the Help button to gather padding information when it isn't mapped
|
|
|
|
* (PSH_HASHELP), as app writers aren't forced to supply correct coordinates
|
|
|
|
* for it in this case !
|
|
|
|
* FIXME: I'm not sure about any other coordinate problems with these evil
|
|
|
|
* buttons. Fix it in case additional problems appear or maybe calculate
|
|
|
|
* a padding in a completely different way, as this is somewhat messy.
|
1999-09-19 14:14:38 +02:00
|
|
|
*/
|
2000-08-26 22:28:02 +02:00
|
|
|
static PADDING_INFO PROPSHEET_GetPaddingInfoWizard(HWND hwndDlg, const PropSheetInfo*
|
|
|
|
psInfo)
|
1999-09-19 14:14:38 +02:00
|
|
|
{
|
|
|
|
PADDING_INFO padding;
|
|
|
|
RECT rc;
|
|
|
|
HWND hwndControl;
|
2000-08-26 22:28:02 +02:00
|
|
|
INT idButton;
|
|
|
|
POINT ptButton, ptLine;
|
1999-09-19 14:14:38 +02:00
|
|
|
|
2001-08-06 19:51:09 +02:00
|
|
|
TRACE("\n");
|
2000-08-26 22:28:02 +02:00
|
|
|
if (psInfo->hasHelp)
|
|
|
|
{
|
|
|
|
idButton = IDHELP;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2002-01-29 18:14:53 +01:00
|
|
|
if (psInfo->ppshheader.dwFlags & INTRNL_ANY_WIZARD)
|
2000-08-26 22:28:02 +02:00
|
|
|
{
|
|
|
|
idButton = IDC_NEXT_BUTTON;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* hopefully this is ok */
|
|
|
|
idButton = IDCANCEL;
|
|
|
|
}
|
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-08-26 22:28:02 +02:00
|
|
|
hwndControl = GetDlgItem(hwndDlg, idButton);
|
1999-09-19 14:14:38 +02:00
|
|
|
GetWindowRect(hwndControl, &rc);
|
|
|
|
|
2000-08-26 22:28:02 +02:00
|
|
|
ptButton.x = rc.left;
|
|
|
|
ptButton.y = rc.top;
|
1999-09-19 14:14:38 +02:00
|
|
|
|
2000-08-26 22:28:02 +02:00
|
|
|
ScreenToClient(hwndDlg, &ptButton);
|
1999-09-19 14:14:38 +02:00
|
|
|
|
|
|
|
/* Line */
|
|
|
|
hwndControl = GetDlgItem(hwndDlg, IDC_SUNKEN_LINE);
|
|
|
|
GetWindowRect(hwndControl, &rc);
|
|
|
|
|
|
|
|
ptLine.x = 0;
|
|
|
|
ptLine.y = rc.bottom;
|
|
|
|
|
|
|
|
ScreenToClient(hwndDlg, &ptLine);
|
|
|
|
|
2000-08-26 22:28:02 +02:00
|
|
|
padding.y = ptButton.y - ptLine.y;
|
|
|
|
|
|
|
|
if (padding.y < 0)
|
|
|
|
ERR("padding negative ! Please report this !\n");
|
1999-09-19 14:14:38 +02:00
|
|
|
|
2000-08-26 22:28:02 +02:00
|
|
|
/* this is most probably not correct, but the best we have now */
|
|
|
|
padding.x = padding.y;
|
1999-09-19 14:14:38 +02:00
|
|
|
return padding;
|
|
|
|
}
|
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_CreateTabControl
|
|
|
|
*
|
|
|
|
* Insert the tabs in the tab control.
|
|
|
|
*/
|
|
|
|
static BOOL PROPSHEET_CreateTabControl(HWND hwndParent,
|
|
|
|
PropSheetInfo * psInfo)
|
|
|
|
{
|
|
|
|
HWND hwndTabCtrl = GetDlgItem(hwndParent, IDC_TABCONTROL);
|
2002-01-29 18:14:53 +01:00
|
|
|
TCITEMW item;
|
1999-04-22 11:24:47 +02:00
|
|
|
int i, nTabs;
|
1999-11-28 22:01:47 +01:00
|
|
|
int iImage = 0;
|
1999-04-22 11:24:47 +02:00
|
|
|
|
2001-08-06 19:51:09 +02:00
|
|
|
TRACE("\n");
|
1999-04-22 11:24:47 +02:00
|
|
|
item.mask = TCIF_TEXT;
|
1999-05-01 12:27:05 +02:00
|
|
|
item.cchTextMax = MAX_TABTEXT_LENGTH;
|
1999-04-22 11:24:47 +02:00
|
|
|
|
2000-02-25 21:49:49 +01:00
|
|
|
nTabs = psInfo->nPages;
|
1999-04-22 11:24:47 +02:00
|
|
|
|
1999-08-14 17:51:10 +02:00
|
|
|
/*
|
|
|
|
* Set the image list for icons.
|
|
|
|
*/
|
|
|
|
if (psInfo->hImageList)
|
|
|
|
{
|
2002-01-29 18:14:53 +01:00
|
|
|
SendMessageW(hwndTabCtrl, TCM_SETIMAGELIST, 0, (LPARAM)psInfo->hImageList);
|
1999-08-14 17:51:10 +02:00
|
|
|
}
|
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
for (i = 0; i < nTabs; i++)
|
|
|
|
{
|
1999-11-28 22:01:47 +01:00
|
|
|
if ( psInfo->proppage[i].hasIcon )
|
|
|
|
{
|
|
|
|
item.mask |= TCIF_IMAGE;
|
|
|
|
item.iImage = iImage++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
item.mask &= ~TCIF_IMAGE;
|
|
|
|
}
|
1999-08-14 17:51:10 +02:00
|
|
|
|
2002-01-29 18:14:53 +01:00
|
|
|
item.pszText = (LPWSTR) psInfo->proppage[i].pszText;
|
|
|
|
SendMessageW(hwndTabCtrl, TCM_INSERTITEMW, (WPARAM)i, (LPARAM)&item);
|
1999-04-22 11:24:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
2002-10-13 19:54:48 +02:00
|
|
|
/*
|
|
|
|
* Get the size of an in-memory Template
|
|
|
|
*
|
|
|
|
*( Based on the code of PROPSHEET_CollectPageInfo)
|
2002-11-25 03:45:19 +01:00
|
|
|
* See also dialog.c/DIALOG_ParseTemplate32().
|
2002-10-13 19:54:48 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
static UINT GetTemplateSize(DLGTEMPLATE* pTemplate)
|
|
|
|
|
|
|
|
{
|
|
|
|
const WORD* p = (const WORD *)pTemplate;
|
|
|
|
BOOL istemplateex = (((MyDLGTEMPLATEEX*)pTemplate)->signature == 0xFFFF);
|
|
|
|
WORD nrofitems;
|
|
|
|
|
|
|
|
if (istemplateex)
|
|
|
|
{
|
2002-11-25 03:45:19 +01:00
|
|
|
/* DLGTEMPLATEEX (not defined in any std. header file) */
|
2002-10-13 19:54:48 +02:00
|
|
|
|
2002-11-25 03:45:19 +01:00
|
|
|
TRACE("is DLGTEMPLATEEX\n");
|
2002-10-13 19:54:48 +02:00
|
|
|
p++; /* dlgVer */
|
|
|
|
p++; /* signature */
|
|
|
|
p += 2; /* help ID */
|
|
|
|
p += 2; /* ext style */
|
|
|
|
p += 2; /* style */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2002-11-25 03:45:19 +01:00
|
|
|
/* DLGTEMPLATE */
|
2002-10-13 19:54:48 +02:00
|
|
|
|
2002-11-25 03:45:19 +01:00
|
|
|
TRACE("is DLGTEMPLATE\n");
|
2002-10-13 19:54:48 +02:00
|
|
|
p += 2; /* style */
|
|
|
|
p += 2; /* ext style */
|
|
|
|
}
|
|
|
|
|
|
|
|
nrofitems = (WORD)*p; p++; /* nb items */
|
|
|
|
p++; /* x */
|
|
|
|
p++; /* y */
|
|
|
|
p++; /* width */
|
|
|
|
p++; /* height */
|
|
|
|
|
|
|
|
/* menu */
|
|
|
|
switch ((WORD)*p)
|
|
|
|
{
|
|
|
|
case 0x0000:
|
|
|
|
p++;
|
|
|
|
break;
|
|
|
|
case 0xffff:
|
|
|
|
p += 2;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
TRACE("menu %s\n",debugstr_w((LPCWSTR)p));
|
|
|
|
p += lstrlenW( (LPCWSTR)p ) + 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* class */
|
|
|
|
switch ((WORD)*p)
|
|
|
|
{
|
|
|
|
case 0x0000:
|
|
|
|
p++;
|
|
|
|
break;
|
|
|
|
case 0xffff:
|
2002-11-25 03:45:19 +01:00
|
|
|
p += 2; /* 0xffff plus predefined window class ordinal value */
|
2002-10-13 19:54:48 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
TRACE("class %s\n",debugstr_w((LPCWSTR)p));
|
|
|
|
p += lstrlenW( (LPCWSTR)p ) + 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2002-11-25 03:45:19 +01:00
|
|
|
/* title */
|
2002-10-13 19:54:48 +02:00
|
|
|
TRACE("title %s\n",debugstr_w((LPCWSTR)p));
|
|
|
|
p += lstrlenW((LPCWSTR)p) + 1;
|
|
|
|
|
2002-11-25 03:45:19 +01:00
|
|
|
/* font, if DS_SETFONT set */
|
2002-10-13 19:54:48 +02:00
|
|
|
if ((DS_SETFONT & ((istemplateex)? ((MyDLGTEMPLATEEX*)pTemplate)->style :
|
|
|
|
pTemplate->style)))
|
|
|
|
{
|
|
|
|
p+=(istemplateex)?3:1;
|
|
|
|
TRACE("font %s\n",debugstr_w((LPCWSTR)p));
|
2002-11-25 03:45:19 +01:00
|
|
|
p += lstrlenW( (LPCWSTR)p ) + 1; /* the font name */
|
2002-10-13 19:54:48 +02:00
|
|
|
}
|
|
|
|
|
2002-11-25 03:45:19 +01:00
|
|
|
/* now process the DLGITEMTEMPLATE(EX) structs (plus custom data)
|
|
|
|
* that are following the DLGTEMPLATE(EX) data */
|
2002-10-13 19:54:48 +02:00
|
|
|
TRACE("%d items\n",nrofitems);
|
|
|
|
while (nrofitems > 0)
|
|
|
|
{
|
|
|
|
p = (WORD*)(((DWORD)p + 3) & ~3); /* DWORD align */
|
|
|
|
|
2002-11-25 03:45:19 +01:00
|
|
|
/* skip header */
|
2002-10-13 19:54:48 +02:00
|
|
|
p += (istemplateex ? sizeof(MyDLGITEMTEMPLATEEX) : sizeof(DLGITEMTEMPLATE))/sizeof(WORD);
|
|
|
|
|
2002-11-25 03:45:19 +01:00
|
|
|
/* check class */
|
2002-10-13 19:54:48 +02:00
|
|
|
switch ((WORD)*p)
|
|
|
|
{
|
|
|
|
case 0x0000:
|
|
|
|
p++;
|
|
|
|
break;
|
|
|
|
case 0xffff:
|
|
|
|
TRACE("class ordinal 0x%08lx\n",*(DWORD*)p);
|
|
|
|
p += 2;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
TRACE("class %s\n",debugstr_w((LPCWSTR)p));
|
|
|
|
p += lstrlenW( (LPCWSTR)p ) + 1;
|
|
|
|
break;
|
|
|
|
}
|
2002-11-25 03:45:19 +01:00
|
|
|
|
|
|
|
/* check title text */
|
2002-10-13 19:54:48 +02:00
|
|
|
switch ((WORD)*p)
|
|
|
|
{
|
|
|
|
case 0x0000:
|
|
|
|
p++;
|
|
|
|
break;
|
|
|
|
case 0xffff:
|
|
|
|
TRACE("text ordinal 0x%08lx\n",*(DWORD*)p);
|
|
|
|
p += 2;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
TRACE("text %s\n",debugstr_w((LPCWSTR)p));
|
|
|
|
p += lstrlenW( (LPCWSTR)p ) + 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
p += *p + 1; /* Skip extra data */
|
|
|
|
--nrofitems;
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACE("%p %p size 0x%08x\n",p, (WORD*)pTemplate,sizeof(WORD)*(p - (WORD*)pTemplate));
|
|
|
|
return (p - (WORD*)pTemplate)*sizeof(WORD);
|
|
|
|
|
|
|
|
}
|
1999-04-22 11:24:47 +02:00
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_CreatePage
|
|
|
|
*
|
1999-05-01 12:27:05 +02:00
|
|
|
* Creates a page.
|
1999-04-22 11:24:47 +02:00
|
|
|
*/
|
2000-11-09 21:25:27 +01:00
|
|
|
static BOOL PROPSHEET_CreatePage(HWND hwndParent,
|
1999-04-22 11:24:47 +02:00
|
|
|
int index,
|
1999-05-01 12:27:05 +02:00
|
|
|
const PropSheetInfo * psInfo,
|
2002-01-29 18:14:53 +01:00
|
|
|
LPCPROPSHEETPAGEW ppshpage)
|
1999-04-22 11:24:47 +02:00
|
|
|
{
|
|
|
|
DLGTEMPLATE* pTemplate;
|
|
|
|
HWND hwndPage;
|
|
|
|
RECT rc;
|
|
|
|
PropPageInfo* ppInfo = psInfo->proppage;
|
1999-09-19 14:14:38 +02:00
|
|
|
PADDING_INFO padding;
|
2000-02-25 21:49:49 +01:00
|
|
|
UINT pageWidth,pageHeight;
|
2000-11-09 21:25:27 +01:00
|
|
|
DWORD resSize;
|
|
|
|
LPVOID temp = NULL;
|
1999-04-22 11:24:47 +02:00
|
|
|
|
1999-06-12 17:45:58 +02:00
|
|
|
TRACE("index %d\n", index);
|
1999-04-22 11:24:47 +02:00
|
|
|
|
2002-05-14 20:38:07 +02:00
|
|
|
if (ppshpage == NULL)
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
if (ppshpage->dwFlags & PSP_DLGINDIRECT)
|
2002-10-13 19:54:48 +02:00
|
|
|
{
|
|
|
|
pTemplate = (DLGTEMPLATE*)ppshpage->u.pResource;
|
|
|
|
resSize = GetTemplateSize(pTemplate);
|
|
|
|
}
|
2003-07-09 04:49:52 +02:00
|
|
|
else if(ppshpage->dwFlags & PSP_INTERNAL_UNICODE)
|
1999-04-22 11:24:47 +02:00
|
|
|
{
|
2000-11-09 21:25:27 +01:00
|
|
|
HRSRC hResource;
|
|
|
|
HANDLE hTemplate;
|
|
|
|
|
2002-01-29 18:14:53 +01:00
|
|
|
hResource = FindResourceW(ppshpage->hInstance,
|
2000-09-19 04:43:00 +02:00
|
|
|
ppshpage->u.pszTemplate,
|
2003-09-10 05:56:47 +02:00
|
|
|
(LPWSTR)RT_DIALOG);
|
2000-11-09 21:25:27 +01:00
|
|
|
if(!hResource)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
resSize = SizeofResource(ppshpage->hInstance, hResource);
|
|
|
|
|
|
|
|
hTemplate = LoadResource(ppshpage->hInstance, hResource);
|
|
|
|
if(!hTemplate)
|
|
|
|
return FALSE;
|
|
|
|
|
2002-01-29 18:14:53 +01:00
|
|
|
pTemplate = (LPDLGTEMPLATEW)LockResource(hTemplate);
|
2000-11-09 21:25:27 +01:00
|
|
|
/*
|
|
|
|
* Make a copy of the dialog template to make it writable
|
|
|
|
*/
|
1999-04-22 11:24:47 +02:00
|
|
|
}
|
2003-07-09 04:49:52 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
HRSRC hResource;
|
|
|
|
HANDLE hTemplate;
|
|
|
|
|
|
|
|
hResource = FindResourceA(ppshpage->hInstance,
|
|
|
|
(LPSTR)ppshpage->u.pszTemplate,
|
2003-09-10 05:56:47 +02:00
|
|
|
(LPSTR)RT_DIALOG);
|
2003-07-09 04:49:52 +02:00
|
|
|
if(!hResource)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
resSize = SizeofResource(ppshpage->hInstance, hResource);
|
|
|
|
|
|
|
|
hTemplate = LoadResource(ppshpage->hInstance, hResource);
|
|
|
|
if(!hTemplate)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
pTemplate = (LPDLGTEMPLATEA)LockResource(hTemplate);
|
|
|
|
/*
|
|
|
|
* Make a copy of the dialog template to make it writable
|
|
|
|
*/
|
|
|
|
}
|
2003-09-22 23:32:33 +02:00
|
|
|
temp = Alloc(resSize);
|
2002-10-13 19:54:48 +02:00
|
|
|
if (!temp)
|
|
|
|
return FALSE;
|
|
|
|
|
2002-11-25 03:45:19 +01:00
|
|
|
TRACE("copying pTemplate %p into temp %p (%ld)\n", pTemplate, temp, resSize);
|
2002-10-13 19:54:48 +02:00
|
|
|
memcpy(temp, pTemplate, resSize);
|
|
|
|
pTemplate = temp;
|
1999-04-22 11:24:47 +02:00
|
|
|
|
|
|
|
if (((MyDLGTEMPLATEEX*)pTemplate)->signature == 0xFFFF)
|
|
|
|
{
|
1999-11-28 22:01:47 +01:00
|
|
|
((MyDLGTEMPLATEEX*)pTemplate)->style |= WS_CHILD | DS_CONTROL;
|
1999-04-22 11:24:47 +02:00
|
|
|
((MyDLGTEMPLATEEX*)pTemplate)->style &= ~DS_MODALFRAME;
|
|
|
|
((MyDLGTEMPLATEEX*)pTemplate)->style &= ~WS_CAPTION;
|
|
|
|
((MyDLGTEMPLATEEX*)pTemplate)->style &= ~WS_SYSMENU;
|
|
|
|
((MyDLGTEMPLATEEX*)pTemplate)->style &= ~WS_POPUP;
|
1999-07-20 16:56:08 +02:00
|
|
|
((MyDLGTEMPLATEEX*)pTemplate)->style &= ~WS_DISABLED;
|
1999-11-28 22:01:47 +01:00
|
|
|
((MyDLGTEMPLATEEX*)pTemplate)->style &= ~WS_VISIBLE;
|
2002-05-14 20:38:07 +02:00
|
|
|
((MyDLGTEMPLATEEX*)pTemplate)->style &= ~WS_THICKFRAME;
|
1999-04-22 11:24:47 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
1999-11-28 22:01:47 +01:00
|
|
|
pTemplate->style |= WS_CHILD | DS_CONTROL;
|
1999-04-22 11:24:47 +02:00
|
|
|
pTemplate->style &= ~DS_MODALFRAME;
|
|
|
|
pTemplate->style &= ~WS_CAPTION;
|
|
|
|
pTemplate->style &= ~WS_SYSMENU;
|
|
|
|
pTemplate->style &= ~WS_POPUP;
|
1999-07-20 16:56:08 +02:00
|
|
|
pTemplate->style &= ~WS_DISABLED;
|
1999-11-28 22:01:47 +01:00
|
|
|
pTemplate->style &= ~WS_VISIBLE;
|
2002-05-14 20:38:07 +02:00
|
|
|
pTemplate->style &= ~WS_THICKFRAME;
|
1999-04-22 11:24:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (psInfo->proppage[index].useCallback)
|
2003-11-04 05:23:00 +01:00
|
|
|
(*(ppshpage->pfnCallback))(0, PSPCB_CREATE,
|
2002-01-29 18:14:53 +01:00
|
|
|
(LPPROPSHEETPAGEW)ppshpage);
|
1999-04-22 11:24:47 +02:00
|
|
|
|
2003-07-09 04:49:52 +02:00
|
|
|
if(ppshpage->dwFlags & PSP_INTERNAL_UNICODE)
|
|
|
|
hwndPage = CreateDialogIndirectParamW(ppshpage->hInstance,
|
|
|
|
pTemplate,
|
|
|
|
hwndParent,
|
|
|
|
ppshpage->pfnDlgProc,
|
|
|
|
(LPARAM)ppshpage);
|
|
|
|
else
|
|
|
|
hwndPage = CreateDialogIndirectParamA(ppshpage->hInstance,
|
1999-05-08 17:38:57 +02:00
|
|
|
pTemplate,
|
|
|
|
hwndParent,
|
|
|
|
ppshpage->pfnDlgProc,
|
1999-05-08 20:28:13 +02:00
|
|
|
(LPARAM)ppshpage);
|
2000-11-09 21:25:27 +01:00
|
|
|
/* Free a no more needed copy */
|
|
|
|
if(temp)
|
2003-09-22 23:32:33 +02:00
|
|
|
Free(temp);
|
1999-04-22 11:24:47 +02:00
|
|
|
|
|
|
|
ppInfo[index].hwndPage = hwndPage;
|
|
|
|
|
2002-06-13 21:10:28 +02:00
|
|
|
if (psInfo->ppshheader.dwFlags & INTRNL_ANY_WIZARD) {
|
|
|
|
/* FIXME: This code may no longer be correct.
|
|
|
|
* It was not for the non-wizard path. (GLA 6/02)
|
|
|
|
*/
|
|
|
|
rc.left = psInfo->x;
|
|
|
|
rc.top = psInfo->y;
|
|
|
|
rc.right = psInfo->width;
|
|
|
|
rc.bottom = psInfo->height;
|
|
|
|
|
|
|
|
MapDialogRect(hwndParent, &rc);
|
|
|
|
|
|
|
|
pageWidth = rc.right - rc.left;
|
|
|
|
pageHeight = rc.bottom - rc.top;
|
|
|
|
|
|
|
|
padding = PROPSHEET_GetPaddingInfoWizard(hwndParent, psInfo);
|
2003-01-08 22:09:25 +01:00
|
|
|
TRACE("setting page %08lx, rc (%ld,%ld)-(%ld,%ld) w=%d, h=%d, padx=%d, pady=%d\n",
|
2002-06-13 21:10:28 +02:00
|
|
|
(DWORD)hwndPage, rc.left, rc.top, rc.right, rc.bottom,
|
|
|
|
pageWidth, pageHeight, padding.x, padding.y);
|
|
|
|
SetWindowPos(hwndPage, HWND_TOP,
|
|
|
|
rc.left + padding.x/2,
|
|
|
|
rc.top + padding.y/2,
|
|
|
|
pageWidth, pageHeight, 0);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/*
|
|
|
|
* Ask the Tab control to reduce the client rectangle to that
|
|
|
|
* it has available.
|
|
|
|
*/
|
|
|
|
PROPSHEET_GetPageRect(psInfo, hwndParent, &rc);
|
|
|
|
pageWidth = rc.right - rc.left;
|
|
|
|
pageHeight = rc.bottom - rc.top;
|
2003-01-08 22:09:25 +01:00
|
|
|
TRACE("setting page %08lx, rc (%ld,%ld)-(%ld,%ld) w=%d, h=%d\n",
|
2002-06-13 21:10:28 +02:00
|
|
|
(DWORD)hwndPage, rc.left, rc.top, rc.right, rc.bottom,
|
|
|
|
pageWidth, pageHeight);
|
|
|
|
SetWindowPos(hwndPage, HWND_TOP,
|
|
|
|
rc.left, rc.top,
|
|
|
|
pageWidth, pageHeight, 0);
|
1999-09-19 14:14:38 +02:00
|
|
|
}
|
1999-04-22 11:24:47 +02:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_ShowPage
|
|
|
|
*
|
|
|
|
* Displays or creates the specified page.
|
|
|
|
*/
|
|
|
|
static BOOL PROPSHEET_ShowPage(HWND hwndDlg, int index, PropSheetInfo * psInfo)
|
|
|
|
{
|
2001-08-06 19:51:09 +02:00
|
|
|
HWND hwndTabCtrl;
|
|
|
|
|
|
|
|
TRACE("active_page %d, index %d\n", psInfo->active_page, index);
|
1999-04-22 11:24:47 +02:00
|
|
|
if (index == psInfo->active_page)
|
2001-06-06 23:03:21 +02:00
|
|
|
{
|
2000-02-26 19:28:38 +01:00
|
|
|
if (GetTopWindow(hwndDlg) != psInfo->proppage[index].hwndPage)
|
1999-11-28 22:01:47 +01:00
|
|
|
SetWindowPos(psInfo->proppage[index].hwndPage, HWND_TOP, 0, 0, 0, 0, SWP_NOSIZE | SWP_NOMOVE);
|
2001-06-06 23:03:21 +02:00
|
|
|
return TRUE;
|
|
|
|
}
|
1999-04-22 11:24:47 +02:00
|
|
|
|
1999-11-28 22:01:47 +01:00
|
|
|
if (psInfo->proppage[index].hwndPage == 0)
|
1999-05-01 12:27:05 +02:00
|
|
|
{
|
2002-01-29 18:14:53 +01:00
|
|
|
LPCPROPSHEETPAGEW ppshpage;
|
1999-11-28 22:01:47 +01:00
|
|
|
|
2002-01-29 18:14:53 +01:00
|
|
|
ppshpage = (LPCPROPSHEETPAGEW)psInfo->proppage[index].hpage;
|
1999-11-28 22:01:47 +01:00
|
|
|
PROPSHEET_CreatePage(hwndDlg, index, psInfo, ppshpage);
|
2000-02-26 19:28:38 +01:00
|
|
|
}
|
1999-11-28 22:01:47 +01:00
|
|
|
|
2003-10-02 06:26:53 +02:00
|
|
|
PROPSHEET_SetTitleW(hwndDlg, psInfo->ppshheader.dwFlags,
|
|
|
|
psInfo->proppage[index].pszText);
|
|
|
|
|
2000-02-25 21:49:49 +01:00
|
|
|
if (psInfo->active_page != -1)
|
|
|
|
ShowWindow(psInfo->proppage[psInfo->active_page].hwndPage, SW_HIDE);
|
1999-11-28 22:01:47 +01:00
|
|
|
|
2000-02-25 21:49:49 +01:00
|
|
|
ShowWindow(psInfo->proppage[index].hwndPage, SW_SHOW);
|
1999-04-22 11:24:47 +02:00
|
|
|
|
2001-08-06 19:51:09 +02:00
|
|
|
/* Synchronize current selection with tab control
|
|
|
|
* It seems to be needed even in case of PSH_WIZARD (no tab controls there) */
|
|
|
|
hwndTabCtrl = GetDlgItem(hwndDlg, IDC_TABCONTROL);
|
2002-01-29 18:14:53 +01:00
|
|
|
SendMessageW(hwndTabCtrl, TCM_SETCURSEL, index, 0);
|
2000-02-26 19:28:38 +01:00
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
psInfo->active_page = index;
|
1999-11-28 22:01:47 +01:00
|
|
|
psInfo->activeValid = TRUE;
|
1999-04-22 11:24:47 +02:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
1999-09-19 14:14:38 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_Back
|
|
|
|
*/
|
|
|
|
static BOOL PROPSHEET_Back(HWND hwndDlg)
|
|
|
|
{
|
1999-11-28 22:01:47 +01:00
|
|
|
PSHNOTIFY psn;
|
1999-09-19 14:14:38 +02:00
|
|
|
HWND hwndPage;
|
2002-01-29 18:14:53 +01:00
|
|
|
PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
|
1999-09-19 14:14:38 +02:00
|
|
|
PropSheetInfoStr);
|
2001-06-06 23:03:21 +02:00
|
|
|
LRESULT result;
|
2002-05-14 20:38:07 +02:00
|
|
|
int idx;
|
1999-09-19 14:14:38 +02:00
|
|
|
|
2001-08-06 19:51:09 +02:00
|
|
|
TRACE("active_page %d\n", psInfo->active_page);
|
1999-11-28 22:01:47 +01:00
|
|
|
if (psInfo->active_page < 0)
|
1999-11-13 21:49:12 +01:00
|
|
|
return FALSE;
|
|
|
|
|
1999-11-28 22:01:47 +01:00
|
|
|
psn.hdr.code = PSN_WIZBACK;
|
|
|
|
psn.hdr.hwndFrom = hwndDlg;
|
|
|
|
psn.hdr.idFrom = 0;
|
|
|
|
psn.lParam = 0;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-09-19 14:14:38 +02:00
|
|
|
hwndPage = psInfo->proppage[psInfo->active_page].hwndPage;
|
|
|
|
|
2002-01-29 18:14:53 +01:00
|
|
|
result = SendMessageW(hwndPage, WM_NOTIFY, 0, (LPARAM) &psn);
|
2001-06-06 23:03:21 +02:00
|
|
|
if (result == -1)
|
1999-09-19 14:14:38 +02:00
|
|
|
return FALSE;
|
2002-05-14 20:38:07 +02:00
|
|
|
else if (result == 0)
|
|
|
|
idx = psInfo->active_page - 1;
|
|
|
|
else
|
|
|
|
idx = PROPSHEET_FindPageByResId(psInfo, result);
|
1999-09-19 14:14:38 +02:00
|
|
|
|
2002-05-14 20:38:07 +02:00
|
|
|
if (idx >= 0 && idx < psInfo->nPages)
|
1999-10-13 17:54:08 +02:00
|
|
|
{
|
2002-05-14 20:38:07 +02:00
|
|
|
if (PROPSHEET_CanSetCurSel(hwndDlg))
|
|
|
|
PROPSHEET_SetCurSel(hwndDlg, idx, -1, 0);
|
1999-10-13 17:54:08 +02:00
|
|
|
}
|
1999-09-19 14:14:38 +02:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_Next
|
|
|
|
*/
|
|
|
|
static BOOL PROPSHEET_Next(HWND hwndDlg)
|
|
|
|
{
|
1999-11-28 22:01:47 +01:00
|
|
|
PSHNOTIFY psn;
|
1999-09-19 14:14:38 +02:00
|
|
|
HWND hwndPage;
|
|
|
|
LRESULT msgResult = 0;
|
2002-01-29 18:14:53 +01:00
|
|
|
PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
|
1999-09-19 14:14:38 +02:00
|
|
|
PropSheetInfoStr);
|
2002-05-14 20:38:07 +02:00
|
|
|
int idx;
|
1999-09-19 14:14:38 +02:00
|
|
|
|
2001-08-06 19:51:09 +02:00
|
|
|
TRACE("active_page %d\n", psInfo->active_page);
|
1999-11-28 22:01:47 +01:00
|
|
|
if (psInfo->active_page < 0)
|
1999-11-13 21:49:12 +01:00
|
|
|
return FALSE;
|
|
|
|
|
1999-11-28 22:01:47 +01:00
|
|
|
psn.hdr.code = PSN_WIZNEXT;
|
|
|
|
psn.hdr.hwndFrom = hwndDlg;
|
|
|
|
psn.hdr.idFrom = 0;
|
|
|
|
psn.lParam = 0;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-09-19 14:14:38 +02:00
|
|
|
hwndPage = psInfo->proppage[psInfo->active_page].hwndPage;
|
|
|
|
|
1999-11-28 22:01:47 +01:00
|
|
|
msgResult = SendMessageA(hwndPage, WM_NOTIFY, 0, (LPARAM) &psn);
|
1999-09-19 14:14:38 +02:00
|
|
|
if (msgResult == -1)
|
|
|
|
return FALSE;
|
2002-05-14 20:38:07 +02:00
|
|
|
else if (msgResult == 0)
|
|
|
|
idx = psInfo->active_page + 1;
|
|
|
|
else
|
|
|
|
idx = PROPSHEET_FindPageByResId(psInfo, msgResult);
|
1999-09-19 14:14:38 +02:00
|
|
|
|
2002-05-14 20:38:07 +02:00
|
|
|
if (idx < psInfo->nPages )
|
1999-10-13 17:54:08 +02:00
|
|
|
{
|
2002-05-14 20:38:07 +02:00
|
|
|
if (PROPSHEET_CanSetCurSel(hwndDlg) != FALSE)
|
|
|
|
PROPSHEET_SetCurSel(hwndDlg, idx, 1, 0);
|
1999-10-13 17:54:08 +02:00
|
|
|
}
|
1999-09-19 14:14:38 +02:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_Finish
|
|
|
|
*/
|
|
|
|
static BOOL PROPSHEET_Finish(HWND hwndDlg)
|
|
|
|
{
|
1999-11-28 22:01:47 +01:00
|
|
|
PSHNOTIFY psn;
|
1999-09-19 14:14:38 +02:00
|
|
|
HWND hwndPage;
|
|
|
|
LRESULT msgResult = 0;
|
2002-01-29 18:14:53 +01:00
|
|
|
PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
|
1999-09-19 14:14:38 +02:00
|
|
|
PropSheetInfoStr);
|
|
|
|
|
2001-08-06 19:51:09 +02:00
|
|
|
TRACE("active_page %d\n", psInfo->active_page);
|
1999-11-13 21:49:12 +01:00
|
|
|
if (psInfo->active_page < 0)
|
|
|
|
return FALSE;
|
|
|
|
|
1999-11-28 22:01:47 +01:00
|
|
|
psn.hdr.code = PSN_WIZFINISH;
|
|
|
|
psn.hdr.hwndFrom = hwndDlg;
|
|
|
|
psn.hdr.idFrom = 0;
|
|
|
|
psn.lParam = 0;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-09-19 14:14:38 +02:00
|
|
|
hwndPage = psInfo->proppage[psInfo->active_page].hwndPage;
|
|
|
|
|
2002-01-29 18:14:53 +01:00
|
|
|
msgResult = SendMessageW(hwndPage, WM_NOTIFY, 0, (LPARAM) &psn);
|
1999-09-19 14:14:38 +02:00
|
|
|
|
|
|
|
TRACE("msg result %ld\n", msgResult);
|
|
|
|
|
|
|
|
if (msgResult != 0)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (psInfo->isModeless)
|
1999-11-28 22:01:47 +01:00
|
|
|
psInfo->activeValid = FALSE;
|
1999-09-19 14:14:38 +02:00
|
|
|
else
|
|
|
|
EndDialog(hwndDlg, TRUE);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_Apply
|
|
|
|
*/
|
1999-11-28 22:01:47 +01:00
|
|
|
static BOOL PROPSHEET_Apply(HWND hwndDlg, LPARAM lParam)
|
1999-04-22 11:24:47 +02:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
HWND hwndPage;
|
1999-11-28 22:01:47 +01:00
|
|
|
PSHNOTIFY psn;
|
2002-01-29 18:14:53 +01:00
|
|
|
PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
|
1999-04-22 11:24:47 +02:00
|
|
|
PropSheetInfoStr);
|
|
|
|
|
2001-08-06 19:51:09 +02:00
|
|
|
TRACE("active_page %d\n", psInfo->active_page);
|
1999-11-13 21:49:12 +01:00
|
|
|
if (psInfo->active_page < 0)
|
|
|
|
return FALSE;
|
|
|
|
|
1999-11-28 22:01:47 +01:00
|
|
|
psn.hdr.hwndFrom = hwndDlg;
|
|
|
|
psn.hdr.idFrom = 0;
|
|
|
|
psn.lParam = 0;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Send PSN_KILLACTIVE to the current page.
|
|
|
|
*/
|
1999-11-28 22:01:47 +01:00
|
|
|
psn.hdr.code = PSN_KILLACTIVE;
|
1999-04-22 11:24:47 +02:00
|
|
|
|
|
|
|
hwndPage = psInfo->proppage[psInfo->active_page].hwndPage;
|
|
|
|
|
1999-11-28 22:01:47 +01:00
|
|
|
if (SendMessageA(hwndPage, WM_NOTIFY, 0, (LPARAM) &psn) != FALSE)
|
1999-04-22 11:24:47 +02:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Send PSN_APPLY to all pages.
|
|
|
|
*/
|
1999-11-28 22:01:47 +01:00
|
|
|
psn.hdr.code = PSN_APPLY;
|
|
|
|
psn.lParam = lParam;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-05-01 12:27:05 +02:00
|
|
|
for (i = 0; i < psInfo->nPages; i++)
|
1999-04-22 11:24:47 +02:00
|
|
|
{
|
|
|
|
hwndPage = psInfo->proppage[i].hwndPage;
|
1999-11-28 22:01:47 +01:00
|
|
|
if (hwndPage)
|
|
|
|
{
|
2003-02-24 21:40:45 +01:00
|
|
|
switch (SendMessageA(hwndPage, WM_NOTIFY, 0, (LPARAM) &psn))
|
|
|
|
{
|
|
|
|
case PSNRET_INVALID:
|
|
|
|
PROPSHEET_ShowPage(hwndDlg, i, psInfo);
|
|
|
|
/* fall through */
|
|
|
|
case PSNRET_INVALID_NOCHANGEPAGE:
|
|
|
|
return FALSE;
|
|
|
|
}
|
1999-11-28 22:01:47 +01:00
|
|
|
}
|
|
|
|
}
|
1999-04-22 11:24:47 +02:00
|
|
|
|
1999-11-28 22:01:47 +01:00
|
|
|
if(lParam)
|
|
|
|
{
|
|
|
|
psInfo->activeValid = FALSE;
|
|
|
|
}
|
|
|
|
else if(psInfo->active_page >= 0)
|
|
|
|
{
|
|
|
|
psn.hdr.code = PSN_SETACTIVE;
|
|
|
|
psn.lParam = 0;
|
|
|
|
hwndPage = psInfo->proppage[psInfo->active_page].hwndPage;
|
|
|
|
SendMessageA(hwndPage, WM_NOTIFY, 0, (LPARAM) &psn);
|
1999-04-22 11:24:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_Cancel
|
|
|
|
*/
|
1999-11-28 22:01:47 +01:00
|
|
|
static void PROPSHEET_Cancel(HWND hwndDlg, LPARAM lParam)
|
1999-04-22 11:24:47 +02:00
|
|
|
{
|
2002-01-29 18:14:53 +01:00
|
|
|
PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
|
1999-04-22 11:24:47 +02:00
|
|
|
PropSheetInfoStr);
|
1999-11-13 21:49:12 +01:00
|
|
|
HWND hwndPage;
|
1999-11-28 22:01:47 +01:00
|
|
|
PSHNOTIFY psn;
|
|
|
|
int i;
|
1999-04-22 11:24:47 +02:00
|
|
|
|
2001-08-06 19:51:09 +02:00
|
|
|
TRACE("active_page %d\n", psInfo->active_page);
|
1999-11-13 21:49:12 +01:00
|
|
|
if (psInfo->active_page < 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
hwndPage = psInfo->proppage[psInfo->active_page].hwndPage;
|
1999-11-28 22:01:47 +01:00
|
|
|
psn.hdr.code = PSN_QUERYCANCEL;
|
|
|
|
psn.hdr.hwndFrom = hwndDlg;
|
|
|
|
psn.hdr.idFrom = 0;
|
|
|
|
psn.lParam = 0;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-11-28 22:01:47 +01:00
|
|
|
if (SendMessageA(hwndPage, WM_NOTIFY, 0, (LPARAM) &psn))
|
1999-04-22 11:24:47 +02:00
|
|
|
return;
|
|
|
|
|
1999-11-28 22:01:47 +01:00
|
|
|
psn.hdr.code = PSN_RESET;
|
|
|
|
psn.lParam = lParam;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-11-28 22:01:47 +01:00
|
|
|
for (i = 0; i < psInfo->nPages; i++)
|
|
|
|
{
|
|
|
|
hwndPage = psInfo->proppage[i].hwndPage;
|
1999-04-22 11:24:47 +02:00
|
|
|
|
1999-11-28 22:01:47 +01:00
|
|
|
if (hwndPage)
|
|
|
|
SendMessageA(hwndPage, WM_NOTIFY, 0, (LPARAM) &psn);
|
|
|
|
}
|
1999-04-22 11:24:47 +02:00
|
|
|
|
|
|
|
if (psInfo->isModeless)
|
1999-11-28 22:01:47 +01:00
|
|
|
{
|
|
|
|
/* makes PSM_GETCURRENTPAGEHWND return NULL */
|
|
|
|
psInfo->activeValid = FALSE;
|
|
|
|
}
|
1999-04-22 11:24:47 +02:00
|
|
|
else
|
|
|
|
EndDialog(hwndDlg, FALSE);
|
|
|
|
}
|
|
|
|
|
1999-05-01 12:27:05 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_Help
|
|
|
|
*/
|
|
|
|
static void PROPSHEET_Help(HWND hwndDlg)
|
|
|
|
{
|
2002-01-29 18:14:53 +01:00
|
|
|
PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
|
1999-05-01 12:27:05 +02:00
|
|
|
PropSheetInfoStr);
|
1999-11-13 21:49:12 +01:00
|
|
|
HWND hwndPage;
|
1999-11-28 22:01:47 +01:00
|
|
|
PSHNOTIFY psn;
|
1999-05-01 12:27:05 +02:00
|
|
|
|
2001-08-06 19:51:09 +02:00
|
|
|
TRACE("active_page %d\n", psInfo->active_page);
|
1999-11-13 21:49:12 +01:00
|
|
|
if (psInfo->active_page < 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
hwndPage = psInfo->proppage[psInfo->active_page].hwndPage;
|
1999-11-28 22:01:47 +01:00
|
|
|
psn.hdr.code = PSN_HELP;
|
|
|
|
psn.hdr.hwndFrom = hwndDlg;
|
|
|
|
psn.hdr.idFrom = 0;
|
|
|
|
psn.lParam = 0;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-11-28 22:01:47 +01:00
|
|
|
SendMessageA(hwndPage, WM_NOTIFY, 0, (LPARAM) &psn);
|
1999-05-01 12:27:05 +02:00
|
|
|
}
|
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_Changed
|
|
|
|
*/
|
|
|
|
static void PROPSHEET_Changed(HWND hwndDlg, HWND hwndDirtyPage)
|
|
|
|
{
|
|
|
|
int i;
|
2002-01-29 18:14:53 +01:00
|
|
|
PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
|
1999-04-22 11:24:47 +02:00
|
|
|
PropSheetInfoStr);
|
|
|
|
|
2001-08-06 19:51:09 +02:00
|
|
|
TRACE("\n");
|
1999-07-03 18:01:42 +02:00
|
|
|
if (!psInfo) return;
|
1999-04-22 11:24:47 +02:00
|
|
|
/*
|
|
|
|
* Set the dirty flag of this page.
|
|
|
|
*/
|
1999-05-01 12:27:05 +02:00
|
|
|
for (i = 0; i < psInfo->nPages; i++)
|
1999-04-22 11:24:47 +02:00
|
|
|
{
|
|
|
|
if (psInfo->proppage[i].hwndPage == hwndDirtyPage)
|
|
|
|
psInfo->proppage[i].isDirty = TRUE;
|
|
|
|
}
|
1999-01-24 20:14:58 +01:00
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
/*
|
|
|
|
* Enable the Apply button.
|
|
|
|
*/
|
|
|
|
if (psInfo->hasApply)
|
|
|
|
{
|
|
|
|
HWND hwndApplyBtn = GetDlgItem(hwndDlg, IDC_APPLY_BUTTON);
|
1999-01-17 17:32:32 +01:00
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
EnableWindow(hwndApplyBtn, TRUE);
|
|
|
|
}
|
|
|
|
}
|
1999-01-17 17:32:32 +01:00
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_UnChanged
|
|
|
|
*/
|
|
|
|
static void PROPSHEET_UnChanged(HWND hwndDlg, HWND hwndCleanPage)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
BOOL noPageDirty = TRUE;
|
|
|
|
HWND hwndApplyBtn = GetDlgItem(hwndDlg, IDC_APPLY_BUTTON);
|
2002-01-29 18:14:53 +01:00
|
|
|
PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
|
1999-04-22 11:24:47 +02:00
|
|
|
PropSheetInfoStr);
|
1999-01-17 17:32:32 +01:00
|
|
|
|
2001-08-06 19:51:09 +02:00
|
|
|
TRACE("\n");
|
1999-10-23 20:59:01 +02:00
|
|
|
if ( !psInfo ) return;
|
1999-05-01 12:27:05 +02:00
|
|
|
for (i = 0; i < psInfo->nPages; i++)
|
1999-04-22 11:24:47 +02:00
|
|
|
{
|
|
|
|
/* set the specified page as clean */
|
|
|
|
if (psInfo->proppage[i].hwndPage == hwndCleanPage)
|
|
|
|
psInfo->proppage[i].isDirty = FALSE;
|
1999-01-17 17:32:32 +01:00
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
/* look to see if there's any dirty pages */
|
|
|
|
if (psInfo->proppage[i].isDirty)
|
|
|
|
noPageDirty = FALSE;
|
|
|
|
}
|
1999-01-17 17:32:32 +01:00
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
/*
|
|
|
|
* Disable Apply button.
|
|
|
|
*/
|
|
|
|
if (noPageDirty)
|
|
|
|
EnableWindow(hwndApplyBtn, FALSE);
|
|
|
|
}
|
1999-01-17 17:32:32 +01:00
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_PressButton
|
|
|
|
*/
|
|
|
|
static void PROPSHEET_PressButton(HWND hwndDlg, int buttonID)
|
|
|
|
{
|
2001-08-06 19:51:09 +02:00
|
|
|
TRACE("buttonID %d\n", buttonID);
|
1999-04-22 11:24:47 +02:00
|
|
|
switch (buttonID)
|
|
|
|
{
|
|
|
|
case PSBTN_APPLYNOW:
|
2002-01-29 18:14:53 +01:00
|
|
|
PROPSHEET_DoCommand(hwndDlg, IDC_APPLY_BUTTON);
|
1999-04-22 11:24:47 +02:00
|
|
|
break;
|
|
|
|
case PSBTN_BACK:
|
1999-09-19 14:14:38 +02:00
|
|
|
PROPSHEET_Back(hwndDlg);
|
1999-04-22 11:24:47 +02:00
|
|
|
break;
|
|
|
|
case PSBTN_CANCEL:
|
2002-01-29 18:14:53 +01:00
|
|
|
PROPSHEET_DoCommand(hwndDlg, IDCANCEL);
|
1999-04-22 11:24:47 +02:00
|
|
|
break;
|
|
|
|
case PSBTN_FINISH:
|
1999-09-19 14:14:38 +02:00
|
|
|
PROPSHEET_Finish(hwndDlg);
|
1999-04-22 11:24:47 +02:00
|
|
|
break;
|
|
|
|
case PSBTN_HELP:
|
2002-01-29 18:14:53 +01:00
|
|
|
PROPSHEET_DoCommand(hwndDlg, IDHELP);
|
1999-04-22 11:24:47 +02:00
|
|
|
break;
|
|
|
|
case PSBTN_NEXT:
|
1999-09-19 14:14:38 +02:00
|
|
|
PROPSHEET_Next(hwndDlg);
|
1999-04-22 11:24:47 +02:00
|
|
|
break;
|
|
|
|
case PSBTN_OK:
|
2002-01-29 18:14:53 +01:00
|
|
|
PROPSHEET_DoCommand(hwndDlg, IDOK);
|
1999-04-22 11:24:47 +02:00
|
|
|
break;
|
|
|
|
default:
|
1999-06-12 17:45:58 +02:00
|
|
|
FIXME("Invalid button index %d\n", buttonID);
|
1999-04-22 11:24:47 +02:00
|
|
|
}
|
|
|
|
}
|
1999-01-17 17:32:32 +01:00
|
|
|
|
1999-10-13 17:54:08 +02:00
|
|
|
|
|
|
|
/*************************************************************************
|
2002-06-01 01:06:46 +02:00
|
|
|
* BOOL PROPSHEET_CanSetCurSel [Internal]
|
1999-10-13 17:54:08 +02:00
|
|
|
*
|
2000-12-27 05:02:46 +01:00
|
|
|
* Test whether the current page can be changed by sending a PSN_KILLACTIVE
|
1999-10-13 17:54:08 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* hwndDlg [I] handle to a Dialog hWnd
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE if Current Selection can change
|
|
|
|
*
|
|
|
|
* NOTES
|
|
|
|
*/
|
|
|
|
static BOOL PROPSHEET_CanSetCurSel(HWND hwndDlg)
|
|
|
|
{
|
2002-01-29 18:14:53 +01:00
|
|
|
PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
|
1999-10-13 17:54:08 +02:00
|
|
|
PropSheetInfoStr);
|
|
|
|
HWND hwndPage;
|
1999-11-28 22:01:47 +01:00
|
|
|
PSHNOTIFY psn;
|
2001-08-06 19:51:09 +02:00
|
|
|
BOOL res = FALSE;
|
1999-10-31 03:24:29 +01:00
|
|
|
|
2001-08-06 19:51:09 +02:00
|
|
|
TRACE("active_page %d\n", psInfo->active_page);
|
1999-11-28 22:01:47 +01:00
|
|
|
if (!psInfo)
|
2001-08-06 19:51:09 +02:00
|
|
|
{
|
|
|
|
res = FALSE;
|
|
|
|
goto end;
|
|
|
|
}
|
1999-11-28 22:01:47 +01:00
|
|
|
|
|
|
|
if (psInfo->active_page < 0)
|
2001-08-06 19:51:09 +02:00
|
|
|
{
|
|
|
|
res = TRUE;
|
|
|
|
goto end;
|
|
|
|
}
|
1999-11-28 22:01:47 +01:00
|
|
|
|
1999-10-13 17:54:08 +02:00
|
|
|
/*
|
|
|
|
* Notify the current page.
|
|
|
|
*/
|
|
|
|
hwndPage = psInfo->proppage[psInfo->active_page].hwndPage;
|
1999-11-28 22:01:47 +01:00
|
|
|
psn.hdr.code = PSN_KILLACTIVE;
|
|
|
|
psn.hdr.hwndFrom = hwndDlg;
|
|
|
|
psn.hdr.idFrom = 0;
|
|
|
|
psn.lParam = 0;
|
1999-10-13 17:54:08 +02:00
|
|
|
|
2001-08-06 19:51:09 +02:00
|
|
|
res = !SendMessageA(hwndPage, WM_NOTIFY, 0, (LPARAM) &psn);
|
|
|
|
|
|
|
|
end:
|
|
|
|
TRACE("<-- %d\n", res);
|
|
|
|
return res;
|
1999-10-13 17:54:08 +02:00
|
|
|
}
|
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_SetCurSel
|
|
|
|
*/
|
|
|
|
static BOOL PROPSHEET_SetCurSel(HWND hwndDlg,
|
|
|
|
int index,
|
2001-06-06 23:03:21 +02:00
|
|
|
int skipdir,
|
|
|
|
HPROPSHEETPAGE hpage
|
|
|
|
)
|
1999-04-22 11:24:47 +02:00
|
|
|
{
|
2002-01-29 18:14:53 +01:00
|
|
|
PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwndDlg, PropSheetInfoStr);
|
1999-04-22 11:24:47 +02:00
|
|
|
HWND hwndHelp = GetDlgItem(hwndDlg, IDHELP);
|
2002-06-28 19:31:57 +02:00
|
|
|
HWND hwndTabControl = GetDlgItem(hwndDlg, IDC_TABCONTROL);
|
1999-04-22 11:24:47 +02:00
|
|
|
|
2001-08-06 19:51:09 +02:00
|
|
|
TRACE("index %d, skipdir %d, hpage %p\n", index, skipdir, hpage);
|
1999-11-28 22:01:47 +01:00
|
|
|
/* hpage takes precedence over index */
|
1999-04-22 11:24:47 +02:00
|
|
|
if (hpage != NULL)
|
1999-07-24 12:16:53 +02:00
|
|
|
index = PROPSHEET_GetPageIndex(hpage, psInfo);
|
|
|
|
|
1999-11-13 21:49:12 +01:00
|
|
|
if (index < 0 || index >= psInfo->nPages)
|
|
|
|
{
|
|
|
|
TRACE("Could not find page to select!\n");
|
|
|
|
return FALSE;
|
1999-07-24 12:16:53 +02:00
|
|
|
}
|
|
|
|
|
2001-06-06 23:03:21 +02:00
|
|
|
while (1) {
|
2000-02-26 19:28:38 +01:00
|
|
|
int result;
|
|
|
|
PSHNOTIFY psn;
|
|
|
|
|
2002-06-28 19:31:57 +02:00
|
|
|
if (hwndTabControl)
|
|
|
|
SendMessageW(hwndTabControl, TCM_SETCURSEL, index, 0);
|
|
|
|
|
2000-02-26 19:28:38 +01:00
|
|
|
psn.hdr.code = PSN_SETACTIVE;
|
|
|
|
psn.hdr.hwndFrom = hwndDlg;
|
|
|
|
psn.hdr.idFrom = 0;
|
|
|
|
psn.lParam = 0;
|
|
|
|
|
2001-06-06 23:03:21 +02:00
|
|
|
if (!psInfo->proppage[index].hwndPage) {
|
2002-01-29 18:14:53 +01:00
|
|
|
LPCPROPSHEETPAGEW ppshpage = (LPCPROPSHEETPAGEW)psInfo->proppage[index].hpage;
|
2001-06-06 23:03:21 +02:00
|
|
|
PROPSHEET_CreatePage(hwndDlg, index, psInfo, ppshpage);
|
|
|
|
}
|
2000-02-26 19:28:38 +01:00
|
|
|
|
2002-01-29 18:14:53 +01:00
|
|
|
result = SendMessageW(psInfo->proppage[index].hwndPage, WM_NOTIFY, 0, (LPARAM) &psn);
|
2001-06-06 23:03:21 +02:00
|
|
|
if (!result)
|
|
|
|
break;
|
|
|
|
if (result == -1) {
|
|
|
|
index+=skipdir;
|
|
|
|
if (index < 0) {
|
|
|
|
index = 0;
|
2003-11-03 23:15:39 +01:00
|
|
|
WARN("Tried to skip before first property sheet page!\n");
|
2001-06-06 23:03:21 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (index >= psInfo->nPages) {
|
2003-11-03 23:15:39 +01:00
|
|
|
WARN("Tried to skip after last property sheet page!\n");
|
2001-06-06 23:03:21 +02:00
|
|
|
index = psInfo->nPages-1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2002-05-14 20:38:07 +02:00
|
|
|
else if (result != 0)
|
|
|
|
{
|
2003-11-03 23:15:39 +01:00
|
|
|
int old_index = index;
|
|
|
|
index = PROPSHEET_FindPageByResId(psInfo, result);
|
|
|
|
if(index >= psInfo->nPages) {
|
|
|
|
index = old_index;
|
|
|
|
WARN("Tried to skip to nonexistant page by res id\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
continue;
|
2002-05-14 20:38:07 +02:00
|
|
|
}
|
2000-02-26 19:28:38 +01:00
|
|
|
}
|
1999-04-22 11:24:47 +02:00
|
|
|
/*
|
|
|
|
* Display the new page.
|
|
|
|
*/
|
|
|
|
PROPSHEET_ShowPage(hwndDlg, index, psInfo);
|
|
|
|
|
|
|
|
if (psInfo->proppage[index].hasHelp)
|
|
|
|
EnableWindow(hwndHelp, TRUE);
|
|
|
|
else
|
|
|
|
EnableWindow(hwndHelp, FALSE);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2002-08-26 23:47:06 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_SetCurSelId
|
|
|
|
*
|
|
|
|
* Selects the page, specified by resource id.
|
|
|
|
*/
|
|
|
|
static void PROPSHEET_SetCurSelId(HWND hwndDlg, int id)
|
|
|
|
{
|
|
|
|
int idx;
|
|
|
|
PropSheetInfo* psInfo =
|
|
|
|
(PropSheetInfo*) GetPropW(hwndDlg, PropSheetInfoStr);
|
|
|
|
|
|
|
|
idx = PROPSHEET_FindPageByResId(psInfo, id);
|
|
|
|
if (idx < psInfo->nPages )
|
|
|
|
{
|
|
|
|
if (PROPSHEET_CanSetCurSel(hwndDlg) != FALSE)
|
|
|
|
PROPSHEET_SetCurSel(hwndDlg, idx, 1, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_SetTitleA
|
|
|
|
*/
|
|
|
|
static void PROPSHEET_SetTitleA(HWND hwndDlg, DWORD dwStyle, LPCSTR lpszText)
|
|
|
|
{
|
2002-01-29 18:14:53 +01:00
|
|
|
if(HIWORD(lpszText))
|
|
|
|
{
|
|
|
|
WCHAR szTitle[256];
|
2002-06-01 01:06:46 +02:00
|
|
|
MultiByteToWideChar(CP_ACP, 0, lpszText, -1,
|
2003-06-18 21:45:22 +02:00
|
|
|
szTitle, sizeof(szTitle));
|
2002-01-29 18:14:53 +01:00
|
|
|
PROPSHEET_SetTitleW(hwndDlg, dwStyle, szTitle);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
PROPSHEET_SetTitleW(hwndDlg, dwStyle, (LPCWSTR)lpszText);
|
|
|
|
}
|
|
|
|
}
|
1999-11-07 06:28:32 +01:00
|
|
|
|
2002-01-29 18:14:53 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_SetTitleW
|
|
|
|
*/
|
|
|
|
static void PROPSHEET_SetTitleW(HWND hwndDlg, DWORD dwStyle, LPCWSTR lpszText)
|
|
|
|
{
|
|
|
|
PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwndDlg, PropSheetInfoStr);
|
|
|
|
WCHAR szTitle[256];
|
|
|
|
|
|
|
|
TRACE("'%s' (style %08lx)\n", debugstr_w(lpszText), dwStyle);
|
1999-11-07 06:28:32 +01:00
|
|
|
if (HIWORD(lpszText) == 0) {
|
2002-06-01 01:06:46 +02:00
|
|
|
if (!LoadStringW(psInfo->ppshheader.hInstance,
|
2002-01-29 18:14:53 +01:00
|
|
|
LOWORD(lpszText), szTitle, sizeof(szTitle)-sizeof(WCHAR)))
|
1999-11-07 06:28:32 +01:00
|
|
|
return;
|
|
|
|
lpszText = szTitle;
|
|
|
|
}
|
1999-04-22 11:24:47 +02:00
|
|
|
if (dwStyle & PSH_PROPTITLE)
|
|
|
|
{
|
2002-01-29 18:14:53 +01:00
|
|
|
WCHAR* dest;
|
|
|
|
int lentitle = strlenW(lpszText);
|
|
|
|
int lenprop = strlenW(psInfo->strPropertiesFor);
|
1999-04-22 11:24:47 +02:00
|
|
|
|
2003-09-22 23:32:33 +02:00
|
|
|
dest = Alloc( (lentitle + lenprop + 1)*sizeof (WCHAR));
|
2002-01-29 18:14:53 +01:00
|
|
|
strcpyW(dest, psInfo->strPropertiesFor);
|
|
|
|
strcatW(dest, lpszText);
|
1999-04-22 11:24:47 +02:00
|
|
|
|
2002-01-29 18:14:53 +01:00
|
|
|
SetWindowTextW(hwndDlg, dest);
|
2003-09-22 23:32:33 +02:00
|
|
|
Free(dest);
|
1999-04-22 11:24:47 +02:00
|
|
|
}
|
|
|
|
else
|
2002-01-29 18:14:53 +01:00
|
|
|
SetWindowTextW(hwndDlg, lpszText);
|
1999-04-22 11:24:47 +02:00
|
|
|
}
|
|
|
|
|
1999-09-19 14:14:38 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_SetFinishTextA
|
|
|
|
*/
|
|
|
|
static void PROPSHEET_SetFinishTextA(HWND hwndDlg, LPCSTR lpszText)
|
|
|
|
{
|
|
|
|
HWND hwndButton = GetDlgItem(hwndDlg, IDC_FINISH_BUTTON);
|
|
|
|
|
2001-08-06 19:51:09 +02:00
|
|
|
TRACE("'%s'\n", lpszText);
|
1999-09-19 14:14:38 +02:00
|
|
|
/* Set text, show and enable the Finish button */
|
|
|
|
SetWindowTextA(hwndButton, lpszText);
|
|
|
|
ShowWindow(hwndButton, SW_SHOW);
|
|
|
|
EnableWindow(hwndButton, TRUE);
|
|
|
|
|
|
|
|
/* Make it default pushbutton */
|
|
|
|
SendMessageA(hwndDlg, DM_SETDEFID, IDC_FINISH_BUTTON, 0);
|
|
|
|
|
|
|
|
/* Hide Back button */
|
|
|
|
hwndButton = GetDlgItem(hwndDlg, IDC_BACK_BUTTON);
|
|
|
|
ShowWindow(hwndButton, SW_HIDE);
|
|
|
|
|
|
|
|
/* Hide Next button */
|
|
|
|
hwndButton = GetDlgItem(hwndDlg, IDC_NEXT_BUTTON);
|
|
|
|
ShowWindow(hwndButton, SW_HIDE);
|
|
|
|
}
|
|
|
|
|
2002-01-29 18:14:53 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_SetFinishTextW
|
|
|
|
*/
|
|
|
|
static void PROPSHEET_SetFinishTextW(HWND hwndDlg, LPCWSTR lpszText)
|
|
|
|
{
|
|
|
|
HWND hwndButton = GetDlgItem(hwndDlg, IDC_FINISH_BUTTON);
|
|
|
|
|
|
|
|
TRACE("'%s'\n", debugstr_w(lpszText));
|
|
|
|
/* Set text, show and enable the Finish button */
|
|
|
|
SetWindowTextW(hwndButton, lpszText);
|
|
|
|
ShowWindow(hwndButton, SW_SHOW);
|
|
|
|
EnableWindow(hwndButton, TRUE);
|
|
|
|
|
|
|
|
/* Make it default pushbutton */
|
|
|
|
SendMessageW(hwndDlg, DM_SETDEFID, IDC_FINISH_BUTTON, 0);
|
|
|
|
|
|
|
|
/* Hide Back button */
|
|
|
|
hwndButton = GetDlgItem(hwndDlg, IDC_BACK_BUTTON);
|
|
|
|
ShowWindow(hwndButton, SW_HIDE);
|
|
|
|
|
|
|
|
/* Hide Next button */
|
|
|
|
hwndButton = GetDlgItem(hwndDlg, IDC_NEXT_BUTTON);
|
|
|
|
ShowWindow(hwndButton, SW_HIDE);
|
|
|
|
}
|
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_QuerySiblings
|
|
|
|
*/
|
|
|
|
static LRESULT PROPSHEET_QuerySiblings(HWND hwndDlg,
|
|
|
|
WPARAM wParam, LPARAM lParam)
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
HWND hwndPage;
|
|
|
|
LRESULT msgResult = 0;
|
2002-01-29 18:14:53 +01:00
|
|
|
PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
|
1999-04-22 11:24:47 +02:00
|
|
|
PropSheetInfoStr);
|
|
|
|
|
1999-05-01 12:27:05 +02:00
|
|
|
while ((i < psInfo->nPages) && (msgResult == 0))
|
1999-04-22 11:24:47 +02:00
|
|
|
{
|
|
|
|
hwndPage = psInfo->proppage[i].hwndPage;
|
|
|
|
msgResult = SendMessageA(hwndPage, PSM_QUERYSIBLINGS, wParam, lParam);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return msgResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_AddPage
|
|
|
|
*/
|
|
|
|
static BOOL PROPSHEET_AddPage(HWND hwndDlg,
|
|
|
|
HPROPSHEETPAGE hpage)
|
|
|
|
{
|
2002-01-29 18:14:53 +01:00
|
|
|
PropSheetInfo * psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
|
1999-04-22 11:24:47 +02:00
|
|
|
PropSheetInfoStr);
|
|
|
|
HWND hwndTabControl = GetDlgItem(hwndDlg, IDC_TABCONTROL);
|
2002-01-29 18:14:53 +01:00
|
|
|
TCITEMW item;
|
|
|
|
LPCPROPSHEETPAGEW ppsp = (LPCPROPSHEETPAGEW)hpage;
|
1999-04-22 11:24:47 +02:00
|
|
|
|
2001-08-06 19:51:09 +02:00
|
|
|
TRACE("hpage %p\n", hpage);
|
1999-05-01 12:27:05 +02:00
|
|
|
/*
|
|
|
|
* Allocate and fill in a new PropPageInfo entry.
|
|
|
|
*/
|
2003-09-22 23:32:33 +02:00
|
|
|
psInfo->proppage = (PropPageInfo*) ReAlloc(psInfo->proppage,
|
1999-04-22 11:24:47 +02:00
|
|
|
sizeof(PropPageInfo) *
|
|
|
|
(psInfo->nPages + 1));
|
2002-05-14 05:48:48 +02:00
|
|
|
if (!PROPSHEET_CollectPageInfo(ppsp, psInfo, psInfo->nPages))
|
2000-02-25 21:49:49 +01:00
|
|
|
return FALSE;
|
1999-04-22 11:24:47 +02:00
|
|
|
|
1999-05-01 12:27:05 +02:00
|
|
|
psInfo->proppage[psInfo->nPages].hpage = hpage;
|
|
|
|
|
1999-11-28 22:01:47 +01:00
|
|
|
if (ppsp->dwFlags & PSP_PREMATURE)
|
|
|
|
{
|
|
|
|
/* Create the page but don't show it */
|
|
|
|
PROPSHEET_CreatePage(hwndDlg, psInfo->nPages, psInfo, ppsp);
|
|
|
|
}
|
1999-05-01 12:27:05 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Add a new tab to the tab control.
|
|
|
|
*/
|
|
|
|
item.mask = TCIF_TEXT;
|
2002-01-29 18:14:53 +01:00
|
|
|
item.pszText = (LPWSTR) psInfo->proppage[psInfo->nPages].pszText;
|
1999-05-01 12:27:05 +02:00
|
|
|
item.cchTextMax = MAX_TABTEXT_LENGTH;
|
|
|
|
|
2002-06-15 01:26:37 +02:00
|
|
|
if (psInfo->hImageList)
|
|
|
|
{
|
|
|
|
SendMessageW(hwndTabControl, TCM_SETIMAGELIST, 0, (LPARAM)psInfo->hImageList);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( psInfo->proppage[psInfo->nPages].hasIcon )
|
|
|
|
{
|
|
|
|
item.mask |= TCIF_IMAGE;
|
|
|
|
item.iImage = psInfo->nPages;
|
|
|
|
}
|
|
|
|
|
2002-01-29 18:14:53 +01:00
|
|
|
SendMessageW(hwndTabControl, TCM_INSERTITEMW, psInfo->nPages + 1,
|
1999-05-01 12:27:05 +02:00
|
|
|
(LPARAM)&item);
|
|
|
|
|
|
|
|
psInfo->nPages++;
|
|
|
|
|
1999-11-28 22:01:47 +01:00
|
|
|
/* If it is the only page - show it */
|
|
|
|
if(psInfo->nPages == 1)
|
2001-06-06 23:03:21 +02:00
|
|
|
PROPSHEET_SetCurSel(hwndDlg, 0, 1, 0);
|
1999-10-31 19:29:47 +01:00
|
|
|
return TRUE;
|
1999-04-22 11:24:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_RemovePage
|
|
|
|
*/
|
|
|
|
static BOOL PROPSHEET_RemovePage(HWND hwndDlg,
|
|
|
|
int index,
|
|
|
|
HPROPSHEETPAGE hpage)
|
|
|
|
{
|
2002-01-29 18:14:53 +01:00
|
|
|
PropSheetInfo * psInfo = (PropSheetInfo*) GetPropW(hwndDlg,
|
1999-04-22 11:24:47 +02:00
|
|
|
PropSheetInfoStr);
|
|
|
|
HWND hwndTabControl = GetDlgItem(hwndDlg, IDC_TABCONTROL);
|
1999-10-13 14:31:52 +02:00
|
|
|
PropPageInfo* oldPages;
|
1999-05-01 12:27:05 +02:00
|
|
|
|
2001-08-06 19:51:09 +02:00
|
|
|
TRACE("index %d, hpage %p\n", index, hpage);
|
1999-10-13 14:31:52 +02:00
|
|
|
if (!psInfo) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
oldPages = psInfo->proppage;
|
1999-05-01 12:27:05 +02:00
|
|
|
/*
|
|
|
|
* hpage takes precedence over index.
|
|
|
|
*/
|
|
|
|
if (hpage != 0)
|
|
|
|
{
|
|
|
|
index = PROPSHEET_GetPageIndex(hpage, psInfo);
|
1999-10-24 01:59:47 +02:00
|
|
|
}
|
1999-05-01 12:27:05 +02:00
|
|
|
|
2000-08-26 22:28:02 +02:00
|
|
|
/* Make sure that index is within range */
|
1999-10-24 01:59:47 +02:00
|
|
|
if (index < 0 || index >= psInfo->nPages)
|
1999-11-28 22:01:47 +01:00
|
|
|
{
|
1999-06-12 17:45:58 +02:00
|
|
|
TRACE("Could not find page to remove!\n");
|
1999-05-01 12:27:05 +02:00
|
|
|
return FALSE;
|
1999-11-28 22:01:47 +01:00
|
|
|
}
|
1999-05-01 12:27:05 +02:00
|
|
|
|
1999-06-12 17:45:58 +02:00
|
|
|
TRACE("total pages %d removing page %d active page %d\n",
|
1999-05-01 12:27:05 +02:00
|
|
|
psInfo->nPages, index, psInfo->active_page);
|
|
|
|
/*
|
|
|
|
* Check if we're removing the active page.
|
|
|
|
*/
|
|
|
|
if (index == psInfo->active_page)
|
|
|
|
{
|
|
|
|
if (psInfo->nPages > 1)
|
|
|
|
{
|
|
|
|
if (index > 0)
|
|
|
|
{
|
|
|
|
/* activate previous page */
|
2001-06-06 23:03:21 +02:00
|
|
|
PROPSHEET_SetCurSel(hwndDlg, index - 1, -1, 0);
|
1999-05-01 12:27:05 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* activate the next page */
|
2001-06-06 23:03:21 +02:00
|
|
|
PROPSHEET_SetCurSel(hwndDlg, index + 1, 1, 0);
|
2000-06-07 04:01:28 +02:00
|
|
|
psInfo->active_page = index;
|
1999-05-01 12:27:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
1999-11-28 22:01:47 +01:00
|
|
|
psInfo->active_page = -1;
|
|
|
|
if (!psInfo->isModeless)
|
|
|
|
{
|
|
|
|
EndDialog(hwndDlg, FALSE);
|
|
|
|
return TRUE;
|
|
|
|
}
|
1999-05-01 12:27:05 +02:00
|
|
|
}
|
|
|
|
}
|
1999-11-28 22:01:47 +01:00
|
|
|
else if (index < psInfo->active_page)
|
1999-05-01 12:27:05 +02:00
|
|
|
psInfo->active_page--;
|
|
|
|
|
1999-11-28 22:01:47 +01:00
|
|
|
/* Destroy page dialog window */
|
|
|
|
DestroyWindow(psInfo->proppage[index].hwndPage);
|
|
|
|
|
|
|
|
/* Free page resources */
|
|
|
|
if(psInfo->proppage[index].hpage)
|
|
|
|
{
|
2002-01-29 18:14:53 +01:00
|
|
|
PROPSHEETPAGEW* psp = (PROPSHEETPAGEW*)psInfo->proppage[index].hpage;
|
1999-11-28 22:01:47 +01:00
|
|
|
|
|
|
|
if ((psp->dwFlags & PSP_USETITLE) && psInfo->proppage[index].pszText)
|
|
|
|
HeapFree(GetProcessHeap(), 0, (LPVOID)psInfo->proppage[index].pszText);
|
|
|
|
|
|
|
|
DestroyPropertySheetPage(psInfo->proppage[index].hpage);
|
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-05-01 12:27:05 +02:00
|
|
|
/* Remove the tab */
|
2002-01-29 18:14:53 +01:00
|
|
|
SendMessageW(hwndTabControl, TCM_DELETEITEM, index, 0);
|
1999-05-01 12:27:05 +02:00
|
|
|
|
|
|
|
psInfo->nPages--;
|
2003-09-22 23:32:33 +02:00
|
|
|
psInfo->proppage = Alloc(sizeof(PropPageInfo) * psInfo->nPages);
|
1999-05-01 12:27:05 +02:00
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
if (index > 0)
|
1999-05-01 12:27:05 +02:00
|
|
|
memcpy(&psInfo->proppage[0], &oldPages[0], index * sizeof(PropPageInfo));
|
|
|
|
|
|
|
|
if (index < psInfo->nPages)
|
|
|
|
memcpy(&psInfo->proppage[index], &oldPages[index + 1],
|
|
|
|
(psInfo->nPages - index) * sizeof(PropPageInfo));
|
|
|
|
|
2003-09-22 23:32:33 +02:00
|
|
|
Free(oldPages);
|
1999-05-01 12:27:05 +02:00
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
1999-09-19 14:14:38 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_SetWizButtons
|
|
|
|
*
|
|
|
|
* This code will work if (and assumes that) the Next button is on top of the
|
|
|
|
* Finish button. ie. Finish comes after Next in the Z order.
|
|
|
|
* This means make sure the dialog template reflects this.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static void PROPSHEET_SetWizButtons(HWND hwndDlg, DWORD dwFlags)
|
|
|
|
{
|
1999-11-28 22:01:47 +01:00
|
|
|
HWND hwndBack = GetDlgItem(hwndDlg, IDC_BACK_BUTTON);
|
|
|
|
HWND hwndNext = GetDlgItem(hwndDlg, IDC_NEXT_BUTTON);
|
|
|
|
HWND hwndFinish = GetDlgItem(hwndDlg, IDC_FINISH_BUTTON);
|
1999-09-19 14:14:38 +02:00
|
|
|
|
|
|
|
TRACE("%ld\n", dwFlags);
|
|
|
|
|
1999-11-28 22:01:47 +01:00
|
|
|
EnableWindow(hwndBack, FALSE);
|
|
|
|
EnableWindow(hwndNext, FALSE);
|
|
|
|
EnableWindow(hwndFinish, FALSE);
|
|
|
|
|
1999-09-19 14:14:38 +02:00
|
|
|
if (dwFlags & PSWIZB_BACK)
|
1999-11-28 22:01:47 +01:00
|
|
|
EnableWindow(hwndBack, TRUE);
|
1999-09-19 14:14:38 +02:00
|
|
|
|
|
|
|
if (dwFlags & PSWIZB_NEXT)
|
|
|
|
{
|
|
|
|
/* Hide the Finish button */
|
1999-11-28 22:01:47 +01:00
|
|
|
ShowWindow(hwndFinish, SW_HIDE);
|
1999-09-19 14:14:38 +02:00
|
|
|
|
|
|
|
/* Show and enable the Next button */
|
1999-11-28 22:01:47 +01:00
|
|
|
ShowWindow(hwndNext, SW_SHOW);
|
|
|
|
EnableWindow(hwndNext, TRUE);
|
1999-09-19 14:14:38 +02:00
|
|
|
|
|
|
|
/* Set the Next button as the default pushbutton */
|
|
|
|
SendMessageA(hwndDlg, DM_SETDEFID, IDC_NEXT_BUTTON, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((dwFlags & PSWIZB_FINISH) || (dwFlags & PSWIZB_DISABLEDFINISH))
|
|
|
|
{
|
|
|
|
/* Hide the Next button */
|
1999-11-28 22:01:47 +01:00
|
|
|
ShowWindow(hwndNext, SW_HIDE);
|
1999-09-19 14:14:38 +02:00
|
|
|
|
|
|
|
/* Show the Finish button */
|
1999-11-28 22:01:47 +01:00
|
|
|
ShowWindow(hwndFinish, SW_SHOW);
|
1999-09-19 14:14:38 +02:00
|
|
|
|
|
|
|
if (dwFlags & PSWIZB_FINISH)
|
1999-11-28 22:01:47 +01:00
|
|
|
EnableWindow(hwndFinish, TRUE);
|
1999-09-19 14:14:38 +02:00
|
|
|
|
|
|
|
/* Set the Finish button as the default pushbutton */
|
|
|
|
SendMessageA(hwndDlg, DM_SETDEFID, IDC_FINISH_BUTTON, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-05-01 12:27:05 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_GetPageIndex
|
|
|
|
*
|
|
|
|
* Given a HPROPSHEETPAGE, returns the index of the corresponding page from
|
|
|
|
* the array of PropPageInfo.
|
|
|
|
*/
|
|
|
|
static int PROPSHEET_GetPageIndex(HPROPSHEETPAGE hpage, PropSheetInfo* psInfo)
|
|
|
|
{
|
|
|
|
BOOL found = FALSE;
|
|
|
|
int index = 0;
|
|
|
|
|
2001-08-06 19:51:09 +02:00
|
|
|
TRACE("hpage %p\n", hpage);
|
1999-05-01 12:27:05 +02:00
|
|
|
while ((index < psInfo->nPages) && (found == FALSE))
|
|
|
|
{
|
|
|
|
if (psInfo->proppage[index].hpage == hpage)
|
|
|
|
found = TRUE;
|
|
|
|
else
|
|
|
|
index++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (found == FALSE)
|
|
|
|
index = -1;
|
|
|
|
|
|
|
|
return index;
|
|
|
|
}
|
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_CleanUp
|
|
|
|
*/
|
|
|
|
static void PROPSHEET_CleanUp(HWND hwndDlg)
|
|
|
|
{
|
1999-11-28 22:01:47 +01:00
|
|
|
int i;
|
2002-01-29 18:14:53 +01:00
|
|
|
PropSheetInfo* psInfo = (PropSheetInfo*) RemovePropW(hwndDlg,
|
1999-04-22 11:24:47 +02:00
|
|
|
PropSheetInfoStr);
|
1999-08-14 17:51:10 +02:00
|
|
|
|
|
|
|
TRACE("\n");
|
2001-12-19 19:46:49 +01:00
|
|
|
if (!psInfo) return;
|
2000-07-08 14:48:13 +02:00
|
|
|
if (HIWORD(psInfo->ppshheader.pszCaption))
|
|
|
|
HeapFree(GetProcessHeap(), 0, (LPVOID)psInfo->ppshheader.pszCaption);
|
1999-11-28 22:01:47 +01:00
|
|
|
|
|
|
|
for (i = 0; i < psInfo->nPages; i++)
|
|
|
|
{
|
|
|
|
PROPSHEETPAGEA* psp = (PROPSHEETPAGEA*)psInfo->proppage[i].hpage;
|
|
|
|
|
|
|
|
if(psInfo->proppage[i].hwndPage)
|
|
|
|
DestroyWindow(psInfo->proppage[i].hwndPage);
|
|
|
|
|
|
|
|
if(psp)
|
|
|
|
{
|
|
|
|
if ((psp->dwFlags & PSP_USETITLE) && psInfo->proppage[i].pszText)
|
|
|
|
HeapFree(GetProcessHeap(), 0, (LPVOID)psInfo->proppage[i].pszText);
|
|
|
|
|
|
|
|
DestroyPropertySheetPage(psInfo->proppage[i].hpage);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-09-22 23:32:33 +02:00
|
|
|
Free(psInfo->proppage);
|
|
|
|
Free(psInfo->strPropertiesFor);
|
1999-08-14 17:51:10 +02:00
|
|
|
ImageList_Destroy(psInfo->hImageList);
|
1999-04-22 11:24:47 +02:00
|
|
|
|
|
|
|
GlobalFree((HGLOBAL)psInfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
2002-08-09 03:07:29 +02:00
|
|
|
* PropertySheet (COMCTL32.@)
|
|
|
|
* PropertySheetA (COMCTL32.@)
|
1998-12-10 16:49:22 +01:00
|
|
|
*/
|
1999-02-26 12:11:13 +01:00
|
|
|
INT WINAPI PropertySheetA(LPCPROPSHEETHEADERA lppsh)
|
1998-12-10 16:49:22 +01:00
|
|
|
{
|
1999-04-22 11:24:47 +02:00
|
|
|
int bRet = 0;
|
|
|
|
PropSheetInfo* psInfo = (PropSheetInfo*) GlobalAlloc(GPTR,
|
|
|
|
sizeof(PropSheetInfo));
|
2002-12-16 23:43:58 +01:00
|
|
|
UINT i, n;
|
1999-11-28 22:01:47 +01:00
|
|
|
BYTE* pByte;
|
1999-04-22 11:24:47 +02:00
|
|
|
|
2002-01-29 18:14:53 +01:00
|
|
|
TRACE("(%p)\n", lppsh);
|
|
|
|
|
|
|
|
PROPSHEET_CollectSheetInfoA(lppsh, psInfo);
|
1999-05-01 12:27:05 +02:00
|
|
|
|
2003-09-22 23:32:33 +02:00
|
|
|
psInfo->proppage = (PropPageInfo*) Alloc(sizeof(PropPageInfo) *
|
1999-05-01 12:27:05 +02:00
|
|
|
lppsh->nPages);
|
2000-07-08 14:48:13 +02:00
|
|
|
pByte = (BYTE*) psInfo->ppshheader.u3.ppsp;
|
1999-05-01 12:27:05 +02:00
|
|
|
|
2000-02-25 21:49:49 +01:00
|
|
|
for (n = i = 0; i < lppsh->nPages; i++, n++)
|
1999-05-01 12:27:05 +02:00
|
|
|
{
|
|
|
|
if (!(lppsh->dwFlags & PSH_PROPSHEETPAGE))
|
2000-07-08 14:48:13 +02:00
|
|
|
psInfo->proppage[n].hpage = psInfo->ppshheader.u3.phpage[i];
|
1999-11-28 22:01:47 +01:00
|
|
|
else
|
|
|
|
{
|
2000-02-25 21:49:49 +01:00
|
|
|
psInfo->proppage[n].hpage = CreatePropertySheetPageA((LPCPROPSHEETPAGEA)pByte);
|
1999-11-28 22:01:47 +01:00
|
|
|
pByte += ((LPPROPSHEETPAGEA)pByte)->dwSize;
|
|
|
|
}
|
|
|
|
|
2002-05-14 05:48:48 +02:00
|
|
|
if (!PROPSHEET_CollectPageInfo((LPCPROPSHEETPAGEW)psInfo->proppage[n].hpage,
|
2000-02-25 21:49:49 +01:00
|
|
|
psInfo, n))
|
|
|
|
{
|
|
|
|
if (lppsh->dwFlags & PSH_PROPSHEETPAGE)
|
|
|
|
DestroyPropertySheetPage(psInfo->proppage[n].hpage);
|
|
|
|
n--;
|
|
|
|
psInfo->nPages--;
|
|
|
|
}
|
1999-05-01 12:27:05 +02:00
|
|
|
}
|
1998-12-10 16:49:22 +01:00
|
|
|
|
2003-07-09 04:49:52 +02:00
|
|
|
psInfo->unicode = FALSE;
|
1999-04-22 11:24:47 +02:00
|
|
|
bRet = PROPSHEET_CreateDialog(psInfo);
|
1999-01-17 17:32:32 +01:00
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
return bRet;
|
1998-12-10 16:49:22 +01:00
|
|
|
}
|
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
/******************************************************************************
|
2002-08-09 03:07:29 +02:00
|
|
|
* PropertySheetW (COMCTL32.@)
|
1998-12-10 16:49:22 +01:00
|
|
|
*/
|
2002-01-29 18:14:53 +01:00
|
|
|
INT WINAPI PropertySheetW(LPCPROPSHEETHEADERW lppsh)
|
1998-12-10 16:49:22 +01:00
|
|
|
{
|
2002-01-29 18:14:53 +01:00
|
|
|
int bRet = 0;
|
|
|
|
PropSheetInfo* psInfo = (PropSheetInfo*) GlobalAlloc(GPTR,
|
|
|
|
sizeof(PropSheetInfo));
|
2002-12-16 23:43:58 +01:00
|
|
|
UINT i, n;
|
2002-01-29 18:14:53 +01:00
|
|
|
BYTE* pByte;
|
|
|
|
|
|
|
|
TRACE("(%p)\n", lppsh);
|
|
|
|
|
|
|
|
PROPSHEET_CollectSheetInfoW(lppsh, psInfo);
|
|
|
|
|
2003-09-22 23:32:33 +02:00
|
|
|
psInfo->proppage = (PropPageInfo*) Alloc(sizeof(PropPageInfo) *
|
2002-01-29 18:14:53 +01:00
|
|
|
lppsh->nPages);
|
|
|
|
pByte = (BYTE*) psInfo->ppshheader.u3.ppsp;
|
1998-12-10 16:49:22 +01:00
|
|
|
|
2002-01-29 18:14:53 +01:00
|
|
|
for (n = i = 0; i < lppsh->nPages; i++, n++)
|
|
|
|
{
|
|
|
|
if (!(lppsh->dwFlags & PSH_PROPSHEETPAGE))
|
|
|
|
psInfo->proppage[n].hpage = psInfo->ppshheader.u3.phpage[i];
|
|
|
|
else
|
|
|
|
{
|
|
|
|
psInfo->proppage[n].hpage = CreatePropertySheetPageW((LPCPROPSHEETPAGEW)pByte);
|
|
|
|
pByte += ((LPPROPSHEETPAGEW)pByte)->dwSize;
|
|
|
|
}
|
|
|
|
|
2002-05-14 05:48:48 +02:00
|
|
|
if (!PROPSHEET_CollectPageInfo((LPCPROPSHEETPAGEW)psInfo->proppage[n].hpage,
|
2002-01-29 18:14:53 +01:00
|
|
|
psInfo, n))
|
|
|
|
{
|
|
|
|
if (lppsh->dwFlags & PSH_PROPSHEETPAGE)
|
|
|
|
DestroyPropertySheetPage(psInfo->proppage[n].hpage);
|
|
|
|
n--;
|
|
|
|
psInfo->nPages--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-07-09 04:49:52 +02:00
|
|
|
psInfo->unicode = TRUE;
|
2002-01-29 18:14:53 +01:00
|
|
|
bRet = PROPSHEET_CreateDialog(psInfo);
|
|
|
|
|
|
|
|
return bRet;
|
1998-12-10 16:49:22 +01:00
|
|
|
}
|
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
/******************************************************************************
|
2002-08-09 03:07:29 +02:00
|
|
|
* CreatePropertySheetPage (COMCTL32.@)
|
|
|
|
* CreatePropertySheetPageA (COMCTL32.@)
|
1998-12-10 16:49:22 +01:00
|
|
|
*/
|
1999-05-01 12:27:05 +02:00
|
|
|
HPROPSHEETPAGE WINAPI CreatePropertySheetPageA(
|
|
|
|
LPCPROPSHEETPAGEA lpPropSheetPage)
|
1998-12-10 16:49:22 +01:00
|
|
|
{
|
2003-09-22 23:32:33 +02:00
|
|
|
PROPSHEETPAGEW* ppsp = Alloc(sizeof(PROPSHEETPAGEW));
|
1998-12-10 16:49:22 +01:00
|
|
|
|
2001-01-10 23:42:58 +01:00
|
|
|
memcpy(ppsp,lpPropSheetPage,min(lpPropSheetPage->dwSize,sizeof(PROPSHEETPAGEA)));
|
1999-05-01 12:27:05 +02:00
|
|
|
|
2003-07-09 04:49:52 +02:00
|
|
|
ppsp->dwFlags &= ~ PSP_INTERNAL_UNICODE;
|
2000-09-19 04:43:00 +02:00
|
|
|
if ( !(ppsp->dwFlags & PSP_DLGINDIRECT) && HIWORD( ppsp->u.pszTemplate ) )
|
2001-07-24 23:45:22 +02:00
|
|
|
{
|
2003-07-09 04:49:52 +02:00
|
|
|
int len = strlen(lpPropSheetPage->u.pszTemplate);
|
|
|
|
|
|
|
|
ppsp->u.pszTemplate = HeapAlloc( GetProcessHeap(),0,len+1 );
|
|
|
|
strcpy( (LPSTR)ppsp->u.pszTemplate, lpPropSheetPage->u.pszTemplate );
|
2001-07-24 23:45:22 +02:00
|
|
|
}
|
1999-11-28 22:01:47 +01:00
|
|
|
if ( (ppsp->dwFlags & PSP_USEICONID) && HIWORD( ppsp->u2.pszIcon ) )
|
2001-07-24 23:45:22 +02:00
|
|
|
{
|
2002-06-01 01:06:46 +02:00
|
|
|
PROPSHEET_AtoW(&ppsp->u2.pszIcon, lpPropSheetPage->u2.pszIcon);
|
2001-07-24 23:45:22 +02:00
|
|
|
}
|
1999-11-28 22:01:47 +01:00
|
|
|
|
|
|
|
if ((ppsp->dwFlags & PSP_USETITLE) && HIWORD( ppsp->pszTitle ))
|
2001-07-24 23:45:22 +02:00
|
|
|
{
|
2002-06-01 01:06:46 +02:00
|
|
|
PROPSHEET_AtoW(&ppsp->pszTitle, lpPropSheetPage->pszTitle);
|
2001-07-24 23:45:22 +02:00
|
|
|
}
|
1999-11-28 22:01:47 +01:00
|
|
|
else if ( !(ppsp->dwFlags & PSP_USETITLE) )
|
|
|
|
ppsp->pszTitle = NULL;
|
|
|
|
|
1999-05-01 12:27:05 +02:00
|
|
|
return (HPROPSHEETPAGE)ppsp;
|
1998-12-10 16:49:22 +01:00
|
|
|
}
|
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
/******************************************************************************
|
2002-08-09 03:07:29 +02:00
|
|
|
* CreatePropertySheetPageW (COMCTL32.@)
|
1998-12-10 16:49:22 +01:00
|
|
|
*/
|
1999-02-26 12:11:13 +01:00
|
|
|
HPROPSHEETPAGE WINAPI CreatePropertySheetPageW(LPCPROPSHEETPAGEW lpPropSheetPage)
|
1998-12-10 16:49:22 +01:00
|
|
|
{
|
2003-09-22 23:32:33 +02:00
|
|
|
PROPSHEETPAGEW* ppsp = Alloc(sizeof(PROPSHEETPAGEW));
|
2002-01-29 18:14:53 +01:00
|
|
|
|
|
|
|
memcpy(ppsp,lpPropSheetPage,min(lpPropSheetPage->dwSize,sizeof(PROPSHEETPAGEW)));
|
|
|
|
|
2003-07-09 04:49:52 +02:00
|
|
|
ppsp->dwFlags |= PSP_INTERNAL_UNICODE;
|
|
|
|
|
2002-01-29 18:14:53 +01:00
|
|
|
if ( !(ppsp->dwFlags & PSP_DLGINDIRECT) && HIWORD( ppsp->u.pszTemplate ) )
|
|
|
|
{
|
|
|
|
int len = strlenW(lpPropSheetPage->u.pszTemplate);
|
1998-12-10 16:49:22 +01:00
|
|
|
|
2002-01-29 18:14:53 +01:00
|
|
|
ppsp->u.pszTemplate = HeapAlloc( GetProcessHeap(),0,(len+1)*sizeof (WCHAR) );
|
|
|
|
strcpyW( (WCHAR *)ppsp->u.pszTemplate, lpPropSheetPage->u.pszTemplate );
|
|
|
|
}
|
|
|
|
if ( (ppsp->dwFlags & PSP_USEICONID) && HIWORD( ppsp->u2.pszIcon ) )
|
|
|
|
{
|
|
|
|
int len = strlenW(lpPropSheetPage->u2.pszIcon);
|
|
|
|
ppsp->u2.pszIcon = HeapAlloc( GetProcessHeap(), 0, (len+1)*sizeof (WCHAR) );
|
|
|
|
strcpyW( (WCHAR *)ppsp->u2.pszIcon, lpPropSheetPage->u2.pszIcon );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((ppsp->dwFlags & PSP_USETITLE) && HIWORD( ppsp->pszTitle ))
|
|
|
|
{
|
|
|
|
int len = strlenW(lpPropSheetPage->pszTitle);
|
|
|
|
ppsp->pszTitle = HeapAlloc( GetProcessHeap(), 0, (len+1)*sizeof (WCHAR) );
|
|
|
|
strcpyW( (WCHAR *)ppsp->pszTitle, lpPropSheetPage->pszTitle );
|
|
|
|
}
|
|
|
|
else if ( !(ppsp->dwFlags & PSP_USETITLE) )
|
|
|
|
ppsp->pszTitle = NULL;
|
|
|
|
|
|
|
|
return (HPROPSHEETPAGE)ppsp;
|
1998-12-10 16:49:22 +01:00
|
|
|
}
|
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
/******************************************************************************
|
2002-08-09 03:07:29 +02:00
|
|
|
* DestroyPropertySheetPage (COMCTL32.@)
|
1998-12-10 16:49:22 +01:00
|
|
|
*/
|
1999-02-26 12:11:13 +01:00
|
|
|
BOOL WINAPI DestroyPropertySheetPage(HPROPSHEETPAGE hPropPage)
|
1998-12-10 16:49:22 +01:00
|
|
|
{
|
2002-01-29 18:14:53 +01:00
|
|
|
PROPSHEETPAGEW *psp = (PROPSHEETPAGEW *)hPropPage;
|
1999-11-28 22:01:47 +01:00
|
|
|
|
|
|
|
if (!psp)
|
|
|
|
return FALSE;
|
|
|
|
|
2000-09-19 04:43:00 +02:00
|
|
|
if ( !(psp->dwFlags & PSP_DLGINDIRECT) && HIWORD( psp->u.pszTemplate ) )
|
|
|
|
HeapFree(GetProcessHeap(), 0, (LPVOID)psp->u.pszTemplate);
|
1999-11-28 22:01:47 +01:00
|
|
|
|
|
|
|
if ( (psp->dwFlags & PSP_USEICONID) && HIWORD( psp->u2.pszIcon ) )
|
|
|
|
HeapFree(GetProcessHeap(), 0, (LPVOID)psp->u2.pszIcon);
|
|
|
|
|
|
|
|
if ((psp->dwFlags & PSP_USETITLE) && HIWORD( psp->pszTitle ))
|
|
|
|
HeapFree(GetProcessHeap(), 0, (LPVOID)psp->pszTitle);
|
|
|
|
|
2003-09-22 23:32:33 +02:00
|
|
|
Free(hPropPage);
|
1999-05-01 12:27:05 +02:00
|
|
|
|
|
|
|
return TRUE;
|
1998-12-10 16:49:22 +01:00
|
|
|
}
|
|
|
|
|
1999-11-28 22:01:47 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_IsDialogMessage
|
|
|
|
*/
|
|
|
|
static BOOL PROPSHEET_IsDialogMessage(HWND hwnd, LPMSG lpMsg)
|
|
|
|
{
|
2002-01-29 18:14:53 +01:00
|
|
|
PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwnd, PropSheetInfoStr);
|
1999-11-28 22:01:47 +01:00
|
|
|
|
2001-08-06 19:51:09 +02:00
|
|
|
TRACE("\n");
|
1999-11-28 22:01:47 +01:00
|
|
|
if (!psInfo || (hwnd != lpMsg->hwnd && !IsChild(hwnd, lpMsg->hwnd)))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (lpMsg->message == WM_KEYDOWN && (GetKeyState(VK_CONTROL) & 0x8000))
|
|
|
|
{
|
|
|
|
int new_page = 0;
|
|
|
|
INT dlgCode = SendMessageA(lpMsg->hwnd, WM_GETDLGCODE, 0, (LPARAM)lpMsg);
|
|
|
|
|
|
|
|
if (!(dlgCode & DLGC_WANTMESSAGE))
|
|
|
|
{
|
|
|
|
switch (lpMsg->wParam)
|
|
|
|
{
|
|
|
|
case VK_TAB:
|
|
|
|
if (GetKeyState(VK_SHIFT) & 0x8000)
|
|
|
|
new_page = -1;
|
|
|
|
else
|
|
|
|
new_page = 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case VK_NEXT: new_page = 1; break;
|
|
|
|
case VK_PRIOR: new_page = -1; break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (new_page)
|
|
|
|
{
|
|
|
|
if (PROPSHEET_CanSetCurSel(hwnd) != FALSE)
|
|
|
|
{
|
|
|
|
new_page += psInfo->active_page;
|
|
|
|
|
|
|
|
if (new_page < 0)
|
|
|
|
new_page = psInfo->nPages - 1;
|
|
|
|
else if (new_page >= psInfo->nPages)
|
|
|
|
new_page = 0;
|
|
|
|
|
2001-06-06 23:03:21 +02:00
|
|
|
PROPSHEET_SetCurSel(hwnd, new_page, 1, 0);
|
1999-11-28 22:01:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return IsDialogMessageA(hwnd, lpMsg);
|
|
|
|
}
|
|
|
|
|
2002-01-29 18:14:53 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_DoCommand
|
|
|
|
*/
|
|
|
|
static BOOL PROPSHEET_DoCommand(HWND hwnd, WORD wID)
|
|
|
|
{
|
|
|
|
|
|
|
|
switch (wID) {
|
|
|
|
|
|
|
|
case IDOK:
|
|
|
|
case IDC_APPLY_BUTTON:
|
|
|
|
{
|
|
|
|
HWND hwndApplyBtn = GetDlgItem(hwnd, IDC_APPLY_BUTTON);
|
|
|
|
|
|
|
|
if (PROPSHEET_Apply(hwnd, wID == IDOK ? 1: 0) == FALSE)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (wID == IDOK)
|
|
|
|
{
|
|
|
|
PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwnd,
|
|
|
|
PropSheetInfoStr);
|
|
|
|
int result = TRUE;
|
|
|
|
|
|
|
|
if (psInfo->restartWindows)
|
|
|
|
result = ID_PSRESTARTWINDOWS;
|
|
|
|
|
|
|
|
/* reboot system takes precedence over restart windows */
|
|
|
|
if (psInfo->rebootSystem)
|
|
|
|
result = ID_PSREBOOTSYSTEM;
|
|
|
|
|
|
|
|
if (psInfo->isModeless)
|
|
|
|
psInfo->activeValid = FALSE;
|
|
|
|
else
|
|
|
|
EndDialog(hwnd, result);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
EnableWindow(hwndApplyBtn, FALSE);
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case IDC_BACK_BUTTON:
|
|
|
|
PROPSHEET_Back(hwnd);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IDC_NEXT_BUTTON:
|
|
|
|
PROPSHEET_Next(hwnd);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IDC_FINISH_BUTTON:
|
|
|
|
PROPSHEET_Finish(hwnd);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IDCANCEL:
|
|
|
|
PROPSHEET_Cancel(hwnd, 0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IDHELP:
|
|
|
|
PROPSHEET_Help(hwnd);
|
|
|
|
break;
|
2004-01-27 21:11:05 +01:00
|
|
|
|
|
|
|
default:
|
|
|
|
return FALSE;
|
2002-01-29 18:14:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* PROPSHEET_DialogProc
|
|
|
|
*/
|
2002-10-31 02:04:39 +01:00
|
|
|
INT_PTR CALLBACK
|
1999-04-22 11:24:47 +02:00
|
|
|
PROPSHEET_DialogProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
|
|
|
{
|
2002-11-25 03:45:19 +01:00
|
|
|
TRACE("hwnd=%p msg=0x%04x wparam=%x lparam=%lx\n",
|
2002-01-29 18:14:53 +01:00
|
|
|
hwnd, uMsg, wParam, lParam);
|
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
switch (uMsg)
|
|
|
|
{
|
|
|
|
case WM_INITDIALOG:
|
|
|
|
{
|
|
|
|
PropSheetInfo* psInfo = (PropSheetInfo*) lParam;
|
2003-09-22 23:32:33 +02:00
|
|
|
WCHAR* strCaption = (WCHAR*)Alloc(MAX_CAPTION_LENGTH*sizeof(WCHAR));
|
1999-04-22 11:24:47 +02:00
|
|
|
HWND hwndTabCtrl = GetDlgItem(hwnd, IDC_TABCONTROL);
|
2002-01-29 18:14:53 +01:00
|
|
|
LPCPROPSHEETPAGEW ppshpage;
|
1999-11-28 22:01:47 +01:00
|
|
|
int idx;
|
1999-04-22 11:24:47 +02:00
|
|
|
|
2002-01-29 18:14:53 +01:00
|
|
|
SetPropW(hwnd, PropSheetInfoStr, (HANDLE)psInfo);
|
1999-11-13 21:49:12 +01:00
|
|
|
|
2000-07-08 14:48:13 +02:00
|
|
|
/*
|
2002-06-01 01:06:46 +02:00
|
|
|
* psInfo->hwnd is not being used by WINE code - it exists
|
|
|
|
* for compatibility with "real" Windoze. The same about
|
2000-07-08 14:48:13 +02:00
|
|
|
* SetWindowLong - WINE is only using the PropSheetInfoStr
|
|
|
|
* property.
|
|
|
|
*/
|
|
|
|
psInfo->hwnd = hwnd;
|
2002-01-29 18:14:53 +01:00
|
|
|
SetWindowLongW(hwnd,DWL_USER,(LONG)psInfo);
|
2000-07-08 14:48:13 +02:00
|
|
|
|
2003-07-21 22:01:59 +02:00
|
|
|
/* set up the Next and Back buttons by default */
|
|
|
|
PROPSHEET_SetWizButtons(hwnd, PSWIZB_BACK|PSWIZB_NEXT);
|
|
|
|
|
1999-08-18 20:25:46 +02:00
|
|
|
/*
|
|
|
|
* Small icon in the title bar.
|
|
|
|
*/
|
2000-07-08 14:48:13 +02:00
|
|
|
if ((psInfo->ppshheader.dwFlags & PSH_USEICONID) ||
|
|
|
|
(psInfo->ppshheader.dwFlags & PSH_USEHICON))
|
1999-08-18 20:25:46 +02:00
|
|
|
{
|
|
|
|
HICON hIcon;
|
|
|
|
int icon_cx = GetSystemMetrics(SM_CXSMICON);
|
|
|
|
int icon_cy = GetSystemMetrics(SM_CYSMICON);
|
|
|
|
|
2000-07-08 14:48:13 +02:00
|
|
|
if (psInfo->ppshheader.dwFlags & PSH_USEICONID)
|
2002-01-29 18:14:53 +01:00
|
|
|
hIcon = LoadImageW(psInfo->ppshheader.hInstance,
|
2000-09-19 04:43:00 +02:00
|
|
|
psInfo->ppshheader.u.pszIcon,
|
1999-08-18 20:25:46 +02:00
|
|
|
IMAGE_ICON,
|
|
|
|
icon_cx, icon_cy,
|
|
|
|
LR_DEFAULTCOLOR);
|
|
|
|
else
|
2000-09-19 04:43:00 +02:00
|
|
|
hIcon = psInfo->ppshheader.u.hIcon;
|
1999-08-18 20:25:46 +02:00
|
|
|
|
2002-10-10 23:22:09 +02:00
|
|
|
SendMessageW(hwnd, WM_SETICON, 0, (LPARAM)hIcon);
|
1999-08-18 20:25:46 +02:00
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-07-08 14:48:13 +02:00
|
|
|
if (psInfo->ppshheader.dwFlags & PSH_USEHICON)
|
2002-10-10 23:22:09 +02:00
|
|
|
SendMessageW(hwnd, WM_SETICON, 0, (LPARAM)psInfo->ppshheader.u.hIcon);
|
1999-08-18 20:25:46 +02:00
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
psInfo->strPropertiesFor = strCaption;
|
|
|
|
|
2002-01-29 18:14:53 +01:00
|
|
|
GetWindowTextW(hwnd, psInfo->strPropertiesFor, MAX_CAPTION_LENGTH);
|
1999-04-22 11:24:47 +02:00
|
|
|
|
1999-10-31 03:24:29 +01:00
|
|
|
PROPSHEET_CreateTabControl(hwnd, psInfo);
|
|
|
|
|
2002-01-29 18:14:53 +01:00
|
|
|
if (psInfo->ppshheader.dwFlags & INTRNL_ANY_WIZARD)
|
1999-09-19 14:14:38 +02:00
|
|
|
{
|
|
|
|
if (PROPSHEET_IsTooSmallWizard(hwnd, psInfo))
|
|
|
|
{
|
|
|
|
PROPSHEET_AdjustSizeWizard(hwnd, psInfo);
|
|
|
|
PROPSHEET_AdjustButtonsWizard(hwnd, psInfo);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
1999-04-22 11:24:47 +02:00
|
|
|
{
|
2000-02-25 21:49:49 +01:00
|
|
|
if (PROPSHEET_SizeMismatch(hwnd, psInfo))
|
1999-09-19 14:14:38 +02:00
|
|
|
{
|
|
|
|
PROPSHEET_AdjustSize(hwnd, psInfo);
|
|
|
|
PROPSHEET_AdjustButtons(hwnd, psInfo);
|
|
|
|
}
|
1999-04-22 11:24:47 +02:00
|
|
|
}
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
if (psInfo->useCallback)
|
|
|
|
(*(psInfo->ppshheader.pfnCallback))(hwnd,
|
|
|
|
PSCB_INITIALIZED, (LPARAM)0);
|
1999-10-23 18:57:28 +02:00
|
|
|
|
1999-11-28 22:01:47 +01:00
|
|
|
idx = psInfo->active_page;
|
2002-01-29 18:14:53 +01:00
|
|
|
ppshpage = (LPCPROPSHEETPAGEW)psInfo->proppage[idx].hpage;
|
1999-11-28 22:01:47 +01:00
|
|
|
psInfo->active_page = -1;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2001-06-06 23:03:21 +02:00
|
|
|
PROPSHEET_SetCurSel(hwnd, idx, 1, psInfo->proppage[idx].hpage);
|
1999-09-19 14:14:38 +02:00
|
|
|
|
2001-08-06 19:51:09 +02:00
|
|
|
/* doing TCM_SETCURSEL seems to be needed even in case of PSH_WIZARD,
|
|
|
|
* as some programs call TCM_GETCURSEL to get the current selection
|
|
|
|
* from which to switch to the next page */
|
2002-01-29 18:14:53 +01:00
|
|
|
SendMessageW(hwndTabCtrl, TCM_SETCURSEL, psInfo->active_page, 0);
|
1999-04-22 11:24:47 +02:00
|
|
|
|
2000-07-08 14:48:13 +02:00
|
|
|
if (!HIWORD(psInfo->ppshheader.pszCaption) &&
|
|
|
|
psInfo->ppshheader.hInstance)
|
1999-10-23 18:57:28 +02:00
|
|
|
{
|
2002-01-29 18:14:53 +01:00
|
|
|
WCHAR szText[256];
|
1999-10-23 18:57:28 +02:00
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
if (LoadStringW(psInfo->ppshheader.hInstance,
|
2000-07-08 14:48:13 +02:00
|
|
|
(UINT)psInfo->ppshheader.pszCaption, szText, 255))
|
2002-01-29 18:14:53 +01:00
|
|
|
PROPSHEET_SetTitleW(hwnd, psInfo->ppshheader.dwFlags, szText);
|
1999-10-23 18:57:28 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2002-01-29 18:14:53 +01:00
|
|
|
PROPSHEET_SetTitleW(hwnd, psInfo->ppshheader.dwFlags,
|
2000-07-08 14:48:13 +02:00
|
|
|
psInfo->ppshheader.pszCaption);
|
1999-10-23 18:57:28 +02:00
|
|
|
}
|
1999-04-22 11:24:47 +02:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
case WM_DESTROY:
|
|
|
|
PROPSHEET_CleanUp(hwnd);
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
case WM_CLOSE:
|
1999-11-28 22:01:47 +01:00
|
|
|
PROPSHEET_Cancel(hwnd, 1);
|
1999-04-22 11:24:47 +02:00
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
case WM_COMMAND:
|
2004-01-27 21:11:05 +01:00
|
|
|
if (!PROPSHEET_DoCommand(hwnd, LOWORD(wParam)))
|
|
|
|
{
|
|
|
|
PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwnd, PropSheetInfoStr);
|
|
|
|
|
|
|
|
/* No default handler, forward notification to active page */
|
|
|
|
if (psInfo->activeValid && psInfo->active_page != -1)
|
|
|
|
{
|
|
|
|
HWND hwndPage = psInfo->proppage[psInfo->active_page].hwndPage;
|
|
|
|
SendMessageW(hwndPage, WM_COMMAND, wParam, lParam);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return TRUE;
|
1999-04-22 11:24:47 +02:00
|
|
|
|
|
|
|
case WM_NOTIFY:
|
|
|
|
{
|
|
|
|
NMHDR* pnmh = (LPNMHDR) lParam;
|
|
|
|
|
|
|
|
if (pnmh->code == TCN_SELCHANGE)
|
|
|
|
{
|
2002-01-29 18:14:53 +01:00
|
|
|
int index = SendMessageW(pnmh->hwndFrom, TCM_GETCURSEL, 0, 0);
|
2001-06-06 23:03:21 +02:00
|
|
|
PROPSHEET_SetCurSel(hwnd, index, 1, 0);
|
1999-04-22 11:24:47 +02:00
|
|
|
}
|
|
|
|
|
1999-10-13 17:54:08 +02:00
|
|
|
if(pnmh->code == TCN_SELCHANGING)
|
|
|
|
{
|
|
|
|
BOOL bRet = PROPSHEET_CanSetCurSel(hwnd);
|
2002-01-29 18:14:53 +01:00
|
|
|
SetWindowLongW(hwnd, DWL_MSGRESULT, !bRet);
|
1999-10-13 17:54:08 +02:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2000-11-09 21:25:27 +01:00
|
|
|
return FALSE;
|
1999-04-22 11:24:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
case PSM_GETCURRENTPAGEHWND:
|
|
|
|
{
|
2002-01-29 18:14:53 +01:00
|
|
|
PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwnd,
|
1999-04-22 11:24:47 +02:00
|
|
|
PropSheetInfoStr);
|
|
|
|
HWND hwndPage = 0;
|
|
|
|
|
1999-11-28 22:01:47 +01:00
|
|
|
if (psInfo->activeValid && psInfo->active_page != -1)
|
1999-04-22 11:24:47 +02:00
|
|
|
hwndPage = psInfo->proppage[psInfo->active_page].hwndPage;
|
|
|
|
|
2002-09-06 21:41:17 +02:00
|
|
|
SetWindowLongW(hwnd, DWL_MSGRESULT, (LONG)hwndPage);
|
1999-04-22 11:24:47 +02:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
case PSM_CHANGED:
|
|
|
|
PROPSHEET_Changed(hwnd, (HWND)wParam);
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
case PSM_UNCHANGED:
|
|
|
|
PROPSHEET_UnChanged(hwnd, (HWND)wParam);
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
case PSM_GETTABCONTROL:
|
|
|
|
{
|
|
|
|
HWND hwndTabCtrl = GetDlgItem(hwnd, IDC_TABCONTROL);
|
|
|
|
|
2002-09-06 21:41:17 +02:00
|
|
|
SetWindowLongW(hwnd, DWL_MSGRESULT, (LONG)hwndTabCtrl);
|
1999-04-22 11:24:47 +02:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
case PSM_SETCURSEL:
|
|
|
|
{
|
|
|
|
BOOL msgResult;
|
|
|
|
|
1999-10-13 17:54:08 +02:00
|
|
|
msgResult = PROPSHEET_CanSetCurSel(hwnd);
|
|
|
|
if(msgResult != FALSE)
|
|
|
|
{
|
|
|
|
msgResult = PROPSHEET_SetCurSel(hwnd,
|
|
|
|
(int)wParam,
|
2001-06-06 23:03:21 +02:00
|
|
|
1,
|
1999-10-13 17:54:08 +02:00
|
|
|
(HPROPSHEETPAGE)lParam);
|
|
|
|
}
|
1999-04-22 11:24:47 +02:00
|
|
|
|
2002-01-29 18:14:53 +01:00
|
|
|
SetWindowLongW(hwnd, DWL_MSGRESULT, msgResult);
|
1999-04-22 11:24:47 +02:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
case PSM_CANCELTOCLOSE:
|
|
|
|
{
|
2002-01-29 18:14:53 +01:00
|
|
|
WCHAR buf[MAX_BUTTONTEXT_LENGTH];
|
1999-04-22 11:24:47 +02:00
|
|
|
HWND hwndOK = GetDlgItem(hwnd, IDOK);
|
|
|
|
HWND hwndCancel = GetDlgItem(hwnd, IDCANCEL);
|
|
|
|
|
|
|
|
EnableWindow(hwndCancel, FALSE);
|
2002-01-29 18:14:53 +01:00
|
|
|
if (LoadStringW(COMCTL32_hModule, IDS_CLOSE, buf, sizeof(buf)))
|
|
|
|
SetWindowTextW(hwndOK, buf);
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-11-28 22:01:47 +01:00
|
|
|
return FALSE;
|
1999-04-22 11:24:47 +02:00
|
|
|
}
|
1999-01-17 17:32:32 +01:00
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
case PSM_RESTARTWINDOWS:
|
|
|
|
{
|
2002-01-29 18:14:53 +01:00
|
|
|
PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwnd,
|
1999-04-22 11:24:47 +02:00
|
|
|
PropSheetInfoStr);
|
1999-01-17 17:32:32 +01:00
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
psInfo->restartWindows = TRUE;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
case PSM_REBOOTSYSTEM:
|
|
|
|
{
|
2002-06-01 01:06:46 +02:00
|
|
|
PropSheetInfo* psInfo = (PropSheetInfo*) GetPropW(hwnd,
|
1999-04-22 11:24:47 +02:00
|
|
|
PropSheetInfoStr);
|
|
|
|
|
|
|
|
psInfo->rebootSystem = TRUE;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
case PSM_SETTITLEA:
|
|
|
|
PROPSHEET_SetTitleA(hwnd, (DWORD) wParam, (LPCSTR) lParam);
|
|
|
|
return TRUE;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2002-01-29 18:14:53 +01:00
|
|
|
case PSM_SETTITLEW:
|
|
|
|
PROPSHEET_SetTitleW(hwnd, (DWORD) wParam, (LPCWSTR) lParam);
|
|
|
|
return TRUE;
|
1999-04-22 11:24:47 +02:00
|
|
|
|
|
|
|
case PSM_APPLY:
|
|
|
|
{
|
1999-11-28 22:01:47 +01:00
|
|
|
BOOL msgResult = PROPSHEET_Apply(hwnd, 0);
|
1999-04-22 11:24:47 +02:00
|
|
|
|
2002-01-29 18:14:53 +01:00
|
|
|
SetWindowLongW(hwnd, DWL_MSGRESULT, msgResult);
|
1999-04-22 11:24:47 +02:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
case PSM_QUERYSIBLINGS:
|
|
|
|
{
|
|
|
|
LRESULT msgResult = PROPSHEET_QuerySiblings(hwnd, wParam, lParam);
|
|
|
|
|
2002-01-29 18:14:53 +01:00
|
|
|
SetWindowLongW(hwnd, DWL_MSGRESULT, msgResult);
|
1999-04-22 11:24:47 +02:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
1999-05-01 12:27:05 +02:00
|
|
|
case PSM_ADDPAGE:
|
1999-10-31 19:29:47 +01:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Note: MSVC++ 6.0 documentation says that PSM_ADDPAGE does not have
|
|
|
|
* a return value. This is not true. PSM_ADDPAGE returns TRUE
|
|
|
|
* on success or FALSE otherwise, as specified on MSDN Online.
|
|
|
|
* Also see the MFC code for
|
|
|
|
* CPropertySheet::AddPage(CPropertyPage* pPage).
|
|
|
|
*/
|
|
|
|
|
|
|
|
BOOL msgResult = PROPSHEET_AddPage(hwnd, (HPROPSHEETPAGE)lParam);
|
|
|
|
|
2002-01-29 18:14:53 +01:00
|
|
|
SetWindowLongW(hwnd, DWL_MSGRESULT, msgResult);
|
1999-10-31 19:29:47 +01:00
|
|
|
|
1999-05-01 12:27:05 +02:00
|
|
|
return TRUE;
|
1999-10-31 19:29:47 +01:00
|
|
|
}
|
1999-05-01 12:27:05 +02:00
|
|
|
|
|
|
|
case PSM_REMOVEPAGE:
|
|
|
|
PROPSHEET_RemovePage(hwnd, (int)wParam, (HPROPSHEETPAGE)lParam);
|
|
|
|
return TRUE;
|
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
case PSM_ISDIALOGMESSAGE:
|
|
|
|
{
|
1999-11-28 22:01:47 +01:00
|
|
|
BOOL msgResult = PROPSHEET_IsDialogMessage(hwnd, (LPMSG)lParam);
|
|
|
|
SetWindowLongA(hwnd, DWL_MSGRESULT, msgResult);
|
|
|
|
return TRUE;
|
1999-04-22 11:24:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
case PSM_PRESSBUTTON:
|
|
|
|
PROPSHEET_PressButton(hwnd, (int)wParam);
|
|
|
|
return TRUE;
|
|
|
|
|
1999-09-19 14:14:38 +02:00
|
|
|
case PSM_SETFINISHTEXTA:
|
2002-06-01 01:06:46 +02:00
|
|
|
PROPSHEET_SetFinishTextA(hwnd, (LPCSTR) lParam);
|
1999-09-19 14:14:38 +02:00
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
case PSM_SETWIZBUTTONS:
|
|
|
|
PROPSHEET_SetWizButtons(hwnd, (DWORD)lParam);
|
|
|
|
return TRUE;
|
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
case PSM_SETCURSELID:
|
2002-08-26 23:47:06 +02:00
|
|
|
PROPSHEET_SetCurSelId(hwnd, (int)lParam);
|
|
|
|
return TRUE;
|
2000-11-09 21:25:27 +01:00
|
|
|
|
1999-04-22 11:24:47 +02:00
|
|
|
case PSM_SETFINISHTEXTW:
|
2002-06-01 01:06:46 +02:00
|
|
|
PROPSHEET_SetFinishTextW(hwnd, (LPCWSTR) lParam);
|
2000-11-09 21:25:27 +01:00
|
|
|
return FALSE;
|
1999-04-22 11:24:47 +02:00
|
|
|
|
|
|
|
default:
|
|
|
|
return FALSE;
|
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-11-09 21:25:27 +01:00
|
|
|
return FALSE;
|
1999-01-17 17:32:32 +01:00
|
|
|
}
|