2 * Copyright 2008-2011, Haiku, Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
6 * Michael Pfeiffer <laplace@users.sourceforge.net>
8 #ifndef WIZARD_PAGE_VIEW_H
9 #define WIZARD_PAGE_VIEW_H
18 class WizardPageView
: public BView
{
20 WizardPageView(BMessage
* settings
, BRect frame
,
22 uint32 resizingMode
= B_FOLLOW_ALL
,
23 uint32 flags
= B_WILL_DRAW
);
24 WizardPageView(BMessage
* settings
,
26 virtual ~WizardPageView();
28 virtual void PageCompleted();
30 virtual BTextView
* CreateDescription(BRect frame
, const char* name
,
31 const char* description
);
32 virtual BTextView
* CreateDescription(const char* name
,
33 const char* description
);
35 virtual void MakeHeading(BTextView
* view
);
36 virtual void LayoutDescriptionVertically(BTextView
* view
);
46 #endif // WIZARD_PAGE_VIEW_H