Cardinal/src/WindowParameters.hpp
falkTX 08b6a8ef8b
Implement the rest of parameters / user-settings
Signed-off-by: falkTX <falktx@falktx.com>
2021-10-22 12:04:53 +01:00

69 lines
2.1 KiB
C++

/*
* DISTRHO Cardinal Plugin
* Copyright (C) 2021 Filipe Coelho <falktx@falktx.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 3 of
* the License, or any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* For a full copy of the GNU General Public License see the LICENSE file.
*/
#pragma once
#include "DistrhoUtils.hpp"
namespace rack {
namespace window {
struct Window;
}
}
START_NAMESPACE_DISTRHO
// -----------------------------------------------------------------------------------------------------------
enum WindowParameterList {
kWindowParameterShowTooltips,
kWindowParameterCableOpacity,
kWindowParameterCableTension,
kWindowParameterRackBrightness,
kWindowParameterHaloBrightness,
kWindowParameterKnobMode,
kWindowParameterWheelKnobControl,
kWindowParameterWheelSensitivity,
kWindowParameterLockModulePositions,
kWindowParameterCount,
};
struct WindowParameters {
float cableOpacity = 0.5f;
float cableTension = 0.5f;
float rackBrightness = 1.0f;
float haloBrightness = 0.25f;
float knobScrollSensitivity = 0.001f;
int knobMode = 0;
bool tooltips = true;
bool knobScroll = false;
bool lockModules = false;
};
struct WindowParametersCallback {
virtual ~WindowParametersCallback() {}
virtual void WindowParametersChanged(WindowParameterList param, float value) = 0;
};
void WindowParametersSave(rack::window::Window* window);
void WindowParametersRestore(rack::window::Window* window);
void WindowParametersSetCallback(rack::window::Window* window, WindowParametersCallback* callback);
void WindowParametersSetValues(rack::window::Window* window, const WindowParameters& params);
// -----------------------------------------------------------------------------------------------------------
END_NAMESPACE_DISTRHO