mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 16:57:31 +01:00
function title cells and function expression cells Change-Id: Idbdae4975c8ed83a023c781dc14929b8c2053bb0
25 lines
652 B
C++
25 lines
652 B
C++
#ifndef GRAPH_FUNCTION_TITLE_CELL_H
|
|
#define GRAPH_FUNCTION_TITLE_CELL_H
|
|
|
|
#include "../shared/function_title_cell.h"
|
|
|
|
namespace Graph {
|
|
|
|
class FunctionTitleCell : public Shared::FunctionTitleCell {
|
|
public:
|
|
FunctionTitleCell(Orientation orientation, KDText::FontSize size = KDText::FontSize::Large);
|
|
void setEven(bool even) override;
|
|
void setHighlighted(bool highlight) override;
|
|
void setColor(KDColor color) override;
|
|
void setText(const char * textContent);
|
|
int numberOfSubviews() const override;
|
|
View * subviewAtIndex(int index) override;
|
|
void layoutSubviews() override;
|
|
private:
|
|
EvenOddBufferTextCell m_bufferTextView;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|