[apps/graph] Add a parameter page to the graph/list to test the stack controller of list

Change-Id: Ibee4d038f4917567d4a237fe4b7a813b79cb1c81
This commit is contained in:
Émilie Feral
2016-09-15 10:30:30 +02:00
committed by Romain Goyet
parent 496a10aebd
commit c337b5088f
5 changed files with 50 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
#include "parameter_controller.h"
ParameterController::ParameterController(Responder * parentResponder) :
ViewController(parentResponder),
m_solidColorView(SolidColorView(KDColorRed))
{
}
View * ParameterController::view() {
return &m_solidColorView;
}
const char * ParameterController::title() const {
return "List Function Parameter";
}
bool ParameterController::handleEvent(Ion::Events::Event event) {
return false;
}