summaryrefslogtreecommitdiff
path: root/plugingui/sampleselectionframecontent.cc
diff options
context:
space:
mode:
Diffstat (limited to 'plugingui/sampleselectionframecontent.cc')
-rw-r--r--plugingui/sampleselectionframecontent.cc62
1 files changed, 31 insertions, 31 deletions
diff --git a/plugingui/sampleselectionframecontent.cc b/plugingui/sampleselectionframecontent.cc
index 534a0b9..d52ef93 100644
--- a/plugingui/sampleselectionframecontent.cc
+++ b/plugingui/sampleselectionframecontent.cc
@@ -42,19 +42,19 @@ SampleselectionframeContent::SampleselectionframeContent(Widget* parent,
{
layout.setResizeChildren(false);
- f_distance.resize(80, 80);
- f_distance_knob.resize(30, 30);
- f_distance_knob.showValue(false);
- f_distance_knob.setDefaultValue(Settings::sample_selection_f_distance_default/f_distance_factor);
- f_distance.setControl(&f_distance_knob);
- layout.addItem(&f_distance);
-
- f_recent.resize(80, 80);
- f_recent_knob.resize(30, 30);
- f_recent_knob.showValue(false);
- f_recent_knob.setDefaultValue(Settings::sample_selection_f_recent_default/f_recent_factor);
- f_recent.setControl(&f_recent_knob);
- layout.addItem(&f_recent);
+ f_close.resize(80, 80);
+ f_close_knob.resize(30, 30);
+ f_close_knob.showValue(false);
+ f_close_knob.setDefaultValue(Settings::sample_selection_f_close_default/f_close_factor);
+ f_close.setControl(&f_close_knob);
+ layout.addItem(&f_close);
+
+ f_diverse.resize(80, 80);
+ f_diverse_knob.resize(30, 30);
+ f_diverse_knob.showValue(false);
+ f_diverse_knob.setDefaultValue(Settings::sample_selection_f_diverse_default/f_diverse_factor);
+ f_diverse.setControl(&f_diverse_knob);
+ layout.addItem(&f_diverse);
f_random.resize(80, 80);
f_random_knob.resize(30, 30);
@@ -63,33 +63,33 @@ SampleselectionframeContent::SampleselectionframeContent(Widget* parent,
f_random.setControl(&f_random_knob);
layout.addItem(&f_random);
- layout.setPosition(&f_distance, GridLayout::GridRange{0, 1, 0, 1});
- layout.setPosition(&f_recent, GridLayout::GridRange{1, 2, 0, 1});
+ layout.setPosition(&f_close, GridLayout::GridRange{0, 1, 0, 1});
+ layout.setPosition(&f_diverse, GridLayout::GridRange{1, 2, 0, 1});
layout.setPosition(&f_random, GridLayout::GridRange{2, 3, 0, 1});
- CONNECT(this, settings_notifier.sample_selection_f_distance,
- this, &SampleselectionframeContent::fDistanceSettingsValueChanged);
- CONNECT(this, settings_notifier.sample_selection_f_recent,
- this, &SampleselectionframeContent::fRecentSettingsValueChanged);
+ CONNECT(this, settings_notifier.sample_selection_f_close,
+ this, &SampleselectionframeContent::fCloseSettingsValueChanged);
+ CONNECT(this, settings_notifier.sample_selection_f_diverse,
+ this, &SampleselectionframeContent::fDiverseSettingsValueChanged);
CONNECT(this, settings_notifier.sample_selection_f_random,
this, &SampleselectionframeContent::fRandomSettingsValueChanged);
- CONNECT(&f_distance_knob, valueChangedNotifier,
- this, &SampleselectionframeContent::fDistanceKnobValueChanged);
- CONNECT(&f_recent_knob, valueChangedNotifier,
- this, &SampleselectionframeContent::fRecentKnobValueChanged);
+ CONNECT(&f_close_knob, valueChangedNotifier,
+ this, &SampleselectionframeContent::fCloseKnobValueChanged);
+ CONNECT(&f_diverse_knob, valueChangedNotifier,
+ this, &SampleselectionframeContent::fDiverseKnobValueChanged);
CONNECT(&f_random_knob, valueChangedNotifier,
this, &SampleselectionframeContent::fRandomKnobValueChanged);
}
-void SampleselectionframeContent::fDistanceKnobValueChanged(float value)
+void SampleselectionframeContent::fCloseKnobValueChanged(float value)
{
- settings.sample_selection_f_distance.store(value*f_distance_factor);
+ settings.sample_selection_f_close.store(value*f_close_factor);
}
-void SampleselectionframeContent::fRecentKnobValueChanged(float value)
+void SampleselectionframeContent::fDiverseKnobValueChanged(float value)
{
- settings.sample_selection_f_recent.store(value*f_recent_factor);
+ settings.sample_selection_f_diverse.store(value*f_diverse_factor);
}
void SampleselectionframeContent::fRandomKnobValueChanged(float value)
@@ -97,14 +97,14 @@ void SampleselectionframeContent::fRandomKnobValueChanged(float value)
settings.sample_selection_f_random.store(value*f_random_factor);
}
-void SampleselectionframeContent::fDistanceSettingsValueChanged(float value)
+void SampleselectionframeContent::fCloseSettingsValueChanged(float value)
{
- f_distance_knob.setValue(value/f_distance_factor);
+ f_close_knob.setValue(value/f_close_factor);
}
-void SampleselectionframeContent::fRecentSettingsValueChanged(float value)
+void SampleselectionframeContent::fDiverseSettingsValueChanged(float value)
{
- f_recent_knob.setValue(value/f_recent_factor);
+ f_diverse_knob.setValue(value/f_diverse_factor);
}
void SampleselectionframeContent::fRandomSettingsValueChanged(float value)