Files
Upsilon/apps/graph/list/parameter_controller.h
Émilie Feral c337b5088f [apps/graph] Add a parameter page to the graph/list to test the stack controller of list
Change-Id: Ibee4d038f4917567d4a237fe4b7a813b79cb1c81
2016-09-15 11:06:09 +02:00

20 lines
388 B
C++

#ifndef GRAPH_LIST_PARAM_CONTROLLER_H
#define GRAPH_LIST_PARAM_CONTROLLER_H
#include <escher.h>
class ParameterController : public ViewController {
public:
ParameterController(Responder * parentResponder);
View * view() override;
const char * title() const override;
bool handleEvent(Ion::Events::Event event) override;
private:
SolidColorView m_solidColorView;
};
#endif