Files
Upsilon/apps/statistics/store_controller.h
Émilie Feral b36e5dc67c [escher] Generelize header view controller to button row controller and
use it to add two buttons: "tracer" "afficher valeurs"

Change-Id: I8ee9afec9e381de367133e6b3f5ceb738b9790ab
2017-03-07 13:28:26 +01:00

22 lines
552 B
C++

#ifndef STATISTICS_STORE_CONTROLLER_H
#define STATISTICS_STORE_CONTROLLER_H
#include <escher.h>
#include "store.h"
#include "../shared/store_controller.h"
namespace Statistics {
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;
EvenOddPointerTextCell m_titleCells[k_numberOfTitleCells];
};
}
#endif