mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-22 23:30:37 +01:00
18 lines
306 B
C++
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
|