repository_infos: Enable automatic updates on the main Haiku repostiory.
[haiku.git] / src / apps / bootmanager / DescriptionPage.h
blobb92c4e684d979b9749b2df20aab1d4319eef6580
1 /*
2 * Copyright 2008-2011, Haiku, Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Michael Pfeiffer <laplace@users.sourceforge.net>
7 */
8 #ifndef DESCRIPTION_PAGE_H
9 #define DESCRIPTION_PAGE_H
12 #include "WizardPageView.h"
15 class BTextView;
17 class DescriptionPage : public WizardPageView {
18 public:
19 DescriptionPage(const char* name,
20 const char* description, bool hasHeading);
21 virtual ~DescriptionPage();
23 private:
24 void _BuildUI(const char* description,
25 bool hasHeading);
27 private:
28 BTextView* fDescription;
32 #endif // DESCRIPTION_PAGE_H