mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
23 lines
604 B
C++
23 lines
604 B
C++
#ifndef CALCULATION_SCROLLABLE_OUTPUT_EXPRESSIONS_VIEW_H
|
|
#define CALCULATION_SCROLLABLE_OUTPUT_EXPRESSIONS_VIEW_H
|
|
|
|
#include <escher.h>
|
|
#include "output_expressions_view.h"
|
|
|
|
namespace Calculation {
|
|
|
|
class ScrollableOutputExpressionsView : public ScrollableView, public ScrollViewDataSource {
|
|
public:
|
|
ScrollableOutputExpressionsView(Responder * parentResponder);
|
|
OutputExpressionsView * outputView();
|
|
void didBecomeFirstResponder() override;
|
|
KDSize minimalSizeForOptimalDisplay() const override;
|
|
KDPoint manualScrollingOffset() const;
|
|
private:
|
|
OutputExpressionsView m_outputView;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|