2 * Copyright 2008-2010, Haiku, Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
6 * Michael Pfeiffer <laplace@users.sourceforge.net>
12 #include <GroupView.h>
19 const uint32 kMessageNext
= 'next';
20 const uint32 kMessagePrevious
= 'prev';
23 class WizardView
: public BGroupView
{
25 WizardView(const char* name
);
26 virtual ~WizardView();
28 virtual void SetPage(WizardPageView
* page
);
30 virtual void PageCompleted();
32 virtual void SetPreviousButtonEnabled(bool enabled
);
33 virtual void SetNextButtonEnabled(bool enabled
);
34 virtual void SetPreviousButtonLabel(const char* text
);
35 virtual void SetNextButtonLabel(const char* text
);
36 virtual void SetPreviousButtonHidden(bool hide
);
42 BGroupView
* fPageContainer
;
46 WizardPageView
* fPage
;
50 #endif // WIZARD_VIEW_H