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

📄 pgpnetguiworker.h

📁 vc环境下的pgp源码
💻 H
字号:
/*____________________________________________________________________________
	Copyright (c) 1998 Network Associates, Inc. and its Affiliated Companies
	All rights reserved.

	$Id: pgpNetGUIWorker.h,v 1.17 1998/11/25 19:09:57 elowe Exp $
____________________________________________________________________________*/

#ifndef _Included_pgpNetGUIWorker_h
#define _Included_pgpNetGUIWorker_h

#include <string>

#include "pgpNetWorker.h"
#include "pgpNetDSAarray.h"


class CPGPnetGUIWorker : public CPGPnetWorker {
private:
	HWND			m_hWnd;
	std::string		m_winName;
	PGPBoolean		m_bEnableStatus;

	// private functions
	LRESULT		processGUIEvent(WPARAM wParam, LPARAM lParam);
	LRESULT		processCopyData(WPARAM wParam, LPARAM lParam);
	void		processQueue();
	PGPInt32	registerClass(HINSTANCE hinstance);
	PGPBoolean	createMyWindow(HINSTANCE hinstance);
	void		sendFullStatus();
	void		sendToApp(WPARAM wParam, LPARAM lParam = 0);
	void		sendToApp(PGPUInt32 dwData, 
		PGPUInt32 cbData, 
		const void *lpData);

	// private and undefined copy and assignment
	CPGPnetGUIWorker(const CPGPnetGUIWorker &);
	CPGPnetGUIWorker & operator=(const CPGPnetGUIWorker &);
	
protected:
	virtual unsigned int Run();
	
public:
	CPGPnetGUIWorker();
	virtual ~CPGPnetGUIWorker();

	// static window proc function
	static LRESULT CALLBACK winProc(HWND, UINT, WPARAM, LPARAM);
};

#endif // _Included_pgpNetGUIWorker_h

⌨️ 快捷键说明

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