Blame view

epsilon-master/apps/hardware_test/app.cpp 1.31 KB
6663b6c9   adorian   projet complet av...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
  #include "app.h"
  #include "../apps_container.h"
  
  extern "C" {
  #include <assert.h>
  }
  
  namespace HardwareTest {
  
  App * App::Snapshot::unpack(Container * container) {
    return new App(container, this);
  }
  
  App::Descriptor * App::Snapshot::descriptor() {
    static Descriptor descriptor;
    return &descriptor;
  }
  
  App::App(Container * container, Snapshot * snapshot) :
    ::App(container, snapshot, &m_wizardViewController),
    m_wizardViewController(&m_modalViewController)
  {
  }
  
  App::WizardViewController::WizardViewController(Responder * parentResponder) :
    BankViewController(parentResponder),
    m_keyboardController(this),
    m_screenTestController(this),
    m_ledTestController(this),
    m_batteryTestController(this),
    m_serialNumberController(this)
  {
  }
  
  int App::WizardViewController::numberOfChildren() {
    return 5;
  }
  
  ViewController * App::WizardViewController::childAtIndex(int i) {
    ViewController * children[] = {
      &m_keyboardController,
      &m_screenTestController,
      &m_ledTestController,
      &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;
  }
  
  }