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

对话框与窗口

开发平台:

Visual C++

  1. // XTResizePropertyPage.cpp: implementation of the CXTResizePropertyPage class.
  2. //
  3. // This file is a part of the XTREME CONTROLS 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 "Common/XTPWinThemeWrapper.h"
  22. #include "XTResizeRect.h"
  23. #include "XTResizePoint.h"
  24. #include "XTResize.h"
  25. #include "XTResizePropertyPage.h"
  26. #ifdef _DEBUG
  27. #undef THIS_FILE
  28. static char THIS_FILE[] = __FILE__;
  29. #define new DEBUG_NEW
  30. #endif
  31. #pragma warning(disable: 4355) // 'this' : used in base member initializer list
  32. /////////////////////////////////////////////////////////////////////////////
  33. // CXTResizePropertyPage
  34. IMPLEMENT_DYNCREATE(CXTResizePropertyPage, CPropertyPage)
  35. BEGIN_MESSAGE_MAP(CXTResizePropertyPage, CPropertyPage)
  36. //{{AFX_MSG_MAP(CXTResizePropertyPage)
  37. ON_WM_SIZE()
  38. ON_WM_GETMINMAXINFO()
  39. ON_WM_DESTROY()
  40. //}}AFX_MSG_MAP
  41. END_MESSAGE_MAP()
  42. /////////////////////////////////////////////////////////////////////////////
  43. // CXTResizePropertyPage construction/destruction
  44. CXTResizePropertyPage::CXTResizePropertyPage(const UINT nTemplate, const UINT nCaption, const UINT nFlags) :
  45. CPropertyPage(nTemplate, nCaption),
  46. CXTResize(this, nFlags | xtResizeNoSizeIcon)
  47. {
  48. m_nDialogID = nTemplate;
  49. }
  50. BOOL CXTResizePropertyPage::OnInitDialog()
  51. {
  52. CPropertyPage::OnInitDialog();
  53. CXTResize::Init();
  54. return TRUE;
  55. }
  56. void CXTResizePropertyPage::OnGetMinMaxInfo(MINMAXINFO* pMMI)
  57. {
  58. CXTResize::GetMinMaxInfo(pMMI);
  59. }
  60. void CXTResizePropertyPage::OnSize(UINT nType, int cx, int cy)
  61. {
  62. CPropertyPage::OnSize(nType, cx, cy);
  63. CXTResize::Size();
  64. }
  65. void CXTResizePropertyPage::OnDestroy()
  66. {
  67. // Save window placement if AutoLoadPlacement was used.
  68. if (!m_strSection.IsEmpty())
  69. {
  70. SavePlacement(m_strSection);
  71. }
  72. CPropertyPage::OnDestroy();
  73. }