layout updates, other ios compatibility updates
This commit is contained in:
@ -34,7 +34,8 @@ public:
|
||||
void resized() override;
|
||||
void comboBoxChanged (ComboBox* comboBoxThatHasChanged) override;
|
||||
void buttonClicked (Button* buttonThatWasClicked) override;
|
||||
int getPreferredHeight();
|
||||
int getPreferredHeight() const;
|
||||
int getPreferredWidth() const;
|
||||
void textEditorTextChanged(TextEditor& ed) override;
|
||||
private:
|
||||
PaulstretchpluginAudioProcessor * m_proc = nullptr;
|
||||
@ -51,7 +52,13 @@ private:
|
||||
Label m_labelMaxOutDuration;
|
||||
TextEditor m_editorMaxOutDuration;
|
||||
ToggleButton m_toggleFloatClip;
|
||||
ToggleButton m_shareAfterRenderToggle;
|
||||
String ID_lastrenderpath{ "lastrenderpath" };
|
||||
String ID_lastrendershare{ "lastrendershare" };
|
||||
int prefHeight = 400;
|
||||
int prefWidth = 500;
|
||||
std::unique_ptr<FileChooser> m_filechooser;
|
||||
bool pendingRender = false;
|
||||
//==============================================================================
|
||||
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (RenderSettingsComponent)
|
||||
};
|
||||
|
Reference in New Issue
Block a user