JUCE automatic updates

This commit is contained in:
Takeshi Yokemura
2021-08-07 18:18:39 +09:00
parent 10be019661
commit e8f05d737d
24 changed files with 211 additions and 211 deletions

View File

@ -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.
==============================================================================
*/
@ -36,14 +36,14 @@
//[/Comments]
*/
class CustomEnvelopeComponent : public Component,
TextEditor::Listener,
FrameSequenceChangeListener,
public Button::Listener
TextEditor::Listener,
FrameSequenceChangeListener,
public juce::Button::Listener
{
public:
//==============================================================================
CustomEnvelopeComponent (Magical8bitPlug2AudioProcessor& p, String type, String displayName, String flagParameterName);
~CustomEnvelopeComponent();
~CustomEnvelopeComponent() override;
//==============================================================================
//[UserMethods] -- You can add your own custom methods in this section.
@ -51,9 +51,9 @@ public:
void sequenceChanged (String& str) override;
//[/UserMethods]
void paint (Graphics& g) override;
void paint (juce::Graphics& g) override;
void resized() override;
void buttonClicked (Button* buttonThatWasClicked) override;
void buttonClicked (juce::Button* buttonThatWasClicked) override;
void lookAndFeelChanged() override;
@ -67,9 +67,9 @@ private:
//[/UserVariables]
//==============================================================================
std::unique_ptr<TextEditor> textEditor;
std::unique_ptr<ToggleButton> toggleButton;
std::unique_ptr<Label> label;
std::unique_ptr<juce::TextEditor> textEditor;
std::unique_ptr<juce::ToggleButton> toggleButton;
std::unique_ptr<juce::Label> label;
//==============================================================================