mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
[MAIN] Select property pages by command line, for example 'control main.cpl,@0,2'
This commit is contained in:
parent
64bc9c233f
commit
5ea8314e67
3 changed files with 17 additions and 0 deletions
|
@ -306,6 +306,7 @@ KeyboardApplet(HWND hwnd, UINT uMsg, LPARAM wParam, LPARAM lParam)
|
|||
PROPSHEETHEADER psh;
|
||||
HPSXA hpsxa;
|
||||
TCHAR szCaption[256];
|
||||
INT nPage = 0;
|
||||
LONG ret;
|
||||
|
||||
UNREFERENCED_PARAMETER(lParam);
|
||||
|
@ -313,6 +314,9 @@ KeyboardApplet(HWND hwnd, UINT uMsg, LPARAM wParam, LPARAM lParam)
|
|||
UNREFERENCED_PARAMETER(uMsg);
|
||||
UNREFERENCED_PARAMETER(hwnd);
|
||||
|
||||
if (uMsg == CPL_STARTWPARMSW && lParam != 0)
|
||||
nPage = _wtoi((PWSTR)lParam);
|
||||
|
||||
LoadString(hApplet, IDS_CPLNAME_2, szCaption, sizeof(szCaption) / sizeof(TCHAR));
|
||||
|
||||
ZeroMemory(&psh, sizeof(PROPSHEETHEADER));
|
||||
|
@ -337,6 +341,9 @@ KeyboardApplet(HWND hwnd, UINT uMsg, LPARAM wParam, LPARAM lParam)
|
|||
if (hpsxa != NULL)
|
||||
SHAddFromPropSheetExtArray(hpsxa, PropSheetAddPage, (LPARAM)&psh);
|
||||
|
||||
if (nPage != 0 && nPage <= psh.nPages)
|
||||
psh.nStartPage = nPage;
|
||||
|
||||
ret = (LONG)(PropertySheet(&psh) != -1);
|
||||
|
||||
if (hpsxa != NULL)
|
||||
|
|
|
@ -113,6 +113,9 @@ CPlApplet(HWND hwndCpl,
|
|||
Applets[uAppIndex].AppletProc(hwndCpl, uMsg, lParam1, lParam2);
|
||||
break;
|
||||
}
|
||||
|
||||
case CPL_STARTWPARMSW:
|
||||
return Applets[(UINT)lParam1].AppletProc(hwndCpl, uMsg, lParam1, lParam2);
|
||||
}
|
||||
|
||||
return FALSE;
|
||||
|
|
|
@ -1833,6 +1833,7 @@ MouseApplet(HWND hwnd, UINT uMsg, LPARAM lParam1, LPARAM lParam2)
|
|||
HPSXA hpsxa;
|
||||
TCHAR Caption[256];
|
||||
UINT i;
|
||||
INT nPage = 0;
|
||||
LONG ret;
|
||||
|
||||
UNREFERENCED_PARAMETER(lParam1);
|
||||
|
@ -1840,6 +1841,9 @@ MouseApplet(HWND hwnd, UINT uMsg, LPARAM lParam1, LPARAM lParam2)
|
|||
UNREFERENCED_PARAMETER(uMsg);
|
||||
UNREFERENCED_PARAMETER(hwnd);
|
||||
|
||||
if (uMsg == CPL_STARTWPARMSW && lParam2 != 0)
|
||||
nPage = _wtoi((PWSTR)lParam2);
|
||||
|
||||
LoadString(hApplet, IDS_CPLNAME_1, Caption, sizeof(Caption) / sizeof(TCHAR));
|
||||
|
||||
ZeroMemory(&psh, sizeof(PROPSHEETHEADER));
|
||||
|
@ -1873,6 +1877,9 @@ MouseApplet(HWND hwnd, UINT uMsg, LPARAM lParam1, LPARAM lParam2)
|
|||
if (hpsxa != NULL)
|
||||
SHAddFromPropSheetExtArray(hpsxa, PropSheetAddPage, (LPARAM)&psh);
|
||||
|
||||
if (nPage != 0 && nPage <= psh.nPages)
|
||||
psh.nStartPage = nPage;
|
||||
|
||||
ret = (LONG)(PropertySheet(&psh) != -1);
|
||||
|
||||
if (hpsxa != NULL)
|
||||
|
|
Loading…
Reference in a new issue