/* ============================================================================== This is an automatically generated GUI class created by the Projucer! Be careful when adding custom code to these files, as only the code within the "//[xyz]" and "//[/xyz]" sections will be retained when the file is loaded and re-saved. Created with Projucer version: 6.0.8 ------------------------------------------------------------------------------ The Projucer is part of the JUCE library. Copyright (c) 2020 - Raw Material Software Limited. ============================================================================== */ //[Headers] You can add your own extra header files here... //[/Headers] #include "SliderComponent.h" //[MiscUserDefs] You can add your own user definitions and misc code here... //[/MiscUserDefs] //============================================================================== SliderComponent::SliderComponent (Magical8bitPlug2AudioProcessor& p, String paramId, String name) { //[Constructor_pre] You can add your own custom stuff here.. //[/Constructor_pre] label.reset (new juce::Label ("label", TRANS("Label"))); addAndMakeVisible (label.get()); label->setFont (juce::Font (14.00f, juce::Font::plain).withTypefaceStyle ("Regular")); label->setJustificationType (juce::Justification::centredRight); label->setEditable (false, false, false); label->setColour (juce::TextEditor::textColourId, juce::Colours::black); label->setColour (juce::TextEditor::backgroundColourId, juce::Colour (0x00000000)); label->setBounds (8, 1, 60, 24); slider.reset (new juce::Slider ("slider")); addAndMakeVisible (slider.get()); slider->setRange (0, 10, 0.01); slider->setSliderStyle (juce::Slider::LinearHorizontal); slider->setTextBoxStyle (juce::Slider::TextBoxRight, false, 50, 20); //[UserPreSize] //[/UserPreSize] setSize (360, 28); //[Constructor] You can add your own custom stuff here.. label->setText (name, dontSendNotification); attc.reset (new SliderAttachment (p.parameters, paramId, *slider)); //[/Constructor] } SliderComponent::~SliderComponent() { //[Destructor_pre]. You can add your own custom destruction code here.. attc.reset(); //[/Destructor_pre] label = nullptr; slider = nullptr; //[Destructor]. You can add your own custom destruction code here.. //[/Destructor] } //============================================================================== void SliderComponent::paint (juce::Graphics& g) { //[UserPrePaint] Add your own custom painting code here.. //[/UserPrePaint] //[UserPaint] Add your own custom painting code here.. //[/UserPaint] } void SliderComponent::resized() { //[UserPreResize] Add your own custom resize code here.. //[/UserPreResize] slider->setBounds (72, 1, getWidth() - 80, 24); //[UserResized] Add your own custom resize handling here.. //[/UserResized] } //[MiscUserCode] You can add your own definitions of your custom methods or any other code here... //[/MiscUserCode] //============================================================================== #if 0 /* -- Projucer information section -- This is where the Projucer stores the metadata that describe this GUI layout, so make changes in here at your peril! BEGIN_JUCER_METADATA END_JUCER_METADATA */ #endif //[EndFile] You can add extra defines here... //[/EndFile]