Files
Upsilon/apps/shared/function_go_to_parameter_controller.h
Émilie Feral 4e92021557 [apps/regression] Event 'right' behaves as "OK" on chevron cell
Change-Id: Ie0271eb88b1328022b1bff4c93008f271878b982
2017-06-12 16:49:35 +02:00

24 lines
668 B
C++

#ifndef SHARED_FUNCTION_GO_TO_PARAMETER_CONTROLLER_H
#define SHARED_FUNCTION_GO_TO_PARAMETER_CONTROLLER_H
#include "go_to_parameter_controller.h"
#include "function.h"
namespace Shared {
class FunctionGoToParameterController : public GoToParameterController {
public:
FunctionGoToParameterController(Responder * parentResponder, InteractiveCurveViewRange * graphRange, CurveViewCursor * cursor, I18n::Message symbol);
const char * title() override;
void setFunction(Function * function);
protected:
bool setParameterAtIndex(int parameterIndex, float f) override;
Function * m_function;
private:
float parameterAtIndex(int index) override;
};
}
#endif