cconvertwizrandomdatapage.h

来自「vc环境下的pgp源码」· C头文件 代码 · 共 74 行

H
74
字号
//////////////////////////////////////////////////////////////////////////////
// CConvertWizRandomDataPage.h
//
// Declaration of class CConvertWizRandomDataPage.
//////////////////////////////////////////////////////////////////////////////

// $Id: CConvertWizRandomDataPage.h,v 1.4 1999/03/17 00:34:07 nryan Exp $

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

#ifndef Included_CConvertWizRandomDataPage_h	// [
#define Included_CConvertWizRandomDataPage_h

#include "DualErr.h"
#include "Resource.h"


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

class CConvertWizardSheet;


//////////////////////////////////
// Class CConvertWizRandomDataPage
//////////////////////////////////

class CConvertWizRandomDataPage : public CPropertyPage
{
	DECLARE_DYNCREATE(CConvertWizRandomDataPage)

public:
	CConvertWizardSheet	*mParentConvertWiz;	// pointer to parent sheet
	DualErr				mInitErr;
	PGPBoolean			mIsDoneCollecting;	// got all we need?

	CConvertWizRandomDataPage();
	~CConvertWizRandomDataPage();

	//{{AFX_DATA(CConvertWizRandomDataPage)
	enum { IDD = IDD_CVRTWIZ_RANDOM };
	CStatic	mSidebarGraphic;
	CProgressCtrl	mRandomDataBar;
	CString	mRandomMessage;
	//}}AFX_DATA

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

protected:
	void ProcessChar(PGPUInt8 nChar);

	//{{AFX_MSG(CConvertWizRandomDataPage)
	virtual BOOL OnInitDialog();
	afx_msg BOOL OnHelpInfo(HELPINFO *pHelpInfo);
	afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
	afx_msg void OnPaint();
	afx_msg void OnMouseMove(UINT nFlags, CPoint point);
	//}}AFX_MSG

	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}

#endif	// ] Included_CConvertWizRandomDataPage_h

⌨️ 快捷键说明

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