Files
Upsilon/apps/graph/values/value_cell.h
Émilie Feral 352277f0a9 [apps/graph/values] Use Buffer text view in value cell class
Change-Id: Ib1d8d13a09bf4195f3ee9f2b266941fa996f9b8f
2016-10-18 09:46:14 +02:00

25 lines
461 B
C++

#ifndef GRAPH_VALUE_CELL_H
#define GRAPH_VALUE_CELL_H
#include <escher.h>
#include <poincare.h>
#include "../even_odd_cell.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