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

对话框与窗口

开发平台:

Visual C++

  1. // CommandBarsDesignerDesignerView.h : header file
  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_COMMANDBARSDESIGNERDESIGNERVIEW_H__BC5E3607_EDDC_4AA8_B796_D69BFEBE79EF__INCLUDED_)
  21. #define AFX_COMMANDBARSDESIGNERDESIGNERVIEW_H__BC5E3607_EDDC_4AA8_B796_D69BFEBE79EF__INCLUDED_
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. class CRectTrackerEx : public CRectTracker
  26. {
  27. public:
  28. CRectTrackerEx()
  29. : CRectTracker(CRect(10, 10, 310, 289) , CRectTracker::resizeOutside|CRectTracker::hatchedBorder   )
  30. {
  31. m_nHandleSize = 7;
  32. m_sizeMin = CSize (150, 120);
  33. }
  34. UINT GetHandleMask() const
  35. {
  36. return 32 + 4 + 64;
  37. }
  38. };
  39. class CCommandBarsDesignerDoc;
  40. class CEmbeddedFrame;
  41. /////////////////////////////////////////////////////////////////////////////
  42. // CCommandBarsDesignerDesignerView view
  43. class CCommandBarsDesignerDesignerView : public CView
  44. {
  45. protected: // create from serialization only
  46. CCommandBarsDesignerDesignerView();
  47. DECLARE_DYNCREATE(CCommandBarsDesignerDesignerView)
  48. // Attributes
  49. public:
  50. CCommandBarsDesignerDoc* GetDocument();
  51. void OnUpdateFrameTitle();
  52. CEmbeddedFrame* m_pFrame;
  53. CRectTrackerEx m_rectTracker;
  54. // Operations
  55. public:
  56. // Overrides
  57. // ClassWizard generated virtual function overrides
  58. //{{AFX_VIRTUAL(CCommandBarsDesignerDesignerView)
  59. public:
  60. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  61. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  62. virtual void OnInitialUpdate();
  63. protected:
  64. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  65. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  66. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  67. virtual void OnActivateView(BOOL bActivate, CView* pActivateView, CView* pDeactiveView);
  68. //}}AFX_VIRTUAL
  69. // Implementation
  70. public:
  71. virtual ~CCommandBarsDesignerDesignerView();
  72. #ifdef _DEBUG
  73. virtual void AssertValid() const;
  74. virtual void Dump(CDumpContext& dc) const;
  75. #endif
  76. protected:
  77. // Generated message map functions
  78. protected:
  79. //{{AFX_MSG(CCommandBarsDesignerDesignerView)
  80. afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);
  81. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  82. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  83. afx_msg void OnCommandbarsSettings();
  84. afx_msg void OnCommandbarsResourcesymbols();
  85. afx_msg void OnFileExportXmldocument();
  86. afx_msg void OnDesignMode();
  87. afx_msg void OnUpdateDesignMode(CCmdUI* pCmdUI);
  88. afx_msg void OnUpdateFileExportXmldocument(CCmdUI* pCmdUI);
  89. afx_msg void OnCommandbarsMenugrabber();
  90. //}}AFX_MSG
  91. DECLARE_MESSAGE_MAP()
  92. };
  93. /////////////////////////////////////////////////////////////////////////////
  94. #ifndef _DEBUG  // debug version in CommandBarsDesignerView.cpp
  95. inline CCommandBarsDesignerDoc* CCommandBarsDesignerDesignerView::GetDocument()
  96. { return (CCommandBarsDesignerDoc*)m_pDocument; }
  97. #endif
  98. //{{AFX_INSERT_LOCATION}}
  99. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  100. #endif // !defined(AFX_COMMANDBARSDESIGNERDESIGNERVIEW_H__BC5E3607_EDDC_4AA8_B796_D69BFEBE79EF__INCLUDED_)