You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
2.4 KiB
81 lines
2.4 KiB
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1997-2002.
|
|
//
|
|
// File: Wiz97Sht.cpp
|
|
//
|
|
// Contents: Base class for cert find dialog
|
|
//
|
|
//----------------------------------------------------------------------------\
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#include "stdafx.h"
|
|
#include "Wiz97Sht.h"
|
|
#include "Wiz97PPg.h"
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
// Construction/Destruction
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
CWizard97PropertySheet::CWizard97PropertySheet(UINT nIDCaption, UINT nIDWaterMark, UINT nIDBanner)
|
|
{
|
|
// security review 2/27/2002 BryanWal ok
|
|
::ZeroMemory (&m_pPagePtr, sizeof (m_pPagePtr));
|
|
::ZeroMemory (&m_pPageArr, sizeof (m_pPageArr));
|
|
|
|
// NOTICE: do this because of header mismatch
|
|
// security review 2/27/2002 BryanWal ok
|
|
::ZeroMemory (&m_psh, sizeof(m_psh));
|
|
m_psh.dwFlags = PSH_WIZARD | PSH_WIZARD97 | PSH_WATERMARK | PSH_HEADER;
|
|
m_psh.pszbmWatermark = MAKEINTRESOURCE (nIDWaterMark);
|
|
m_psh.pszbmHeader = MAKEINTRESOURCE (nIDBanner);
|
|
m_psh.hplWatermark = NULL;
|
|
|
|
|
|
m_psh.dwSize = sizeof (m_psh);
|
|
m_psh.hInstance = AfxGetApp()->m_hInstance;
|
|
m_psh.hwndParent = NULL;
|
|
|
|
VERIFY (m_title.LoadString (nIDCaption));
|
|
m_psh.pszCaption = (LPCWSTR) m_title;
|
|
m_psh.phpage = NULL;
|
|
m_psh.nStartPage = 0;
|
|
m_psh.nPages = 0;
|
|
|
|
m_nPageCount = 0;
|
|
}
|
|
|
|
CWizard97PropertySheet::~CWizard97PropertySheet()
|
|
{
|
|
}
|
|
|
|
|
|
INT_PTR CWizard97PropertySheet::DoWizard(HWND hParent)
|
|
{
|
|
m_psh.hwndParent = hParent;
|
|
// if ( m_nPageCount > 0 && m_pPagePtr[m_nPageCount - 1] )
|
|
// m_pPagePtr[m_nPageCount - 1]->m_bLast = TRUE;
|
|
|
|
m_psh.phpage = m_pPageArr;
|
|
m_psh.nStartPage = 0;
|
|
m_psh.nPages = m_nPageCount;
|
|
|
|
return PropertySheet (&m_psh);
|
|
}
|
|
|
|
void CWizard97PropertySheet::AddPage(CWizard97PropertyPage * pPage)
|
|
{
|
|
ASSERT (pPage);
|
|
if ( pPage )
|
|
{
|
|
ASSERT (m_nPageCount < NUM_PAGES);
|
|
m_pPagePtr[m_nPageCount] = pPage;
|
|
m_pPageArr[m_nPageCount] = ::MyCreatePropertySheetPage (
|
|
(AFX_OLDPROPSHEETPAGE*) &(pPage->m_psp97));
|
|
ASSERT (m_pPageArr[m_nPageCount]);
|
|
m_nPageCount++;
|
|
pPage->m_pWiz = this;
|
|
}
|
|
}
|
|
|