Blame view

build3/apps/shared/new_function_cell.h 468 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
22
  #ifndef SHARED_NEW_FUNCTION_CELL_H
  #define SHARED_NEW_FUNCTION_CELL_H
  
  #include <escher.h>
  
  namespace Shared {
  
  class NewFunctionCell : public EvenOddCell {
  public:
    NewFunctionCell(I18n::Message text);
    void setEven(bool even) override;
    void setHighlighted(bool highlight) override;
    int numberOfSubviews() const override;
    View * subviewAtIndex(int index) override;
    void layoutSubviews() override;
  private:
    MessageTextView m_messageTextView;
  };
  
  }
  
  #endif