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

对话框与窗口

开发平台:

Visual C++

  1. // GuiToolBar.h: interface for the GuiToolBar class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_GUITOOLBAR_H__38CE47D6_A6A2_11D5_A8C6_0008C7B2934C__INCLUDED_)
  5. #define AFX_GUITOOLBAR_H__38CE47D6_A6A2_11D5_A8C6_0008C7B2934C__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class GuiToolBar : public CControlBar  
  10. {
  11. public:
  12. GuiToolBar();
  13. virtual ~GuiToolBar();
  14. public:
  15. BOOL Create (CWnd* pParentWnd, CString m_szTitle,UINT uID,DWORD dwStyle=WS_CHILD| WS_VISIBLE| CBRS_LEFT);
  16. // Overridables
  17. virtual void OnUpdateCmdUI(CFrameWnd* pTarget, BOOL bDisableIfNoHndler);
  18. virtual CSize CalcFixedLayout(BOOL bStretch, BOOL bHorz);
  19. protected:
  20. int m_iBorder;
  21. CBrush cb;
  22. CRect mrcBorder;
  23. protected:
  24. //{{AFX_MSG(GuiToolBar)
  25. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  26.     afx_msg void OnNcPaint();
  27.     afx_msg void OnNcCalcSize(BOOL bCalcValidRects, NCCALCSIZE_PARAMS FAR* lpncsp);
  28.     afx_msg UINT OnNcHitTest(CPoint point);
  29.    // afx_msg void OnCaptureChanged(CWnd *pWnd);
  30.  //   afx_msg void OnSettingChange(UINT uFlags, LPCTSTR lpszSection);
  31.     afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  32.   //  afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  33.     afx_msg void OnNcLButtonDown(UINT nHitTest, CPoint point);
  34.     //afx_msg void OnWindowPosChanging(WINDOWPOS FAR* lpwndpos);
  35.     //afx_msg void OnPaint();
  36.   
  37.     //}}AFX_MSG
  38. DECLARE_MESSAGE_MAP()
  39. };
  40. #endif // !defined(AFX_GUITOOLBAR_H__38CE47D6_A6A2_11D5_A8C6_0008C7B2934C__INCLUDED_)