Files
Upsilon/apps/shared/new_function_cell.h
Émilie Feral adc80cd71b [apps][escher] I18n
Change-Id: I4d6f40155a8a182184af9ef2a583d0469196ffd5
2017-03-16 15:12:12 +01:00

22 lines
414 B
C++

#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 reloadCell() override;
int numberOfSubviews() const override;
View * subviewAtIndex(int index) override;
void layoutSubviews() override;
private:
PointerTextView m_pointerTextView;
};
}
#endif