Files
Upsilon/apps/statistics/histogram_banner_view.h
Émilie Feral 8f1d37c28c [escher] Add a cursor to text fields
Change-Id: Ib4a80a3c6d4b5d76cb56645275e8ecc6d69528ca
2017-03-08 15:42:14 +01:00

23 lines
468 B
C++

#ifndef STATISTICS_HISTOGRAM_BANNER_VIEW_H
#define STATISTICS_HISTOGRAM_BANNER_VIEW_H
#include <escher.h>
#include "../shared/banner_view.h"
namespace Statistics {
class HistogramBannerView : public Shared::BannerView {
public:
HistogramBannerView();
private:
int numberOfSubviews() const override;
TextView * textViewAtIndex(int i) const override;
BufferTextView m_intervalView;
BufferTextView m_sizeView;
BufferTextView m_frequencyView;
};
}
#endif