1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-01 03:10:06 +00:00

Introjucer: improved the new project wizard code.

This commit is contained in:
jules 2012-09-25 23:13:45 +01:00
parent 29e5dd20e2
commit d9d5a6ae51
15 changed files with 518 additions and 334 deletions

View file

@ -0,0 +1,36 @@
/*
==============================================================================
This file was auto-generated!
==============================================================================
*/
INCLUDE_CORRESPONDING_HEADER
//==============================================================================
CONTENTCOMPCLASS::CONTENTCOMPCLASS()
{
setSize (500, 400);
}
CONTENTCOMPCLASS::~CONTENTCOMPCLASS()
{
}
void CONTENTCOMPCLASS::paint (Graphics& g)
{
g.fillAll (Colour (0xffeeddff));
g.setFont (Font (16.0f));
g.setColour (Colours::black);
g.drawText ("Hello World!", getLocalBounds(), Justification::centred, true);
}
void CONTENTCOMPCLASS::resized()
{
// This is called when the CONTENTCOMPCLASS is resized.
// If you add any child components, this is where you should
// update their positions.
}