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.
64 lines
922 B
64 lines
922 B
// 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
|