mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
[NETCFGX] NetPropPageProvider: Add Base and Step parameter options.
This commit is contained in:
parent
743bbc32b7
commit
11c9e773fb
1 changed files with 24 additions and 1 deletions
|
@ -40,6 +40,9 @@ typedef struct _PARAMETER
|
|||
|
||||
BOOL bUpperCase;
|
||||
INT iTextLimit;
|
||||
|
||||
INT iBase;
|
||||
INT iStep;
|
||||
} PARAMETER, *PPARAMETER;
|
||||
|
||||
typedef struct _PARAMETER_ARRAY
|
||||
|
@ -490,7 +493,17 @@ BuildParameterArray(
|
|||
ParamArray->Array[dwIndex].Type == WORD_TYPE ||
|
||||
ParamArray->Array[dwIndex].Type == DWORD_TYPE)
|
||||
{
|
||||
/* FIXME: Read Base, Min, Max and Step values */
|
||||
/* FIXME: Read Min and Max values */
|
||||
|
||||
GetIntValue(hParamKey,
|
||||
L"Base",
|
||||
10,
|
||||
&ParamArray->Array[dwIndex].iBase);
|
||||
|
||||
GetIntValue(hParamKey,
|
||||
L"Step",
|
||||
1,
|
||||
&ParamArray->Array[dwIndex].iStep);
|
||||
}
|
||||
else if (ParamArray->Array[dwIndex].Type == EDIT_TYPE)
|
||||
{
|
||||
|
@ -682,6 +695,11 @@ DisplayParameter(
|
|||
EnableWindow(hwndControl, Parameter->bPresent);
|
||||
ShowWindow(hwndControl, SW_SHOW);
|
||||
|
||||
if (Parameter->Type == WORD_TYPE || Parameter->Type == DWORD_TYPE)
|
||||
SendMessage(hwndControl, UDM_SETBASE, Parameter->iBase, 0);
|
||||
else
|
||||
SendMessage(hwndControl, UDM_SETBASE, 10, 0);
|
||||
|
||||
hwndControl = GetDlgItem(hwnd, IDC_PROPERTY_VALUE_EDIT);
|
||||
EnableWindow(hwndControl, Parameter->bPresent);
|
||||
ShowWindow(hwndControl, SW_SHOW);
|
||||
|
@ -881,6 +899,11 @@ OnNotify(
|
|||
TRACE("PSN_APPLY!\n");
|
||||
WriteParameterArray(hwnd, pParamArray);
|
||||
}
|
||||
else if (((LPNMHDR)lParam)->code == (UINT)UDN_DELTAPOS)
|
||||
{
|
||||
LPNMUPDOWN pUpDown = (LPNMUPDOWN)lParam;
|
||||
pUpDown->iDelta *= pParamArray->pCurrentParam->iStep;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue