Files
Upsilon/apps/shared/storage_function_curve_parameter_controller.cpp
Émilie Feral d30e508bcd [shared] Temporarily duplicate shared controllers to take a
StorageFunction instead of a Function

The original controllers are to be deleted when Sequence uses Storage
2018-11-23 12:04:01 +01:00

44 lines
1.2 KiB
C++

#include "storage_function_curve_parameter_controller.h"
#include <assert.h>
namespace Shared {
StorageFunctionCurveParameterController::StorageFunctionCurveParameterController(InteractiveCurveViewRange * graphRange, CurveViewCursor * cursor) :
ViewController(nullptr),
m_goToCell(I18n::Message::Goto),
m_selectableTableView(this, this, this),
m_function(nullptr)
{
}
View * StorageFunctionCurveParameterController::view() {
return &m_selectableTableView;
}
void StorageFunctionCurveParameterController::didBecomeFirstResponder() {
if (selectedRow() < 0) {
selectCellAtLocation(0, 0);
}
app()->setFirstResponder(&m_selectableTableView);
}
bool StorageFunctionCurveParameterController::handleGotoSelection() {
if (m_function == nullptr) {
return false;
}
goToParameterController()->setFunction(m_function);
StackViewController * stack = (StackViewController *)parentResponder();
stack->push(goToParameterController());
return true;
}
KDCoordinate StorageFunctionCurveParameterController::cellHeight() {
return Metric::ParameterCellHeight;
}
void StorageFunctionCurveParameterController::setFunction(StorageFunction * function) {
m_function = function;
}
}