CustomBar.h
上传用户:latoyin
上传日期:2017-10-19
资源大小:2882k
文件大小:1k
源码类别:

数据库系统

开发平台:

Visual C++

  1. #if !defined(AFX_CUSTOMBAR_H__C6107326_7F30_4CAE_8E03_F9F63EC0A9EF__INCLUDED_)
  2. #define AFX_CUSTOMBAR_H__C6107326_7F30_4CAE_8E03_F9F63EC0A9EF__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // CustomBar.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CCustomBar window
  10. class CCustomBar : public CToolBarCtrl
  11. {
  12. // Overrides
  13. // ClassWizard generated virtual function overrides
  14. //{{AFX_VIRTUAL(CCustomBar)
  15. public:
  16. virtual BOOL Create( DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID);
  17. //}}AFX_VIRTUAL
  18. // Implementation
  19. public:
  20. void DoMouseLeave();
  21. void DoMouseMove(int strid);
  22. CCustomBar();
  23. virtual ~CCustomBar();
  24. // Generated message map functions
  25. protected:
  26. int m_ButtonCount; //记录工具栏中的按钮数
  27. CImageList* imagelist;
  28. //{{AFX_MSG(CCustomBar)
  29. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  30. //}}AFX_MSG
  31. DECLARE_MESSAGE_MAP()
  32. };
  33. /////////////////////////////////////////////////////////////////////////////
  34. //{{AFX_INSERT_LOCATION}}
  35. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  36. #endif // !defined(AFX_CUSTOMBAR_H__C6107326_7F30_4CAE_8E03_F9F63EC0A9EF__INCLUDED_)