mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 08:47:28 +01:00
parameter controller to shared to be used by sequences Change-Id: I7908c184c757bb35856763bd339d3b34cf4ffe81
34 lines
911 B
C++
34 lines
911 B
C++
#ifndef SHARED_VALUES_FUNCTION_PARAM_CONTROLLER_H
|
|
#define SHARED_VALUES_FUNCTION_PARAM_CONTROLLER_H
|
|
|
|
#include <escher.h>
|
|
#include "function.h"
|
|
|
|
namespace Shared {
|
|
|
|
class ValuesFunctionParameterController : public ViewController, public SimpleListViewDataSource {
|
|
public:
|
|
ValuesFunctionParameterController(char symbol);
|
|
|
|
View * view() override;
|
|
const char * title() const override;
|
|
void didBecomeFirstResponder() override;
|
|
virtual int numberOfRows() override;
|
|
KDCoordinate cellHeight() override;
|
|
virtual HighlightCell * reusableCell(int index) override;
|
|
virtual int reusableCellCount() override;
|
|
virtual void setFunction(Function * function);
|
|
protected:
|
|
PointerTableCellWithChevron m_copyColumn;
|
|
SelectableTableView m_selectableTableView;
|
|
private:
|
|
constexpr static int k_maxNumberOfCharsInTitle = 16;
|
|
char m_pageTitle[k_maxNumberOfCharsInTitle];
|
|
Function * m_function;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|
|
|