mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
23 lines
397 B
C++
23 lines
397 B
C++
#ifndef APPS_LOGO_VIEW_H
|
|
#define APPS_LOGO_VIEW_H
|
|
|
|
#include <escher.h>
|
|
|
|
namespace OnBoarding {
|
|
|
|
class LogoView : public View {
|
|
public:
|
|
LogoView();
|
|
void drawRect(KDContext * ctx, KDRect rect) const override;
|
|
private:
|
|
int numberOfSubviews() const override;
|
|
View * subviewAtIndex(int index) override;
|
|
void layoutSubviews(bool force = false) override;
|
|
ImageView m_logoView;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|
|
|