1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-29 02:40:05 +00:00

Introjucer: wizards for auto-generating new Component classes

This commit is contained in:
jules 2012-09-06 11:08:29 +01:00
parent 6e631bceb1
commit d24ee139d3
21 changed files with 582 additions and 77 deletions

View file

@ -3,20 +3,24 @@
This file was auto-generated!
It contains the basic outline for a simple desktop window.
It contains the basic structure for a simple desktop window.
==============================================================================
*/
INCLUDES
INCLUDE_CORRESPONDING_HEADER
//==============================================================================
WINDOWCLASS::WINDOWCLASS()
: DocumentWindow (JUCEApplication::getInstance()->getApplicationName(),
: DocumentWindow ("WINDOWCLASS",
Colours::lightgrey,
DocumentWindow::allButtons)
{
// At this point you should call setContentOwned() to give the window
// a component containing the content you want to show..
centreWithSize (500, 400);
setVisible (true);
}