mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-27 01:29:58 +01:00
24 lines
509 B
C++
24 lines
509 B
C++
#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;
|
|
TextView * textViewAtIndex(int i) const override;
|
|
MessageTextView * messageTextViewAtIndex(int i) const override;
|
|
MessageTextView m_calculationName;
|
|
BufferTextView m_calculationValue;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|