Remove old (autogenerated) GUI.
This commit is contained in:
parent
8c8e2dda78
commit
4706aaa1de
3 changed files with 0 additions and 72 deletions
|
@ -41,9 +41,6 @@
|
|||
file="Source/PluginProcessor.cpp"/>
|
||||
<FILE id="IvGocs" name="PluginProcessor.h" compile="0" resource="0"
|
||||
file="Source/PluginProcessor.h"/>
|
||||
<FILE id="PUM7RE" name="PluginEditor.cpp" compile="1" resource="0"
|
||||
file="Source/PluginEditor.cpp"/>
|
||||
<FILE id="jHO5FF" name="PluginEditor.h" compile="0" resource="0" file="Source/PluginEditor.h"/>
|
||||
<FILE id="ep2XEF" name="setup.h" compile="0" resource="0" file="Source/setup.h"/>
|
||||
</GROUP>
|
||||
</MAINGROUP>
|
||||
|
|
|
@ -1,36 +0,0 @@
|
|||
/*
|
||||
==============================================================================
|
||||
|
||||
This file was auto-generated by the Introjucer!
|
||||
|
||||
It contains the basic startup code for a Juce application.
|
||||
|
||||
==============================================================================
|
||||
*/
|
||||
|
||||
#include "PluginProcessor.h"
|
||||
#include "PluginEditor.h"
|
||||
|
||||
|
||||
//==============================================================================
|
||||
JuceOplvstiAudioProcessorEditor::JuceOplvstiAudioProcessorEditor (JuceOplvstiAudioProcessor* ownerFilter)
|
||||
: AudioProcessorEditor (ownerFilter)
|
||||
{
|
||||
// This is where our plugin's editor size is set.
|
||||
setSize (400, 300);
|
||||
}
|
||||
|
||||
JuceOplvstiAudioProcessorEditor::~JuceOplvstiAudioProcessorEditor()
|
||||
{
|
||||
}
|
||||
|
||||
//==============================================================================
|
||||
void JuceOplvstiAudioProcessorEditor::paint (Graphics& g)
|
||||
{
|
||||
g.fillAll (Colours::white);
|
||||
g.setColour (Colours::black);
|
||||
g.setFont (15.0f);
|
||||
g.drawFittedText ("Hello World!",
|
||||
0, 0, getWidth(), getHeight(),
|
||||
Justification::centred, 1);
|
||||
}
|
|
@ -1,33 +0,0 @@
|
|||
/*
|
||||
==============================================================================
|
||||
|
||||
This file was auto-generated by the Introjucer!
|
||||
|
||||
It contains the basic startup code for a Juce application.
|
||||
|
||||
==============================================================================
|
||||
*/
|
||||
|
||||
#ifndef PLUGINEDITOR_H_INCLUDED
|
||||
#define PLUGINEDITOR_H_INCLUDED
|
||||
|
||||
#include "../JuceLibraryCode/JuceHeader.h"
|
||||
#include "PluginProcessor.h"
|
||||
|
||||
|
||||
//==============================================================================
|
||||
/**
|
||||
*/
|
||||
class JuceOplvstiAudioProcessorEditor : public AudioProcessorEditor
|
||||
{
|
||||
public:
|
||||
JuceOplvstiAudioProcessorEditor (JuceOplvstiAudioProcessor* ownerFilter);
|
||||
~JuceOplvstiAudioProcessorEditor();
|
||||
|
||||
//==============================================================================
|
||||
// This is just a standard Juce paint method...
|
||||
void paint (Graphics& g);
|
||||
};
|
||||
|
||||
|
||||
#endif // PLUGINEDITOR_H_INCLUDED
|
Loading…
Reference in a new issue