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.

108 lines
3.8KB

  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. String hexString8Digits (int value);
  21. String createAlphaNumericUID();
  22. String createGUID (const String& seed); // Turns a seed into a windows GUID
  23. String escapeSpaces (const String& text); // replaces spaces with blackslash-space
  24. String addQuotesIfContainsSpaces (const String& text);
  25. StringPairArray parsePreprocessorDefs (const String& defs);
  26. StringPairArray mergePreprocessorDefs (StringPairArray inheritedDefs, const StringPairArray& overridingDefs);
  27. String createGCCPreprocessorFlags (const StringPairArray& defs);
  28. String replacePreprocessorDefs (const StringPairArray& definitions, String sourceString);
  29. StringArray getCleanedStringArray (StringArray);
  30. StringArray getSearchPathsFromString (const String& searchPath);
  31. StringArray getCommaOrWhitespaceSeparatedItems (const String&);
  32. void setValueIfVoid (Value value, const var& defaultValue);
  33. void addPlistDictionaryKey (XmlElement* xml, const String& key, const String& value);
  34. void addPlistDictionaryKeyBool (XmlElement* xml, const String& key, bool value);
  35. void addPlistDictionaryKeyInt (XmlElement* xml, const String& key, int value);
  36. bool fileNeedsCppSyntaxHighlighting (const File& file);
  37. //==============================================================================
  38. int indexOfLineStartingWith (const StringArray& lines, const String& text, int startIndex);
  39. void autoScrollForMouseEvent (const MouseEvent& e, bool scrollX = true, bool scrollY = true);
  40. //==============================================================================
  41. struct PropertyListBuilder
  42. {
  43. void add (PropertyComponent* propertyComp)
  44. {
  45. components.add (propertyComp);
  46. }
  47. void add (PropertyComponent* propertyComp, const String& tooltip)
  48. {
  49. propertyComp->setTooltip (tooltip);
  50. add (propertyComp);
  51. }
  52. void addSearchPathProperty (const Value& value, const String& name, const String& mainHelpText)
  53. {
  54. add (new TextPropertyComponent (value, name, 16384, true),
  55. mainHelpText + " Use semi-colons or new-lines to separate multiple paths.");
  56. }
  57. void setPreferredHeight (int height)
  58. {
  59. for (int j = components.size(); --j >= 0;)
  60. components.getUnchecked(j)->setPreferredHeight (height);
  61. }
  62. Array<PropertyComponent*> components;
  63. };
  64. //==============================================================================
  65. // A ValueSource which takes an input source, and forwards any changes in it.
  66. // This class is a handy way to create sources which re-map a value.
  67. class ValueSourceFilter : public Value::ValueSource,
  68. public Value::Listener
  69. {
  70. public:
  71. ValueSourceFilter (const Value& source) : sourceValue (source)
  72. {
  73. sourceValue.addListener (this);
  74. }
  75. void valueChanged (Value&) override { sendChangeMessage (true); }
  76. protected:
  77. Value sourceValue;
  78. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (ValueSourceFilter)
  79. };