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.

131 lines
4.7KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2017 - ROLI Ltd.
  5. JUCE is an open source library subject to commercial or open-source
  6. licensing.
  7. By using JUCE, you agree to the terms of both the JUCE 5 End-User License
  8. Agreement and JUCE 5 Privacy Policy (both updated and effective as of the
  9. 27th April 2017).
  10. End User License Agreement: www.juce.com/juce-5-licence
  11. Privacy Policy: www.juce.com/juce-5-privacy-policy
  12. Or: You may also use this code under the terms of the GPL v3 (see
  13. www.gnu.org/licenses).
  14. JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  15. EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  16. DISCLAIMED.
  17. ==============================================================================
  18. */
  19. #pragma once
  20. //==============================================================================
  21. const char* getPreferredLinefeed();
  22. String joinLinesIntoSourceFile (StringArray& lines);
  23. String trimCommentCharsFromStartOfLine (const String& line);
  24. String hexString8Digits (int value);
  25. String createAlphaNumericUID();
  26. String createGUID (const String& seed); // Turns a seed into a windows GUID
  27. String escapeSpaces (const String& text); // replaces spaces with blackslash-space
  28. String addQuotesIfContainsSpaces (const String& text);
  29. StringPairArray parsePreprocessorDefs (const String& defs);
  30. StringPairArray mergePreprocessorDefs (StringPairArray inheritedDefs, const StringPairArray& overridingDefs);
  31. String createGCCPreprocessorFlags (const StringPairArray& defs);
  32. String replacePreprocessorDefs (const StringPairArray& definitions, String sourceString);
  33. StringArray getCleanedStringArray (StringArray);
  34. StringArray getSearchPathsFromString (const String& searchPath);
  35. StringArray getCommaOrWhitespaceSeparatedItems (const String&);
  36. void setValueIfVoid (Value value, const var& defaultValue);
  37. void addPlistDictionaryKey (XmlElement* xml, const String& key, const String& value);
  38. void addPlistDictionaryKeyBool (XmlElement* xml, const String& key, bool value);
  39. void addPlistDictionaryKeyInt (XmlElement* xml, const String& key, int value);
  40. bool fileNeedsCppSyntaxHighlighting (const File& file);
  41. StringArray getJUCEModules() noexcept;
  42. bool isJUCEModule (const String& moduleID) noexcept;
  43. StringArray getModulesRequiredForConsole() noexcept;
  44. StringArray getModulesRequiredForComponent() noexcept;
  45. StringArray getModulesRequiredForAudioProcessor() noexcept;
  46. bool isPIPFile (const File&) noexcept;
  47. bool isValidJUCEExamplesDirectory (const File&) noexcept;
  48. //==============================================================================
  49. int indexOfLineStartingWith (const StringArray& lines, const String& text, int startIndex);
  50. void autoScrollForMouseEvent (const MouseEvent& e, bool scrollX = true, bool scrollY = true);
  51. //==============================================================================
  52. struct PropertyListBuilder
  53. {
  54. void add (PropertyComponent* propertyComp)
  55. {
  56. components.add (propertyComp);
  57. }
  58. void add (PropertyComponent* propertyComp, const String& tooltip)
  59. {
  60. propertyComp->setTooltip (tooltip);
  61. add (propertyComp);
  62. }
  63. void addSearchPathProperty (const Value& value, const String& name, const String& mainHelpText)
  64. {
  65. add (new TextPropertyComponent (value, name, 16384, true),
  66. mainHelpText + " Use semi-colons or new-lines to separate multiple paths.");
  67. }
  68. void addSearchPathProperty (ValueWithDefault& value, const String& name, const String& mainHelpText)
  69. {
  70. add (new TextPropertyComponent (value, name, 16384, true),
  71. mainHelpText + " Use semi-colons or new-lines to separate multiple paths.");
  72. }
  73. void setPreferredHeight (int height)
  74. {
  75. for (int j = components.size(); --j >= 0;)
  76. components.getUnchecked(j)->setPreferredHeight (height);
  77. }
  78. Array<PropertyComponent*> components;
  79. };
  80. //==============================================================================
  81. // A ValueSource which takes an input source, and forwards any changes in it.
  82. // This class is a handy way to create sources which re-map a value.
  83. class ValueSourceFilter : public Value::ValueSource,
  84. public Value::Listener
  85. {
  86. public:
  87. ValueSourceFilter (const Value& source) : sourceValue (source)
  88. {
  89. sourceValue.addListener (this);
  90. }
  91. void valueChanged (Value&) override { sendChangeMessage (true); }
  92. protected:
  93. Value sourceValue;
  94. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (ValueSourceFilter)
  95. };