mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
115 lines
2.6 KiB
C++
115 lines
2.6 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public License
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
* http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
* for the specific language governing rights and limitations under the
|
|
* NPL.
|
|
*
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
* Reserved.
|
|
*/
|
|
|
|
// NewDialog.cpp : implementation file
|
|
//
|
|
|
|
#include "stdafx.h"
|
|
#include "WizardMachine.h"
|
|
#include "NewDialog.h"
|
|
|
|
#ifdef _DEBUG
|
|
#define new DEBUG_NEW
|
|
#undef THIS_FILE
|
|
static char THIS_FILE[] = __FILE__;
|
|
#endif
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CNewDialog dialog
|
|
|
|
|
|
CNewDialog::CNewDialog(CWnd* pParent /*=NULL*/)
|
|
: CDialog(CNewDialog::IDD, pParent)
|
|
{
|
|
//{{AFX_DATA_INIT(CNewDialog)
|
|
m_EditField = _T("");
|
|
//}}AFX_DATA_INIT
|
|
}
|
|
|
|
|
|
void CNewDialog::DoDataExchange(CDataExchange* pDX)
|
|
{
|
|
CDialog::DoDataExchange(pDX);
|
|
//{{AFX_DATA_MAP(CNewDialog)
|
|
DDX_Text(pDX, IDC_EDIT1, m_EditField);
|
|
DDV_INIFile(pDX, m_EditField);
|
|
|
|
//}}AFX_DATA_MAP
|
|
}
|
|
|
|
void CNewDialog::DDV_INIFile(CDataExchange* pDX, CString value)
|
|
{
|
|
if(pDX->m_bSaveAndValidate)
|
|
{
|
|
if(value.Right(4) != ".nci")
|
|
{
|
|
value = value +".nci";
|
|
CWnd nbox;
|
|
nbox.MessageBox("We have appended '.nci' to the file" ,"value",MB_ICONEXCLAMATION);
|
|
}
|
|
myData = value;
|
|
}
|
|
}
|
|
|
|
|
|
BEGIN_MESSAGE_MAP(CNewDialog, CDialog)
|
|
//{{AFX_MSG_MAP(CNewDialog)
|
|
//}}AFX_MSG_MAP
|
|
END_MESSAGE_MAP()
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CNewDialog message handlers
|
|
|
|
BOOL CNewDialog::OnInitDialog()
|
|
{
|
|
CDialog::OnInitDialog();
|
|
|
|
// TODO: Add extra initialization here
|
|
|
|
return TRUE; // return TRUE unless you set the focus to a control
|
|
// EXCEPTION: OCX Property Pages should return FALSE
|
|
}
|
|
|
|
BOOL CNewDialog::OnCommand(WPARAM wParam, LPARAM lParam)
|
|
{
|
|
// TODO: Add your specialized code here and/or call the base class
|
|
|
|
return CDialog::OnCommand(wParam, lParam);
|
|
}
|
|
|
|
|
|
void CNewDialog::OnOK()
|
|
{
|
|
// TODO: Add extra validation here
|
|
// UpdateData();
|
|
// myData = m_EditField;
|
|
CDialog::OnOK();
|
|
}
|
|
|
|
void CNewDialog::OnCancel()
|
|
{
|
|
// TODO: Add extra cleanup here
|
|
|
|
CDialog::OnCancel();
|
|
}
|
|
|
|
CString CNewDialog::GetData()
|
|
{
|
|
return myData;
|
|
}
|