mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-21 14:50:44 +01:00
[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:
committed by
Romain Goyet
parent
496a10aebd
commit
c337b5088f
19
apps/graph/list/parameter_controller.cpp
Normal file
19
apps/graph/list/parameter_controller.cpp
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user