Source code of Windows XP (NT5)
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.
 
 
 
 
 
 

195 lines
4.9 KiB

//+---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation 1996-2001.
//
// File: aret.cpp
//
// Contents: implementation of CAttrRet
//
//----------------------------------------------------------------------------
#include "stdafx.h"
#include "wsecmgr.h"
#include "resource.h"
#include "snapmgr.h"
#include "attr.h"
#include "ARet.h"
#include "util.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CAttrRet dialog
CAttrRet::CAttrRet(UINT nTemplateID)
: CAttribute(nTemplateID ? nTemplateID : IDD)
{
//{{AFX_DATA_INIT(CAttrRet)
m_strAttrName = _T("");
m_strLastInspect = _T("");
m_rabRetention = -1;
//}}AFX_DATA_INIT
m_StartIds = IDS_AS_NEEDED;
m_pHelpIDs = (DWORD_PTR)a189HelpIDs;
m_uTemplateResID = IDD;
}
void CAttrRet::DoDataExchange(CDataExchange* pDX)
{
CAttribute::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CAttrRet)
// DDX_Text(pDX, IDC_ATTRIBUTE_NAME, m_strAttrName);
DDX_Text(pDX, IDC_LAST_INSPECT, m_strLastInspect);
DDX_Radio(pDX, IDC_RETENTION, m_rabRetention);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CAttrRet, CAttribute)
//{{AFX_MSG_MAP(CAttrRet)
ON_BN_CLICKED(IDC_RETENTION, OnRetention)
ON_BN_CLICKED(IDC_RADIO2, OnRetention)
ON_BN_CLICKED(IDC_RADIO3, OnRetention)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CAttrRet message handlers
BOOL CAttrRet::OnInitDialog()
{
CAttribute::OnInitDialog();
AddUserControl(IDC_RETENTION);
AddUserControl(IDC_RADIO2);
AddUserControl(IDC_RADIO3);
EnableUserControls(m_bConfigure);
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}
BOOL CAttrRet::OnApply()
{
if ( !m_bReadOnly )
{
LONG_PTR dw = 0;
int status = 0;
UpdateData(TRUE);
if (!m_bConfigure)
dw = (LONG_PTR)ULongToPtr(SCE_NO_VALUE);
else
{
switch(m_rabRetention)
{
case RADIO_RETAIN_BY_DAYS:
dw = SCE_RETAIN_BY_DAYS;
break;
case RADIO_RETAIN_AS_NEEDED:
dw = SCE_RETAIN_AS_NEEDED;
break;
case RADIO_RETAIN_MANUALLY:
dw = SCE_RETAIN_MANUALLY;
break;
}
}
CEditTemplate *pet = m_pSnapin->GetTemplate(GT_COMPUTER_TEMPLATE,AREA_SECURITY_POLICY);
//
// Check dependecies for this item.
//
if(DDWarn.CheckDependencies(
(DWORD)dw
) == ERROR_MORE_DATA ){
//
// If it fails and the user presses cancel then we will exit and do nothing.
//
CThemeContextActivator activator;
if( DDWarn.DoModal() != IDOK){
return FALSE;
}
//
// If the user presses autoset then we set the item and update the result panes.
//
for(int i = 0; i < DDWarn.GetFailedCount(); i++){
PDEPENDENCYFAILED pItem = DDWarn.GetFailedInfo(i);
if(pItem && pItem->pResult ){
pItem->pResult->SetBase( pItem->dwSuggested );
status = m_pSnapin->SetAnalysisInfo(pItem->pResult->GetID(),
pItem->dwSuggested,
pItem->pResult);
pItem->pResult->SetStatus(status); //Raid #249167, 4/21/2001
pItem->pResult->Update(m_pSnapin, FALSE);
}
}
}
m_pData->SetBase(dw);
status = m_pSnapin->SetAnalysisInfo(m_pData->GetID(),dw, m_pData);
m_pData->SetStatus(status);
m_pData->Update(m_pSnapin, FALSE);
}
return CAttribute::OnApply();
}
void CAttrRet::Initialize(CResult * pData)
{
LONG_PTR dw = 0;
CAttribute::Initialize(pData);
DDWarn.InitializeDependencies(m_pSnapin,pData);
m_StartIds = IDS_AS_NEEDED;
//
// Display the last inspected setting in its static box
//
pData->GetDisplayName( NULL, m_strLastInspect, 2 );
// Set the template setting radio button appropriately
// m_strAttrName = pData->GetAttrPretty();
dw = pData->GetBase();
if ((LONG_PTR)ULongToPtr(SCE_NO_VALUE) == dw) {
m_bConfigure = FALSE;
} else {
m_bConfigure = TRUE;
SetInitialValue((DWORD_PTR)dw);
}
}
void CAttrRet::SetInitialValue(DWORD_PTR dw) {
switch(dw) {
case SCE_RETAIN_BY_DAYS:
m_rabRetention = RADIO_RETAIN_BY_DAYS;
break;
case SCE_RETAIN_AS_NEEDED:
m_rabRetention = RADIO_RETAIN_AS_NEEDED;
break;
case SCE_RETAIN_MANUALLY:
m_rabRetention = RADIO_RETAIN_MANUALLY;
break;
}
}
void CAttrRet::OnRetention()
{
SetModified(TRUE);
}