Files
Upsilon/apps/graph/list/function_cell.h
Romain Goyet 682c3bbc20 App: Move the app in the apps/ folder
Change-Id: I9c6a3eb58c718f1c796652e94534b53a2a302f8b
2016-06-20 18:04:31 +02:00

21 lines
405 B
C++

#ifndef GRAPH_FUNCTION_CELL_H
#define GRAPH_FUNCTION_CELL_H
#include <escher.h>
class FunctionCell : public ChildlessView, public Responder {
public:
FunctionCell();
void setMessage(const char * message);
void setEven(bool even);
void drawRect(KDRect rect) const override;
void setFocused(bool focused) override;
private:
const char * m_message;
bool m_focused;
bool m_even;
};
#endif