Blame view

build3/apps/regression/store_controller.cpp 1.9 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
  #include "store_controller.h"
  #include "app.h"
  #include "../apps_container.h"
  #include "../constant.h"
  #include "../../poincare/src/layout/baseline_relative_layout.h"
  #include "../../poincare/src/layout/string_layout.h"
  #include <assert.h>
  
  using namespace Poincare;
  using namespace Shared;
  
  namespace Regression {
  
  StoreController::StoreController(Responder * parentResponder, Store * store, ButtonRowController * header) :
    Shared::StoreController(parentResponder, store, header),
    m_titleCells{}
  {
    m_titleLayout[0] = new BaselineRelativeLayout(new StringLayout("X", 1, KDText::FontSize::Small), new StringLayout("i", 1, KDText::FontSize::Small), BaselineRelativeLayout::Type::Subscript);
    m_titleLayout[1] = new BaselineRelativeLayout(new StringLayout("Y", 1, KDText::FontSize::Small), new StringLayout("i", 1, KDText::FontSize::Small), BaselineRelativeLayout::Type::Subscript);
  }
  
  StoreController::~StoreController() {
    for (int i = 0; i < 2; i++) {
      if (m_titleLayout[i]) {
        delete m_titleLayout[i];
        m_titleLayout[i] = nullptr;
      }
    }
  }
  
  void StoreController::willDisplayCellAtLocation(HighlightCell * cell, int i, int j) {
    ::StoreController::willDisplayCellAtLocation(cell, i, j);
    if (cellAtLocationIsEditable(i, j)) {
      return;
    }
    EvenOddExpressionCell * mytitleCell = (EvenOddExpressionCell *)cell;
    mytitleCell->setExpression(m_titleLayout[i]);
  }
  
  HighlightCell * StoreController::titleCells(int index) {
    assert(index >= 0 && index < k_numberOfTitleCells);
    return m_titleCells[index];
  }
  
  View * StoreController::loadView() {
    for (int i = 0; i < k_numberOfTitleCells; i++) {
      m_titleCells[i] = new EvenOddExpressionCell(0.5f, 0.5f);
    }
    return Shared::StoreController::loadView();
  }
  
  void StoreController::unloadView(View * view) {
    for (int i = 0; i < k_numberOfTitleCells; i++) {
      delete m_titleCells[i];
      m_titleCells[i] = nullptr;
    }
    Shared::StoreController::unloadView(view);
  }
  
  }