Files
Upsilon/apps/hardware_test/app.cpp
2019-08-06 17:40:14 +02:00

65 lines
1.5 KiB
C++

#include "app.h"
namespace HardwareTest {
App * App::Snapshot::unpack(Container * container) {
return new (container->currentAppBuffer()) App(this);
}
App::Descriptor * App::Snapshot::descriptor() {
static Descriptor descriptor;
return &descriptor;
}
App::App(Snapshot * snapshot) :
::App(snapshot, &m_wizardViewController),
m_wizardViewController(&m_modalViewController)
{
}
App::WizardViewController::WizardViewController(Responder * parentResponder) :
BankViewController(parentResponder),
m_batteryTestController(this),
m_lcdTimingTestController(this),
m_colorsLCDTestController(this),
m_deadPixelsTestController(this),
m_keyboardController(this),
m_lcdDataTestController(this),
m_ledTestController(this),
m_serialNumberController(this),
m_vBlankTestController(this)
{
}
int App::WizardViewController::numberOfChildren() {
return 9;
}
ViewController * App::WizardViewController::childAtIndex(int i) {
ViewController * children[] = {
&m_vBlankTestController,
&m_lcdTimingTestController,
&m_colorsLCDTestController,
&m_lcdDataTestController,
&m_deadPixelsTestController,
&m_ledTestController,
&m_keyboardController,
&m_batteryTestController,
&m_serialNumberController
};
return children[i];
}
bool App::WizardViewController::handleEvent(Ion::Events::Event event) {
if (event == Ion::Events::OnOff) {
return false;
}
if (activeIndex() >= numberOfChildren()) {
return false;
}
setActiveIndex(activeIndex() + 1);
return true;
}
}