mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 08:47:28 +01:00
29 lines
952 B
C++
29 lines
952 B
C++
#ifndef SHARED_BANNER_VIEW_H
|
|
#define SHARED_BANNER_VIEW_H
|
|
|
|
#include <escher.h>
|
|
|
|
namespace Shared {
|
|
|
|
class BannerView : public View {
|
|
public:
|
|
static KDCoordinate HeightGivenNumberOfLines(int linesCount);
|
|
void drawRect(KDContext * ctx, KDRect rect) const override;
|
|
KDSize minimalSizeForOptimalDisplay() const override;
|
|
KDCoordinate minimalHeightForOptimalDisplayGivenWidth(KDCoordinate width) const;
|
|
void reload() { layoutSubviews(); }
|
|
static constexpr const KDFont * Font() { return KDFont::ItalicSmallFont; }
|
|
static constexpr KDColor TextColor() { return Palette::PrimaryText; }
|
|
static constexpr KDColor BackgroundColor() { return Palette::SubMenuBackground; }
|
|
private:
|
|
static constexpr KDCoordinate LineSpacing = 2;
|
|
int numberOfSubviews() const override = 0;
|
|
View * subviewAtIndex(int index) override = 0;
|
|
void layoutSubviews(bool force = false) override;
|
|
int numberOfLinesGivenWidth(KDCoordinate width) const;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|