Numworks Epsilon  1.4.1
Graphing Calculator Operating System
new_function_cell.h
Go to the documentation of this file.
1 #ifndef SHARED_NEW_FUNCTION_CELL_H
2 #define SHARED_NEW_FUNCTION_CELL_H
3 
4 #include <escher.h>
5 
6 namespace Shared {
7 
8 class NewFunctionCell : public EvenOddCell {
9 public:
10  NewFunctionCell(I18n::Message text);
11  void setEven(bool even) override;
12  void setHighlighted(bool highlight) override;
13  int numberOfSubviews() const override;
14  View * subviewAtIndex(int index) override;
15  void layoutSubviews() override;
16 private:
17  MessageTextView m_messageTextView;
18 };
19 
20 }
21 
22 #endif
void layoutSubviews() override
void setEven(bool even) override
NewFunctionCell(I18n::Message text)
View * subviewAtIndex(int index) override
void setHighlighted(bool highlight) override
Definition: view.h:23
int numberOfSubviews() const override