Numworks Epsilon  1.4.1
Graphing Calculator Operating System
scrollable_output_expressions_view.cpp
Go to the documentation of this file.
2 #include <assert.h>
3 using namespace Poincare;
4 
5 namespace Calculation {
6 
7 ScrollableOutputExpressionsView::ScrollableOutputExpressionsView(Responder * parentResponder) :
8  ScrollableView(parentResponder, &m_outputView, this),
9  m_outputView(this)
10 {
11 }
12 
14  return &m_outputView;
15 }
16 
18  app()->setFirstResponder(&m_outputView);
19 }
20 
22  return m_outputView.minimalSizeForOptimalDisplay();
23 }
24 
27 }
28 
29 }
KDSize minimalSizeForOptimalDisplay() const override
Definition: point.h:6
Definition: size.h:6
KDPoint m_manualScrollingOffset
void setFirstResponder(Responder *responder)
Definition: app.cpp:62
App * app()
Definition: responder.cpp:77