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.

122 lines
4.4KB

  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* getLineEnding();
  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. bool isJUCEModule (const String& moduleID) noexcept;
  42. //==============================================================================
  43. int indexOfLineStartingWith (const StringArray& lines, const String& text, int startIndex);
  44. void autoScrollForMouseEvent (const MouseEvent& e, bool scrollX = true, bool scrollY = true);
  45. //==============================================================================
  46. struct PropertyListBuilder
  47. {
  48. void add (PropertyComponent* propertyComp)
  49. {
  50. components.add (propertyComp);
  51. }
  52. void add (PropertyComponent* propertyComp, const String& tooltip)
  53. {
  54. propertyComp->setTooltip (tooltip);
  55. add (propertyComp);
  56. }
  57. void addSearchPathProperty (const Value& value, const String& name, const String& mainHelpText)
  58. {
  59. add (new TextPropertyComponent (value, name, 16384, true),
  60. mainHelpText + " Use semi-colons or new-lines to separate multiple paths.");
  61. }
  62. void addSearchPathProperty (const ValueWithDefault& value, const String& name, const String& mainHelpText)
  63. {
  64. add (new TextPropertyComponent (value, name, 16384, true),
  65. mainHelpText + " Use semi-colons or new-lines to separate multiple paths.");
  66. }
  67. void setPreferredHeight (int height)
  68. {
  69. for (int j = components.size(); --j >= 0;)
  70. components.getUnchecked(j)->setPreferredHeight (height);
  71. }
  72. Array<PropertyComponent*> components;
  73. };
  74. //==============================================================================
  75. // A ValueSource which takes an input source, and forwards any changes in it.
  76. // This class is a handy way to create sources which re-map a value.
  77. class ValueSourceFilter : public Value::ValueSource,
  78. public Value::Listener
  79. {
  80. public:
  81. ValueSourceFilter (const Value& source) : sourceValue (source)
  82. {
  83. sourceValue.addListener (this);
  84. }
  85. void valueChanged (Value&) override { sendChangeMessage (true); }
  86. protected:
  87. Value sourceValue;
  88. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (ValueSourceFilter)
  89. };