mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
25 lines
638 B
C++
25 lines
638 B
C++
#ifndef SEQUENCE_SEQUENCE_TITLE_CELL_H
|
|
#define SEQUENCE_SEQUENCE_TITLE_CELL_H
|
|
|
|
#include "../shared/function_title_cell.h"
|
|
|
|
namespace Sequence {
|
|
|
|
class SequenceTitleCell : public Shared::FunctionTitleCell {
|
|
public:
|
|
SequenceTitleCell(Orientation orientation);
|
|
void setExpression(Poincare::ExpressionLayout * expressionLayout);
|
|
void setEven(bool even) override;
|
|
void setHighlighted(bool highlight) override;
|
|
void setColor(KDColor color) override;
|
|
int numberOfSubviews() const override;
|
|
View * subviewAtIndex(int index) override;
|
|
void layoutSubviews() override;
|
|
private:
|
|
EvenOddExpressionCell m_titleTextView;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|