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

对话框与窗口

开发平台:

Visual C++

  1. // CommandBarsDesignerView.h : interface of the CCommandBarsDesignerView class
  2. //
  3. // This file is a part of the XTREME TOOLKIT PRO MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. #if !defined(AFX_COMMANDBARSDESIGNERVIEW_H__CF86FF0B_B006_4C6A_B760_0DEF6028053F__INCLUDED_)
  21. #define AFX_COMMANDBARSDESIGNERVIEW_H__CF86FF0B_B006_4C6A_B760_0DEF6028053F__INCLUDED_
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. class CEmbeddedFrame;
  26. #include "CommandBarsDesignerDesignerView.h"
  27. #include "CommandBarsDesignerEditView.h"
  28. class CCommandBarsDesignerDoc;
  29. class CCommandBarsDesignerView : public CView
  30. {
  31. protected: // create from serialization only
  32. CCommandBarsDesignerView();
  33. DECLARE_DYNCREATE(CCommandBarsDesignerView)
  34. void OnUpdateFrameTitle();
  35. void Serialize(CArchive& ar);
  36. // Attributes
  37. public:
  38. CCommandBarsDesignerDoc* GetDocument();
  39. CEmbeddedFrame* GetEmbeddedFrame();
  40. CXTPTabControl m_wndTabControl;
  41. BOOL AddView(CRuntimeClass* pViewClass, LPCTSTR lpszTitle, int nIcon);
  42. void UpdateDocTitle();
  43. // Operations
  44. public:
  45. // Overrides
  46. // ClassWizard generated virtual function overrides
  47. //{{AFX_VIRTUAL(CCommandBarsDesignerView)
  48. public:
  49. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  50. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  51. protected:
  52. //}}AFX_VIRTUAL
  53. // Implementation
  54. public:
  55. virtual ~CCommandBarsDesignerView();
  56. #ifdef _DEBUG
  57. virtual void AssertValid() const;
  58. virtual void Dump(CDumpContext& dc) const;
  59. #endif
  60. void OnInitialUpdate();
  61. protected:
  62. // Generated message map functions
  63. protected:
  64. //{{AFX_MSG(CCommandBarsDesignerView)
  65. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  66. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  67. afx_msg void OnPaint();
  68. afx_msg void OnSize(UINT nType, int cx, int cy);
  69. //}}AFX_MSG
  70. afx_msg void OnSelectedChanged(NMHDR* pNMHDR, LRESULT* pResult);
  71. afx_msg int OnMouseActivate(CWnd* pDesktopWnd, UINT nHitTest, UINT message);
  72. DECLARE_MESSAGE_MAP()
  73. };
  74. #ifndef _DEBUG  // debug version in CommandBarsDesignerView.cpp
  75. inline CCommandBarsDesignerDoc* CCommandBarsDesignerView::GetDocument()
  76. { return (CCommandBarsDesignerDoc*)m_pDocument; }
  77. #endif
  78. /////////////////////////////////////////////////////////////////////////////
  79. //{{AFX_INSERT_LOCATION}}
  80. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  81. #endif // !defined(AFX_COMMANDBARSDESIGNERVIEW_H__CF86FF0B_B006_4C6A_B760_0DEF6028053F__INCLUDED_)