1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00
JUCE/extras/Introjucer/Source/BinaryData/jucer_AudioPluginEditorTemplate.cpp

35 lines
1,008 B
C++

/*
==============================================================================
This file was auto-generated by the Introjucer!
It contains the basic startup code for a Juce application.
==============================================================================
*/
EDITORCPPHEADERS
//==============================================================================
EDITORCLASSNAME::EDITORCLASSNAME (FILTERCLASSNAME* ownerFilter)
: AudioProcessorEditor (ownerFilter)
{
// This is where our plugin's editor size is set.
setSize (400, 300);
}
EDITORCLASSNAME::~EDITORCLASSNAME()
{
}
//==============================================================================
void EDITORCLASSNAME::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);
}