Files
Upsilon/apps/calculation/scrollable_output_expressions_view.h
Émilie Feral 5e822a8001 [apps] In calculation, fix scrolling between approximate and exact
outputs

Change-Id: I8920cc3eab9f72d4b82cf2361bd1eba02232a268
2017-11-21 17:37:25 +01:00

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