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.
68 lines
1.7 KiB
68 lines
1.7 KiB
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
//
|
|
// Copyright (C) Microsoft Corporation, 1998 - 1999
|
|
//
|
|
// File: csw97ppg.h
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
#if !defined(AFX_WIZ97PPG_H__386C7213_A248_11D1_8618_00C04FB94F17__INCLUDED_)
|
|
#define AFX_WIZ97PPG_H__386C7213_A248_11D1_8618_00C04FB94F17__INCLUDED_
|
|
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif // _MSC_VER >= 1000
|
|
|
|
#include "csw97sht.h"
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CWizard97PropertyPage dialog
|
|
|
|
#define CSW97PG_IDLARGEFONTNAME 0
|
|
#define CSW97PG_IDLARGEFONTSIZE 1
|
|
#define CSW97PG_IDSMALLFONTNAME 2
|
|
#define CSW97PG_IDSMALLFONTSIZE 3
|
|
#define CSW97PG_COUNT 4
|
|
|
|
class CWizard97PropertyPage : public PropertyPage
|
|
{
|
|
// Construction
|
|
public:
|
|
PROPSHEETPAGE m_psp97;
|
|
CString m_szHeaderTitle;
|
|
CString m_szHeaderSubTitle;
|
|
CWizard97PropertySheet *m_pWiz;
|
|
|
|
void InitWizard97(bool bHideHeader);
|
|
CWizard97PropertyPage();
|
|
CWizard97PropertyPage(
|
|
HINSTANCE hInstance,
|
|
UINT nIDTemplate,
|
|
UINT rgnIDFont[CSW97PG_COUNT]);
|
|
virtual ~CWizard97PropertyPage();
|
|
|
|
// Dialog Data
|
|
|
|
|
|
// Overrides
|
|
|
|
// Implementation
|
|
protected:
|
|
virtual BOOL OnInitDialog();
|
|
|
|
BOOL SetupFonts();
|
|
HFONT GetBigBoldFont();
|
|
HFONT GetBoldFont();
|
|
|
|
CFont m_boldFont;
|
|
CFont m_bigBoldFont;
|
|
HINSTANCE m_hInstance;
|
|
UINT m_rgnIDFont[CSW97PG_COUNT];
|
|
};
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // !defined(AFX_WIZ97PPG_H__386C7213_A248_11D1_8618_00C04FB94F17__INCLUDED_)
|