Blame view

epsilon-master/apps/on_boarding/logo_view.h 379 Bytes
6663b6c9   adorian   projet complet av...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  #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