GuiSysTray.h
上传用户:zhanglf88
上传日期:2013-11-19
资源大小:6036k
文件大小:2k
源码类别:

金融证券系统

开发平台:

Visual C++

  1. //-----------------------------------------------------------------------//
  2. // This is a part of the GuiLib MFC Extention.  //
  3. // Autor  :  Francisco Campos  //
  4. // (C) 2002 Francisco Campos <www.beyondata.com> All rights reserved     //
  5. // This code is provided "as is", with absolutely no warranty expressed  //
  6. // or implied. Any use is at your own risk.  //
  7. // You must obtain the author's consent before you can include this code //
  8. // in a software library.  //
  9. // If the source code in  this file is used in any application  //
  10. // then acknowledgement must be made to the author of this program  //
  11. // fcampos@tutopia.com  //
  12. //-----------------------------------------------------------------------//
  13. #pragma once
  14. // CGuiSysTray
  15. #include "GuiLib.h" 
  16. class GUILIBDLLEXPORT  CGuiSysTray : public CWnd
  17. {
  18. DECLARE_DYNAMIC(CGuiSysTray)
  19. public:
  20. CGuiSysTray();
  21. virtual ~CGuiSysTray();
  22. BOOL Add(UINT uID, UINT uCallBackMessage, HICON hIcon, LPCTSTR lpszTip);
  23. BOOL Del();
  24. BOOL Update(UINT uID, HICON hIcon, LPCTSTR lpszTip);
  25. BOOL SetIcon(HICON hIcon);
  26. BOOL SetIcon(LPCTSTR lpszIcon);
  27. BOOL SetTips(LPCTSTR lpszTip);
  28. void SetSysMenu(CMenu* pMenu);
  29. void SetImageList(UINT nBitmapID, int cx, int nGrow, COLORREF crMask);
  30. void StartAnimation(int nMilliseconds,int nPosInit, int nPosEnd);
  31. void StopAnimation();
  32. protected:
  33. NOTIFYICONDATA tnid;
  34. CMenu* m_pMenu;
  35. CImageList m_ImgList;
  36. BOOL m_bStartAnimation;
  37. int m_ActualImage;
  38. int m_Init;
  39. int     m_End;
  40. protected:
  41. DECLARE_MESSAGE_MAP()
  42. public:
  43. virtual BOOL Create(CWnd* pParentWnd, UINT nID,UINT uCallBackMessage, HICON hIcon, LPCTSTR lpszTip);
  44. protected:
  45. virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
  46. public:
  47. afx_msg void OnTimer(UINT nIDEvent);
  48. };