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

22 lines
422 B
C++

#ifndef STATISTICS_BOX_BANNER_VIEW_H
#define STATISTICS_BOX_BANNER_VIEW_H
#include <escher.h>
#include "../shared/banner_view.h"
namespace Statistics {
class BoxBannerView : public Shared::BannerView {
public:
BoxBannerView();
private:
int numberOfSubviews() const override;
TextView * textViewAtIndex(int i) const override;
PointerTextView m_calculationName;
BufferTextView m_calculationValue;
};
}
#endif