Files
Upsilon/apps/code/menu_controller.h
Léa Saviot 35520fb3d4 [code] Scripts can be automatically imported when the console is opened.
Editing, renaming, deleting or changing the auto-importation of a script
triggers the reloading of the console (the history is cleared, Python
restarted and the scripts re-imported).

Change-Id: If8b933cc077ecd36cab09214b5e7a181aa3ae030
2017-11-17 11:59:50 +01:00

75 lines
2.9 KiB
C++

#ifndef CODE_MENU_CONTROLLER_H
#define CODE_MENU_CONTROLLER_H
#include <escher.h>
#include <apps/shared/new_function_cell.h>
#include "console_controller.h"
#include "script_parameter_controller.h"
#include "script_store.h"
namespace Code {
class ScriptParameterController;
class MenuController : public ViewController, public ListViewDataSource, public SelectableTableViewDataSource, public TextFieldDelegate, public ButtonRowDelegate {
public:
MenuController(Responder * parentResponder, ScriptStore * scriptStore, ButtonRowController * footer);
ConsoleController * consoleController();
StackViewController * stackViewController();
void configureScript();
void setParameteredScript();
void addScript();
void renameScriptAtIndex(int i);
void deleteScriptAtIndex(int i);
void reloadConsole();
/* ViewController */
View * view() override;
bool handleEvent(Ion::Events::Event event) override;
void didBecomeFirstResponder() override;
/* ListViewDataSource */
int numberOfRows() override;
KDCoordinate cellHeight();
KDCoordinate rowHeight(int j) override;
KDCoordinate cumulatedHeightFromIndex(int j) override;
int indexFromCumulatedHeight(KDCoordinate offsetY) override;
HighlightCell * reusableCell(int index, int type) override;
int reusableCellCount(int type) override;
int typeAtLocation(int i, int j) override;
void willDisplayCellForIndex(HighlightCell * cell, int index) override;
/* TextFieldDelegate */
bool textFieldShouldFinishEditing(TextField * textField, Ion::Events::Event event) override;
bool textFieldDidReceiveEvent(TextField * textField, Ion::Events::Event event) override;
bool textFieldDidFinishEditing(TextField * textField, const char * text, Ion::Events::Event event) override;
bool textFieldDidAbortEditing(TextField * textField, const char * text) override;
Toolbox * toolboxForTextField(TextField * textFied) override;
/* ButtonRowDelegate */
int numberOfButtons(ButtonRowController::Position position) const override;
Button * buttonAtIndex(int index, ButtonRowController::Position position) const override;
private:
static constexpr int k_maxNumberOfDisplayableScriptCells = 7; //TODO
static constexpr int AddScriptCellType = 0;
static constexpr int ScriptCellType = 1;
static constexpr KDCoordinate k_rowHeight = 50; //TODO create common parent class with Shared::ListController
ScriptStore * m_scriptStore;
EvenOddEditableTextCell m_scriptCells[k_maxNumberOfDisplayableScriptCells];
/* In the initializer list of the MenuController constructor, we initialize
* m_scriptCells by copying k_maxNumberOfDisplayableScriptCells times the
* constructor of an EvenOddEditableTextCell. */
char m_draftTextBuffer[TextField::maxBufferSize()];
Shared::NewFunctionCell m_addNewScriptCell;
Button m_consoleButton;
SelectableTableView m_selectableTableView;
ConsoleController m_consoleController;
ScriptParameterController m_scriptParameterController;
};
}
#endif