1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-11 23:54:18 +00:00

Projucer: Cleaned up templates and added options for header and cpp file creation

This commit is contained in:
Noah Dayan 2018-01-17 16:51:07 +00:00
parent 1b2e21d867
commit bed0f02e54
30 changed files with 1360 additions and 333 deletions

View file

@ -10,8 +10,6 @@
APPHEADERS
Component* createMainContentComponent();
//==============================================================================
class APPCLASSNAME : public JUCEApplication
{
@ -67,7 +65,7 @@ public:
DocumentWindow::allButtons)
{
setUsingNativeTitleBar (true);
setContentOwned (createMainContentComponent(), true);
setContentOwned (new CONTENTCOMPCLASS(), true);
setResizable (true, true);
centreWithSize (getWidth(), getHeight());