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

22 lines
444 B
C++

#ifndef GRAPH_TITLE_CELL_H
#define GRAPH_TITLE_CELL_H
#include <escher.h>
namespace Graph {
class TitleCell : public EvenOddCell {
public:
TitleCell();
void reloadCell() override;
void setText(const char * textContent, KDColor textColor = KDColorBlack);
int numberOfSubviews() const override;
View * subviewAtIndex(int index) override;
void layoutSubviews() override;
protected:
PointerTextView m_pointerTextView;
};
}
#endif