GuiWorkPanel.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 "GuiImageLinkButton.h"
  26. class GUILIBDLLEXPORT CGuiWorkPanel : public CGuiContainer
  27. {
  28. public:
  29. CGuiWorkPanel(void);
  30. virtual ~CGuiWorkPanel(void);
  31. virtual void RecalLayout();
  32. virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam);
  33. void  SetImageList(UINT nBitmapID, int cx, int nGrow, COLORREF crMask);
  34. void Addlabel(UINT ID_BUTTON,CGuiLabelButton* m_btn);
  35. void AddImageLink(UINT ID_BUTTON,int nNumImage,CGuiImageLinkButton* m_Linkbtn);
  36. protected:
  37. CGuiScrollButton m_ToolUp;
  38. CGuiScrollButton m_ToolDown;
  39. CImageList m_imgList;
  40. CImageList  m_imgListLocal;
  41. BOOL m_PressDown;
  42. BOOL m_PressUp;
  43. int m_nDif;
  44. public:
  45. DECLARE_MESSAGE_MAP()
  46. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  47. afx_msg void OnPaint();
  48. afx_msg void OnSysColorChange( );
  49. void OnDownd();
  50. void OnUp();
  51. };