added ui elements and profile loading for oscillator pitch parameters

This commit is contained in:
2026-01-31 20:10:49 -06:00
parent 0c1c71da49
commit cffd06c0e1
11 changed files with 749 additions and 37 deletions

View File

@@ -9,6 +9,7 @@ QT_END_NAMESPACE
// SmartSlider is the widget including a slider, min/max settings, and a value setting parameter
class SmartSlider : public QWidget {
Q_OBJECT
public:
@@ -18,6 +19,8 @@ public:
// setters
void setRange(float min, float max);
void setValue(float value);
void setResolution(int resolution);
void setResolution() { setResolution(static_cast<int>(max_ - min_)); }
// getters
float value();