2022-03-14 07:59:13 +11:00
|
|
|
use nih_plug::prelude::{Editor, GuiContext};
|
2022-03-14 10:53:22 +11:00
|
|
|
use nih_plug_iced::widgets::{ParamMessage, ParamSlider};
|
2022-03-14 07:59:13 +11:00
|
|
|
use nih_plug_iced::*;
|
|
|
|
use std::pin::Pin;
|
|
|
|
use std::sync::Arc;
|
|
|
|
|
|
|
|
use crate::GainParams;
|
|
|
|
|
|
|
|
// Makes sense to also define this here, makes it a bit easier to keep track of
|
|
|
|
pub(crate) fn default_state() -> Arc<IcedState> {
|
|
|
|
IcedState::from_size(200, 150)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn create(
|
|
|
|
params: Pin<Arc<GainParams>>,
|
|
|
|
editor_state: Arc<IcedState>,
|
|
|
|
) -> Option<Box<dyn Editor>> {
|
|
|
|
create_iced_editor::<GainEditor>(editor_state, params)
|
|
|
|
}
|
|
|
|
|
|
|
|
struct GainEditor {
|
|
|
|
params: Pin<Arc<GainParams>>,
|
|
|
|
context: Arc<dyn GuiContext>,
|
|
|
|
|
|
|
|
meter_dummy_state: widget::button::State,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Copy)]
|
|
|
|
enum Message {
|
|
|
|
/// Update a parameter's value.
|
|
|
|
ParamUpdate(ParamMessage),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl IcedEditor for GainEditor {
|
|
|
|
type Executor = executor::Default;
|
|
|
|
type Message = Message;
|
|
|
|
type InitializationFlags = Pin<Arc<GainParams>>;
|
|
|
|
|
|
|
|
fn new(
|
|
|
|
params: Self::InitializationFlags,
|
|
|
|
context: Arc<dyn GuiContext>,
|
|
|
|
) -> (Self, Command<Self::Message>) {
|
|
|
|
let editor = GainEditor {
|
|
|
|
params,
|
|
|
|
context,
|
|
|
|
meter_dummy_state: widget::button::State::new(),
|
|
|
|
};
|
|
|
|
|
|
|
|
(editor, Command::none())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn context(&self) -> &dyn GuiContext {
|
|
|
|
self.context.as_ref()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn update(
|
|
|
|
&mut self,
|
|
|
|
_window: &mut WindowQueue,
|
|
|
|
message: Self::Message,
|
|
|
|
) -> Command<Self::Message> {
|
|
|
|
match message {
|
|
|
|
Message::ParamUpdate(message) => self.handle_param_message(message),
|
|
|
|
}
|
|
|
|
|
|
|
|
Command::none()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn view(&mut self) -> Element<'_, Self::Message> {
|
|
|
|
Column::new()
|
|
|
|
.align_items(Alignment::Center)
|
|
|
|
.push(
|
|
|
|
Text::new("Gain GUI")
|
|
|
|
.size(40)
|
2022-03-14 10:53:22 +11:00
|
|
|
.height(50.into())
|
2022-03-14 07:59:13 +11:00
|
|
|
.width(Length::Fill)
|
|
|
|
.horizontal_alignment(alignment::Horizontal::Center)
|
|
|
|
.vertical_alignment(alignment::Vertical::Bottom),
|
|
|
|
)
|
|
|
|
.push(
|
|
|
|
Text::new("Gain")
|
2022-03-14 10:53:22 +11:00
|
|
|
.height(20.into())
|
2022-03-14 07:59:13 +11:00
|
|
|
.width(Length::Fill)
|
|
|
|
.horizontal_alignment(alignment::Horizontal::Center)
|
|
|
|
.vertical_alignment(alignment::Vertical::Center),
|
|
|
|
)
|
|
|
|
.push(
|
2022-03-14 23:17:19 +11:00
|
|
|
ParamSlider::new(&self.params.gain, self.context.as_ref()).map(Message::ParamUpdate)
|
2022-03-14 10:53:22 +11:00
|
|
|
// Button::new(&mut self.gain_dummy_state, Text::new("Gain"))
|
|
|
|
// .height(30.into())
|
|
|
|
// .width(180.into()),
|
2022-03-14 07:59:13 +11:00
|
|
|
)
|
|
|
|
.push(Space::with_height(10.into()))
|
|
|
|
.push(
|
|
|
|
Button::new(&mut self.meter_dummy_state, Text::new("Meter"))
|
|
|
|
.height(15.into())
|
|
|
|
.width(180.into()),
|
|
|
|
)
|
|
|
|
.push(
|
|
|
|
Text::new("Ticks 'n stuff")
|
|
|
|
.size(12)
|
|
|
|
.height(15.into())
|
|
|
|
.width(Length::Fill)
|
|
|
|
.horizontal_alignment(alignment::Horizontal::Center)
|
|
|
|
.vertical_alignment(alignment::Vertical::Center),
|
|
|
|
)
|
|
|
|
.into()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn background_color(&self) -> nih_plug_iced::Color {
|
|
|
|
nih_plug_iced::Color {
|
|
|
|
r: 0.98,
|
|
|
|
g: 0.98,
|
|
|
|
b: 0.98,
|
|
|
|
a: 1.0,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|