workbar.h
上传用户:netltd
上传日期:2013-02-12
资源大小:7234k
文件大小:1k
源码类别:

绘图程序

开发平台:

Visual C++

  1. #if !defined(MYBAR_H_INCLUDED)
  2. #define MYBAR_H_INCLUDED
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif // _MSC_VER >= 1000
  6. // workbar.h : header file
  7. //
  8. #include <afxole.h>
  9. #include "sizecbar.h"
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CMyWorkBar window
  12. class CMyWorkBar : public CSizingControlBar
  13. {
  14. // Construction
  15. public:
  16.     CMyWorkBar();
  17. // Attributes
  18. public:
  19. protected:
  20.     CTabCtrl   m_wndTab;
  21. CTreeCtrl  m_wndTree;
  22. CListCtrl  m_wndList;
  23.     CFont      m_font;
  24. // Overridables
  25.     virtual void OnUpdateCmdUI(CFrameWnd* pTarget, BOOL bDisableIfNoHndler);
  26. // Operations
  27. public:
  28. // Overrides
  29.     // ClassWizard generated virtual function overrides
  30.     //{{AFX_VIRTUAL(CMyWorkBar)
  31.     //}}AFX_VIRTUAL
  32. // Implementation
  33. public:
  34.     virtual ~CMyWorkBar();
  35.     // Generated message map functions
  36. protected:
  37.     //{{AFX_MSG(CMyWorkBar)
  38.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  39.     afx_msg void OnSize(UINT nType, int cx, int cy);
  40.     //}}AFX_MSG
  41.     DECLARE_MESSAGE_MAP()
  42. };
  43. /////////////////////////////////////////////////////////////////////////////
  44. //{{AFX_INSERT_LOCATION}}
  45. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  46. #endif // !defined(AFX_MYWORKBAR_H__3FE34D81_820A_11D1_88BD_AE3AF0BB8026__INCLUDED_)