1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- // ResizablePageEx.cpp : implementation file
- //
- /////////////////////////////////////////////////////////////////////////////
- //
- // Copyright (C) 2000-2002 by Paolo Messina
- // (http://www.geocities.com/ppescher - ppescher@yahoo.com)
- //
- // The contents of this file are subject to the Artistic License (the "License").
- // You may not use this file except in compliance with the License.
- // You may obtain a copy of the License at:
- // http://www.opensource.org/licenses/artistic-license.html
- //
- // If you find this code useful, credits would be nice!
- //
- /////////////////////////////////////////////////////////////////////////////
- #define _WIN32_IE 0x0400 // for CPropertyPageEx, CPropertySheetEx
- #define _WIN32_WINNT 0x0500 // for CPropertyPageEx, CPropertySheetEx
- #include <afxwin.h> // MFC core and standard components
- #include <afxext.h> // MFC extensions
- #include <afxcmn.h> // MFC support for Windows Common Controls
- #include "ResizablePageEx.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CResizablePageEx
- IMPLEMENT_DYNCREATE(CResizablePageEx, CPropertyPageEx)
- CResizablePageEx::CResizablePageEx()
- {
- }
- CResizablePageEx::CResizablePageEx(UINT nIDTemplate, UINT nIDCaption, UINT nIDHeaderTitle, UINT nIDHeaderSubTitle)
- : CPropertyPageEx(nIDTemplate, nIDCaption, nIDHeaderTitle, nIDHeaderSubTitle)
- {
- }
- CResizablePageEx::CResizablePageEx(LPCTSTR lpszTemplateName, UINT nIDCaption, UINT nIDHeaderTitle, UINT nIDHeaderSubTitle)
- : CPropertyPageEx(lpszTemplateName, nIDCaption, nIDHeaderTitle, nIDHeaderSubTitle)
- {
- }
- CResizablePageEx::~CResizablePageEx()
- {
- }
- BEGIN_MESSAGE_MAP(CResizablePageEx, CPropertyPageEx)
- //{{AFX_MSG_MAP(CResizablePageEx)
- ON_WM_SIZE()
- ON_WM_ERASEBKGND()
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CResizablePageEx message handlers
- void CResizablePageEx::OnSize(UINT nType, int cx, int cy)
- {
- CWnd::OnSize(nType, cx, cy);
-
- ArrangeLayout();
- }
- BOOL CResizablePageEx::OnEraseBkgnd(CDC* pDC)
- {
- // Windows XP doesn't like clipping regions ...try this!
- EraseBackground(pDC);
- return TRUE;
- /* ClipChildren(pDC); // old-method (for safety)
-
- return CPropertyPageEx::OnEraseBkgnd(pDC);
- */
- }
- BOOL CResizablePageEx::NeedsRefresh(const CResizableLayout::LayoutInfo& layout,
- const CRect& rectOld, const CRect& rectNew)
- {
- if (m_psp.dwFlags | PSP_HIDEHEADER)
- return TRUE;
- return CResizableLayout::NeedsRefresh(layout, rectOld, rectNew);
- }
|