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

对话框与窗口

开发平台:

Visual C++

  1. // XTPMarkupPage.cpp: implementation of the CXTPMarkupPage 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. #include "stdafx.h"
  21. #include "XTPMarkupPage.h"
  22. #include "XTPMarkupBuilder.h"
  23. #ifdef _DEBUG
  24. #undef THIS_FILE
  25. static char THIS_FILE[]=__FILE__;
  26. #define new DEBUG_NEW
  27. #endif
  28. //////////////////////////////////////////////////////////////////////
  29. // Construction/Destruction
  30. //////////////////////////////////////////////////////////////////////
  31. IMPLEMENT_MARKUPCLASS(L"Page", CXTPMarkupPage, CXTPMarkupFrameworkElement);
  32. void CXTPMarkupPage::RegisterMarkupClass()
  33. {
  34. }
  35. CXTPMarkupPage::CXTPMarkupPage()
  36. {
  37. m_pContent = NULL;
  38. }
  39. CXTPMarkupPage::~CXTPMarkupPage()
  40. {
  41. SetContent(NULL);
  42. }
  43. CXTPMarkupUIElement* CXTPMarkupPage::GetContent() const
  44. {
  45. return m_pContent;
  46. }
  47. void CXTPMarkupPage::SetContent(CXTPMarkupUIElement* pContent)
  48. {
  49. if (m_pContent)
  50. {
  51. m_pContent->SetLogicalParent(NULL);
  52. MARKUP_RELEASE(m_pContent);
  53. }
  54. m_pContent = pContent;
  55. if (m_pContent)
  56. {
  57. m_pContent->SetLogicalParent(this);
  58. }
  59. }
  60. CSize CXTPMarkupPage::MeasureOverride(CXTPMarkupDrawingContext* pDC, CSize szAvailableSize)
  61. {
  62. if (m_pContent)
  63. {
  64. m_pContent->Measure(pDC, szAvailableSize);
  65. return m_pContent->GetDesiredSize();
  66. }
  67. return CSize(0, 0);
  68. }
  69. CSize CXTPMarkupPage::ArrangeOverride(CSize szFinalSize)
  70. {
  71. if (m_pContent)
  72. {
  73. m_pContent->Arrange(CRect(0, 0, szFinalSize.cx, szFinalSize.cy));
  74. }
  75. return szFinalSize;
  76. }
  77. void CXTPMarkupPage::SetContentObject(CXTPMarkupBuilder* pBuilder, CXTPMarkupObject* pContent)
  78. {
  79. if (!pContent->IsKindOf(MARKUP_TYPE(CXTPMarkupUIElement)))
  80. {
  81. pBuilder->ThrowBuilderException(CXTPMarkupBuilder::FormatString(_T("'%ls' object cannot be added to '%ls'. Object cannot be converted to type 'CXTPMarkupUIElement'"),
  82. (LPCTSTR)pContent->GetType()->m_lpszClassName, (LPCTSTR)GetType()->m_lpszClassName));
  83. }
  84. if (m_pContent != NULL)
  85. {
  86. pBuilder->ThrowBuilderException(CXTPMarkupBuilder::FormatString(_T("'%ls' already has a child and cannot add ")
  87. _T("'%ls'. '%ls' can accept only one child."),
  88. (LPCTSTR)GetType()->m_lpszClassName, (LPCTSTR)pContent->GetType()->m_lpszClassName, (LPCTSTR)GetType()->m_lpszClassName));
  89. }
  90. SetContent((CXTPMarkupUIElement*)pContent);
  91. }
  92. BOOL CXTPMarkupPage::HasContentObject() const
  93. {
  94. return m_pContent != NULL;
  95. }
  96. CXTPMarkupInputElement* CXTPMarkupPage::InputHitTestOverride(CPoint /*point*/) const
  97. {
  98. return NULL;
  99. }