mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
Remove from derived classes: - apps/calculation/scrollable_expression_view - apps/code/consol_line_cell - apps/shared/scrollable_exact_approximate_expressions_view - escher/layout_field - escher/table_view - escher/text_field
20 lines
458 B
C++
20 lines
458 B
C++
#ifndef CALCULATION_SCROLLABLE_EXPRESSION_VIEW_H
|
|
#define CALCULATION_SCROLLABLE_EXPRESSION_VIEW_H
|
|
|
|
#include <escher.h>
|
|
|
|
namespace Calculation {
|
|
|
|
class ScrollableExpressionView : public ScrollableView, public ScrollViewDataSource {
|
|
public:
|
|
ScrollableExpressionView(Responder * parentResponder);
|
|
void setLayout(Poincare::Layout layout);
|
|
void setBackgroundColor(KDColor backgroundColor) override;
|
|
private:
|
|
ExpressionView m_expressionView;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|