2 * Copyright 2011, Axel Dörfler, axeld@pinc-software.de.
3 * Distributed under the terms of the MIT License.
10 #include "WizardPageView.h"
20 class DrivesPage
: public WizardPageView
{
22 DrivesPage(WizardView
* wizardView
,
23 const BootMenuList
& menus
,
24 BMessage
* settings
, const char* name
);
25 virtual ~DrivesPage();
27 virtual void PageCompleted();
30 void AttachedToWindow();
31 void MessageReceived(BMessage
* message
);
34 void _FillDrivesView(const BootMenuList
& menus
);
35 DriveItem
* _SelectedDriveItem();
36 void _UpdateWizardButtons(DriveItem
* item
);
39 WizardView
* fWizardView
;
40 BListView
* fDrivesView
;
41 bool fHasInstallableItems
;
45 #endif // DRIVES_PAGE_H