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

📄 cconfirmpassphrasedialog.h

📁 vc环境下的pgp源码
💻 H
字号:
//////////////////////////////////////////////////////////////////////////////
// CConfirmPassphraseDialog.h
//
// Declaration of class CConfirmPassphraseDialog.
//////////////////////////////////////////////////////////////////////////////

// $Id: CConfirmPassphraseDialog.h,v 1.4 1998/12/14 18:55:51 nryan Exp $

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

#ifndef Included_CConfirmPassphraseDialog_h	// [
#define Included_CConfirmPassphraseDialog_h

#include "CSecureEdit.h"
#include "Resource.h"


////////
// Types
////////

// ConfirmPassDialogType specifies the type of confirmation passphrase dialog
// being shown. This influences the wording of the dialog box message and the
// presence of certain options.

enum ConfirmPassDialogType {kCPDT_Add, kCPDT_Change};


/////////////////////////////////
// Class CConfirmPassphraseDialog
/////////////////////////////////

class CConfirmPassphraseDialog : public CDialog
{
public:
	CButton		mReadOnlyButton;
	DualErr		mInitErr;
	PGPBoolean	mReadOnlyValue;

			CConfirmPassphraseDialog(ConfirmPassDialogType dlgType);
			~CConfirmPassphraseDialog();

	DualErr	AskForPassphrase(LPCSTR path);
	void	DisableReadOnlyButton();
	void	SetReadOnlyValue(PGPBoolean readOnly);

	//{{AFX_DATA(CConfirmPassphraseDialog)
	enum { IDD = IDD_CONFIRMPASS1_DLG };
	CStatic	mMessageStatic;
	CStatic	mCapsLockStatic;
	CButton	mOKButton;
	CButton	mCancelButton;
	CSecureEdit	mPassphraseEdit;
	CSecureEdit	mConfirmationEdit;
	CProgressCtrl	mQualityBar;
	BOOL	mHideTypeValue;
	CString	mMessageValue;
	//}}AFX_DATA

	//{{AFX_VIRTUAL(CConfirmPassphraseDialog)
	public:
	virtual BOOL PreTranslateMessage(MSG* pMsg);
	protected:
	virtual void DoDataExchange(CDataExchange *pDX);
	//}}AFX_VIRTUAL

protected:
	ConfirmPassDialogType	mConfirmPassDialogType;		// dialog type
	CSecureEdit				*mIHadFocus;				// edit that had focus
	CString					mPath;						// path of PGPdisk

	void SetCapsLockMessageState();

	//{{AFX_MSG(CConfirmPassphraseDialog)
	afx_msg void OnHideTypeCheck();
	afx_msg void OnChangePassphrase();
	afx_msg void OnKillFocusPassphrase();
	afx_msg void OnKillFocusConfirmation();
	virtual void OnOK();
	afx_msg BOOL OnHelpInfo(HELPINFO *pHelpInfo);
	afx_msg void OnROCheck();
	virtual BOOL OnInitDialog();
	//}}AFX_MSG

	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}

#endif /* ] Included_CConfirmPassphraseDialog_h */

⌨️ 快捷键说明

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