⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 copenpgpdiskdialog.cpp

📁 vc环境下的pgp源码
💻 CPP
字号:
//////////////////////////////////////////////////////////////////////////////
// COpenPGPdiskDialog.cpp
//
// Implementation of the COpenPGPdiskDialog class.
//////////////////////////////////////////////////////////////////////////////

// $Id: COpenPGPdiskDialog.cpp,v 1.7 1998/12/15 01:25:03 nryan Exp $

// Copyright (C) 1998 by Network Associates, Inc.
// All rights reserved.

#include "StdAfx.h"

#include "Required.h"
#include "PGPdiskPrefs.h"

#include "COpenPGPdiskDialog.h"
#include "Globals.h"
#include "PGPdisk.h"


////////////
// Constants
////////////

static LPCSTR	kODTMountDialogTitle	= "Mount PGPdisk";
static LPCSTR	kODTSelectDialogTitle	= "Select PGPdisk";

static LPCSTR kODTOpenFilter = 
	"PGPdisk Files (*.pgd)|*.pgd|All Files (*.*)|*.*||";


///////////////////////////
// MFC specific definitions
///////////////////////////

BEGIN_MESSAGE_MAP(COpenPGPdiskDialog, CFileDialog)
	//{{AFX_MSG_MAP(COpenPGPdiskDialog)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()


//////////////////////////////////////////////////////////////////////
// COpenPGPdiskDialog public custom functions and non-default handlers
//////////////////////////////////////////////////////////////////////

IMPLEMENT_DYNAMIC(COpenPGPdiskDialog, CFileDialog)

// The COpenPGPdiskDialog default constructor.

COpenPGPdiskDialog::COpenPGPdiskDialog(OpenDialogType dlgType, CWnd *pParent)

	: CFileDialog(TRUE, &kPGPdiskFileExtension[1], NULL, 
		OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT, kODTOpenFilter, pParent)
{
	mOpenDialogType	= dlgType;

	m_ofn.Flags	|= OFN_PATHMUSTEXIST | OFN_FILEMUSTEXIST;
	m_ofn.Flags	&= ~OFN_SHAREAWARE;

	// Initialize the title according to the dialog type.
	switch (mOpenDialogType)
	{
	case kODT_Mount:
		m_ofn.lpstrTitle = kODTMountDialogTitle;
		break;

	case kODT_Select:
		m_ofn.lpstrTitle = kODTSelectDialogTitle;
		break;

	default:
		pgpAssert(FALSE);
		break;
	}
}

// AskForPath is a wrapper around DoModal.

DualErr 
COpenPGPdiskDialog::AskForPath(CString *path)
{
	CString				initialDir;
	DualErr				derr;
	PGPdiskWin32Prefs	prefs;
	PGPInt32			result;
	
	pgpAssertAddrValid(path, CString);

	// Get default directory from registry.
	if (GetPGPdiskWin32Prefs(prefs).IsntError())
		initialDir = prefs.lastOpenDir;

	// Is it legal?
	if (App->IsDirectoryValid(initialDir))
		m_ofn.lpstrInitialDir = initialDir;
	else
		m_ofn.lpstrInitialDir = NULL;

	// Show the dialog.
	result = DoModal();

	// Return an appropriate value.
	switch (result)
	{
	case IDOK:
		try
		{
			(* path) = GetPathName();
		}
		catch (CMemoryException *ex)
		{
			derr = DualErr(kPGDMinorError_OutOfMemory);
			ex->Delete();
		}
		break;

	case -1:
		derr = DualErr(kPGDMinorError_DialogDisplayFailed);
		break;

	case IDCANCEL:
		derr = DualErr(kPGDMinorError_UserAbort);
		break;
	}

	return derr;
}


/////////////////////////////////////////////////////////////////////////
// COpenPGPdiskDialog protected custom functions and non-default handlers
/////////////////////////////////////////////////////////////////////////

// UpdateOpenDialogPrefs stores the location of the chosen directory.

void 
COpenPGPdiskDialog::UpdateOpenDialogPrefs()
{
	// Update the last open directory in the registry.
	try
	{
		CString				dir, path;
		PGPdiskWin32Prefs	prefs;

		path = GetPathName();
		
		GetDirectory(path, &dir);

		if (GetPGPdiskWin32Prefs(prefs).IsntError())
		{
			strcpy(prefs.lastOpenDir, dir);
			SetPGPdiskWin32Prefs(prefs);
		}
	}
	catch (CMemoryException *ex)
	{
		ex->Delete();
	}
}

// The COpenPGPdiskDialog default data-exchange function.

void 
COpenPGPdiskDialog::DoDataExchange(CDataExchange *pDX)
{
	try
	{
		CDialog::DoDataExchange(pDX);

		//{{AFX_DATA_MAP(COpenPGPdiskDialog)
		//}}AFX_DATA_MAP
	}
	catch (CMemoryException *ex)
	{
		ex->Delete();
	}
}

// OnFileNameOK is called when the user hits the OK button. We update registry
// information.

BOOL 
COpenPGPdiskDialog::OnFileNameOK()
{
	if (CFileDialog::OnFileNameOK() == 1)
		return 1;

	UpdateOpenDialogPrefs();
	return 0;
}

// OnInitDone is called when initialization is done. We override it to stop
// MFC from centering the window.

void 
COpenPGPdiskDialog::OnInitDone()
{
	// Center on screen.
	GetParent()->CenterWindow(GetDesktopWindow());

	// Put us in front.
	GetParent()->SetForegroundWindow();

	// Put on top if necessary.
	App->TweakOnTopAttribute(GetParent());
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -