cgetuserinfodialog.h

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

H
62
字号
//////////////////////////////////////////////////////////////////////////////
// CGetUserInfoDialog.h
//
// Declaration of class CGetUserInfoDialog.
//////////////////////////////////////////////////////////////////////////////

// $Id: CGetUserInfoDialog.h,v 1.4 1998/12/14 18:56:53 nryan Exp $

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

#ifndef Included_CGetUserInfoDialog_h	// [
#define Included_CGetUserInfoDialog_h

#include "DualErr.h"

#include "Resource.h"


///////////////////////////
// Class CGetUserInfoDialog
///////////////////////////

class CGetUserInfoDialog : public CDialog
{
public:
			CGetUserInfoDialog(CWnd *pParent = NULL);

	DualErr	AskForUserInfo();

	//{{AFX_DATA(CGetUserInfoDialog)
	enum { IDD = IDD_GETUSERINFO_DLG };
	CEdit	mUserStatic;
	CEdit	mOrgStatic;
	CButton	mCancelButton;
	CButton	mOkButton;
	CString	mUserText;
	CString	mOrgText;
	//}}AFX_DATA

	//{{AFX_VIRTUAL(CGetUserInfoDialog)
	protected:
	virtual void DoDataExchange(CDataExchange *pDX);
	//}}AFX_VIRTUAL

protected:
	void UpdateOkButton();

	//{{AFX_MSG(CGetUserInfoDialog)
	afx_msg BOOL OnHelpInfo(HELPINFO *pHelpInfo);
	virtual BOOL OnInitDialog();
	afx_msg void OnChangeNameEdit();
	afx_msg void OnChangeOrgEdit();
	//}}AFX_MSG

	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}

#endif	// ] Included_CGetUserInfoDialog_h

⌨️ 快捷键说明

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