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

📄 trayicon.h

📁 远程网络监视程序的源码
💻 H
字号:
//---------------------------------------------------------------------------
//
// TrayIcon.h
//
// SUBSYSTEM:   Hook system
//				
// MODULE:      Hook server
//
// DESCRIPTION: This code has been based on the Paul DiLascia's sample
//              Copyright 1996 Microsoft Systems Journal.
// 				
//             
// AUTHOR:		Ivo Ivanov (ivopi@hotmail.com)
// DATE:		2001 December v1.00
//
//---------------------------------------------------------------------------
#ifndef _TRAYICON_H_
#define _TRAYICON_H_

//---------------------------------------------------------------------------
//
// CTrayIcon manages an icon in the Windows 9x/NT/2K system tray. 
//
//---------------------------------------------------------------------------
class CTrayIcon : public CCmdTarget 
{
	DECLARE_DYNAMIC(CTrayIcon)

protected:
	NOTIFYICONDATA m_stNotifyData;			// struct for Shell_NotifyIcon args
	UINT m_uTrayMenuID;

public:
	CTrayIcon(UINT uID);
	~CTrayIcon();
	virtual LRESULT OnTrayNotification(WPARAM uID, LPARAM lEvent);

	// Call this to receive tray notifications
	void SetNotificationWnd(CWnd* pNotifyWnd, UINT uCbMsg);
	//
	// SetIcon functions. To remove icon, call SetIcon(0, 0)
	//
	BOOL SetIcon(UINT uIconID, UINT uMenuID); // main variant you want to use
	BOOL SetIcon(LPCTSTR lpResName, UINT uMenuID, LPCTSTR lpTip)
	{ 
		return SetIcon(lpResName ? 
			AfxGetApp()->LoadIcon(lpResName) : NULL, uMenuID, lpTip); 
	}
	BOOL SetStandardIcon(LPCTSTR lpszIconName, UINT uMenuID, LPCTSTR lpTip)
	{ 
		return SetIcon(::LoadIcon(NULL, lpszIconName), uMenuID, lpTip); 
	}

private:
	BOOL SetIcon(HICON hicon, UINT uMenuID, LPCTSTR lpTip);
};

#endif
//----------------------------End of the file -------------------------------

⌨️ 快捷键说明

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