mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-20 09:17:23 +01:00
use it to add two buttons: "tracer" "afficher valeurs" Change-Id: I8ee9afec9e381de367133e6b3f5ceb738b9790ab
23 lines
600 B
C++
23 lines
600 B
C++
#ifndef REGRESSION_STORE_CONTROLLER_H
|
|
#define REGRESSION_STORE_CONTROLLER_H
|
|
|
|
#include <escher.h>
|
|
#include "store.h"
|
|
#include "../shared/store_controller.h"
|
|
|
|
namespace Regression {
|
|
|
|
class StoreController : public Shared::StoreController {
|
|
public:
|
|
StoreController(Responder * parentResponder, Store * store, ButtonRowController * header);
|
|
void willDisplayCellAtLocation(HighlightCell * cell, int i, int j) override;
|
|
private:
|
|
HighlightCell * titleCells(int index) override;
|
|
EvenOddExpressionCell m_titleCells[k_numberOfTitleCells];
|
|
Poincare::ExpressionLayout * m_titleLayout[2];
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|