Numworks Epsilon  1.4.1
Graphing Calculator Operating System
histogram_banner_view.h
Go to the documentation of this file.
1 #ifndef STATISTICS_HISTOGRAM_BANNER_VIEW_H
2 #define STATISTICS_HISTOGRAM_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:
13 private:
14  int numberOfSubviews() const override;
15  TextView * textViewAtIndex(int i) const override;
16  MessageTextView * messageTextViewAtIndex(int index) const override;
17  MessageTextView m_intervalLegendView;
18  BufferTextView m_intervalView;
19  MessageTextView m_sizeLegendView;
20  BufferTextView m_sizeView;
21  MessageTextView m_frequencyLegendView;
22  BufferTextView m_frequencyView;
23 };
24 
25 }
26 
27 #endif