GuiPanelAccess.h
上传用户:wlkj888
上传日期:2022-08-01
资源大小:806k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. /****************************************************************************
  2.  * *  
  3.  * GuiToolKit   *
  4.  *  (MFC extension) *  
  5.  * Created by Francisco Campos G. www.beyondata.com fcampos@beyondata.com *
  6.  *--------------------------------------------------------------------------*    
  7.  * *
  8.  * This program is free software;so you are free to use it any of your *
  9.  * applications (Freeware, Shareware, Commercial),but leave this header *
  10.  * intact. *
  11.  * *
  12.  * These files are provided "as is" without warranty of any kind. *
  13.  * *
  14.  *        GuiToolKit is forever FREE CODE !!!!! *
  15.  * *
  16.  *--------------------------------------------------------------------------*
  17.  * Created by: Francisco Campos G. *
  18.  * Bug Fixes and improvements : (Add your name) *
  19.  * -Francisco Campos *
  20.  * *
  21.  ****************************************************************************/
  22. #pragma once
  23. #include "guicontainer.h"
  24. #include "guiToolButton.h"
  25. #include "GuiButton.h" 
  26. #include "GuiButtonTimer.h"
  27. class GUILIBDLLEXPORT CGuiPanelAccess :
  28. public CGuiContainer
  29. {
  30. public:
  31. CGuiPanelAccess(void);
  32. virtual ~CGuiPanelAccess(void);
  33. virtual void RecalLayout();
  34. virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam);
  35. void  SetImageList(UINT nBitmapID, int cx, int nGrow, COLORREF crMask);
  36. void AddButton(UINT ID_BUTTON,int nNumImage,CGuiToolButton* m_pBtn,CString m_sztext);
  37. protected:
  38. CGuiButtonTimer m_ToolUp;
  39. CGuiButtonTimer m_ToolDown;
  40. CImageList m_imgList;
  41. CImageList  m_imgListLocal;
  42. BOOL m_PressDown;
  43. BOOL m_PressUp;
  44. int m_nDif;
  45. CFont m_cfont;
  46. public:
  47. DECLARE_MESSAGE_MAP()
  48. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  49. afx_msg void OnPaint();
  50. void OnDownd();
  51. void OnUp();
  52. };