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

对话框与窗口

开发平台:

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. #if !defined(AFX_GUIDOCKTOOLBAR_H__83DAE7D7_071E_4522_A669_8E45D3089B56__INCLUDED_)
  23. #define AFX_GUIDOCKTOOLBAR_H__83DAE7D7_071E_4522_A669_8E45D3089B56__INCLUDED_
  24. #if _MSC_VER > 1000
  25. #pragma once
  26. #endif // _MSC_VER > 1000
  27. // GuiDockToolBar.h : header file
  28. //
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CGuiDockToolBar window
  31. #define AFX_TOOLBAR  0xffff
  32. class GUILIBDLLEXPORT CGuiDockToolBar : public CControlBar
  33. {
  34. // Construction
  35. public:
  36. CGuiDockToolBar();
  37. // Attributes
  38. public:
  39. // Operations
  40. public:
  41. // Overrides
  42. // ClassWizard generated virtual function overrides
  43. //{{AFX_VIRTUAL(CGuiDockToolBar)
  44. public:
  45. virtual BOOL Create(CWnd* pParentWnd, DWORD dwAling);
  46. //}}AFX_VIRTUAL
  47. // Implementation
  48. public:
  49. virtual void OnUpdateCmdUI(CFrameWnd* pTarget, BOOL bDisableIfNoHndler);
  50. virtual CSize CalcFixedLayout(BOOL bStretch, BOOL bHorz);
  51. virtual ~CGuiDockToolBar();
  52. // Generated message map functions
  53. protected:
  54. int  m_Size;
  55. COLORREF m_clrface;
  56. protected:
  57. //{{AFX_MSG(CGuiDockToolBar)
  58. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  59. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  60. afx_msg void OnPaint();
  61. afx_msg void OnNcCalcSize(BOOL bCalcValidRects, NCCALCSIZE_PARAMS FAR* lpncsp);
  62. afx_msg void OnSysColorChange();
  63. //}}AFX_MSG
  64. DECLARE_MESSAGE_MAP()
  65. };
  66. /////////////////////////////////////////////////////////////////////////////
  67. //{{AFX_INSERT_LOCATION}}
  68. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  69. #endif // !defined(AFX_GUIDOCKTOOLBAR_H__83DAE7D7_071E_4522_A669_8E45D3089B56__INCLUDED_)