1/*
2 * Copyright 2008-2010, Haiku, Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 *
5 * Authors:
6 *		Michael Pfeiffer <laplace@users.sourceforge.net>
7 */
8#ifndef UNINSTALL_PAGE_H
9#define UNINSTALL_PAGE_H
10
11
12#include "WizardPageView.h"
13
14
15class BTextView;
16
17
18class UninstallPage : public WizardPageView {
19public:
20								UninstallPage(BMessage* settings, BRect frame,
21									const char* name);
22	virtual						~UninstallPage();
23
24	virtual	void				FrameResized(float width, float height);
25
26private:
27			void				_BuildUI();
28			void				_Layout();
29
30private:
31			BTextView*			fDescription;
32};
33
34
35#endif	// UNINSTALL_PAGE_H
36