DefaultPartitionPage::DefaultPartitionPage(BMessage* settings, BRect frame,
	const char* name)
	:
	WizardPageView(settings, frame, name, B_FOLLOW_ALL,
		B_WILL_DRAW | B_FRAME_EVENTS | B_FULL_UPDATE_ON_RESIZE)
{
	_BuildUI();
}
Beispiel #2
0
FileSelectionPage::FileSelectionPage(BMessage* settings, BRect frame, const char* name,
		const char* description, file_panel_mode mode)
	: WizardPageView(settings, frame, name, B_FOLLOW_ALL,
		B_WILL_DRAW | B_FRAME_EVENTS | B_FULL_UPDATE_ON_RESIZE)
	, fMode(mode)
	, fFilePanel(NULL)
{
	_BuildUI(description);
}
PartitionsPage::PartitionsPage(BMessage* settings, const char* name)
	:
	WizardPageView(settings, name)
{
	_BuildUI();
}