Numworks Epsilon  1.4.1
Graphing Calculator Operating System
box_banner_view.h
Go to the documentation of this file.
1 #ifndef STATISTICS_BOX_BANNER_VIEW_H
2 #define STATISTICS_BOX_BANNER_VIEW_H
3 
4 #include <escher.h>
5 #include "../shared/banner_view.h"
6 #include "../i18n.h"
7 
8 namespace Statistics {
9 
11 public:
12  BoxBannerView();
13 private:
14  int numberOfSubviews() const override;
15  TextView * textViewAtIndex(int i) const override;
16  MessageTextView * messageTextViewAtIndex(int i) const override;
17  MessageTextView m_calculationName;
18  BufferTextView m_calculationValue;
19 };
20 
21 }
22 
23 #endif