Files
Upsilon/apps/shared/new_function_cell.h
Émilie Feral 4ba14c8597 [apps/sequence] Personalize the button "add a function" for sequence app
Change-Id: Ie84757feec57a934c80573ad24b71e868c0d7b81
2017-02-16 16:34:12 +01:00

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