Add remaining files
[juce-lv2.git] / juce / source / extras / Introjucer / Source / BinaryData / jucer_AudioPluginEditorTemplate.cpp
blob5c7fef48bf298f52835a6d3ea23d9daf5199774d
1 /*
2 ==============================================================================
4 This file was auto-generated by the Jucer!
6 It contains the basic startup code for a Juce application.
8 ==============================================================================
9 */
11 EDITORCPPHEADERS
14 //==============================================================================
15 EDITORCLASSNAME::EDITORCLASSNAME (FILTERCLASSNAME* ownerFilter)
16 : AudioProcessorEditor (ownerFilter)
18 // This is where our plugin's editor size is set.
19 setSize (400, 300);
22 EDITORCLASSNAME::~EDITORCLASSNAME()
26 //==============================================================================
27 void EDITORCLASSNAME::paint (Graphics& g)
29 g.fillAll (Colours::white);
30 g.setColour (Colours::black);
31 g.setFont (15.0f);
32 g.drawFittedText ("Hello World!",
33 0, 0, getWidth(), getHeight(),
34 Justification::centred, 1);