Files
Upsilon/apps/on_boarding/logo_view.h
Émilie Feral 998733db62 [on_boarding]
Change-Id: Ia1dd18c27bb9d5f727f6c90d2579c85556f17e86
2017-05-12 10:42:34 +02:00

23 lines
379 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() override;
ImageView m_logoView;
};
}
#endif