mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-20 09:17:23 +01:00
19 lines
535 B
C++
19 lines
535 B
C++
#ifndef ESCHER_EXPRESSION_TABLE_CELL_H
|
|
#define ESCHER_EXPRESSION_TABLE_CELL_H
|
|
|
|
#include <escher/expression_view.h>
|
|
#include <escher/table_cell.h>
|
|
|
|
class ExpressionTableCell : public TableCell {
|
|
public:
|
|
ExpressionTableCell(Layout layout = Layout::Horizontal);
|
|
View * labelView() const override;
|
|
void setHighlighted(bool highlight) override;
|
|
void setLayout(Poincare::Layout layout);
|
|
Poincare::Layout layout() const override { return m_labelExpressionView.layout(); }
|
|
private:
|
|
ExpressionView m_labelExpressionView;
|
|
};
|
|
|
|
#endif
|