mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-30 12:10:03 +02:00
19 lines
551 B
C++
19 lines
551 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 setLayoutRef(Poincare::LayoutRef layoutR);
|
|
Poincare::LayoutRef layoutRef() const override { return m_labelExpressionView.layoutRef(); }
|
|
private:
|
|
ExpressionView m_labelExpressionView;
|
|
};
|
|
|
|
#endif
|