Added render settings component

This commit is contained in:
xenakios
2018-05-07 20:43:27 +03:00
parent 29bc7bd5ee
commit 7c9e4ac88d
4 changed files with 277 additions and 0 deletions

View File

@ -21,6 +21,7 @@ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#include "PluginProcessor.h"
#include "PluginEditor.h"
#include <array>
#include "RenderSettingsComponent.h"
extern String g_plugintitle;
@ -246,6 +247,9 @@ PaulstretchpluginAudioProcessorEditor::~PaulstretchpluginAudioProcessorEditor()
void PaulstretchpluginAudioProcessorEditor::showRenderDialog()
{
auto content = new RenderSettingsComponent(&processor);
CallOutBox& myBox
= CallOutBox::launchAsynchronously(content, getScreenBounds(), nullptr);
}
void PaulstretchpluginAudioProcessorEditor::paint (Graphics& g)