Windows2003-3790/admin/dcpromo/exe/finish.hpp

64 lines
922 B
C++
Raw Permalink Normal View History

2001-01-01 00:00:00 +01:00
// Copyright (C) 1997 Microsoft Corporation
//
// finish page
//
// 12-19-97 sburns
#ifndef FINISH_HPP_INCLUDED
#define FINISH_HPP_INCLUDED
#include "MultiLineEditBoxThatForwardsEnterKey.hpp"
class FinishPage : public WizardPage
{
public:
FinishPage();
protected:
virtual ~FinishPage();
// Dialog overrides
virtual
bool
OnCommand(
HWND windowFrom,
unsigned controlIdFrom,
unsigned code);
virtual
void
OnInit();
// PropertyPage overrides
virtual
bool
OnSetActive();
virtual
bool
OnWizFinish();
private:
bool needToKillSelection;
MultiLineEditBoxThatForwardsEnterKey multiLineEdit;
// not defined; no copying allowed
FinishPage(const FinishPage&);
const FinishPage& operator=(const FinishPage&);
};
#endif // FINISH_HPP_INCLUDED