Files
Upsilon/apps/statistics/store_controller.h
Émilie Feral 5c7d763291 [apps/shared] Make tab table controller dynamic view controller
Change-Id: Id3a383e72173779eb295dc998f780041f62f8bf0
2017-04-21 10:08:09 +02:00

25 lines
699 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;
void unloadView() override;
private:
bool setDataAtLocation(float floatBody, int columnIndex, int rowIndex) override;
HighlightCell * titleCells(int index) override;
View * createView() override;
EvenOddMessageTextCell * m_titleCells[k_numberOfTitleCells];
};
}
#endif