GuiPanelAccess.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. #include "guicontainer.h"
  15. #include "guiToolButton.h"
  16. #include "GuiButton.h" 
  17. #include "GuiLib.h" 
  18. class GUILIBDLLEXPORT CGuiPanelAccess :
  19. public CGuiContainer
  20. {
  21. public:
  22. CGuiPanelAccess(void);
  23. virtual ~CGuiPanelAccess(void);
  24. virtual void RecalLayout();
  25. virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam);
  26. void  SetImageList(UINT nBitmapID, int cx, int nGrow, COLORREF crMask);
  27. CGuiToolButton* AddButton(UINT ID_BUTTON,int nNumImage);
  28. protected:
  29. CGuiButton m_ToolUp;
  30. CGuiButton m_ToolDown;
  31. CImageList m_imgList;
  32. CImageList  m_imgListLocal;
  33. BOOL m_PressDown;
  34. BOOL m_PressUp;
  35. int m_nDif;
  36. public:
  37. DECLARE_MESSAGE_MAP()
  38. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  39. afx_msg void OnPaint();
  40. void OnDownd();
  41. void OnUp();
  42. };