From e8f05d737de758b85fd6a2c56b9b8a52beed2c56 Mon Sep 17 00:00:00 2001 From: Takeshi Yokemura Date: Sat, 7 Aug 2021 18:18:39 +0900 Subject: [PATCH] JUCE automatic updates --- Source/AdvancedParamsComponent.cpp | 18 ++++++++--------- Source/AdvancedParamsComponent.h | 10 +++++----- Source/BasicParamsComponent.cpp | 26 ++++++++++++------------ Source/BasicParamsComponent.h | 20 +++++++++---------- Source/BendParamsComponent.cpp | 18 ++++++++--------- Source/BendParamsComponent.h | 10 +++++----- Source/CheckBoxComponent.cpp | 10 +++++----- Source/CheckBoxComponent.h | 14 ++++++------- Source/ChoiceComponent.cpp | 26 ++++++++++++------------ Source/ChoiceComponent.h | 16 +++++++-------- Source/CustomEnvelopeComponent.cpp | 26 ++++++++++++------------ Source/CustomEnvelopeComponent.h | 22 ++++++++++---------- Source/EnvelopeParamsComponent.cpp | 32 +++++++++++++++--------------- Source/EnvelopeParamsComponent.h | 12 +++++------ Source/NoiseParamsComponent.cpp | 18 ++++++++--------- Source/NoiseParamsComponent.h | 10 +++++----- Source/PulseParamsComponent.cpp | 30 ++++++++++++++-------------- Source/PulseParamsComponent.h | 12 +++++------ Source/SliderComponent.cpp | 24 +++++++++++----------- Source/SliderComponent.h | 12 +++++------ Source/SweepParamsComponent.cpp | 18 ++++++++--------- Source/SweepParamsComponent.h | 10 +++++----- Source/VibratoParamsComponent.cpp | 18 ++++++++--------- Source/VibratoParamsComponent.h | 10 +++++----- 24 files changed, 211 insertions(+), 211 deletions(-) diff --git a/Source/AdvancedParamsComponent.cpp b/Source/AdvancedParamsComponent.cpp index b8b827d..f5ef6b1 100644 --- a/Source/AdvancedParamsComponent.cpp +++ b/Source/AdvancedParamsComponent.cpp @@ -7,12 +7,12 @@ the "//[xyz]" and "//[/xyz]" sections will be retained when the file is loaded and re-saved. - Created with Projucer version: 5.4.5 + Created with Projucer version: 6.0.8 ------------------------------------------------------------------------------ The Projucer is part of the JUCE library. - Copyright (c) 2017 - ROLI Ltd. + Copyright (c) 2020 - Raw Material Software Limited. ============================================================================== */ @@ -37,14 +37,14 @@ AdvancedParamsComponent::AdvancedParamsComponent (Magical8bitPlug2AudioProcessor addAndMakeVisible (volumeCompo.get()); volumeCompo->setName ("volume component"); - label5.reset (new Label ("new label", - TRANS("Custom Envelopes"))); + label5.reset (new juce::Label ("new label", + TRANS("Custom Envelopes"))); addAndMakeVisible (label5.get()); - label5->setFont (Font (17.00f, Font::plain).withTypefaceStyle ("Regular")); - label5->setJustificationType (Justification::centredLeft); + label5->setFont (juce::Font (17.00f, juce::Font::plain).withTypefaceStyle ("Regular")); + label5->setJustificationType (juce::Justification::centredLeft); label5->setEditable (false, false, false); - label5->setColour (TextEditor::textColourId, Colours::black); - label5->setColour (TextEditor::backgroundColourId, Colour (0x00000000)); + label5->setColour (juce::TextEditor::textColourId, juce::Colours::black); + label5->setColour (juce::TextEditor::backgroundColourId, juce::Colour (0x00000000)); label5->setBounds (0, 4, 150, 24); @@ -91,7 +91,7 @@ AdvancedParamsComponent::~AdvancedParamsComponent() } //============================================================================== -void AdvancedParamsComponent::paint (Graphics& g) +void AdvancedParamsComponent::paint (juce::Graphics& g) { //[UserPrePaint] Add your own custom painting code here.. //[/UserPrePaint] diff --git a/Source/AdvancedParamsComponent.h b/Source/AdvancedParamsComponent.h index c249bb2..2f8950e 100644 --- a/Source/AdvancedParamsComponent.h +++ b/Source/AdvancedParamsComponent.h @@ -7,12 +7,12 @@ the "//[xyz]" and "//[/xyz]" sections will be retained when the file is loaded and re-saved. - Created with Projucer version: 5.4.5 + Created with Projucer version: 6.0.8 ------------------------------------------------------------------------------ The Projucer is part of the JUCE library. - Copyright (c) 2017 - ROLI Ltd. + Copyright (c) 2020 - Raw Material Software Limited. ============================================================================== */ @@ -40,13 +40,13 @@ class AdvancedParamsComponent : public Component public: //============================================================================== AdvancedParamsComponent (Magical8bitPlug2AudioProcessor& p); - ~AdvancedParamsComponent(); + ~AdvancedParamsComponent() override; //============================================================================== //[UserMethods] -- You can add your own custom methods in this section. //[/UserMethods] - void paint (Graphics& g) override; + void paint (juce::Graphics& g) override; void resized() override; @@ -58,7 +58,7 @@ private: //============================================================================== std::unique_ptr volumeCompo; - std::unique_ptr