diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2024-07-25 19:23:57 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2024-07-25 19:23:57 +0200 |
commit | 6f0518b9a5999442d063369d9818c41fb9ac2ed6 (patch) | |
tree | 988462795e4ac226f04b8642625039deb9cd6bff /plugingui/sampleselectionframecontent.h | |
parent | efebb624788963cb00c9e3af7fef40794336c361 (diff) |
WIP
Diffstat (limited to 'plugingui/sampleselectionframecontent.h')
-rw-r--r-- | plugingui/sampleselectionframecontent.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/plugingui/sampleselectionframecontent.h b/plugingui/sampleselectionframecontent.h index ab1be04..d3834f6 100644 --- a/plugingui/sampleselectionframecontent.h +++ b/plugingui/sampleselectionframecontent.h @@ -52,20 +52,24 @@ private: void fCloseKnobValueChanged(float value); void fDiverseKnobValueChanged(float value); void fRandomKnobValueChanged(float value); + void fPositionKnobValueChanged(float value); void fCloseSettingsValueChanged(float value); void fDiverseSettingsValueChanged(float value); void fRandomSettingsValueChanged(float value); + void fPositionSettingsValueChanged(float value); - dggui::GridLayout layout{this, 3, 1}; + dggui::GridLayout layout{this, 4, 1}; LabeledControl f_close{this, _("pClose")}; LabeledControl f_diverse{this, _("pDiverse")}; LabeledControl f_random{this, _("pRandom")}; + LabeledControl f_position{this, _("pPosition")}; dggui::Knob f_close_knob{&f_close}; dggui::Knob f_diverse_knob{&f_diverse}; dggui::Knob f_random_knob{&f_random}; + dggui::Knob f_position_knob{&f_position}; Settings& settings; SettingsNotifier& settings_notifier; |