mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
25 lines
555 B
C++
25 lines
555 B
C++
#ifndef STATISTICS_BOX_BANNER_VIEW_H
|
|
#define STATISTICS_BOX_BANNER_VIEW_H
|
|
|
|
#include <escher.h>
|
|
#include "../shared/banner_view.h"
|
|
#include <apps/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
|