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.

115 lines
3.7KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library - "Jules' Utility Class Extensions"
  4. Copyright 2004-11 by Raw Material Software Ltd.
  5. ------------------------------------------------------------------------------
  6. JUCE can be redistributed and/or modified under the terms of the GNU General
  7. Public License (Version 2), as published by the Free Software Foundation.
  8. A copy of the license is included in the JUCE distribution, or can be found
  9. online at www.gnu.org/licenses.
  10. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
  11. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  12. A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  13. ------------------------------------------------------------------------------
  14. To release a closed-source product which uses JUCE, commercial licenses are
  15. available: visit www.rawmaterialsoftware.com/juce for more information.
  16. ==============================================================================
  17. */
  18. #ifndef __JUCER_PRESETIDS_JUCEHEADER__
  19. #define __JUCER_PRESETIDS_JUCEHEADER__
  20. // Handy list of static Identifiers..
  21. namespace Ids
  22. {
  23. #define DECLARE_ID(name) const Identifier name (#name)
  24. DECLARE_ID (name);
  25. DECLARE_ID (file);
  26. DECLARE_ID (version);
  27. DECLARE_ID (companyName);
  28. DECLARE_ID (position);
  29. DECLARE_ID (source);
  30. DECLARE_ID (width);
  31. DECLARE_ID (height);
  32. DECLARE_ID (background);
  33. DECLARE_ID (initialState);
  34. DECLARE_ID (juceFolder);
  35. DECLARE_ID (targetFolder);
  36. DECLARE_ID (vstFolder);
  37. DECLARE_ID (rtasFolder);
  38. DECLARE_ID (auFolder);
  39. DECLARE_ID (extraCompilerFlags);
  40. DECLARE_ID (extraLinkerFlags);
  41. DECLARE_ID (extraDefs);
  42. DECLARE_ID (projectType);
  43. DECLARE_ID (libraryType);
  44. DECLARE_ID (isDebug);
  45. DECLARE_ID (targetName);
  46. DECLARE_ID (binaryPath);
  47. DECLARE_ID (optimisation);
  48. DECLARE_ID (defines);
  49. DECLARE_ID (headerPath);
  50. DECLARE_ID (libraryPath);
  51. DECLARE_ID (customXcodeFlags);
  52. DECLARE_ID (osxSDK);
  53. DECLARE_ID (osxCompatibility);
  54. DECLARE_ID (osxArchitecture);
  55. DECLARE_ID (extraFrameworks);
  56. DECLARE_ID (winArchitecture);
  57. DECLARE_ID (winWarningLevel);
  58. DECLARE_ID (bigIcon);
  59. DECLARE_ID (smallIcon);
  60. DECLARE_ID (jucerVersion);
  61. DECLARE_ID (prebuildCommand);
  62. DECLARE_ID (postbuildCommand);
  63. DECLARE_ID (generateManifest);
  64. DECLARE_ID (juceLinkage);
  65. DECLARE_ID (buildVST);
  66. DECLARE_ID (bundleIdentifier);
  67. DECLARE_ID (compile);
  68. DECLARE_ID (noWarnings);
  69. DECLARE_ID (resource);
  70. DECLARE_ID (className);
  71. DECLARE_ID (classDesc);
  72. DECLARE_ID (controlPoint);
  73. DECLARE_ID (createCallback);
  74. DECLARE_ID (parentClasses);
  75. DECLARE_ID (constructorParams);
  76. DECLARE_ID (objectConstructionArgs);
  77. DECLARE_ID (memberInitialisers);
  78. DECLARE_ID (canBeAggregated);
  79. DECLARE_ID (rootItemVisible);
  80. DECLARE_ID (openByDefault);
  81. DECLARE_ID (locked);
  82. DECLARE_ID (tooltip);
  83. DECLARE_ID (memberName);
  84. DECLARE_ID (markerName);
  85. DECLARE_ID (focusOrder);
  86. DECLARE_ID (hidden);
  87. DECLARE_ID (useStdCall);
  88. DECLARE_ID (showAllCode);
  89. DECLARE_ID (useLocalCopy);
  90. DECLARE_ID (androidActivityClass);
  91. DECLARE_ID (androidSDKPath);
  92. DECLARE_ID (androidNDKPath);
  93. DECLARE_ID (androidInternetNeeded);
  94. DECLARE_ID (androidArchitectures);
  95. DECLARE_ID (androidMicNeeded);
  96. DECLARE_ID (androidMinimumSDK);
  97. DECLARE_ID (androidOtherPermissions);
  98. const Identifier class_ ("class");
  99. #undef DECLARE_ID
  100. }
  101. #endif // __JUCER_PRESETIDS_JUCEHEADER__