mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-29 11:39:58 +02:00
18 lines
497 B
C++
18 lines
497 B
C++
#ifndef ESCHER_EXPRESSION_TABLE_CELL_WITH_EXPRESSION_H
|
|
#define ESCHER_EXPRESSION_TABLE_CELL_WITH_EXPRESSION_H
|
|
|
|
#include <escher/expression_table_cell.h>
|
|
#include <escher/i18n.h>
|
|
|
|
class ExpressionTableCellWithExpression : public ExpressionTableCell {
|
|
public:
|
|
ExpressionTableCellWithExpression();
|
|
View * accessoryView() const override;
|
|
void setHighlighted(bool highlight) override;
|
|
void setAccessoryLayout(Poincare::Layout l);
|
|
private:
|
|
ExpressionView m_accessoryExpressionView;
|
|
};
|
|
|
|
#endif
|