TabbedToolbarView.h
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // TabbedToolbarView.h : interface of the CTabbedToolbarView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_TABBEDTOOLBARVIEW_H__0D1B9940_9785_4479_949E_1BBE4A3617CB__INCLUDED_)
  5. #define AFX_TABBEDTOOLBARVIEW_H__0D1B9940_9785_4479_949E_1BBE4A3617CB__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "TabClientPage.h"
  10. #include "ThemePage.h"
  11. class CTabbedToolbarView : public CFormView
  12. {
  13. protected: // create from serialization only
  14. CTabbedToolbarView();
  15. DECLARE_DYNCREATE(CTabbedToolbarView)
  16. public:
  17. //{{AFX_DATA(CTabbedToolbarView)
  18. enum{ IDD = IDD_TABBEDTOOLBAR_FORM };
  19. //}}AFX_DATA
  20. // Attributes
  21. public:
  22. CTabbedToolbarDoc* GetDocument();
  23. CXTPTabControl m_wndTabControl;
  24. CTabControlPage m_pageTabControl;
  25. CThemePage m_pageTheme;
  26. // Operations
  27. public:
  28. // Overrides
  29. // ClassWizard generated virtual function overrides
  30. //{{AFX_VIRTUAL(CTabbedToolbarView)
  31. public:
  32. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  33. protected:
  34. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  35. virtual void OnInitialUpdate(); // called first time after construct
  36. virtual void OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint);
  37. //}}AFX_VIRTUAL
  38. // Implementation
  39. public:
  40. virtual ~CTabbedToolbarView();
  41. #ifdef _DEBUG
  42. virtual void AssertValid() const;
  43. virtual void Dump(CDumpContext& dc) const;
  44. #endif
  45. protected:
  46. // Generated message map functions
  47. protected:
  48. //{{AFX_MSG(CTabbedToolbarView)
  49. //}}AFX_MSG
  50. DECLARE_MESSAGE_MAP()
  51. };
  52. #ifndef _DEBUG  // debug version in TabbedToolbarView.cpp
  53. inline CTabbedToolbarDoc* CTabbedToolbarView::GetDocument()
  54.    { return (CTabbedToolbarDoc*)m_pDocument; }
  55. #endif
  56. /////////////////////////////////////////////////////////////////////////////
  57. //{{AFX_INSERT_LOCATION}}
  58. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  59. #endif // !defined(AFX_TABBEDTOOLBARVIEW_H__0D1B9940_9785_4479_949E_1BBE4A3617CB__INCLUDED_)