upgrade to JUCE 5.4.3. Remove (probably) unused JUCE modules. Remove VST2 target (it's been end-of-life'd by Steinberg and by JUCE)

This commit is contained in:
Alex Birch
2019-06-22 20:41:38 +01:00
parent d22c2cd4fa
commit 9ee566b251
1140 changed files with 67534 additions and 105952 deletions

View File

@ -74,7 +74,7 @@ public:
/** Creates a text property component with a default value.
@param valueToControl The ValueWithDefault that is controlled by the TextPropertyComponent
@param valueToControl The ValueWithDefault that is controlled by the TextPropertyComponent.
@param propertyName The name of the property
@param maxNumChars If not zero, then this specifies the maximum allowable length of
the string. If zero, then the string will have no length limit.
@ -90,7 +90,7 @@ public:
bool isEditable = true);
/** Destructor. */
~TextPropertyComponent();
~TextPropertyComponent() override;
//==============================================================================
/** Called when the user edits the text.
@ -133,7 +133,7 @@ public:
{
public:
/** Destructor. */
virtual ~Listener() {}
virtual ~Listener() = default;
/** Called when text has finished being entered (i.e. not per keypress) has changed. */
virtual void textPropertyComponentChanged (TextPropertyComponent*) = 0;
@ -168,19 +168,23 @@ public:
virtual void textWasEdited();
private:
bool isMultiLine;
class RemapperValueSourceWithDefault;
class LabelComp;
friend class LabelComp;
//==============================================================================
void callListeners();
void createEditor (int maxNumChars, bool isEditable);
//==============================================================================
bool isMultiLine;
std::unique_ptr<LabelComp> textEditor;
ListenerList<Listener> listenerList;
void callListeners();
void createEditor (int maxNumChars, bool isEditable);
WeakReference<ValueWithDefault> valueWithDefault;
//==============================================================================
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (TextPropertyComponent)
};