Numworks Epsilon  1.4.1
Graphing Calculator Operating System
logo_view.h
Go to the documentation of this file.
1 #ifndef APPS_LOGO_VIEW_H
2 #define APPS_LOGO_VIEW_H
3 
4 #include <escher.h>
5 
6 namespace OnBoarding {
7 
8 class LogoView : public View {
9 public:
10  LogoView();
11  void drawRect(KDContext * ctx, KDRect rect) const override;
12 private:
13  int numberOfSubviews() const override;
14  View * subviewAtIndex(int index) override;
15  void layoutSubviews() override;
16  ImageView m_logoView;
17 };
18 
19 }
20 
21 #endif
22 
Definition: rect.h:26
Definition: view.h:23
void drawRect(KDContext *ctx, KDRect rect) const override
Definition: logo_view.cpp:13