104 lines
2.6 KiB
C++
104 lines
2.6 KiB
C++
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation 1996-2001.
|
|
//
|
|
// File: profdesc.cpp
|
|
//
|
|
// Contents: implementation of CSetProfileDescription
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#include "stdafx.h"
|
|
#include "wsecmgr.h"
|
|
#include "cookie.h"
|
|
#include "snapmgr.h"
|
|
#include "profdesc.h"
|
|
#include "util.h"
|
|
|
|
#ifdef _DEBUG
|
|
#define new DEBUG_NEW
|
|
#undef THIS_FILE
|
|
static char THIS_FILE[] = __FILE__;
|
|
#endif
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CSetProfileDescription dialog
|
|
|
|
|
|
CSetProfileDescription::CSetProfileDescription()
|
|
: CHelpDialog(a218HelpIDs, IDD, 0)
|
|
{
|
|
//{{AFX_DATA_INIT(CSetProfileDescription)
|
|
m_strDesc = _T("");
|
|
//}}AFX_DATA_INIT
|
|
}
|
|
|
|
|
|
void CSetProfileDescription::DoDataExchange(CDataExchange* pDX)
|
|
{
|
|
CDialog::DoDataExchange(pDX);
|
|
//{{AFX_DATA_MAP(CSetProfileDescription)
|
|
DDX_Text(pDX, IDC_DESCRIPTION, m_strDesc);
|
|
//}}AFX_DATA_MAP
|
|
}
|
|
|
|
|
|
BEGIN_MESSAGE_MAP(CSetProfileDescription, CHelpDialog)
|
|
//{{AFX_MSG_MAP(CSetProfileDescription)
|
|
//}}AFX_MSG_MAP
|
|
END_MESSAGE_MAP()
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CSetProfileDescription message handlers
|
|
|
|
void CSetProfileDescription::OnOK()
|
|
{
|
|
UpdateData(TRUE);
|
|
|
|
//
|
|
// empty the description section first.
|
|
//
|
|
|
|
CEditTemplate *pet;
|
|
LPCTSTR szInfFile;
|
|
|
|
if( !m_strDesc.IsEmpty() ) //Raid #482845, Yanggao
|
|
{
|
|
m_strDesc.Replace(L"\r\n", NULL);
|
|
}
|
|
|
|
PCWSTR szInvalidCharSet = INVALID_DESC_CHARS; //Raid 481533, yanggao, 11/27/2001
|
|
if( m_strDesc.FindOneOf(szInvalidCharSet) != -1 )
|
|
{
|
|
CString text;
|
|
text.FormatMessage (IDS_INVALID_DESC, szInvalidCharSet);
|
|
AfxMessageBox(text);
|
|
GetDlgItem(IDC_DESCRIPTION)->SetFocus();
|
|
return;
|
|
}
|
|
|
|
szInfFile = m_pFolder->GetInfFile();
|
|
if (szInfFile) {
|
|
pet = m_pCDI->GetTemplate(szInfFile);
|
|
pet->SetDescription(m_strDesc);
|
|
pet->Save(); //Raid #453581, Yang Gao, 8/10/2001
|
|
}
|
|
m_pFolder->SetDesc(m_strDesc);
|
|
DestroyWindow();
|
|
}
|
|
|
|
void CSetProfileDescription::OnCancel()
|
|
{
|
|
DestroyWindow();
|
|
}
|
|
|
|
BOOL CSetProfileDescription::OnInitDialog()
|
|
{
|
|
CDialog::OnInitDialog();
|
|
|
|
GetDlgItem(IDC_DESCRIPTION)->SendMessage(EM_LIMITTEXT, MAX_PATH, 0); //Raid #525155, Yanggao, 4/1/2002
|
|
|
|
return TRUE; // return TRUE unless you set the focus to a control
|
|
// EXCEPTION: OCX Property Pages should return FALSE
|
|
} |