12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- // ResizablePage.cpp : implementation file
- //
- /////////////////////////////////////////////////////////////////////////////
- //
- // Copyright (C) 2000-2001 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!
- //
- /////////////////////////////////////////////////////////////////////////////
- #include "stdafx.h"
- #include "ResizablePage.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CResizablePage
- IMPLEMENT_DYNCREATE(CResizablePage, CPropertyPage)
- inline void CResizablePage::Construct()
- {
- m_bInitDone = FALSE;
- }
- CResizablePage::CResizablePage()
- {
- Construct();
- }
- CResizablePage::CResizablePage(UINT nIDTemplate, UINT nIDCaption)
- : CPropertyPage(nIDTemplate, nIDCaption)
- {
- Construct();
- }
- CResizablePage::CResizablePage(LPCTSTR lpszTemplateName, UINT nIDCaption)
- : CPropertyPage(lpszTemplateName, nIDCaption)
- {
- Construct();
- }
- CResizablePage::~CResizablePage()
- {
- }
- BEGIN_MESSAGE_MAP(CResizablePage, CPropertyPage)
- //{{AFX_MSG_MAP(CResizablePage)
- ON_WM_SIZE()
- ON_WM_ERASEBKGND()
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CResizablePage message handlers
- BOOL CResizablePage::OnInitDialog()
- {
- CPropertyPage::OnInitDialog();
-
- /* // gets the initial size as the min track size
- CRect rc;
- GetWindowRect(&rc);
- */
- m_bInitDone = TRUE;
- return TRUE; // return TRUE unless you set the focus to a control
- // EXCEPTION: OCX Property Pages should return FALSE
- }
- void CResizablePage::OnSize(UINT nType, int cx, int cy)
- {
- CWnd::OnSize(nType, cx, cy);
-
- if (m_bInitDone)
- ArrangeLayout();
- }
- BOOL CResizablePage::OnEraseBkgnd(CDC* pDC)
- {
- ClipChildren(pDC);
-
- return CPropertyPage::OnEraseBkgnd(pDC);
- }
|