mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-24 08:10:50 +01:00
28 lines
676 B
C++
28 lines
676 B
C++
#ifndef STATISTICS_HISTOGRAM_BANNER_VIEW_H
|
|
#define STATISTICS_HISTOGRAM_BANNER_VIEW_H
|
|
|
|
#include <escher.h>
|
|
#include "../shared/banner_view.h"
|
|
#include "../i18n.h"
|
|
|
|
namespace Statistics {
|
|
|
|
class HistogramBannerView : public Shared::BannerView {
|
|
public:
|
|
HistogramBannerView();
|
|
private:
|
|
int numberOfSubviews() const override;
|
|
TextView * textViewAtIndex(int i) const override;
|
|
MessageTextView * messageTextViewAtIndex(int index) const override;
|
|
MessageTextView m_intervalLegendView;
|
|
BufferTextView m_intervalView;
|
|
MessageTextView m_sizeLegendView;
|
|
BufferTextView m_sizeView;
|
|
MessageTextView m_frequencyLegendView;
|
|
BufferTextView m_frequencyView;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|