Source code of Windows XP (NT5)
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.
 
 
 
 
 
 

71 lines
1005 B

// Copyright (C) 1997 Microsoft Corporation
//
// confirmation page
//
// 12-22-97 sburns
#ifndef CONFIRM_HPP_INCLUDED
#define CONFIRM_HPP_INCLUDED
#include "page.hpp"
#include "MultiLineEditBoxThatForwardsEnterKey.hpp"
class ConfirmationPage : public DCPromoWizardPage
{
public:
ConfirmationPage();
protected:
virtual ~ConfirmationPage();
// Dialog overrides
virtual
bool
OnCommand(
HWND windowFrom,
unsigned controlIdFrom,
unsigned code);
virtual
void
OnInit();
// PropertyPage overrides
virtual
bool
OnSetActive();
// DCPromoWizardPage overrides
virtual
bool
OnWizNext();
virtual
int
Validate();
private:
bool needToKillSelection;
MultiLineEditBoxThatForwardsEnterKey multiLineEdit;
// not defined; no copying allowed
ConfirmationPage(const ConfirmationPage&);
const ConfirmationPage& operator=(const ConfirmationPage&);
};
#endif // CONFIRM_HPP_INCLUDED