Numworks Epsilon  1.4.1
Graphing Calculator Operating System
banner_view.h
Go to the documentation of this file.
1 #ifndef REGRESSION_BANNER_VIEW_H
2 #define REGRESSION_BANNER_VIEW_H
3 
4 #include <escher.h>
5 #include "../shared/banner_view.h"
6 
7 namespace Regression {
8 
9 class BannerView : public Shared::BannerView {
10 public:
11  BannerView();
12 private:
13  int numberOfSubviews() const override;
14  TextView * textViewAtIndex(int i) const override;
15  MessageTextView * messageTextViewAtIndex(int i) const override;
16  BufferTextView m_dotNameView;
17  BufferTextView m_xView;
18  BufferTextView m_yView;
19  MessageTextView m_regressionTypeView;
20  BufferTextView m_slopeView;
21  BufferTextView m_yInterceptView;
22  BufferTextView m_rView;
23  BufferTextView m_r2View;
24 };
25 
26 }
27 
28 #endif