The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1287 lines
54KB

  1. /* ==================================== JUCER_BINARY_RESOURCE ====================================
  2. This is an auto-generated file: Any edits you make may be overwritten!
  3. */
  4. namespace BinaryData
  5. {
  6. //================== AudioPluginXCodeScript.txt ==================
  7. static const unsigned char temp_binary_data_0[] =
  8. "\r\n"
  9. "# This script takes the build product and copies it to the AU, VST, VST3, RTAS and AAX folders, depending on \r\n"
  10. "# which plugin types you've built\r\n"
  11. "\r\n"
  12. "original=$CONFIGURATION_BUILD_DIR/$FULL_PRODUCT_NAME\r\n"
  13. "\r\n"
  14. "# this looks inside the binary to detect which platforms are needed.. \r\n"
  15. "copyAU=`nm -g \"$CONFIGURATION_BUILD_DIR/$EXECUTABLE_PATH\" | grep -i 'AudioUnit' | wc -l`\r\n"
  16. "copyVST=`nm -g \"$CONFIGURATION_BUILD_DIR/$EXECUTABLE_PATH\" | grep -i 'VSTPlugin' | wc -l`\r\n"
  17. "copyVST3=`nm -g \"$CONFIGURATION_BUILD_DIR/$EXECUTABLE_PATH\" | grep -i 'GetPluginFactory' | wc -l`\r\n"
  18. "copyRTAS=`nm -g \"$CONFIGURATION_BUILD_DIR/$EXECUTABLE_PATH\" | grep -i 'CProcess' | wc -l`\r\n"
  19. "copyAAX=`nm -g \"$CONFIGURATION_BUILD_DIR/$EXECUTABLE_PATH\" | grep -i 'ACFStartup' | wc -l`\r\n"
  20. "\r\n"
  21. "if [ $copyAU -gt 0 ]; then\r\n"
  22. " echo \"Copying to AudioUnit folder...\"\r\n"
  23. " AU=~/Library/Audio/Plug-Ins/Components/$PRODUCT_NAME.component\r\n"
  24. " if [ -d \"$AU\" ]; then \r\n"
  25. " rm -r \"$AU\"\r\n"
  26. " fi\r\n"
  27. "\r\n"
  28. " cp -r \"$original\" \"$AU\"\r\n"
  29. " sed -i \"\" -e 's/TDMwPTul/BNDLPTul/g' \"$AU/Contents/PkgInfo\"\r\n"
  30. " sed -i \"\" -e 's/TDMw/BNDL/g' \"$AU/Contents/$INFOPLIST_FILE\"\r\n"
  31. "\r\n"
  32. " # Fix info.plist for AUs built with Xcode 3\r\n"
  33. " if [ -f \"$DEVELOPER_DIR/Library/Developer/CoreAudio/AudioUnits/AUPublic/AUBase/AUPlugInDispatch.cpp\" ]; then\r\n"
  34. " echo\r\n"
  35. " else\r\n"
  36. " echo \"Removing AudioComponents entry from Info.plist because this is not a new-format AU\"\r\n"
  37. " /usr/libexec/PlistBuddy -c \"Delete AudioComponents\" \"$AU/Contents/Info.plist\"\r\n"
  38. " fi\r\n"
  39. "fi\r\n"
  40. "\r\n"
  41. "if [ $copyVST -gt 0 ]; then\r\n"
  42. " echo \"Copying to VST folder...\"\r\n"
  43. " VST=~/Library/Audio/Plug-Ins/VST/$PRODUCT_NAME.vst\r\n"
  44. " if [ -d \"$VST\" ]; then \r\n"
  45. " rm -r \"$VST\"\r\n"
  46. " fi\r\n"
  47. "\r\n"
  48. " cp -r \"$original\" \"$VST\"\r\n"
  49. " sed -i \"\" -e 's/TDMwPTul/BNDLPTul/g' \"$VST/Contents/PkgInfo\"\r\n"
  50. " sed -i \"\" -e 's/TDMw/BNDL/g' \"$VST/Contents/$INFOPLIST_FILE\"\r\n"
  51. "fi\r\n"
  52. "\r\n"
  53. "if [ $copyVST3 -gt 0 ]; then\r\n"
  54. " echo \"Copying to VST3 folder...\"\r\n"
  55. " VST3=~/Library/Audio/Plug-Ins/VST3/$PRODUCT_NAME.vst3\r\n"
  56. " if [ -d \"$VST3\" ]; then \r\n"
  57. " rm -r \"$VST3\"\r\n"
  58. " fi\r\n"
  59. "\r\n"
  60. " cp -r \"$original\" \"$VST3\"\r\n"
  61. " sed -i \"\" -e 's/TDMwPTul/BNDLPTul/g' \"$VST3/Contents/PkgInfo\"\r\n"
  62. " sed -i \"\" -e 's/TDMw/BNDL/g' \"$VST3/Contents/$INFOPLIST_FILE\"\r\n"
  63. "fi\r\n"
  64. "\r\n"
  65. "if [ $copyRTAS -gt 0 ]; then\r\n"
  66. " echo \"Copying to RTAS folder...\"\r\n"
  67. " RTAS=/Library/Application\\ Support/Digidesign/Plug-Ins/$PRODUCT_NAME.dpm\r\n"
  68. " if [ -d \"$RTAS\" ]; then\r\n"
  69. " rm -r \"$RTAS\"\r\n"
  70. " fi\r\n"
  71. "\r\n"
  72. " cp -r \"$original\" \"$RTAS\"\r\n"
  73. "fi\r\n"
  74. "\r\n"
  75. "if [ $copyAAX -gt 0 ]; then\r\n"
  76. " echo \"Copying to AAX folder...\"\r\n"
  77. "\r\n"
  78. " if [ -d \"/Applications/ProTools_3PDev/Plug-Ins\" ]; then\r\n"
  79. " AAX1=\"/Applications/ProTools_3PDev/Plug-Ins/$PRODUCT_NAME.aaxplugin\"\r\n"
  80. "\r\n"
  81. " if [ -d \"$AAX1\" ]; then\r\n"
  82. " rm -r \"$AAX1\"\r\n"
  83. " fi\r\n"
  84. "\r\n"
  85. " cp -r \"$original\" \"$AAX1\"\r\n"
  86. " fi\r\n"
  87. "\r\n"
  88. " if [ -d \"/Library/Application Support/Avid/Audio/Plug-Ins\" ]; then\r\n"
  89. " AAX2=\"/Library/Application Support/Avid/Audio/Plug-Ins/$PRODUCT_NAME.aaxplugin\"\r\n"
  90. "\r\n"
  91. " if [ -d \"$AAX2\" ]; then\r\n"
  92. " rm -r \"$AAX2\"\r\n"
  93. " fi\r\n"
  94. "\r\n"
  95. " cp -r \"$original\" \"$AAX2\"\r\n"
  96. " fi\r\n"
  97. "fi\r\n";
  98. const char* AudioPluginXCodeScript_txt = (const char*) temp_binary_data_0;
  99. //================== background_tile.png ==================
  100. static const unsigned char temp_binary_data_1[] =
  101. { 137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,7,0,0,0,7,8,6,0,0,0,196,82,87,211,0,0,0,94,73,68,65,84,120,218,85,141,73,14,0,33,8,4,253,137,226,18,19,245,234,255,127,70,75,155,232,56,135,10,132,94,112,33,4,37,222,123,205,57,107,74,105,239,196,137,
  102. 8,72,239,29,99,12,204,57,209,90,227,237,19,45,113,161,209,12,234,172,18,49,70,88,229,134,34,103,173,245,159,60,134,82,10,238,79,166,223,106,238,91,100,229,73,191,80,92,47,179,68,223,148,158,98,226,0,0,0,0,73,69,78,68,174,66,96,130,0,0 };
  103. const char* background_tile_png = (const char*) temp_binary_data_1;
  104. //================== colourscheme_dark.xml ==================
  105. static const unsigned char temp_binary_data_2[] =
  106. "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n"
  107. "\r\n"
  108. "<COLOUR_SCHEME font=\"&lt;Monospaced&gt;; 13.0\">\r\n"
  109. " <COLOUR name=\"Main Window Bkgd\" colour=\"FF29292A\"/>\r\n"
  110. " <COLOUR name=\"Treeview Highlight\" colour=\"2BFFFEC3\"/>\r\n"
  111. " <COLOUR name=\"Code Background\" colour=\"FF222222\"/>\r\n"
  112. " <COLOUR name=\"Line Number Bkgd\" colour=\"44C1C1C1\"/>\r\n"
  113. " <COLOUR name=\"Line Numbers\" colour=\"E9B2B2B2\"/>\r\n"
  114. " <COLOUR name=\"Plain Text\" colour=\"FFCECECE\"/>\r\n"
  115. " <COLOUR name=\"Selected Text Bkgd\" colour=\"FF2859AC\"/>\r\n"
  116. " <COLOUR name=\"Caret\" colour=\"FFFFFFFF\"/>\r\n"
  117. " <COLOUR name=\"Preprocessor Text\" colour=\"FFF8F631\"/>\r\n"
  118. " <COLOUR name=\"Punctuation\" colour=\"FFCFBEFF\"/>\r\n"
  119. " <COLOUR name=\"Bracket\" colour=\"FF058202\"/>\r\n"
  120. " <COLOUR name=\"String\" colour=\"FFBC45DD\"/>\r\n"
  121. " <COLOUR name=\"Float\" colour=\"ff885500\"/>\r\n"
  122. " <COLOUR name=\"Integer\" colour=\"FF42C8C4\"/>\r\n"
  123. " <COLOUR name=\"Identifier\" colour=\"FFCFCFCF\"/>\r\n"
  124. " <COLOUR name=\"Operator\" colour=\"FFC4EB19\"/>\r\n"
  125. " <COLOUR name=\"Keyword\" colour=\"FFEE6F6F\"/>\r\n"
  126. " <COLOUR name=\"Comment\" colour=\"FF72D20C\"/>\r\n"
  127. " <COLOUR name=\"Error\" colour=\"FFE60000\"/>\r\n"
  128. "</COLOUR_SCHEME>\r\n";
  129. const char* colourscheme_dark_xml = (const char*) temp_binary_data_2;
  130. //================== colourscheme_light.xml ==================
  131. static const unsigned char temp_binary_data_3[] =
  132. "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n"
  133. "\r\n"
  134. "<COLOUR_SCHEME font=\"&lt;Monospaced&gt;; 13.0\">\r\n"
  135. " <COLOUR name=\"Main Window Bkgd\" colour=\"FFE6E7E9\"/>\r\n"
  136. " <COLOUR name=\"Treeview Highlight\" colour=\"401111ee\"/>\r\n"
  137. " <COLOUR name=\"Code Background\" colour=\"ffffffff\"/>\r\n"
  138. " <COLOUR name=\"Line Number Bkgd\" colour=\"44999999\"/>\r\n"
  139. " <COLOUR name=\"Line Numbers\" colour=\"44000000\"/>\r\n"
  140. " <COLOUR name=\"Plain Text\" colour=\"ff000000\"/>\r\n"
  141. " <COLOUR name=\"Selected Text Bkgd\" colour=\"401111ee\"/>\r\n"
  142. " <COLOUR name=\"Caret\" colour=\"ff000000\"/>\r\n"
  143. " <COLOUR name=\"Preprocessor Text\" colour=\"ff660000\"/>\r\n"
  144. " <COLOUR name=\"Punctuation\" colour=\"ff004400\"/>\r\n"
  145. " <COLOUR name=\"Bracket\" colour=\"ff000055\"/>\r\n"
  146. " <COLOUR name=\"String\" colour=\"ff990099\"/>\r\n"
  147. " <COLOUR name=\"Float\" colour=\"ff885500\"/>\r\n"
  148. " <COLOUR name=\"Integer\" colour=\"ff880000\"/>\r\n"
  149. " <COLOUR name=\"Identifier\" colour=\"ff000000\"/>\r\n"
  150. " <COLOUR name=\"Operator\" colour=\"ff225500\"/>\r\n"
  151. " <COLOUR name=\"Keyword\" colour=\"ff0000cc\"/>\r\n"
  152. " <COLOUR name=\"Comment\" colour=\"ff00aa00\"/>\r\n"
  153. " <COLOUR name=\"Error\" colour=\"ffcc0000\"/>\r\n"
  154. "</COLOUR_SCHEME>\r\n";
  155. const char* colourscheme_light_xml = (const char*) temp_binary_data_3;
  156. //================== jucer_AudioPluginEditorTemplate.cpp ==================
  157. static const unsigned char temp_binary_data_4[] =
  158. "/*\r\n"
  159. " ==============================================================================\r\n"
  160. "\r\n"
  161. " This file was auto-generated by the Introjucer!\r\n"
  162. "\r\n"
  163. " It contains the basic startup code for a Juce application.\r\n"
  164. "\r\n"
  165. " ==============================================================================\r\n"
  166. "*/\r\n"
  167. "\r\n"
  168. "EDITORCPPHEADERS\r\n"
  169. "\r\n"
  170. "\r\n"
  171. "//==============================================================================\r\n"
  172. "EDITORCLASSNAME::EDITORCLASSNAME (FILTERCLASSNAME* ownerFilter)\r\n"
  173. " : AudioProcessorEditor (ownerFilter)\r\n"
  174. "{\r\n"
  175. " // This is where our plugin's editor size is set.\r\n"
  176. " setSize (400, 300);\r\n"
  177. "}\r\n"
  178. "\r\n"
  179. "EDITORCLASSNAME::~EDITORCLASSNAME()\r\n"
  180. "{\r\n"
  181. "}\r\n"
  182. "\r\n"
  183. "//==============================================================================\r\n"
  184. "void EDITORCLASSNAME::paint (Graphics& g)\r\n"
  185. "{\r\n"
  186. " g.fillAll (Colours::white);\r\n"
  187. " g.setColour (Colours::black);\r\n"
  188. " g.setFont (15.0f);\r\n"
  189. " g.drawFittedText (\"Hello World!\",\r\n"
  190. " 0, 0, getWidth(), getHeight(),\r\n"
  191. " Justification::centred, 1);\r\n"
  192. "}\r\n";
  193. const char* jucer_AudioPluginEditorTemplate_cpp = (const char*) temp_binary_data_4;
  194. //================== jucer_AudioPluginEditorTemplate.h ==================
  195. static const unsigned char temp_binary_data_5[] =
  196. "/*\r\n"
  197. " ==============================================================================\r\n"
  198. "\r\n"
  199. " This file was auto-generated by the Introjucer!\r\n"
  200. "\r\n"
  201. " It contains the basic startup code for a Juce application.\r\n"
  202. "\r\n"
  203. " ==============================================================================\r\n"
  204. "*/\r\n"
  205. "\r\n"
  206. "#ifndef HEADERGUARD\r\n"
  207. "#define HEADERGUARD\r\n"
  208. "\r\n"
  209. "EDITORHEADERS\r\n"
  210. "\r\n"
  211. "\r\n"
  212. "//==============================================================================\r\n"
  213. "/**\r\n"
  214. "*/\r\n"
  215. "class EDITORCLASSNAME : public AudioProcessorEditor\r\n"
  216. "{\r\n"
  217. "public:\r\n"
  218. " EDITORCLASSNAME (FILTERCLASSNAME* ownerFilter);\r\n"
  219. " ~EDITORCLASSNAME();\r\n"
  220. "\r\n"
  221. " //==============================================================================\r\n"
  222. " // This is just a standard Juce paint method...\r\n"
  223. " void paint (Graphics& g);\r\n"
  224. "};\r\n"
  225. "\r\n"
  226. "\r\n"
  227. "#endif // HEADERGUARD\r\n";
  228. const char* jucer_AudioPluginEditorTemplate_h = (const char*) temp_binary_data_5;
  229. //================== jucer_AudioPluginFilterTemplate.cpp ==================
  230. static const unsigned char temp_binary_data_6[] =
  231. "/*\r\n"
  232. " ==============================================================================\r\n"
  233. "\r\n"
  234. " This file was auto-generated!\r\n"
  235. "\r\n"
  236. " It contains the basic startup code for a Juce application.\r\n"
  237. "\r\n"
  238. " ==============================================================================\r\n"
  239. "*/\r\n"
  240. "\r\n"
  241. "FILTERHEADERS\r\n"
  242. "\r\n"
  243. "\r\n"
  244. "//==============================================================================\r\n"
  245. "FILTERCLASSNAME::FILTERCLASSNAME()\r\n"
  246. "{\r\n"
  247. "}\r\n"
  248. "\r\n"
  249. "FILTERCLASSNAME::~FILTERCLASSNAME()\r\n"
  250. "{\r\n"
  251. "}\r\n"
  252. "\r\n"
  253. "//==============================================================================\r\n"
  254. "const String FILTERCLASSNAME::getName() const\r\n"
  255. "{\r\n"
  256. " return JucePlugin_Name;\r\n"
  257. "}\r\n"
  258. "\r\n"
  259. "int FILTERCLASSNAME::getNumParameters()\r\n"
  260. "{\r\n"
  261. " return 0;\r\n"
  262. "}\r\n"
  263. "\r\n"
  264. "float FILTERCLASSNAME::getParameter (int index)\r\n"
  265. "{\r\n"
  266. " return 0.0f;\r\n"
  267. "}\r\n"
  268. "\r\n"
  269. "void FILTERCLASSNAME::setParameter (int index, float newValue)\r\n"
  270. "{\r\n"
  271. "}\r\n"
  272. "\r\n"
  273. "const String FILTERCLASSNAME::getParameterName (int index)\r\n"
  274. "{\r\n"
  275. " return String::empty;\r\n"
  276. "}\r\n"
  277. "\r\n"
  278. "const String FILTERCLASSNAME::getParameterText (int index)\r\n"
  279. "{\r\n"
  280. " return String::empty;\r\n"
  281. "}\r\n"
  282. "\r\n"
  283. "const String FILTERCLASSNAME::getInputChannelName (int channelIndex) const\r\n"
  284. "{\r\n"
  285. " return String (channelIndex + 1);\r\n"
  286. "}\r\n"
  287. "\r\n"
  288. "const String FILTERCLASSNAME::getOutputChannelName (int channelIndex) const\r\n"
  289. "{\r\n"
  290. " return String (channelIndex + 1);\r\n"
  291. "}\r\n"
  292. "\r\n"
  293. "bool FILTERCLASSNAME::isInputChannelStereoPair (int index) const\r\n"
  294. "{\r\n"
  295. " return true;\r\n"
  296. "}\r\n"
  297. "\r\n"
  298. "bool FILTERCLASSNAME::isOutputChannelStereoPair (int index) const\r\n"
  299. "{\r\n"
  300. " return true;\r\n"
  301. "}\r\n"
  302. "\r\n"
  303. "bool FILTERCLASSNAME::acceptsMidi() const\r\n"
  304. "{\r\n"
  305. " #if JucePlugin_WantsMidiInput\r\n"
  306. " return true;\r\n"
  307. " #else\r\n"
  308. " return false;\r\n"
  309. " #endif\r\n"
  310. "}\r\n"
  311. "\r\n"
  312. "bool FILTERCLASSNAME::producesMidi() const\r\n"
  313. "{\r\n"
  314. " #if JucePlugin_ProducesMidiOutput\r\n"
  315. " return true;\r\n"
  316. " #else\r\n"
  317. " return false;\r\n"
  318. " #endif\r\n"
  319. "}\r\n"
  320. "\r\n"
  321. "bool FILTERCLASSNAME::silenceInProducesSilenceOut() const\r\n"
  322. "{\r\n"
  323. " return false;\r\n"
  324. "}\r\n"
  325. "\r\n"
  326. "double FILTERCLASSNAME::getTailLengthSeconds() const\r\n"
  327. "{\r\n"
  328. " return 0.0;\r\n"
  329. "}\r\n"
  330. "\r\n"
  331. "int FILTERCLASSNAME::getNumPrograms()\r\n"
  332. "{\r\n"
  333. " return 0;\r\n"
  334. "}\r\n"
  335. "\r\n"
  336. "int FILTERCLASSNAME::getCurrentProgram()\r\n"
  337. "{\r\n"
  338. " return 0;\r\n"
  339. "}\r\n"
  340. "\r\n"
  341. "void FILTERCLASSNAME::setCurrentProgram (int index)\r\n"
  342. "{\r\n"
  343. "}\r\n"
  344. "\r\n"
  345. "const String FILTERCLASSNAME::getProgramName (int index)\r\n"
  346. "{\r\n"
  347. " return String::empty;\r\n"
  348. "}\r\n"
  349. "\r\n"
  350. "void FILTERCLASSNAME::changeProgramName (int index, const String& newName)\r\n"
  351. "{\r\n"
  352. "}\r\n"
  353. "\r\n"
  354. "//==============================================================================\r\n"
  355. "void FILTERCLASSNAME::prepareToPlay (double sampleRate, int samplesPerBlock)\r\n"
  356. "{\r\n"
  357. " // Use this method as the place to do any pre-playback\r\n"
  358. " // initialisation that you need..\r\n"
  359. "}\r\n"
  360. "\r\n"
  361. "void FILTERCLASSNAME::releaseResources()\r\n"
  362. "{\r\n"
  363. " // When playback stops, you can use this as an opportunity to free up any\r\n"
  364. " // spare memory, etc.\r\n"
  365. "}\r\n"
  366. "\r\n"
  367. "void FILTERCLASSNAME::processBlock (AudioSampleBuffer& buffer, MidiBuffer& midiMessages)\r\n"
  368. "{\r\n"
  369. " // This is the place where you'd normally do the guts of your plugin's\r\n"
  370. " // audio processing...\r\n"
  371. " for (int channel = 0; channel < getNumInputChannels(); ++channel)\r\n"
  372. " {\r\n"
  373. " float* channelData = buffer.getWritePointer (channel);\r\n"
  374. "\r\n"
  375. " // ..do something to the data...\r\n"
  376. " }\r\n"
  377. "\r\n"
  378. " // In case we have more outputs than inputs, we'll clear any output\r\n"
  379. " // channels that didn't contain input data, (because these aren't\r\n"
  380. " // guaranteed to be empty - they may contain garbage).\r\n"
  381. " for (int i = getNumInputChannels(); i < getNumOutputChannels(); ++i)\r\n"
  382. " {\r\n"
  383. " buffer.clear (i, 0, buffer.getNumSamples());\r\n"
  384. " }\r\n"
  385. "}\r\n"
  386. "\r\n"
  387. "//==============================================================================\r\n"
  388. "bool FILTERCLASSNAME::hasEditor() const\r\n"
  389. "{\r\n"
  390. " return true; // (change this to false if you choose to not supply an editor)\r\n"
  391. "}\r\n"
  392. "\r\n"
  393. "AudioProcessorEditor* FILTERCLASSNAME::createEditor()\r\n"
  394. "{\r\n"
  395. " return new EDITORCLASSNAME (this);\r\n"
  396. "}\r\n"
  397. "\r\n"
  398. "//==============================================================================\r\n"
  399. "void FILTERCLASSNAME::getStateInformation (MemoryBlock& destData)\r\n"
  400. "{\r\n"
  401. " // You should use this method to store your parameters in the memory block.\r\n"
  402. " // You could do that either as raw data, or use the XML or ValueTree classes\r\n"
  403. " // as intermediaries to make it easy to save and load complex data.\r\n"
  404. "}\r\n"
  405. "\r\n"
  406. "void FILTERCLASSNAME::setStateInformation (const void* data, int sizeInBytes)\r\n"
  407. "{\r\n"
  408. " // You should use this method to restore your parameters from this memory block,\r\n"
  409. " // whose contents will have been created by the getStateInformation() call.\r\n"
  410. "}\r\n"
  411. "\r\n"
  412. "//==============================================================================\r\n"
  413. "// This creates new instances of the plugin..\r\n"
  414. "AudioProcessor* JUCE_CALLTYPE createPluginFilter()\r\n"
  415. "{\r\n"
  416. " return new FILTERCLASSNAME();\r\n"
  417. "}\r\n";
  418. const char* jucer_AudioPluginFilterTemplate_cpp = (const char*) temp_binary_data_6;
  419. //================== jucer_AudioPluginFilterTemplate.h ==================
  420. static const unsigned char temp_binary_data_7[] =
  421. "/*\r\n"
  422. " ==============================================================================\r\n"
  423. "\r\n"
  424. " This file was auto-generated!\r\n"
  425. "\r\n"
  426. " It contains the basic startup code for a Juce application.\r\n"
  427. "\r\n"
  428. " ==============================================================================\r\n"
  429. "*/\r\n"
  430. "\r\n"
  431. "#ifndef HEADERGUARD\r\n"
  432. "#define HEADERGUARD\r\n"
  433. "\r\n"
  434. "APPHEADERS\r\n"
  435. "\r\n"
  436. "\r\n"
  437. "//==============================================================================\r\n"
  438. "/**\r\n"
  439. "*/\r\n"
  440. "class FILTERCLASSNAME : public AudioProcessor\r\n"
  441. "{\r\n"
  442. "public:\r\n"
  443. " //==============================================================================\r\n"
  444. " FILTERCLASSNAME();\r\n"
  445. " ~FILTERCLASSNAME();\r\n"
  446. "\r\n"
  447. " //==============================================================================\r\n"
  448. " void prepareToPlay (double sampleRate, int samplesPerBlock);\r\n"
  449. " void releaseResources();\r\n"
  450. "\r\n"
  451. " void processBlock (AudioSampleBuffer& buffer, MidiBuffer& midiMessages);\r\n"
  452. "\r\n"
  453. " //==============================================================================\r\n"
  454. " AudioProcessorEditor* createEditor();\r\n"
  455. " bool hasEditor() const;\r\n"
  456. "\r\n"
  457. " //==============================================================================\r\n"
  458. " const String getName() const;\r\n"
  459. "\r\n"
  460. " int getNumParameters();\r\n"
  461. "\r\n"
  462. " float getParameter (int index);\r\n"
  463. " void setParameter (int index, float newValue);\r\n"
  464. "\r\n"
  465. " const String getParameterName (int index);\r\n"
  466. " const String getParameterText (int index);\r\n"
  467. "\r\n"
  468. " const String getInputChannelName (int channelIndex) const;\r\n"
  469. " const String getOutputChannelName (int channelIndex) const;\r\n"
  470. " bool isInputChannelStereoPair (int index) const;\r\n"
  471. " bool isOutputChannelStereoPair (int index) const;\r\n"
  472. "\r\n"
  473. " bool acceptsMidi() const;\r\n"
  474. " bool producesMidi() const;\r\n"
  475. " bool silenceInProducesSilenceOut() const;\r\n"
  476. " double getTailLengthSeconds() const;\r\n"
  477. "\r\n"
  478. " //==============================================================================\r\n"
  479. " int getNumPrograms();\r\n"
  480. " int getCurrentProgram();\r\n"
  481. " void setCurrentProgram (int index);\r\n"
  482. " const String getProgramName (int index);\r\n"
  483. " void changeProgramName (int index, const String& newName);\r\n"
  484. "\r\n"
  485. " //==============================================================================\r\n"
  486. " void getStateInformation (MemoryBlock& destData);\r\n"
  487. " void setStateInformation (const void* data, int sizeInBytes);\r\n"
  488. "\r\n"
  489. "private:\r\n"
  490. " //==============================================================================\r\n"
  491. " JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (FILTERCLASSNAME)\r\n"
  492. "};\r\n"
  493. "\r\n"
  494. "#endif // HEADERGUARD\r\n";
  495. const char* jucer_AudioPluginFilterTemplate_h = (const char*) temp_binary_data_7;
  496. //================== jucer_ComponentTemplate.cpp ==================
  497. static const unsigned char temp_binary_data_8[] =
  498. "/*\r\n"
  499. " ==============================================================================\r\n"
  500. "\r\n"
  501. " This is an automatically generated GUI class created by the Introjucer!\r\n"
  502. "\r\n"
  503. " Be careful when adding custom code to these files, as only the code within\r\n"
  504. " the \"//[xyz]\" and \"//[/xyz]\" sections will be retained when the file is loaded\r\n"
  505. " and re-saved.\r\n"
  506. "\r\n"
  507. " Created with Introjucer version: %%version%%\r\n"
  508. "\r\n"
  509. " ------------------------------------------------------------------------------\r\n"
  510. "\r\n"
  511. " The Introjucer is part of the JUCE library - \"Jules' Utility Class Extensions\"\r\n"
  512. " Copyright 2004-13 by Raw Material Software Ltd.\r\n"
  513. "\r\n"
  514. " ==============================================================================\r\n"
  515. "*/\r\n"
  516. "\r\n"
  517. "//[Headers] You can add your own extra header files here...\r\n"
  518. "//[/Headers]\r\n"
  519. "\r\n"
  520. "%%includeFilesCPP%%\r\n"
  521. "\r\n"
  522. "//[MiscUserDefs] You can add your own user definitions and misc code here...\r\n"
  523. "//[/MiscUserDefs]\r\n"
  524. "\r\n"
  525. "//==============================================================================\r\n"
  526. "%%className%%::%%className%% (%%constructorParams%%)\r\n"
  527. "%%initialisers%%{\r\n"
  528. " %%constructor%%\r\n"
  529. "\r\n"
  530. " //[Constructor] You can add your own custom stuff here..\r\n"
  531. " //[/Constructor]\r\n"
  532. "}\r\n"
  533. "\r\n"
  534. "%%className%%::~%%className%%()\r\n"
  535. "{\r\n"
  536. " //[Destructor_pre]. You can add your own custom destruction code here..\r\n"
  537. " //[/Destructor_pre]\r\n"
  538. "\r\n"
  539. " %%destructor%%\r\n"
  540. "\r\n"
  541. " //[Destructor]. You can add your own custom destruction code here..\r\n"
  542. " //[/Destructor]\r\n"
  543. "}\r\n"
  544. "\r\n"
  545. "//==============================================================================\r\n"
  546. "%%methodDefinitions%%\r\n"
  547. "\r\n"
  548. "//[MiscUserCode] You can add your own definitions of your custom methods or any other code here...\r\n"
  549. "//[/MiscUserCode]\r\n"
  550. "\r\n"
  551. "\r\n"
  552. "//==============================================================================\r\n"
  553. "#if 0\r\n"
  554. "/* -- Introjucer information section --\r\n"
  555. "\r\n"
  556. " This is where the Introjucer stores the metadata that describe this GUI layout, so \r\n"
  557. " make changes in here at your peril!\r\n"
  558. "\r\n"
  559. "BEGIN_JUCER_METADATA\r\n"
  560. "\r\n"
  561. "%%metadata%%\r\n"
  562. "END_JUCER_METADATA\r\n"
  563. "*/\r\n"
  564. "#endif\r\n"
  565. "\r\n"
  566. "%%staticMemberDefinitions%%\r\n"
  567. "//[EndFile] You can add extra defines here...\r\n"
  568. "//[/EndFile]";
  569. const char* jucer_ComponentTemplate_cpp = (const char*) temp_binary_data_8;
  570. //================== jucer_ComponentTemplate.h ==================
  571. static const unsigned char temp_binary_data_9[] =
  572. "/*\r\n"
  573. " ==============================================================================\r\n"
  574. "\r\n"
  575. " This is an automatically generated GUI class created by the Introjucer!\r\n"
  576. "\r\n"
  577. " Be careful when adding custom code to these files, as only the code within\r\n"
  578. " the \"//[xyz]\" and \"//[/xyz]\" sections will be retained when the file is loaded\r\n"
  579. " and re-saved.\r\n"
  580. "\r\n"
  581. " Created with Introjucer version: %%version%%\r\n"
  582. "\r\n"
  583. " ------------------------------------------------------------------------------\r\n"
  584. "\r\n"
  585. " The Introjucer is part of the JUCE library - \"Jules' Utility Class Extensions\"\r\n"
  586. " Copyright 2004-13 by Raw Material Software Ltd.\r\n"
  587. "\r\n"
  588. " ==============================================================================\r\n"
  589. "*/\r\n"
  590. "\r\n"
  591. "#ifndef %%headerGuard%%\r\n"
  592. "#define %%headerGuard%%\r\n"
  593. "\r\n"
  594. "//[Headers] -- You can add your own extra header files here --\r\n"
  595. "#include \"JuceHeader.h\"\r\n"
  596. "//[/Headers]\r\n"
  597. "\r\n"
  598. "%%includeFilesH%%\r\n"
  599. "\r\n"
  600. "//==============================================================================\r\n"
  601. "/**\r\n"
  602. " //[Comments]\r\n"
  603. " An auto-generated component, created by the Introjucer.\r\n"
  604. "\r\n"
  605. " Describe your class and how it works here!\r\n"
  606. " //[/Comments]\r\n"
  607. "*/\r\n"
  608. "%%classDeclaration%%\r\n"
  609. "{\r\n"
  610. "public:\r\n"
  611. " //==============================================================================\r\n"
  612. " %%className%% (%%constructorParams%%);\r\n"
  613. " ~%%className%%();\r\n"
  614. "\r\n"
  615. " //==============================================================================\r\n"
  616. " //[UserMethods] -- You can add your own custom methods in this section.\r\n"
  617. " //[/UserMethods]\r\n"
  618. "\r\n"
  619. " %%publicMemberDeclarations%%\r\n"
  620. "\r\n"
  621. "private:\r\n"
  622. " //[UserVariables] -- You can add your own custom variables in this section.\r\n"
  623. " //[/UserVariables]\r\n"
  624. "\r\n"
  625. " //==============================================================================\r\n"
  626. " %%privateMemberDeclarations%%\r\n"
  627. "\r\n"
  628. " //==============================================================================\r\n"
  629. " JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (%%className%%)\r\n"
  630. "};\r\n"
  631. "\r\n"
  632. "//[EndFile] You can add extra defines here...\r\n"
  633. "//[/EndFile]\r\n"
  634. "\r\n"
  635. "#endif // %%headerGuard%%";
  636. const char* jucer_ComponentTemplate_h = (const char*) temp_binary_data_9;
  637. //================== jucer_ContentCompTemplate.cpp ==================
  638. static const unsigned char temp_binary_data_10[] =
  639. "/*\r\n"
  640. " ==============================================================================\r\n"
  641. "\r\n"
  642. " This file was auto-generated!\r\n"
  643. "\r\n"
  644. " ==============================================================================\r\n"
  645. "*/\r\n"
  646. "\r\n"
  647. "INCLUDE_CORRESPONDING_HEADER\r\n"
  648. "\r\n"
  649. "\r\n"
  650. "//==============================================================================\r\n"
  651. "CONTENTCOMPCLASS::CONTENTCOMPCLASS()\r\n"
  652. "{\r\n"
  653. " setSize (500, 400);\r\n"
  654. "}\r\n"
  655. "\r\n"
  656. "CONTENTCOMPCLASS::~CONTENTCOMPCLASS()\r\n"
  657. "{\r\n"
  658. "}\r\n"
  659. "\r\n"
  660. "void CONTENTCOMPCLASS::paint (Graphics& g)\r\n"
  661. "{\r\n"
  662. " g.fillAll (Colour (0xffeeddff));\r\n"
  663. "\r\n"
  664. " g.setFont (Font (16.0f));\r\n"
  665. " g.setColour (Colours::black);\r\n"
  666. " g.drawText (\"Hello World!\", getLocalBounds(), Justification::centred, true);\r\n"
  667. "}\r\n"
  668. "\r\n"
  669. "void CONTENTCOMPCLASS::resized()\r\n"
  670. "{\r\n"
  671. " // This is called when the CONTENTCOMPCLASS is resized.\r\n"
  672. " // If you add any child components, this is where you should\r\n"
  673. " // update their positions.\r\n"
  674. "}\r\n";
  675. const char* jucer_ContentCompTemplate_cpp = (const char*) temp_binary_data_10;
  676. //================== jucer_ContentCompTemplate.h ==================
  677. static const unsigned char temp_binary_data_11[] =
  678. "/*\r\n"
  679. " ==============================================================================\r\n"
  680. "\r\n"
  681. " This file was auto-generated!\r\n"
  682. "\r\n"
  683. " ==============================================================================\r\n"
  684. "*/\r\n"
  685. "\r\n"
  686. "#ifndef HEADERGUARD\r\n"
  687. "#define HEADERGUARD\r\n"
  688. "\r\n"
  689. "INCLUDE_JUCE\r\n"
  690. "\r\n"
  691. "\r\n"
  692. "//==============================================================================\r\n"
  693. "/*\r\n"
  694. " This component lives inside our window, and this is where you should put all\r\n"
  695. " your controls and content.\r\n"
  696. "*/\r\n"
  697. "class CONTENTCOMPCLASS : public Component\r\n"
  698. "{\r\n"
  699. "public:\r\n"
  700. " //==============================================================================\r\n"
  701. " CONTENTCOMPCLASS();\r\n"
  702. " ~CONTENTCOMPCLASS();\r\n"
  703. "\r\n"
  704. " void paint (Graphics&);\r\n"
  705. " void resized();\r\n"
  706. "\r\n"
  707. "private:\r\n"
  708. " //==============================================================================\r\n"
  709. " JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (CONTENTCOMPCLASS)\r\n"
  710. "};\r\n"
  711. "\r\n"
  712. "\r\n"
  713. "#endif // HEADERGUARD\r\n";
  714. const char* jucer_ContentCompTemplate_h = (const char*) temp_binary_data_11;
  715. //================== jucer_InlineComponentTemplate.h ==================
  716. static const unsigned char temp_binary_data_12[] =
  717. "//==============================================================================\r\n"
  718. "class COMPONENTCLASS : public Component\r\n"
  719. "{\r\n"
  720. "public:\r\n"
  721. " COMPONENTCLASS()\r\n"
  722. " {\r\n"
  723. " // In your constructor, you should add any child components, and\r\n"
  724. " // initialise any special settings that your component needs.\r\n"
  725. "\r\n"
  726. " }\r\n"
  727. "\r\n"
  728. " ~COMPONENTCLASS()\r\n"
  729. " {\r\n"
  730. " }\r\n"
  731. "\r\n"
  732. " void paint (Graphics& g)\r\n"
  733. " {\r\n"
  734. " // You should replace everything in this method with your own drawing code..\r\n"
  735. "\r\n"
  736. " g.fillAll (Colours::white); // clear the background\r\n"
  737. "\r\n"
  738. " g.setColour (Colours::grey);\r\n"
  739. " g.drawRect (getLocalBounds(), 1); // draw an outline around the component\r\n"
  740. "\r\n"
  741. " g.setColour (Colours::lightblue);\r\n"
  742. " g.setFont (14.0f);\r\n"
  743. " g.drawText (\"COMPONENTCLASS\", getLocalBounds(),\r\n"
  744. " Justification::centred, true); // draw some placeholder text\r\n"
  745. " }\r\n"
  746. "\r\n"
  747. " void resized()\r\n"
  748. " {\r\n"
  749. " // This method is where you should set the bounds of any child\r\n"
  750. " // components that your component contains..\r\n"
  751. "\r\n"
  752. " }\r\n"
  753. "\r\n"
  754. "private:\r\n"
  755. " JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (COMPONENTCLASS)\r\n"
  756. "};\r\n";
  757. const char* jucer_InlineComponentTemplate_h = (const char*) temp_binary_data_12;
  758. //================== jucer_MainConsoleAppTemplate.cpp ==================
  759. static const unsigned char temp_binary_data_13[] =
  760. "/*\r\n"
  761. " ==============================================================================\r\n"
  762. "\r\n"
  763. " This file was auto-generated!\r\n"
  764. "\r\n"
  765. " It contains the basic startup code for a Juce application.\r\n"
  766. "\r\n"
  767. " ==============================================================================\r\n"
  768. "*/\r\n"
  769. "\r\n"
  770. "APPHEADERS\r\n"
  771. "\r\n"
  772. "\r\n"
  773. "//==============================================================================\r\n"
  774. "int main (int argc, char* argv[])\r\n"
  775. "{\r\n"
  776. "\r\n"
  777. " // ..your code goes here!\r\n"
  778. "\r\n"
  779. "\r\n"
  780. " return 0;\r\n"
  781. "}\r\n";
  782. const char* jucer_MainConsoleAppTemplate_cpp = (const char*) temp_binary_data_13;
  783. //================== jucer_MainTemplate_NoWindow.cpp ==================
  784. static const unsigned char temp_binary_data_14[] =
  785. "/*\r\n"
  786. " ==============================================================================\r\n"
  787. "\r\n"
  788. " This file was auto-generated by the Introjucer!\r\n"
  789. "\r\n"
  790. " It contains the basic startup code for a Juce application.\r\n"
  791. "\r\n"
  792. " ==============================================================================\r\n"
  793. "*/\r\n"
  794. "\r\n"
  795. "APPHEADERS\r\n"
  796. "\r\n"
  797. "\r\n"
  798. "//==============================================================================\r\n"
  799. "class APPCLASSNAME : public JUCEApplication\r\n"
  800. "{\r\n"
  801. "public:\r\n"
  802. " //==============================================================================\r\n"
  803. " APPCLASSNAME() {}\r\n"
  804. "\r\n"
  805. " const String getApplicationName() override { return ProjectInfo::projectName; }\r\n"
  806. " const String getApplicationVersion() override { return ProjectInfo::versionString; }\r\n"
  807. " bool moreThanOneInstanceAllowed() override { return ALLOWMORETHANONEINSTANCE; }\r\n"
  808. "\r\n"
  809. " //==============================================================================\r\n"
  810. " void initialise (const String& commandLine) override\r\n"
  811. " {\r\n"
  812. " // Add your application's initialisation code here..\r\n"
  813. " }\r\n"
  814. "\r\n"
  815. " void shutdown() override\r\n"
  816. " {\r\n"
  817. " // Add your application's shutdown code here..\r\n"
  818. " }\r\n"
  819. "\r\n"
  820. " //==============================================================================\r\n"
  821. " void systemRequestedQuit() override\r\n"
  822. " {\r\n"
  823. " // This is called when the app is being asked to quit: you can ignore this\r\n"
  824. " // request and let the app carry on running, or call quit() to allow the app to close.\r\n"
  825. " quit();\r\n"
  826. " }\r\n"
  827. "\r\n"
  828. " void anotherInstanceStarted (const String& commandLine) override\r\n"
  829. " {\r\n"
  830. " // When another instance of the app is launched while this one is running,\r\n"
  831. " // this method is invoked, and the commandLine parameter tells you what\r\n"
  832. " // the other instance's command-line arguments were.\r\n"
  833. " }\r\n"
  834. "};\r\n"
  835. "\r\n"
  836. "//==============================================================================\r\n"
  837. "// This macro generates the main() routine that launches the app.\r\n"
  838. "START_JUCE_APPLICATION (APPCLASSNAME)\r\n";
  839. const char* jucer_MainTemplate_NoWindow_cpp = (const char*) temp_binary_data_14;
  840. //================== jucer_MainTemplate_Window.cpp ==================
  841. static const unsigned char temp_binary_data_15[] =
  842. "/*\r\n"
  843. " ==============================================================================\r\n"
  844. "\r\n"
  845. " This file was auto-generated by the Introjucer!\r\n"
  846. "\r\n"
  847. " It contains the basic startup code for a Juce application.\r\n"
  848. "\r\n"
  849. " ==============================================================================\r\n"
  850. "*/\r\n"
  851. "\r\n"
  852. "APPHEADERS\r\n"
  853. "\r\n"
  854. "\r\n"
  855. "//==============================================================================\r\n"
  856. "class APPCLASSNAME : public JUCEApplication\r\n"
  857. "{\r\n"
  858. "public:\r\n"
  859. " //==============================================================================\r\n"
  860. " APPCLASSNAME() {}\r\n"
  861. "\r\n"
  862. " const String getApplicationName() override { return ProjectInfo::projectName; }\r\n"
  863. " const String getApplicationVersion() override { return ProjectInfo::versionString; }\r\n"
  864. " bool moreThanOneInstanceAllowed() override { return ALLOWMORETHANONEINSTANCE; }\r\n"
  865. "\r\n"
  866. " //==============================================================================\r\n"
  867. " void initialise (const String& commandLine) override\r\n"
  868. " {\r\n"
  869. " // This method is where you should put your application's initialisation code..\r\n"
  870. "\r\n"
  871. " mainWindow = new MainWindow();\r\n"
  872. " }\r\n"
  873. "\r\n"
  874. " void shutdown() override\r\n"
  875. " {\r\n"
  876. " // Add your application's shutdown code here..\r\n"
  877. "\r\n"
  878. " mainWindow = nullptr; // (deletes our window)\r\n"
  879. " }\r\n"
  880. "\r\n"
  881. " //==============================================================================\r\n"
  882. " void systemRequestedQuit() override\r\n"
  883. " {\r\n"
  884. " // This is called when the app is being asked to quit: you can ignore this\r\n"
  885. " // request and let the app carry on running, or call quit() to allow the app to close.\r\n"
  886. " quit();\r\n"
  887. " }\r\n"
  888. "\r\n"
  889. " void anotherInstanceStarted (const String& commandLine) override\r\n"
  890. " {\r\n"
  891. " // When another instance of the app is launched while this one is running,\r\n"
  892. " // this method is invoked, and the commandLine parameter tells you what\r\n"
  893. " // the other instance's command-line arguments were.\r\n"
  894. " }\r\n"
  895. "\r\n"
  896. " //==============================================================================\r\n"
  897. " /*\r\n"
  898. " This class implements the desktop window that contains an instance of\r\n"
  899. " our CONTENTCOMPCLASS class.\r\n"
  900. " */\r\n"
  901. " class MainWindow : public DocumentWindow\r\n"
  902. " {\r\n"
  903. " public:\r\n"
  904. " MainWindow() : DocumentWindow (\"MainWindow\",\r\n"
  905. " Colours::lightgrey,\r\n"
  906. " DocumentWindow::allButtons)\r\n"
  907. " {\r\n"
  908. " setContentOwned (new CONTENTCOMPCLASS(), true);\r\n"
  909. "\r\n"
  910. " centreWithSize (getWidth(), getHeight());\r\n"
  911. " setVisible (true);\r\n"
  912. " }\r\n"
  913. "\r\n"
  914. " void closeButtonPressed()\r\n"
  915. " {\r\n"
  916. " // This is called when the user tries to close this window. Here, we'll just\r\n"
  917. " // ask the app to quit when this happens, but you can change this to do\r\n"
  918. " // whatever you need.\r\n"
  919. " JUCEApplication::getInstance()->systemRequestedQuit();\r\n"
  920. " }\r\n"
  921. "\r\n"
  922. " /* Note: Be careful if you override any DocumentWindow methods - the base\r\n"
  923. " class uses a lot of them, so by overriding you might break its functionality.\r\n"
  924. " It's best to do all your work in your content component instead, but if\r\n"
  925. " you really have to override any DocumentWindow methods, make sure your\r\n"
  926. " subclass also calls the superclass's method.\r\n"
  927. " */\r\n"
  928. "\r\n"
  929. " private:\r\n"
  930. " JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (MainWindow)\r\n"
  931. " };\r\n"
  932. "\r\n"
  933. "private:\r\n"
  934. " ScopedPointer<MainWindow> mainWindow;\r\n"
  935. "};\r\n"
  936. "\r\n"
  937. "//==============================================================================\r\n"
  938. "// This macro generates the main() routine that launches the app.\r\n"
  939. "START_JUCE_APPLICATION (APPCLASSNAME)\r\n";
  940. const char* jucer_MainTemplate_Window_cpp = (const char*) temp_binary_data_15;
  941. //================== jucer_NewComponentTemplate.cpp ==================
  942. static const unsigned char temp_binary_data_16[] =
  943. "/*\r\n"
  944. " ==============================================================================\r\n"
  945. "\r\n"
  946. " FILENAME\r\n"
  947. " Created: DATE\r\n"
  948. " Author: AUTHOR\r\n"
  949. "\r\n"
  950. " ==============================================================================\r\n"
  951. "*/\r\n"
  952. "\r\n"
  953. "INCLUDE_JUCE\r\n"
  954. "INCLUDE_CORRESPONDING_HEADER\r\n"
  955. "\r\n"
  956. "//==============================================================================\r\n"
  957. "COMPONENTCLASS::COMPONENTCLASS()\r\n"
  958. "{\r\n"
  959. " // In your constructor, you should add any child components, and\r\n"
  960. " // initialise any special settings that your component needs.\r\n"
  961. "\r\n"
  962. "}\r\n"
  963. "\r\n"
  964. "COMPONENTCLASS::~COMPONENTCLASS()\r\n"
  965. "{\r\n"
  966. "}\r\n"
  967. "\r\n"
  968. "void COMPONENTCLASS::paint (Graphics& g)\r\n"
  969. "{\r\n"
  970. " /* This demo code just fills the component's background and\r\n"
  971. " draws some placeholder text to get you started.\r\n"
  972. "\r\n"
  973. " You should replace everything in this method with your own\r\n"
  974. " drawing code..\r\n"
  975. " */\r\n"
  976. "\r\n"
  977. " g.fillAll (Colours::white); // clear the background\r\n"
  978. "\r\n"
  979. " g.setColour (Colours::grey);\r\n"
  980. " g.drawRect (getLocalBounds(), 1); // draw an outline around the component\r\n"
  981. "\r\n"
  982. " g.setColour (Colours::lightblue);\r\n"
  983. " g.setFont (14.0f);\r\n"
  984. " g.drawText (\"COMPONENTCLASS\", getLocalBounds(),\r\n"
  985. " Justification::centred, true); // draw some placeholder text\r\n"
  986. "}\r\n"
  987. "\r\n"
  988. "void COMPONENTCLASS::resized()\r\n"
  989. "{\r\n"
  990. " // This method is where you should set the bounds of any child\r\n"
  991. " // components that your component contains..\r\n"
  992. "\r\n"
  993. "}\r\n";
  994. const char* jucer_NewComponentTemplate_cpp = (const char*) temp_binary_data_16;
  995. //================== jucer_NewComponentTemplate.h ==================
  996. static const unsigned char temp_binary_data_17[] =
  997. "/*\r\n"
  998. " ==============================================================================\r\n"
  999. "\r\n"
  1000. " FILENAME\r\n"
  1001. " Created: DATE\r\n"
  1002. " Author: AUTHOR\r\n"
  1003. "\r\n"
  1004. " ==============================================================================\r\n"
  1005. "*/\r\n"
  1006. "\r\n"
  1007. "#ifndef HEADERGUARD\r\n"
  1008. "#define HEADERGUARD\r\n"
  1009. "\r\n"
  1010. "INCLUDE_JUCE\r\n"
  1011. "\r\n"
  1012. "//==============================================================================\r\n"
  1013. "/*\r\n"
  1014. "*/\r\n"
  1015. "class COMPONENTCLASS : public Component\r\n"
  1016. "{\r\n"
  1017. "public:\r\n"
  1018. " COMPONENTCLASS();\r\n"
  1019. " ~COMPONENTCLASS();\r\n"
  1020. "\r\n"
  1021. " void paint (Graphics&);\r\n"
  1022. " void resized();\r\n"
  1023. "\r\n"
  1024. "private:\r\n"
  1025. " JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (COMPONENTCLASS)\r\n"
  1026. "};\r\n"
  1027. "\r\n"
  1028. "\r\n"
  1029. "#endif // HEADERGUARD\r\n";
  1030. const char* jucer_NewComponentTemplate_h = (const char*) temp_binary_data_17;
  1031. //================== jucer_NewCppFileTemplate.cpp ==================
  1032. static const unsigned char temp_binary_data_18[] =
  1033. "/*\r\n"
  1034. " ==============================================================================\r\n"
  1035. "\r\n"
  1036. " FILENAME\r\n"
  1037. " Created: DATE\r\n"
  1038. " Author: AUTHOR\r\n"
  1039. "\r\n"
  1040. " ==============================================================================\r\n"
  1041. "*/\r\n"
  1042. "\r\n"
  1043. "INCLUDE_CORRESPONDING_HEADER\r\n";
  1044. const char* jucer_NewCppFileTemplate_cpp = (const char*) temp_binary_data_18;
  1045. //================== jucer_NewCppFileTemplate.h ==================
  1046. static const unsigned char temp_binary_data_19[] =
  1047. "/*\r\n"
  1048. " ==============================================================================\r\n"
  1049. "\r\n"
  1050. " FILENAME\r\n"
  1051. " Created: DATE\r\n"
  1052. " Author: AUTHOR\r\n"
  1053. "\r\n"
  1054. " ==============================================================================\r\n"
  1055. "*/\r\n"
  1056. "\r\n"
  1057. "#ifndef HEADERGUARD\r\n"
  1058. "#define HEADERGUARD\r\n"
  1059. "\r\n"
  1060. "\r\n"
  1061. "\r\n"
  1062. "\r\n"
  1063. "\r\n"
  1064. "#endif // HEADERGUARD\r\n";
  1065. const char* jucer_NewCppFileTemplate_h = (const char*) temp_binary_data_19;
  1066. //================== jucer_NewInlineComponentTemplate.h ==================
  1067. static const unsigned char temp_binary_data_20[] =
  1068. "/*\r\n"
  1069. " ==============================================================================\r\n"
  1070. "\r\n"
  1071. " FILENAME\r\n"
  1072. " Created: DATE\r\n"
  1073. " Author: AUTHOR\r\n"
  1074. "\r\n"
  1075. " ==============================================================================\r\n"
  1076. "*/\r\n"
  1077. "\r\n"
  1078. "#ifndef HEADERGUARD\r\n"
  1079. "#define HEADERGUARD\r\n"
  1080. "\r\n"
  1081. "INCLUDE_JUCE\r\n"
  1082. "\r\n"
  1083. "//==============================================================================\r\n"
  1084. "/*\r\n"
  1085. "*/\r\n"
  1086. "class COMPONENTCLASS : public Component\r\n"
  1087. "{\r\n"
  1088. "public:\r\n"
  1089. " COMPONENTCLASS()\r\n"
  1090. " {\r\n"
  1091. " // In your constructor, you should add any child components, and\r\n"
  1092. " // initialise any special settings that your component needs.\r\n"
  1093. "\r\n"
  1094. " }\r\n"
  1095. "\r\n"
  1096. " ~COMPONENTCLASS()\r\n"
  1097. " {\r\n"
  1098. " }\r\n"
  1099. "\r\n"
  1100. " void paint (Graphics& g)\r\n"
  1101. " {\r\n"
  1102. " /* This demo code just fills the component's background and\r\n"
  1103. " draws some placeholder text to get you started.\r\n"
  1104. "\r\n"
  1105. " You should replace everything in this method with your own\r\n"
  1106. " drawing code..\r\n"
  1107. " */\r\n"
  1108. "\r\n"
  1109. " g.fillAll (Colours::white); // clear the background\r\n"
  1110. "\r\n"
  1111. " g.setColour (Colours::grey);\r\n"
  1112. " g.drawRect (getLocalBounds(), 1); // draw an outline around the component\r\n"
  1113. "\r\n"
  1114. " g.setColour (Colours::lightblue);\r\n"
  1115. " g.setFont (14.0f);\r\n"
  1116. " g.drawText (\"COMPONENTCLASS\", getLocalBounds(),\r\n"
  1117. " Justification::centred, true); // draw some placeholder text\r\n"
  1118. " }\r\n"
  1119. "\r\n"
  1120. " void resized()\r\n"
  1121. " {\r\n"
  1122. " // This method is where you should set the bounds of any child\r\n"
  1123. " // components that your component contains..\r\n"
  1124. "\r\n"
  1125. " }\r\n"
  1126. "\r\n"
  1127. "private:\r\n"
  1128. " JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (COMPONENTCLASS)\r\n"
  1129. "};\r\n"
  1130. "\r\n"
  1131. "\r\n"
  1132. "#endif // HEADERGUARD\r\n";
  1133. const char* jucer_NewInlineComponentTemplate_h = (const char*) temp_binary_data_20;
  1134. //================== RecentFilesMenuTemplate.nib ==================
  1135. static const unsigned char temp_binary_data_21[] =
  1136. { 98,112,108,105,115,116,48,48,212,0,1,0,2,0,3,0,4,0,5,0,6,1,53,1,54,88,36,118,101,114,115,105,111,110,88,36,111,98,106,101,99,116,115,89,36,97,114,99,104,105,118,101,114,84,36,116,111,112,18,0,1,134,160,175,16,74,0,7,0,8,0,31,0,35,0,36,0,42,0,46,0,50,
  1137. 0,53,0,57,0,74,0,77,0,78,0,86,0,87,0,97,0,112,0,113,0,114,0,119,0,120,0,121,0,124,0,128,0,129,0,132,0,143,0,144,0,145,0,149,0,153,0,162,0,163,0,164,0,169,0,173,0,180,0,181,0,182,0,185,0,192,0,193,0,200,0,201,0,208,0,209,0,216,0,217,0,224,0,225,0,226,
  1138. 0,229,0,230,0,232,0,249,1,11,1,29,1,30,1,31,1,32,1,33,1,34,1,35,1,36,1,37,1,38,1,39,1,40,1,41,1,42,1,43,1,44,1,47,1,50,85,36,110,117,108,108,219,0,9,0,10,0,11,0,12,0,13,0,14,0,15,0,16,0,17,0,18,0,19,0,20,0,21,0,22,0,23,0,24,0,25,0,26,0,27,0,28,0,29,0,
  1139. 29,95,16,16,78,83,86,105,115,105,98,108,101,87,105,110,100,111,119,115,93,78,83,79,98,106,101,99,116,115,75,101,121,115,86,78,83,82,111,111,116,92,78,83,79,105,100,115,86,97,108,117,101,115,86,36,99,108,97,115,115,90,78,83,79,105,100,115,75,101,121,115,
  1140. 93,78,83,67,111,110,110,101,99,116,105,111,110,115,95,16,15,78,83,79,98,106,101,99,116,115,86,97,108,117,101,115,95,16,25,78,83,65,99,99,101,115,115,105,98,105,108,105,116,121,67,111,110,110,101,99,116,111,114,115,95,16,23,78,83,65,99,99,101,115,115,
  1141. 105,98,105,108,105,116,121,79,105,100,115,75,101,121,115,95,16,25,78,83,65,99,99,101,115,115,105,98,105,108,105,116,121,79,105,100,115,86,97,108,117,101,115,128,5,128,9,128,2,128,55,128,73,128,54,128,7,128,53,128,71,128,72,128,72,210,0,13,0,32,0,33,0,
  1142. 34,91,78,83,67,108,97,115,115,78,97,109,101,128,4,128,3,93,78,83,65,112,112,108,105,99,97,116,105,111,110,210,0,37,0,38,0,39,0,40,90,36,99,108,97,115,115,110,97,109,101,88,36,99,108,97,115,115,101,115,94,78,83,67,117,115,116,111,109,79,98,106,101,99,
  1143. 116,162,0,39,0,41,88,78,83,79,98,106,101,99,116,210,0,13,0,43,0,44,0,45,90,78,83,46,111,98,106,101,99,116,115,128,6,160,210,0,37,0,38,0,47,0,48,92,78,83,77,117,116,97,98,108,101,83,101,116,163,0,47,0,49,0,41,85,78,83,83,101,116,210,0,13,0,43,0,51,0,52,
  1144. 128,8,160,210,0,37,0,38,0,54,0,55,94,78,83,77,117,116,97,98,108,101,65,114,114,97,121,163,0,54,0,56,0,41,87,78,83,65,114,114,97,121,210,0,13,0,43,0,58,0,59,128,52,174,0,60,0,61,0,62,0,63,0,64,0,65,0,66,0,67,0,68,0,69,0,70,0,71,0,72,0,73,128,10,128,12,
  1145. 128,45,128,15,128,39,128,25,128,28,128,30,128,33,128,35,128,43,128,41,128,47,128,50,210,0,13,0,32,0,33,0,76,128,4,128,11,93,78,83,65,112,112,108,105,99,97,116,105,111,110,212,0,79,0,13,0,80,0,81,0,82,0,83,0,84,0,85,91,78,83,77,101,110,117,73,116,101,
  1146. 109,115,86,78,83,78,97,109,101,87,78,83,84,105,116,108,101,128,14,128,38,128,49,128,13,89,65,77,97,105,110,77,101,110,117,210,0,13,0,43,0,51,0,89,128,8,167,0,63,0,65,0,64,0,71,0,70,0,62,0,72,128,15,128,25,128,39,128,41,128,43,128,45,128,47,216,0,98,0,
  1147. 99,0,100,0,13,0,101,0,102,0,103,0,81,0,104,0,61,0,106,0,107,0,108,0,109,0,110,0,111,95,16,17,78,83,75,101,121,69,113,117,105,118,77,111,100,77,97,115,107,86,78,83,77,101,110,117,89,78,83,79,110,73,109,97,103,101,90,78,83,75,101,121,69,113,117,105,118,
  1148. 93,78,83,77,110,101,109,111,110,105,99,76,111,99,92,78,83,77,105,120,101,100,73,109,97,103,101,18,0,16,0,0,128,12,128,18,128,24,128,17,18,127,255,255,255,128,22,128,16,91,100,101,108,109,101,65,112,112,75,105,116,80,211,0,13,0,115,0,32,0,116,0,117,0,
  1149. 118,94,78,83,82,101,115,111,117,114,99,101,78,97,109,101,128,21,128,20,128,19,87,78,83,73,109,97,103,101,95,16,15,78,83,77,101,110,117,67,104,101,99,107,109,97,114,107,210,0,37,0,38,0,122,0,123,95,16,16,78,83,67,117,115,116,111,109,82,101,115,111,117,
  1150. 114,99,101,162,0,122,0,41,211,0,13,0,115,0,32,0,116,0,126,0,118,128,21,128,23,128,19,95,16,16,78,83,77,101,110,117,77,105,120,101,100,83,116,97,116,101,210,0,37,0,38,0,130,0,131,90,78,83,77,101,110,117,73,116,101,109,162,0,130,0,41,218,0,133,0,98,0,134,
  1151. 0,99,0,100,0,13,0,101,0,102,0,103,0,81,0,135,0,104,0,66,0,61,0,106,0,107,0,108,0,109,0,110,0,142,88,78,83,65,99,116,105,111,110,89,78,83,83,117,98,109,101,110,117,128,27,128,28,128,12,128,18,128,24,128,17,128,22,128,26,84,70,105,108,101,94,115,117,98,
  1152. 109,101,110,117,65,99,116,105,111,110,58,211,0,79,0,13,0,81,0,146,0,83,0,142,128,29,128,38,128,26,210,0,13,0,43,0,51,0,151,128,8,161,0,67,128,30,218,0,133,0,98,0,134,0,99,0,100,0,13,0,101,0,102,0,103,0,81,0,154,0,104,0,68,0,66,0,106,0,107,0,108,0,109,
  1153. 0,110,0,161,128,32,128,33,128,28,128,18,128,24,128,17,128,22,128,31,91,79,112,101,110,32,82,101,99,101,110,116,94,115,117,98,109,101,110,117,65,99,116,105,111,110,58,212,0,79,0,13,0,80,0,81,0,165,0,83,0,167,0,161,128,34,128,38,128,37,128,31,210,0,13,
  1154. 0,43,0,51,0,171,128,8,161,0,69,128,35,216,0,98,0,99,0,100,0,13,0,101,0,102,0,103,0,81,0,104,0,68,0,106,0,107,0,108,0,109,0,110,0,179,128,33,128,18,128,24,128,17,128,22,128,36,90,67,108,101,97,114,32,77,101,110,117,95,16,22,95,78,83,82,101,99,101,110,
  1155. 116,68,111,99,117,109,101,110,116,115,77,101,110,117,210,0,37,0,38,0,183,0,184,86,78,83,77,101,110,117,162,0,183,0,41,216,0,98,0,99,0,100,0,13,0,101,0,102,0,103,0,81,0,104,0,61,0,106,0,107,0,108,0,109,0,110,0,191,128,12,128,18,128,24,128,17,128,22,128,
  1156. 40,84,69,100,105,116,215,0,99,0,100,0,13,0,101,0,102,0,103,0,81,0,61,0,106,0,107,0,108,0,109,0,110,0,199,128,12,128,18,128,24,128,17,128,22,128,42,86,70,111,114,109,97,116,216,0,98,0,99,0,100,0,13,0,101,0,102,0,103,0,81,0,104,0,61,0,106,0,107,0,108,0,
  1157. 109,0,110,0,207,128,12,128,18,128,24,128,17,128,22,128,44,84,86,105,101,119,216,0,98,0,99,0,100,0,13,0,101,0,102,0,103,0,81,0,104,0,61,0,106,0,107,0,108,0,109,0,110,0,215,128,12,128,18,128,24,128,17,128,22,128,46,86,87,105,110,100,111,119,215,0,99,0,
  1158. 100,0,13,0,101,0,102,0,103,0,81,0,61,0,106,0,107,0,108,0,109,0,110,0,223,128,12,128,18,128,24,128,17,128,22,128,48,84,72,101,108,112,91,95,78,83,77,97,105,110,77,101,110,117,210,0,13,0,32,0,33,0,228,128,4,128,51,93,78,83,70,111,110,116,77,97,110,97,103,
  1159. 101,114,210,0,37,0,38,0,56,0,231,162,0,56,0,41,210,0,13,0,43,0,58,0,234,128,52,174,0,22,0,22,0,61,0,61,0,61,0,61,0,65,0,66,0,67,0,68,0,61,0,61,0,61,0,22,128,2,128,2,128,12,128,12,128,12,128,12,128,25,128,28,128,30,128,33,128,12,128,12,128,12,128,2,210,
  1160. 0,13,0,43,0,58,0,251,128,52,175,16,15,0,22,0,60,0,61,0,62,0,63,0,64,0,65,0,66,0,67,0,68,0,69,0,70,0,71,0,72,0,73,128,2,128,10,128,12,128,45,128,15,128,39,128,25,128,28,128,30,128,33,128,35,128,43,128,41,128,47,128,50,210,0,13,0,43,0,58,1,13,128,52,175,
  1161. 16,15,1,14,1,15,1,16,1,17,1,18,1,19,1,20,1,21,1,22,1,23,1,24,1,25,1,26,1,27,1,28,128,56,128,57,128,58,128,59,128,60,128,61,128,62,128,63,128,64,128,65,128,66,128,67,128,68,128,69,128,70,17,2,22,17,2,23,17,2,24,17,2,25,17,2,26,17,2,27,17,2,28,17,2,29,
  1162. 17,2,30,17,2,31,17,2,32,17,2,33,17,2,34,17,2,35,17,2,36,210,0,13,0,43,0,51,1,46,128,8,160,210,0,13,0,43,0,58,1,49,128,52,160,210,0,37,0,38,1,51,1,52,94,78,83,73,66,79,98,106,101,99,116,68,97,116,97,162,1,51,0,41,95,16,15,78,83,75,101,121,101,100,65,114,
  1163. 99,104,105,118,101,114,209,1,55,1,56,93,73,66,46,111,98,106,101,99,116,100,97,116,97,128,1,0,8,0,25,0,34,0,43,0,53,0,58,0,63,0,214,0,220,1,9,1,28,1,42,1,49,1,62,1,69,1,80,1,94,1,112,1,140,1,166,1,194,1,196,1,198,1,200,1,202,1,204,1,206,1,208,1,210,1,
  1164. 212,1,214,1,216,1,225,1,237,1,239,1,241,1,255,2,8,2,19,2,28,2,43,2,48,2,57,2,66,2,77,2,79,2,80,2,89,2,102,2,109,2,115,2,124,2,126,2,127,2,136,2,151,2,158,2,166,2,175,2,177,2,206,2,208,2,210,2,212,2,214,2,216,2,218,2,220,2,222,2,224,2,226,2,228,2,230,
  1165. 2,232,2,234,2,243,2,245,2,247,3,5,3,22,3,34,3,41,3,49,3,51,3,53,3,55,3,57,3,67,3,76,3,78,3,93,3,95,3,97,3,99,3,101,3,103,3,105,3,107,3,140,3,160,3,167,3,177,3,188,3,202,3,215,3,220,3,222,3,224,3,226,3,228,3,233,3,235,3,237,3,249,3,250,4,7,4,22,4,24,4,
  1166. 26,4,28,4,36,4,54,4,63,4,82,4,87,4,100,4,102,4,104,4,106,4,125,4,134,4,145,4,150,4,191,4,200,4,210,4,212,4,214,4,216,4,218,4,220,4,222,4,224,4,226,4,231,4,246,5,3,5,5,5,7,5,9,5,18,5,20,5,23,5,25,5,66,5,68,5,70,5,72,5,74,5,76,5,78,5,80,5,82,5,94,5,109,
  1167. 5,126,5,128,5,130,5,132,5,134,5,143,5,145,5,148,5,150,5,183,5,185,5,187,5,189,5,191,5,193,5,195,5,206,5,231,5,240,5,247,5,252,6,29,6,31,6,33,6,35,6,37,6,39,6,41,6,46,6,75,6,77,6,79,6,81,6,83,6,85,6,87,6,94,6,127,6,129,6,131,6,133,6,135,6,137,6,139,6,
  1168. 144,6,177,6,179,6,181,6,183,6,185,6,187,6,189,6,196,6,225,6,227,6,229,6,231,6,233,6,235,6,237,6,242,6,254,7,7,7,9,7,11,7,25,7,34,7,39,7,48,7,50,7,79,7,81,7,83,7,85,7,87,7,89,7,91,7,93,7,95,7,97,7,99,7,101,7,103,7,105,7,107,7,116,7,118,7,151,7,153,7,155,
  1169. 7,157,7,159,7,161,7,163,7,165,7,167,7,169,7,171,7,173,7,175,7,177,7,179,7,181,7,190,7,192,7,225,7,227,7,229,7,231,7,233,7,235,7,237,7,239,7,241,7,243,7,245,7,247,7,249,7,251,7,253,7,255,8,2,8,5,8,8,8,11,8,14,8,17,8,20,8,23,8,26,8,29,8,32,8,35,8,38,8,
  1170. 41,8,44,8,53,8,55,8,56,8,65,8,67,8,68,8,77,8,92,8,97,8,115,8,120,8,134,0,0,0,0,0,0,2,2,0,0,0,0,0,0,1,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,136,0,0 };
  1171. const char* RecentFilesMenuTemplate_nib = (const char*) temp_binary_data_21;
  1172. const char* getNamedResource (const char*, int&) throw();
  1173. const char* getNamedResource (const char* resourceNameUTF8, int& numBytes) throw()
  1174. {
  1175. unsigned int hash = 0;
  1176. if (resourceNameUTF8 != 0)
  1177. while (*resourceNameUTF8 != 0)
  1178. hash = 31 * hash + (unsigned int) *resourceNameUTF8++;
  1179. switch (hash)
  1180. {
  1181. case 0x44be9398: numBytes = 2916; return AudioPluginXCodeScript_txt;
  1182. case 0x4a0cfd09: numBytes = 151; return background_tile_png;
  1183. case 0x763d39dc: numBytes = 1050; return colourscheme_dark_xml;
  1184. case 0xe8b08520: numBytes = 1050; return colourscheme_light_xml;
  1185. case 0x27c5a93a: numBytes = 1008; return jucer_AudioPluginEditorTemplate_cpp;
  1186. case 0x4d0721bf: numBytes = 799; return jucer_AudioPluginEditorTemplate_h;
  1187. case 0x51b49ac5: numBytes = 4640; return jucer_AudioPluginFilterTemplate_cpp;
  1188. case 0x488afa0a: numBytes = 2488; return jucer_AudioPluginFilterTemplate_h;
  1189. case 0xabad7041: numBytes = 2083; return jucer_ComponentTemplate_cpp;
  1190. case 0xfc72fe86: numBytes = 2156; return jucer_ComponentTemplate_h;
  1191. case 0x0b66646c: numBytes = 886; return jucer_ContentCompTemplate_cpp;
  1192. case 0x6fa10171: numBytes = 924; return jucer_ContentCompTemplate_h;
  1193. case 0x28d496ad: numBytes = 1143; return jucer_InlineComponentTemplate_h;
  1194. case 0x8905395b: numBytes = 470; return jucer_MainConsoleAppTemplate_cpp;
  1195. case 0x5e5ea047: numBytes = 2010; return jucer_MainTemplate_NoWindow_cpp;
  1196. case 0x400bc026: numBytes = 3676; return jucer_MainTemplate_Window_cpp;
  1197. case 0xf4842835: numBytes = 1389; return jucer_NewComponentTemplate_cpp;
  1198. case 0xe7bf237a: numBytes = 648; return jucer_NewComponentTemplate_h;
  1199. case 0x02a2a077: numBytes = 262; return jucer_NewCppFileTemplate_cpp;
  1200. case 0x0842c43c: numBytes = 308; return jucer_NewCppFileTemplate_h;
  1201. case 0x36e634a1: numBytes = 1626; return jucer_NewInlineComponentTemplate_h;
  1202. case 0xa41e649d: numBytes = 2842; return RecentFilesMenuTemplate_nib;
  1203. default: break;
  1204. }
  1205. numBytes = 0;
  1206. return 0;
  1207. }
  1208. const char* namedResourceList[] =
  1209. {
  1210. "AudioPluginXCodeScript_txt",
  1211. "background_tile_png",
  1212. "colourscheme_dark_xml",
  1213. "colourscheme_light_xml",
  1214. "jucer_AudioPluginEditorTemplate_cpp",
  1215. "jucer_AudioPluginEditorTemplate_h",
  1216. "jucer_AudioPluginFilterTemplate_cpp",
  1217. "jucer_AudioPluginFilterTemplate_h",
  1218. "jucer_ComponentTemplate_cpp",
  1219. "jucer_ComponentTemplate_h",
  1220. "jucer_ContentCompTemplate_cpp",
  1221. "jucer_ContentCompTemplate_h",
  1222. "jucer_InlineComponentTemplate_h",
  1223. "jucer_MainConsoleAppTemplate_cpp",
  1224. "jucer_MainTemplate_NoWindow_cpp",
  1225. "jucer_MainTemplate_Window_cpp",
  1226. "jucer_NewComponentTemplate_cpp",
  1227. "jucer_NewComponentTemplate_h",
  1228. "jucer_NewCppFileTemplate_cpp",
  1229. "jucer_NewCppFileTemplate_h",
  1230. "jucer_NewInlineComponentTemplate_h",
  1231. "RecentFilesMenuTemplate_nib"
  1232. };
  1233. }