Symbol: WizardView
src/apps/bootmanager/BootManagerController.cpp
244
BootManagerController::CreatePage(int32 state, WizardView* wizard)
src/apps/bootmanager/BootManagerController.cpp
71
BootManagerController::Previous(WizardView* wizard)
src/apps/bootmanager/BootManagerController.h
20
class WizardView;
src/apps/bootmanager/BootManagerController.h
37
virtual void Previous(WizardView* wizard);
src/apps/bootmanager/BootManagerController.h
42
virtual WizardPageView* CreatePage(int32 state, WizardView* wizard);
src/apps/bootmanager/BootManagerWindow.cpp
42
fWizardView = new WizardView("wizard");
src/apps/bootmanager/BootManagerWindow.h
17
class WizardView;
src/apps/bootmanager/BootManagerWindow.h
30
WizardView* fWizardView;
src/apps/bootmanager/DrivesPage.cpp
256
DrivesPage::DrivesPage(WizardView* wizardView, const BootMenuList& menus,
src/apps/bootmanager/DrivesPage.h
17
class WizardView;
src/apps/bootmanager/DrivesPage.h
22
DrivesPage(WizardView* wizardView,
src/apps/bootmanager/DrivesPage.h
39
WizardView* fWizardView;
src/apps/bootmanager/WizardController.cpp
103
WizardController::_ShowPage(WizardView* wizard)
src/apps/bootmanager/WizardController.cpp
46
WizardController::Initialize(WizardView* view)
src/apps/bootmanager/WizardController.cpp
55
WizardController::Next(WizardView* wizard)
src/apps/bootmanager/WizardController.cpp
72
WizardController::Previous(WizardView* wizard)
src/apps/bootmanager/WizardController.h
15
class WizardView;
src/apps/bootmanager/WizardController.h
24
virtual void Initialize(WizardView* wizard);
src/apps/bootmanager/WizardController.h
25
virtual void Next(WizardView* wizard);
src/apps/bootmanager/WizardController.h
26
virtual void Previous(WizardView* wizard);
src/apps/bootmanager/WizardController.h
31
virtual WizardPageView* CreatePage(int32 state, WizardView* wizard) = 0;
src/apps/bootmanager/WizardController.h
63
void _ShowPage(WizardView* wizard);
src/apps/bootmanager/WizardView.cpp
106
WizardView::SetPreviousButtonHidden(bool hide)
src/apps/bootmanager/WizardView.cpp
119
WizardView::_BuildUI()
src/apps/bootmanager/WizardView.cpp
25
WizardView::WizardView(const char* name)
src/apps/bootmanager/WizardView.cpp
37
WizardView::~WizardView()
src/apps/bootmanager/WizardView.cpp
43
WizardView::SetPage(WizardPageView* page)
src/apps/bootmanager/WizardView.cpp
63
WizardView::PageCompleted()
src/apps/bootmanager/WizardView.cpp
78
WizardView::SetPreviousButtonEnabled(bool enabled)
src/apps/bootmanager/WizardView.cpp
85
WizardView::SetNextButtonEnabled(bool enabled)
src/apps/bootmanager/WizardView.cpp
92
WizardView::SetPreviousButtonLabel(const char* text)
src/apps/bootmanager/WizardView.cpp
99
WizardView::SetNextButtonLabel(const char* text)
src/apps/bootmanager/WizardView.h
23
class WizardView : public BGroupView {
src/apps/bootmanager/WizardView.h
25
WizardView(const char* name);
src/apps/bootmanager/WizardView.h
26
virtual ~WizardView();