mirror of https://github.com/tongzx/nt5src
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.
62 lines
798 B
62 lines
798 B
// Copyright (C) 1997 Microsoft Corporation
|
|
//
|
|
// new site page
|
|
//
|
|
// 1-6-98 sburns
|
|
|
|
|
|
|
|
#ifndef NEWSITEPAGE_HPP_INCLUDED
|
|
#define NEWSITEPAGE_HPP_INCLUDED
|
|
|
|
|
|
|
|
class NewSitePage : public DCPromoWizardPage
|
|
{
|
|
public:
|
|
|
|
NewSitePage();
|
|
|
|
protected:
|
|
|
|
virtual ~NewSitePage();
|
|
|
|
// 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:
|
|
|
|
void
|
|
Enable();
|
|
|
|
// not defined; no copying allowed
|
|
|
|
NewSitePage(const NewSitePage&);
|
|
const NewSitePage& operator=(const NewSitePage&);
|
|
};
|
|
|
|
|
|
|
|
#endif // NEWSITEPAGE_HPP_INCLUDED
|