[apps/sequence/list] Create a list parameter controller specific to

sequence

Change-Id: If6342a137715c1295b110e2d4e24499fcaf8edbc
This commit is contained in:
Émilie Feral
2017-02-08 17:11:47 +01:00
parent 94c63357d4
commit 0a135fe7d7
5 changed files with 103 additions and 3 deletions

View File

@@ -5,11 +5,11 @@ namespace Shared {
ListParameterController::ListParameterController(Responder * parentResponder, FunctionStore * functionStore) :
ViewController(parentResponder),
m_selectableTableView(SelectableTableView(this, this, Metric::TopMargin, Metric::RightMargin,
Metric::BottomMargin, Metric::LeftMargin)),
m_colorCell(ChevronMenuListCell((char*)"Couleur de la fonction")),
m_enableCell(SwitchMenuListCell((char*)"Activer/Desactiver")),
m_deleteCell(MenuListCell((char*)"Supprimer la fonction")),
m_selectableTableView(SelectableTableView(this, this, Metric::TopMargin, Metric::RightMargin,
Metric::BottomMargin, Metric::LeftMargin)),
m_functionStore(functionStore)
{
}