Files
Upsilon/apps/graph/values/title_cell.h
Émilie Feral 016e42050f [apps/graph/values] Add a class of title cell inheriting of even odd cell
Change-Id: I013659fe18c9d6b69b3f718f1974384298a71a56
2016-10-12 17:38:53 +02:00

18 lines
306 B
C++

#ifndef GRAPH_TITLE_CELL_H
#define GRAPH_TITLE_CELL_H
#include <escher.h>
#include "../even_odd_cell.h"
class TitleCell : public EvenOddCell {
public:
TitleCell();
void setText(const char * title);
void drawRect(KDContext * ctx, KDRect rect) const override;
protected:
char * m_text;
};
#endif