2 ==============================================================================
4 This file was auto-generated by the Jucer!
6 It contains the basic startup code for a Juce application.
8 ==============================================================================
14 //==============================================================================
15 EDITORCLASSNAME::EDITORCLASSNAME (FILTERCLASSNAME
* ownerFilter
)
16 : AudioProcessorEditor (ownerFilter
)
18 // This is where our plugin's editor size is set.
22 EDITORCLASSNAME::~EDITORCLASSNAME()
26 //==============================================================================
27 void EDITORCLASSNAME::paint (Graphics
& g
)
29 g
.fillAll (Colours::white
);
30 g
.setColour (Colours::black
);
32 g
.drawFittedText ("Hello World!",
33 0, 0, getWidth(), getHeight(),
34 Justification::centred
, 1);