Files
Upsilon/apps/graph/values/value_cell.h
Émilie Feral 81a4f11beb [escher] move even odd cell in escher
Change-Id: Ifb751ac5e8c738965cb358ea55cf7ca67459ffa5
2016-10-27 14:34:31 +02:00

24 lines
431 B
C++

#ifndef GRAPH_VALUE_CELL_H
#define GRAPH_VALUE_CELL_H
#include <escher.h>
#include <poincare.h>
namespace Graph {
class ValueCell : public EvenOddCell {
public:
ValueCell();
void reloadCell() override;
void setText(const char * textContent);
int numberOfSubviews() const override;
View * subviewAtIndex(int index) override;
void layoutSubviews() override;
protected:
BufferTextView m_bufferTextView;
};
}
#endif