|
- /*
- ==============================================================================
-
- 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);
- }
|