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.

109 lines
3.9KB

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