62 lines
845 B
C++
Raw Permalink Normal View History

2001-01-01 00:00:00 +01:00
// Copyright (C) 1997 Microsoft Corporation
//
// new child page
//
// 1-5-98 sburns
#ifndef CHILDPAGE_HPP_INCLUDED
#define CHILDPAGE_HPP_INCLUDED
class ChildPage : public DCPromoWizardPage
{
public:
ChildPage();
protected:
virtual ~ChildPage();
// Dialog overrides
virtual
bool
OnCommand(
HWND windowFrom,
unsigned controlIDFrom,
unsigned code);
virtual
void
OnInit();
// PropertyPage overrides
virtual
bool
OnSetActive();
// DCPromoWizardPage overrides
virtual
int
Validate();
private:
HWND currentFocus;
// not defined; no copying allowed
ChildPage(const ChildPage&);
const ChildPage& operator=(const ChildPage&);
};
#endif // CHILDPAGE_HPP_INCLUDED