Files
Upsilon/apps/graph/values/title_cell.h
Émilie Feral 5a6ffa412b [apps/graph/values] Add a class function title cell inheriting from
title cell

Change-Id: I2c88477a1508a102c7d469f35bef4a811cbc93b7
2016-10-18 09:50:21 +02:00

23 lines
474 B
C++

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