2022-03-19 11:17:13 +11:00
|
|
|
//! A slider that integrates with NIH-plug's [`Param`] types.
|
|
|
|
|
2022-03-23 22:46:46 +11:00
|
|
|
use nih_plug::prelude::{Param, ParamPtr};
|
2022-06-18 09:59:53 +10:00
|
|
|
use vizia::prelude::*;
|
2022-03-19 11:17:13 +11:00
|
|
|
|
|
|
|
use super::util::{self, ModifiersExt};
|
|
|
|
use super::RawParamEvent;
|
|
|
|
|
|
|
|
/// When shift+dragging a parameter, one pixel dragged corresponds to this much change in the
|
2022-09-22 02:32:24 +10:00
|
|
|
/// normalized parameter.
|
2022-03-19 11:17:13 +11:00
|
|
|
const GRANULAR_DRAG_MULTIPLIER: f32 = 0.1;
|
|
|
|
|
2022-03-22 04:36:41 +11:00
|
|
|
/// A slider that integrates with NIH-plug's [`Param`] types. Use the
|
2022-03-27 12:32:45 +11:00
|
|
|
/// [`set_style()`][ParamSliderExt::set_style()] method to change how the value gets displayed.
|
2022-03-19 11:17:13 +11:00
|
|
|
///
|
|
|
|
/// TODO: Handle scrolling for steps (and shift+scroll for smaller steps?)
|
|
|
|
/// TODO: We may want to add a couple dedicated event handlers if it seems like those would be
|
|
|
|
/// useful, having a completely self contained widget is perfectly fine for now though
|
2022-09-22 02:30:02 +10:00
|
|
|
#[derive(Lens)]
|
2022-03-19 11:17:13 +11:00
|
|
|
pub struct ParamSlider {
|
|
|
|
// We're not allowed to store a reference to the parameter internally, at least not in the
|
|
|
|
// struct that implements [`View`]
|
|
|
|
param_ptr: ParamPtr,
|
|
|
|
|
|
|
|
/// Will be set to `true` if we're dragging the parameter. Resetting the parameter or entering a
|
|
|
|
/// text value should not initiate a drag.
|
|
|
|
drag_active: bool,
|
2022-03-19 12:18:30 +11:00
|
|
|
/// We keep track of the start coordinate and normalized value when holding down Shift while
|
|
|
|
/// dragging for higher precision dragging. This is a `None` value when granular dragging is not
|
|
|
|
/// active.
|
|
|
|
granular_drag_start_x_value: Option<(f32, f32)>,
|
2022-09-22 02:30:02 +10:00
|
|
|
|
|
|
|
/// What style to use for the slider.
|
|
|
|
style: ParamSliderStyle,
|
2022-09-22 02:32:24 +10:00
|
|
|
/// Will be set to `true` when the field gets Alt+Click'ed which will replace the label with a
|
2022-09-22 02:30:02 +10:00
|
|
|
/// text box.
|
|
|
|
text_input_active: bool,
|
2022-03-19 11:17:13 +11:00
|
|
|
}
|
|
|
|
|
2022-03-20 04:49:49 +11:00
|
|
|
/// How the [`ParamSlider`] should display its values. Set this using
|
2022-03-27 12:32:45 +11:00
|
|
|
/// [`ParamSliderExt::set_style()`].
|
2022-03-20 04:49:49 +11:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Data)]
|
|
|
|
pub enum ParamSliderStyle {
|
|
|
|
/// Visualize the offset from the default value for continuous parameters with a default value
|
|
|
|
/// at around half of its range, fill the bar from the left for discrete parameters and
|
2022-09-22 02:32:24 +10:00
|
|
|
/// continuous parameters without centered default values.
|
2022-03-20 04:49:49 +11:00
|
|
|
Centered,
|
|
|
|
/// Always fill the bar starting from the left.
|
|
|
|
FromLeft,
|
2022-03-23 05:44:40 +11:00
|
|
|
/// Show the current step instead of filling a portion of the bar, useful for discrete
|
|
|
|
/// parameters. Set `even` to `true` to distribute the ticks evenly instead of following the
|
|
|
|
/// parameter's distribution. This can be desireable because discrete parameters have smaller
|
|
|
|
/// ranges near the edges (they'll span only half the range, which can make the display look
|
|
|
|
/// odd).
|
|
|
|
CurrentStep { even: bool },
|
2022-03-20 05:42:50 +11:00
|
|
|
/// The same as `CurrentStep`, but overlay the labels over the steps instead of showing the
|
|
|
|
/// active value. Only useful for discrete parameters with two, maybe three possible values.
|
2022-03-23 05:44:40 +11:00
|
|
|
CurrentStepLabeled { even: bool },
|
2022-03-20 04:49:49 +11:00
|
|
|
}
|
|
|
|
|
2022-03-20 01:28:58 +11:00
|
|
|
enum ParamSliderEvent {
|
|
|
|
/// Text input has been cancelled without submitting a new value.
|
|
|
|
CancelTextInput,
|
2022-09-22 02:30:02 +10:00
|
|
|
/// A new value has been sent by the text input dialog after pressing Enter.
|
2022-03-20 01:28:58 +11:00
|
|
|
TextInput(String),
|
|
|
|
}
|
|
|
|
|
2022-03-19 11:17:13 +11:00
|
|
|
impl ParamSlider {
|
2022-09-22 02:30:02 +10:00
|
|
|
/// Creates a new [`ParamSlider`] for the given parameter. To accommodate VIZIA's mapping system,
|
2022-03-19 11:17:13 +11:00
|
|
|
/// you'll need to provide a lens containing your `Params` implementation object (check out how
|
2022-03-21 23:09:51 +11:00
|
|
|
/// the `Data` struct is used in `gain_gui_vizia`) and a projection function that maps the
|
|
|
|
/// `Params` object to the parameter you want to display a widget for. Parameter changes are
|
|
|
|
/// handled by emitting [`ParamEvent`][super::ParamEvent]s which are automatically handled by
|
|
|
|
/// the VIZIA wrapper.
|
2022-03-20 04:49:49 +11:00
|
|
|
///
|
2022-09-22 02:32:24 +10:00
|
|
|
/// See [`ParamSliderExt`] for additional options.
|
2022-03-28 09:32:53 +11:00
|
|
|
pub fn new<L, Params, P, F>(cx: &mut Context, params: L, params_to_param: F) -> Handle<Self>
|
2022-03-19 11:17:13 +11:00
|
|
|
where
|
2022-07-24 02:58:41 +10:00
|
|
|
L: Lens<Target = Params> + Clone,
|
2022-03-19 11:17:13 +11:00
|
|
|
F: 'static + Fn(&Params) -> &P + Copy,
|
|
|
|
Params: 'static,
|
|
|
|
P: Param,
|
|
|
|
{
|
|
|
|
// We'll visualize the difference between the current value and the default value if the
|
|
|
|
// default value lies somewhere in the middle and the parameter is continuous. Otherwise
|
2022-09-22 02:30:02 +10:00
|
|
|
// this approach looks a bit jarring.
|
2022-03-19 11:17:13 +11:00
|
|
|
// We need to do a bit of a nasty and erase the lifetime bound by going through the raw
|
|
|
|
// GuiContext and a ParamPtr.
|
2022-04-08 02:44:37 +10:00
|
|
|
let param_ptr = params
|
2022-07-24 02:58:41 +10:00
|
|
|
.clone()
|
2022-03-19 11:17:13 +11:00
|
|
|
.map(move |params| params_to_param(params).as_ptr())
|
|
|
|
.get(cx);
|
2022-04-08 02:44:37 +10:00
|
|
|
let default_value = params
|
2022-07-24 02:58:41 +10:00
|
|
|
.clone()
|
2022-03-21 23:09:51 +11:00
|
|
|
.map(move |params| params_to_param(params).default_normalized_value())
|
|
|
|
.get(cx);
|
2022-04-08 02:44:37 +10:00
|
|
|
let step_count = params
|
2022-07-24 02:58:41 +10:00
|
|
|
.clone()
|
2022-03-19 11:17:13 +11:00
|
|
|
.map(move |params| params_to_param(params).step_count())
|
|
|
|
.get(cx);
|
|
|
|
|
|
|
|
Self {
|
|
|
|
param_ptr,
|
|
|
|
|
|
|
|
drag_active: false,
|
2022-03-19 12:18:30 +11:00
|
|
|
granular_drag_start_x_value: None,
|
2022-09-22 02:30:02 +10:00
|
|
|
|
|
|
|
style: ParamSliderStyle::Centered,
|
|
|
|
text_input_active: false,
|
2022-03-19 11:17:13 +11:00
|
|
|
}
|
2022-04-08 02:44:37 +10:00
|
|
|
.build(cx, move |cx| {
|
2022-09-22 02:30:02 +10:00
|
|
|
Binding::new(cx, ParamSlider::style, move |cx, style| {
|
2022-04-08 02:44:37 +10:00
|
|
|
let style = style.get(cx);
|
2022-03-20 04:49:49 +11:00
|
|
|
let draw_fill_from_default = matches!(style, ParamSliderStyle::Centered)
|
|
|
|
&& step_count.is_none()
|
|
|
|
&& (0.45..=0.55).contains(&default_value);
|
|
|
|
|
2022-03-20 11:12:10 +11:00
|
|
|
// Only draw the text input widget when it gets focussed. Otherwise, overlay the
|
2022-03-22 01:58:12 +11:00
|
|
|
// label with the slider. Creating the textbox based on
|
|
|
|
// `ParamSliderInternal::text_input_active` lets us focus the textbox when it gets
|
|
|
|
// created.
|
2022-07-24 02:58:41 +10:00
|
|
|
let params = params.clone();
|
2022-03-22 01:58:12 +11:00
|
|
|
Binding::new(
|
|
|
|
cx,
|
2022-09-22 02:30:02 +10:00
|
|
|
ParamSlider::text_input_active,
|
2022-03-22 01:58:12 +11:00
|
|
|
move |cx, text_input_active| {
|
2022-05-02 04:08:11 +10:00
|
|
|
// Can't use `.to_string()` here as that would include the modulation.
|
2022-07-24 02:58:41 +10:00
|
|
|
let param_display_value_lens = params.clone().map(move |params| {
|
2022-05-02 04:08:11 +10:00
|
|
|
let param = params_to_param(params);
|
|
|
|
param.normalized_value_to_string(
|
|
|
|
param.unmodulated_normalized_value(),
|
|
|
|
true,
|
|
|
|
)
|
|
|
|
});
|
2022-07-24 02:58:41 +10:00
|
|
|
let param_preview_display_value_lens = {
|
|
|
|
let params = params.clone();
|
|
|
|
move |normalized_value| {
|
|
|
|
params.clone().map(move |params| {
|
|
|
|
params_to_param(params)
|
|
|
|
.normalized_value_to_string(normalized_value, true)
|
|
|
|
})
|
|
|
|
}
|
2022-03-22 01:58:12 +11:00
|
|
|
};
|
2022-07-24 02:58:41 +10:00
|
|
|
let unmodulated_normalized_param_value_lens =
|
|
|
|
params.clone().map(move |params| {
|
|
|
|
params_to_param(params).unmodulated_normalized_value()
|
|
|
|
});
|
2022-05-02 04:08:11 +10:00
|
|
|
|
|
|
|
// The resulting tuple `(start_t, delta)` corresponds to the start and the
|
|
|
|
// signed width of the bar. `start_t` is in `[0, 1]`, and `delta` is in
|
|
|
|
// `[-1, 1]`.
|
|
|
|
let fill_start_delta_lens =
|
|
|
|
unmodulated_normalized_param_value_lens.map(move |current_value| {
|
|
|
|
match style {
|
|
|
|
ParamSliderStyle::Centered if draw_fill_from_default => {
|
|
|
|
let delta = (default_value - current_value).abs();
|
|
|
|
(
|
|
|
|
default_value.min(*current_value),
|
|
|
|
// Don't draw the filled portion at all if it
|
|
|
|
// could have been a rounding error since those
|
|
|
|
// slivers just look weird
|
|
|
|
if delta >= 1e-3 { delta } else { 0.0 },
|
|
|
|
)
|
|
|
|
}
|
|
|
|
ParamSliderStyle::Centered | ParamSliderStyle::FromLeft => {
|
|
|
|
(0.0, *current_value)
|
|
|
|
}
|
|
|
|
ParamSliderStyle::CurrentStep { even: true }
|
|
|
|
| ParamSliderStyle::CurrentStepLabeled { even: true }
|
|
|
|
if step_count.is_some() =>
|
|
|
|
{
|
|
|
|
// Assume the normalized value is distributed evenly
|
|
|
|
// across the range.
|
|
|
|
let step_count = step_count.unwrap() as f32;
|
|
|
|
let discrete_values = step_count + 1.0;
|
|
|
|
let previous_step =
|
|
|
|
(current_value * step_count) / discrete_values;
|
|
|
|
(previous_step, discrete_values.recip())
|
|
|
|
}
|
|
|
|
ParamSliderStyle::CurrentStep { .. }
|
|
|
|
| ParamSliderStyle::CurrentStepLabeled { .. } => {
|
|
|
|
let previous_step = unsafe {
|
|
|
|
param_ptr.previous_normalized_step(*current_value)
|
|
|
|
};
|
|
|
|
let next_step = unsafe {
|
|
|
|
param_ptr.next_normalized_step(*current_value)
|
|
|
|
};
|
|
|
|
(
|
|
|
|
(previous_step + current_value) / 2.0,
|
|
|
|
((next_step - current_value)
|
|
|
|
+ (current_value - previous_step))
|
|
|
|
/ 2.0,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
// If the parameter is being modulated by the host (this only works for CLAP
|
|
|
|
// plugins with hosts that support this), then this is the difference
|
|
|
|
// between the 'true' value and the current value after modulation has been
|
|
|
|
// applied.
|
2022-07-24 02:58:41 +10:00
|
|
|
let modulation_start_delta_lens = params.clone().map(move |params| {
|
2022-05-02 04:08:11 +10:00
|
|
|
match style {
|
|
|
|
// Don't show modulation for stepped parameters since it wouldn't
|
|
|
|
// make a lot of sense visually
|
|
|
|
ParamSliderStyle::CurrentStep { .. }
|
|
|
|
| ParamSliderStyle::CurrentStepLabeled { .. } => (0.0, 0.0),
|
|
|
|
ParamSliderStyle::Centered | ParamSliderStyle::FromLeft => {
|
|
|
|
let param = params_to_param(params);
|
|
|
|
let modulation_start = param.unmodulated_normalized_value();
|
|
|
|
(
|
|
|
|
modulation_start,
|
|
|
|
param.normalized_value() - modulation_start,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2022-03-20 04:49:49 +11:00
|
|
|
|
2022-04-08 02:44:37 +10:00
|
|
|
if text_input_active.get(cx) {
|
2022-03-22 01:58:12 +11:00
|
|
|
Textbox::new(cx, param_display_value_lens)
|
|
|
|
.class("value-entry")
|
2022-06-18 09:59:53 +10:00
|
|
|
.on_submit(|cx, string, success| {
|
|
|
|
if success {
|
|
|
|
cx.emit(ParamSliderEvent::TextInput(string))
|
|
|
|
} else {
|
|
|
|
cx.emit(ParamSliderEvent::CancelTextInput);
|
|
|
|
}
|
2022-03-22 01:58:12 +11:00
|
|
|
})
|
|
|
|
.on_build(|cx| {
|
|
|
|
cx.emit(TextEvent::StartEdit);
|
|
|
|
cx.emit(TextEvent::SelectAll);
|
|
|
|
})
|
2022-04-08 02:44:37 +10:00
|
|
|
// `.child_space(Stretch(1.0))` no longer works
|
|
|
|
.class("align_center")
|
|
|
|
.child_top(Stretch(1.0))
|
|
|
|
.child_bottom(Stretch(1.0))
|
2022-03-22 01:58:12 +11:00
|
|
|
.height(Stretch(1.0))
|
|
|
|
.width(Stretch(1.0));
|
|
|
|
} else {
|
|
|
|
ZStack::new(cx, move |cx| {
|
|
|
|
// The filled bar portion. This can be visualized in a couple
|
|
|
|
// different ways depending on the current style property. See
|
|
|
|
// [`ParamSliderStyle`].
|
|
|
|
Element::new(cx)
|
|
|
|
.class("fill")
|
2022-03-20 11:12:10 +11:00
|
|
|
.height(Stretch(1.0))
|
2022-05-02 04:08:11 +10:00
|
|
|
.left(
|
|
|
|
fill_start_delta_lens
|
|
|
|
.clone()
|
|
|
|
.map(|(start_t, _)| Percentage(start_t * 100.0)),
|
|
|
|
)
|
|
|
|
.width(
|
|
|
|
fill_start_delta_lens
|
|
|
|
.clone()
|
|
|
|
.map(|(_, delta)| Percentage(delta * 100.0)),
|
|
|
|
)
|
2022-03-22 01:58:12 +11:00
|
|
|
// Hovering is handled on the param slider as a whole, this
|
|
|
|
// should not affect that
|
2022-03-20 11:12:10 +11:00
|
|
|
.hoverable(false);
|
2022-03-22 01:58:12 +11:00
|
|
|
|
2022-09-22 02:30:02 +10:00
|
|
|
// If the parameter is being modulated, then we'll display another
|
2022-05-02 04:08:11 +10:00
|
|
|
// filled bar showing the current modulation delta
|
|
|
|
// VIZIA's bindings make this a bit, uh, difficult to read
|
|
|
|
Element::new(cx)
|
|
|
|
.class("fill")
|
|
|
|
.class("fill--modulation")
|
|
|
|
.height(Stretch(1.0))
|
|
|
|
.visibility(
|
|
|
|
modulation_start_delta_lens
|
|
|
|
.clone()
|
|
|
|
.map(|(_, delta)| *delta != 0.0),
|
|
|
|
)
|
|
|
|
// Widths cannot be negative, so we need to compensate the start
|
|
|
|
// position if the width does happen to be negative
|
|
|
|
.width(
|
|
|
|
modulation_start_delta_lens
|
|
|
|
.clone()
|
|
|
|
.map(|(_, delta)| Percentage(delta.abs() * 100.0)),
|
|
|
|
)
|
|
|
|
.left(modulation_start_delta_lens.clone().map(
|
|
|
|
|(start_t, delta)| {
|
|
|
|
if *delta < 0.0 {
|
|
|
|
Percentage((start_t + delta) * 100.0)
|
|
|
|
} else {
|
|
|
|
Percentage(start_t * 100.0)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
))
|
|
|
|
.hoverable(false);
|
|
|
|
|
2022-03-22 01:58:12 +11:00
|
|
|
// Either display the current value, or display all values over the
|
|
|
|
// parameter's steps
|
|
|
|
// TODO: Do the same thing as in the iced widget where we draw the
|
|
|
|
// text overlapping the fill area slightly differently. We can
|
|
|
|
// set the cip region directly in vizia.
|
|
|
|
match (style, step_count) {
|
2022-03-23 05:44:40 +11:00
|
|
|
(
|
|
|
|
ParamSliderStyle::CurrentStepLabeled { .. },
|
|
|
|
Some(step_count),
|
|
|
|
) => {
|
2022-03-22 01:58:12 +11:00
|
|
|
HStack::new(cx, |cx| {
|
|
|
|
// There are step_count + 1 possible values for a
|
|
|
|
// discrete parameter
|
|
|
|
for value in 0..step_count + 1 {
|
|
|
|
let normalized_value =
|
|
|
|
value as f32 / step_count as f32;
|
|
|
|
Label::new(
|
|
|
|
cx,
|
|
|
|
param_preview_display_value_lens(
|
|
|
|
normalized_value,
|
|
|
|
),
|
|
|
|
)
|
|
|
|
.class("value")
|
|
|
|
.class("value--multiple")
|
2022-04-08 02:44:37 +10:00
|
|
|
.child_space(Stretch(1.0))
|
2022-03-22 01:58:12 +11:00
|
|
|
.height(Stretch(1.0))
|
|
|
|
.width(Stretch(1.0))
|
|
|
|
.hoverable(false);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.height(Stretch(1.0))
|
|
|
|
.width(Stretch(1.0))
|
|
|
|
.hoverable(false);
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
Label::new(cx, param_display_value_lens)
|
|
|
|
.class("value")
|
|
|
|
.class("value--single")
|
2022-04-08 02:44:37 +10:00
|
|
|
.child_space(Stretch(1.0))
|
2022-03-22 01:58:12 +11:00
|
|
|
.height(Stretch(1.0))
|
|
|
|
.width(Stretch(1.0))
|
|
|
|
.hoverable(false);
|
|
|
|
}
|
|
|
|
};
|
2022-03-20 04:49:49 +11:00
|
|
|
})
|
|
|
|
.hoverable(false);
|
|
|
|
}
|
2022-03-22 01:58:12 +11:00
|
|
|
},
|
|
|
|
);
|
2022-03-20 04:49:49 +11:00
|
|
|
});
|
2022-03-19 11:17:13 +11:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set the normalized value for a parameter if that would change the parameter's plain value
|
|
|
|
/// (to avoid unnecessary duplicate parameter changes). The begin- and end set parameter
|
|
|
|
/// messages need to be sent before calling this function.
|
2022-09-23 03:52:11 +10:00
|
|
|
fn set_normalized_value(&self, cx: &mut EventContext, normalized_value: f32) {
|
2022-03-19 11:17:13 +11:00
|
|
|
// This snaps to the nearest plain value if the parameter is stepped in some way.
|
|
|
|
// TODO: As an optimization, we could add a `const CONTINUOUS: bool` to the parameter to
|
|
|
|
// avoid this normalized->plain->normalized conversion for parameters that don't need
|
|
|
|
// it
|
|
|
|
let plain_value = unsafe { self.param_ptr.preview_plain(normalized_value) };
|
2022-05-02 04:08:11 +10:00
|
|
|
let current_plain_value = unsafe { self.param_ptr.unmodulated_plain_value() };
|
2022-03-19 11:17:13 +11:00
|
|
|
if plain_value != current_plain_value {
|
|
|
|
// For the aforementioned snapping
|
|
|
|
let normalized_plain_value = unsafe { self.param_ptr.preview_normalized(plain_value) };
|
|
|
|
cx.emit(RawParamEvent::SetParameterNormalized(
|
|
|
|
self.param_ptr,
|
|
|
|
normalized_plain_value,
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 09:28:15 +11:00
|
|
|
|
|
|
|
/// `set_normalized_value()`, but resulting from a mouse drag. When using the 'even' stepped
|
|
|
|
/// slider styles from [`ParamSliderStyle`] this will remap the normalized range to match up
|
|
|
|
/// with the fill value display.
|
2022-09-23 03:52:11 +10:00
|
|
|
fn set_normalized_value_drag(&self, cx: &mut EventContext, normalized_value: f32) {
|
2022-09-22 02:30:02 +10:00
|
|
|
let normalized_value = match (self.style, unsafe { self.param_ptr.step_count() }) {
|
2022-03-23 09:28:15 +11:00
|
|
|
(
|
2022-09-23 03:52:11 +10:00
|
|
|
ParamSliderStyle::CurrentStep { even: true }
|
|
|
|
| ParamSliderStyle::CurrentStepLabeled { even: true },
|
2022-03-23 09:28:15 +11:00
|
|
|
Some(step_count),
|
|
|
|
) => {
|
|
|
|
// We'll remap the value range to be the same as the displayed range, e.g. with each
|
|
|
|
// value occupying an equal area on the slider instead of the centers of those
|
|
|
|
// ranges being distributed over the entire `[0, 1]` range.
|
|
|
|
let discrete_values = step_count as f32 + 1.0;
|
|
|
|
let rounded_value = ((normalized_value * discrete_values) - 0.5).round();
|
|
|
|
rounded_value / step_count as f32
|
|
|
|
}
|
|
|
|
_ => normalized_value,
|
|
|
|
};
|
|
|
|
|
|
|
|
self.set_normalized_value(cx, normalized_value);
|
|
|
|
}
|
2022-03-19 11:17:13 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
impl View for ParamSlider {
|
2022-06-18 09:59:53 +10:00
|
|
|
fn element(&self) -> Option<&'static str> {
|
|
|
|
Some("param-slider")
|
2022-03-19 11:17:13 +11:00
|
|
|
}
|
|
|
|
|
2022-09-23 03:52:11 +10:00
|
|
|
fn event(&mut self, cx: &mut EventContext, event: &mut Event) {
|
2022-04-25 02:12:06 +10:00
|
|
|
event.map(|param_slider_event, _| match param_slider_event {
|
|
|
|
ParamSliderEvent::CancelTextInput => {
|
2022-09-22 02:30:02 +10:00
|
|
|
self.text_input_active = false;
|
2022-06-18 09:59:53 +10:00
|
|
|
cx.set_active(false);
|
2022-04-25 02:12:06 +10:00
|
|
|
}
|
|
|
|
ParamSliderEvent::TextInput(string) => {
|
|
|
|
if let Some(normalized_value) =
|
|
|
|
unsafe { self.param_ptr.string_to_normalized_value(string) }
|
|
|
|
{
|
|
|
|
cx.emit(RawParamEvent::BeginSetParameter(self.param_ptr));
|
|
|
|
self.set_normalized_value(cx, normalized_value);
|
|
|
|
cx.emit(RawParamEvent::EndSetParameter(self.param_ptr));
|
2022-03-20 01:28:58 +11:00
|
|
|
}
|
|
|
|
|
2022-09-22 02:30:02 +10:00
|
|
|
self.text_input_active = false;
|
2022-03-20 01:28:58 +11:00
|
|
|
}
|
2022-04-25 02:12:06 +10:00
|
|
|
});
|
|
|
|
|
|
|
|
event.map(|window_event, _| match window_event {
|
|
|
|
WindowEvent::MouseDown(MouseButton::Left) => {
|
2022-09-23 03:52:11 +10:00
|
|
|
if cx.modifiers.alt() {
|
2022-04-25 02:12:06 +10:00
|
|
|
// ALt+Click brings up a text entry dialog
|
2022-09-22 02:30:02 +10:00
|
|
|
self.text_input_active = true;
|
2022-06-18 09:59:53 +10:00
|
|
|
cx.set_active(true);
|
2022-09-23 04:07:04 +10:00
|
|
|
} else if cx.modifiers.command() {
|
2022-04-25 02:12:06 +10:00
|
|
|
// Ctrl+Click and double click should reset the parameter instead of initiating
|
|
|
|
// a drag operation
|
|
|
|
cx.emit(RawParamEvent::BeginSetParameter(self.param_ptr));
|
|
|
|
cx.emit(RawParamEvent::SetParameterNormalized(
|
|
|
|
self.param_ptr,
|
|
|
|
unsafe { self.param_ptr.default_normalized_value() },
|
|
|
|
));
|
|
|
|
cx.emit(RawParamEvent::EndSetParameter(self.param_ptr));
|
|
|
|
} else {
|
|
|
|
self.drag_active = true;
|
|
|
|
cx.capture();
|
|
|
|
// NOTE: Otherwise we don't get key up events
|
2022-06-18 09:59:53 +10:00
|
|
|
cx.focus();
|
|
|
|
cx.set_active(true);
|
2022-04-25 02:12:06 +10:00
|
|
|
|
|
|
|
// When holding down shift while clicking on a parameter we want to granuarly
|
|
|
|
// edit the parameter without jumping to a new value
|
|
|
|
cx.emit(RawParamEvent::BeginSetParameter(self.param_ptr));
|
2022-09-23 03:52:11 +10:00
|
|
|
if cx.modifiers.shift() {
|
|
|
|
self.granular_drag_start_x_value = Some((cx.mouse.cursorx, unsafe {
|
2022-05-02 04:08:11 +10:00
|
|
|
self.param_ptr.unmodulated_normalized_value()
|
2022-04-25 02:12:06 +10:00
|
|
|
}));
|
2022-03-19 11:17:13 +11:00
|
|
|
} else {
|
2022-04-25 02:12:06 +10:00
|
|
|
self.granular_drag_start_x_value = None;
|
|
|
|
self.set_normalized_value_drag(
|
|
|
|
cx,
|
2022-09-23 03:52:11 +10:00
|
|
|
util::remap_current_entity_x_coordinate(cx, cx.mouse.cursorx),
|
2022-04-25 02:12:06 +10:00
|
|
|
);
|
2022-03-19 11:17:13 +11:00
|
|
|
}
|
|
|
|
}
|
2022-04-25 02:12:06 +10:00
|
|
|
}
|
|
|
|
WindowEvent::MouseDoubleClick(MouseButton::Left) => {
|
2022-09-23 04:07:04 +10:00
|
|
|
// Ctrl+Click and double click should reset the parameter instead of initiating
|
|
|
|
// a drag operation
|
|
|
|
cx.emit(RawParamEvent::BeginSetParameter(self.param_ptr));
|
|
|
|
cx.emit(RawParamEvent::SetParameterNormalized(
|
|
|
|
self.param_ptr,
|
|
|
|
unsafe { self.param_ptr.default_normalized_value() },
|
|
|
|
));
|
|
|
|
cx.emit(RawParamEvent::EndSetParameter(self.param_ptr));
|
2022-04-25 02:12:06 +10:00
|
|
|
}
|
|
|
|
WindowEvent::MouseUp(MouseButton::Left) => {
|
|
|
|
if self.drag_active {
|
|
|
|
self.drag_active = false;
|
|
|
|
cx.release();
|
2022-06-18 09:59:53 +10:00
|
|
|
cx.set_active(false);
|
2022-03-19 11:17:13 +11:00
|
|
|
|
2022-04-25 02:12:06 +10:00
|
|
|
cx.emit(RawParamEvent::EndSetParameter(self.param_ptr));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
WindowEvent::MouseMove(x, _y) => {
|
|
|
|
if self.drag_active {
|
|
|
|
// If shift is being held then the drag should be more granular instead of
|
|
|
|
// absolute
|
2022-09-23 03:52:11 +10:00
|
|
|
if cx.modifiers.shift() {
|
2022-04-25 02:12:06 +10:00
|
|
|
let (drag_start_x, drag_start_value) =
|
|
|
|
*self.granular_drag_start_x_value.get_or_insert_with(|| {
|
2022-09-23 03:52:11 +10:00
|
|
|
(cx.mouse.cursorx, unsafe {
|
2022-05-02 04:08:11 +10:00
|
|
|
self.param_ptr.unmodulated_normalized_value()
|
2022-04-25 02:12:06 +10:00
|
|
|
})
|
|
|
|
});
|
2022-03-19 11:17:13 +11:00
|
|
|
|
2022-04-25 02:12:06 +10:00
|
|
|
self.set_normalized_value_drag(
|
|
|
|
cx,
|
|
|
|
util::remap_current_entity_x_coordinate(
|
2022-03-19 11:17:13 +11:00
|
|
|
cx,
|
2022-04-25 02:12:06 +10:00
|
|
|
// This can be optimized a bit
|
|
|
|
util::remap_current_entity_x_t(cx, drag_start_value)
|
|
|
|
+ (*x - drag_start_x) * GRANULAR_DRAG_MULTIPLIER,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
} else {
|
2022-03-19 12:18:30 +11:00
|
|
|
self.granular_drag_start_x_value = None;
|
2022-04-25 02:12:06 +10:00
|
|
|
|
|
|
|
self.set_normalized_value_drag(
|
2022-03-19 11:48:57 +11:00
|
|
|
cx,
|
2022-04-25 02:12:06 +10:00
|
|
|
util::remap_current_entity_x_coordinate(cx, *x),
|
2022-03-19 11:48:57 +11:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2022-03-19 11:17:13 +11:00
|
|
|
}
|
2022-04-25 02:12:06 +10:00
|
|
|
WindowEvent::KeyUp(_, Some(Key::Shift)) => {
|
|
|
|
// If this happens while dragging, snap back to reality uh I mean the current screen
|
|
|
|
// position
|
|
|
|
if self.drag_active && self.granular_drag_start_x_value.is_some() {
|
|
|
|
self.granular_drag_start_x_value = None;
|
|
|
|
self.set_normalized_value(
|
|
|
|
cx,
|
2022-09-23 03:52:11 +10:00
|
|
|
util::remap_current_entity_x_coordinate(cx, cx.mouse.cursorx),
|
2022-04-25 02:12:06 +10:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
});
|
2022-03-19 11:17:13 +11:00
|
|
|
}
|
|
|
|
}
|
2022-03-20 04:49:49 +11:00
|
|
|
|
|
|
|
/// Extension methods for [`ParamSlider`] handles.
|
|
|
|
pub trait ParamSliderExt {
|
|
|
|
/// Change how the [`ParamSlider`] visualizes the current value.
|
|
|
|
fn set_style(self, style: ParamSliderStyle) -> Self;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ParamSliderExt for Handle<'_, ParamSlider> {
|
|
|
|
fn set_style(self, style: ParamSliderStyle) -> Self {
|
2022-09-22 02:30:02 +10:00
|
|
|
self.modify(|param_slider: &mut ParamSlider| param_slider.style = style)
|
2022-03-20 04:49:49 +11:00
|
|
|
}
|
|
|
|
}
|