AnimateTray.h
上传用户:cn05999
上传日期:2020-06-29
资源大小:84k
文件大小:2k
源码类别:

Static控件

开发平台:

Visual C++

  1. #if !defined(AFX_ANIMATETRAY_H__09778F56_3FD5_4C5C_8E02_43B43AAD19F9__INCLUDED_)
  2. #define AFX_ANIMATETRAY_H__09778F56_3FD5_4C5C_8E02_43B43AAD19F9__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // AnimateTray.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CAnimateTray window
  10. class CAnimateTray : public CWnd
  11. {
  12. // Construction
  13. public:
  14. CAnimateTray();
  15. // Attributes
  16. public:
  17. // Operations
  18. public:
  19. BOOL CreateTray(/*动画*/CWnd* pNotifyWnd,UINT uID/*menu*/,LPCTSTR pszTooltipText, HICON* phIcons,int nNumIcons,DWORD dwDelay, UINT nNotifyMessage);
  20. BOOL CreateTray(/*非动画*/CWnd* pNotifyWnd,UINT uID/*menu*/,LPCTSTR pszTooltipText,HICON hIcon,UINT nNotifyMessage);
  21. protected:
  22. BOOL m_bCreated;
  23. CWnd* m_pNotificationWnd;
  24. BOOL m_bAnimated;
  25. NOTIFYICONDATA m_NotifyIconData;
  26. // Overrides
  27. // ClassWizard generated virtual function overrides
  28. //{{AFX_VIRTUAL(CAnimateTray)
  29. public:
  30. virtual BOOL Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID, CCreateContext* pContext = NULL);
  31. //}}AFX_VIRTUAL
  32. // Implementation
  33. public:
  34. void OnTimer1(UINT nIDEvent);
  35. BOOL SetIcon(LPCTSTR lpIconName);
  36. BOOL SetIcon(UINT nIDResourec);
  37. BOOL SetIcon(HICON hIcon);
  38. LRESULT OnTrayNotification(WPARAM wID, LPARAM lEvent);
  39. virtual ~CAnimateTray();
  40. BOOL m_bIsWindowNormal;
  41. BOOL    m_bMenuOn;
  42. BOOL m_bHidden;
  43. HICON* m_phIcons;
  44. int m_nNumIcons;
  45. DWORD m_dwDelay;
  46. UINT m_nTimerID;
  47. int m_nCurrentIconIndex;
  48. HICON GetCurrentIcon() const {return m_phIcons[m_nCurrentIconIndex];};
  49. BOOL IsShowing() const {return !IsHidden();};
  50. BOOL IsHidden()  const {return m_bHidden;};
  51. BOOL UsingAnimatedIcon() const{ return m_bAnimated;};
  52. // Generated message map functions
  53. protected:
  54. void RemoveIcon();
  55. //{{AFX_MSG(CAnimateTray)
  56. afx_msg void OnTimer(UINT nIDEvent);
  57. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  58. afx_msg void OnDestroy();
  59. //}}AFX_MSG
  60. DECLARE_MESSAGE_MAP()
  61. };
  62. /////////////////////////////////////////////////////////////////////////////
  63. //{{AFX_INSERT_LOCATION}}
  64. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  65. #endif // !defined(AFX_ANIMATETRAY_H__09778F56_3FD5_4C5C_8E02_43B43AAD19F9__INCLUDED_)