mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-22 15:20:39 +01:00
22 lines
444 B
C++
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
|