TrayIcon.h
上传用户:guangzhiyw
上传日期:2007-01-09
资源大小:495k
文件大小:1k
源码类别:

ICQ/即时通讯

开发平台:

Visual C++

  1. #if !defined(AFX_TRAYICON_H__185BF3A6_33BD_11D5_806D_00E04C41C3AD__INCLUDED_)
  2. #define AFX_TRAYICON_H__185BF3A6_33BD_11D5_806D_00E04C41C3AD__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // TrayIcon.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CTrayIcon command target
  10. class CTrayIcon : public CCmdTarget
  11. {
  12. DECLARE_DYNCREATE(CTrayIcon)
  13.           
  14. // Attributes
  15. public:
  16. CTrayIcon();
  17. ~CTrayIcon();
  18. // Operations
  19. public:
  20. void SetNotificationWnd(CWnd* pNotifyWnd,UINT uCbMsg);
  21. BOOL SetIcon(UINT uID,LPCSTR lpTip); 
  22. LRESULT OnTrayNotification(WPARAM uID, LPARAM lEvent);
  23. protected:
  24. NOTIFYICONDATA m_nid;
  25. };
  26. /////////////////////////////////////////////////////////////////////////////
  27. //{{AFX_INSERT_LOCATION}}
  28. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  29. #endif // !defined(AFX_TRAYICON_H__185BF3A6_33BD_11D5_806D_00E04C41C3AD__INCLUDED_)