1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-05 03:50:07 +00:00
JUCE/extras/Jucer (experimental)/Source/BinaryData/jucer_WindowTemplate.cpp
2010-06-17 13:59:56 +01:00

31 lines
794 B
C++

/*
==============================================================================
This file was auto-generated by the Jucer!
It contains the basic outline for a simple desktop window.
==============================================================================
*/
INCLUDES
//==============================================================================
WINDOWCLASS::WINDOWCLASS()
: DocumentWindow (JUCEApplication::getInstance()->getApplicationName(),
Colours::lightgrey,
DocumentWindow::allButtons)
{
centreWithSize (500, 400);
setVisible (true);
}
WINDOWCLASS::~WINDOWCLASS()
{
}
void WINDOWCLASS::closeButtonPressed()
{
JUCEApplication::getInstance()->systemRequestedQuit();
}