You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
185 lines
4.2 KiB
185 lines
4.2 KiB
//+----------------------------------------------------------------------------
|
|
//
|
|
// Windows NT Secure Server Roles Security Configuration Wizard
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 2002
|
|
//
|
|
// File: AdditionalFuncPage.cxx
|
|
//
|
|
// History: 29-Oct-01 Yanggao created
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
#include "pch.h"
|
|
#include "resource.h"
|
|
#include "misc.h"
|
|
#include "state.h"
|
|
#include "chklist.h"
|
|
#include "AdditionalFuncPage.h"
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
AdditionalFuncPage::AdditionalFuncPage()
|
|
:
|
|
SecCfgWizardPage(
|
|
IDD_ADDITIONAL_FUNC_SEL,
|
|
IDS_ADDITIONAL_FUNC_SEL_PAGE_TITLE,
|
|
IDS_ADDITIONAL_FUNC_SEL_PAGE_SUBTITLE)
|
|
{
|
|
LOG_CTOR(AdditionalFuncPage);
|
|
}
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
AdditionalFuncPage::~AdditionalFuncPage()
|
|
{
|
|
LOG_DTOR(AdditionalFuncPage);
|
|
}
|
|
void
|
|
AdditionalFuncPage::OnInit()
|
|
{
|
|
LOG_FUNCTION(AdditionalFuncPage::OnInit);
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
void
|
|
enable(HWND dialog)
|
|
{
|
|
ASSERT(Win::IsWindow(dialog));
|
|
|
|
/*int next = PSWIZB_NEXT;
|
|
|
|
if (Win::IsDlgButtonChecked(dialog, IDC_EDIT_CFG_RADIO))
|
|
{
|
|
next = !Win::GetTrimmedDlgItemText(dialog, IDC_EXISTING_CFG_EDIT).empty()
|
|
? PSWIZB_NEXT : 0;
|
|
}
|
|
|
|
Win::PropSheet_SetWizButtons(
|
|
Win::GetParent(dialog),
|
|
PSWIZB_BACK | next);*/
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
AdditionalFuncPage::OnCommand(
|
|
HWND /* windowFrom */ ,
|
|
unsigned /* controlIDFrom */ ,
|
|
unsigned /* code */ )
|
|
{
|
|
LOG_FUNCTION(AdditionalFuncPage::OnCommand);
|
|
|
|
// State& state = State::GetInstance();
|
|
|
|
/*switch (controlIDFrom)
|
|
{
|
|
|
|
}*/
|
|
|
|
return false;
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
AdditionalFuncPage::OnSetActive()
|
|
{
|
|
LOG_FUNCTION(AdditionalFuncPage::OnSetActive);
|
|
|
|
enable(hwnd);
|
|
|
|
HWND hWnd = Win::GetDlgItem(hwnd, IDC_CHECKBOX);
|
|
if (!hWnd) {
|
|
return FALSE;
|
|
}
|
|
Win::SendMessage(hWnd, CLM_RESETCONTENT,0,0);
|
|
|
|
State& state = State::GetInstance();
|
|
|
|
//Add Roles
|
|
|
|
HRESULT hr = S_OK;
|
|
RoleObject * pRole;
|
|
|
|
for (long i = 0; i < state.GetNumRoles(); i++)
|
|
{
|
|
pRole = NULL;
|
|
|
|
//Get Question services from Main.XML
|
|
|
|
//if it is a client role
|
|
|
|
if (FAILED(hr) || !pRole)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
int nIndex = (int) Win::SendMessage(hWnd,
|
|
CLM_ADDITEM,
|
|
(WPARAM)pRole->getDisplayName(),
|
|
(LPARAM)0);
|
|
if (nIndex != -1)
|
|
{
|
|
BOOL bSet;
|
|
|
|
//First column setting
|
|
bSet = CLST_CHECKED;
|
|
Win::SendMessage(hWnd,
|
|
CLM_SETSTATE,
|
|
MAKELONG(nIndex,1),
|
|
bSet ? CLST_CHECKED : CLST_UNCHECKED);
|
|
|
|
// Second column setting if there is
|
|
//bSet = CLST_UNCHECKED;
|
|
//Win::SendMessage(hWnd,
|
|
// CLM_SETSTATE,
|
|
// MAKELONG(nIndex,2),
|
|
// CLST_DISABLED | (bSet ? CLST_CHECKED : CLST_UNCHECKED));
|
|
}
|
|
// role objects should be saved as item data rather than being deleted here:
|
|
delete pRole;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
|
|
int
|
|
AdditionalFuncPage::Validate()
|
|
{
|
|
LOG_FUNCTION(AdditionalFuncPage::Validate);
|
|
|
|
int nextPage = IDD_SERVICEDISABLE_METHOD;
|
|
|
|
// State& state = State::GetInstance();
|
|
|
|
// HRESULT hr = S_OK;
|
|
DWORD dw = 0;
|
|
|
|
HWND hWnd = Win::GetDlgItem(hwnd, IDC_CHECKBOX);
|
|
if (!hWnd) {
|
|
;//error
|
|
}
|
|
else
|
|
{
|
|
int nItems = (int) Win::SendMessage(hWnd,CLM_GETITEMCOUNT,0,0);
|
|
for (int i=0;i<nItems;i++)
|
|
{
|
|
dw = (DWORD)Win::SendMessage(hWnd,CLM_GETSTATE,MAKELONG(i,1),0);
|
|
if (CLST_CHECKED == dw)
|
|
{
|
|
;//selected
|
|
}
|
|
}
|
|
}
|
|
|
|
return nextPage;
|
|
}
|