6663b6c9
adorian
projet complet av...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef STATISTICS_BOX_BANNER_VIEW_H
#define STATISTICS_BOX_BANNER_VIEW_H
#include <escher.h>
#include "../shared/banner_view.h"
#include "../i18n.h"
namespace Statistics {
class BoxBannerView : public Shared::BannerView {
public:
BoxBannerView();
private:
int numberOfSubviews() const override { return 3; }
TextView * textViewAtIndex(int i) const override;
MessageTextView * messageTextViewAtIndex(int i) const override;
BufferTextView m_seriesName;
MessageTextView m_calculationName;
BufferTextView m_calculationValue;
};
}
#endif
|