1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-22 01:34:21 +00:00

Added a [Constructor_pre] section to introjucer GUI component files.

This commit is contained in:
jules 2015-03-24 16:17:35 +00:00
parent 3bcc182fe9
commit 699c5a9109
3 changed files with 8 additions and 2 deletions

View file

@ -578,6 +578,9 @@ static const unsigned char temp_binary_data_6[] =
"//==============================================================================\r\n"
"%%className%%::%%className%% (%%constructorParams%%)\r\n"
"%%initialisers%%{\r\n"
" //[Constructor_pre] You can add your own custom stuff here..\r\n"
" //[/Constructor_pre]\r\n"
"\r\n"
" %%constructor%%\r\n"
"\r\n"
" //[Constructor] You can add your own custom stuff here..\r\n"
@ -4074,7 +4077,7 @@ const char* getNamedResource (const char* resourceNameUTF8, int& numBytes) throw
case 0x4d0721bf: numBytes = 1012; return jucer_AudioPluginEditorTemplate_h;
case 0x51b49ac5: numBytes = 5039; return jucer_AudioPluginFilterTemplate_cpp;
case 0x488afa0a: numBytes = 2727; return jucer_AudioPluginFilterTemplate_h;
case 0xabad7041: numBytes = 2083; return jucer_ComponentTemplate_cpp;
case 0xabad7041: numBytes = 2177; return jucer_ComponentTemplate_cpp;
case 0xfc72fe86: numBytes = 2156; return jucer_ComponentTemplate_h;
case 0x0b66646c: numBytes = 886; return jucer_ContentCompTemplate_cpp;
case 0x6fa10171: numBytes = 924; return jucer_ContentCompTemplate_h;

View file

@ -28,7 +28,7 @@ namespace BinaryData
const int jucer_AudioPluginFilterTemplate_hSize = 2727;
extern const char* jucer_ComponentTemplate_cpp;
const int jucer_ComponentTemplate_cppSize = 2083;
const int jucer_ComponentTemplate_cppSize = 2177;
extern const char* jucer_ComponentTemplate_h;
const int jucer_ComponentTemplate_hSize = 2156;

View file

@ -28,6 +28,9 @@
//==============================================================================
%%className%%::%%className%% (%%constructorParams%%)
%%initialisers%%{
//[Constructor_pre] You can add your own custom stuff here..
//[/Constructor_pre]
%%constructor%%
//[Constructor] You can add your own custom stuff here..