mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 08:47:28 +01:00
22 lines
555 B
C++
22 lines
555 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);
|
|
Poincare::Layout layout() const;
|
|
void setLayout(Poincare::Layout layout);
|
|
void setBackgroundColor(KDColor backgroundColor) override;
|
|
void setExpressionBackgroundColor(KDColor backgroundColor);
|
|
private:
|
|
ExpressionView m_expressionView;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|