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

📄 cglobalcwizardsheet.h

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

// $Id: CGlobalCWizardSheet.h,v 1.2 1998/12/14 18:57:18 nryan Exp $

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

#ifndef Included_CGlobalCWizardSheet_h	// [
#define Included_CGlobalCWizardSheet_h

#include "DualErr.h"

#include "CGlobalCWizDonePage.h"
#include "CGlobalCWizIntroPage.h"
#include "CGlobalCWizSearchPage.h"


////////////////////////////
// Class CGlobalCWizardSheet
////////////////////////////

class CGlobalCWizardSheet : public CPropertySheet
{
	DECLARE_DYNAMIC(CGlobalCWizardSheet)

	friend class CGlobalCWizDonePage;
	friend class CGlobalCWizIntroPage;
	friend class CGlobalCWizSearchPage;

public:
	DualErr	mInitErr;

			CGlobalCWizardSheet();
	virtual	~CGlobalCWizardSheet();

	DualErr	ExecuteWizard();

	//{{AFX_VIRTUAL(CGlobalCWizardSheet)
	public:
	virtual BOOL OnInitDialog();
	//}}AFX_VIRTUAL

protected:
	CGlobalCWizDonePage			mDonePage;			// convert done page
	CGlobalCWizIntroPage		mIntroPage;			// convert intro page
	CGlobalCWizSearchPage		mSearchPage;		// search page

	DualErr			mDerr;				// pages report	errors here

	CBitmap			mSidebarBitmap;		// sidebar graphic
	CPalette		mSidebarPalette;	// sidebar palette

	//{{AFX_MSG(CGlobalCWizardSheet)
	afx_msg BOOL OnHelpInfo(HELPINFO* pHelpInfo);
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	//}}AFX_MSG

	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}

#endif // ] Included_CGlobalCWizardSheet_h

⌨️ 快捷键说明

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