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.

260 lines
8.5KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library - "Jules' Utility Class Extensions"
  4. Copyright 2004-10 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. //==============================================================================
  19. // String::hashCode64 actually hit some dupes, so this is a more powerful version.
  20. const int64 hashCode64 (const String& s);
  21. const String randomHexString (Random& random, int numChars);
  22. const String hexString8Digits (int value);
  23. const String createAlphaNumericUID();
  24. const String createGUID (const String& seed); // Turns a seed into a windows GUID
  25. const StringPairArray parsePreprocessorDefs (const String& defs);
  26. const StringPairArray mergePreprocessorDefs (StringPairArray inheritedDefs, const StringPairArray& overridingDefs);
  27. const String replacePreprocessorDefs (const StringPairArray& definitions, String sourceString);
  28. //==============================================================================
  29. int indexOfLineStartingWith (const StringArray& lines, const String& text, int startIndex);
  30. void autoScrollForMouseEvent (const MouseEvent& e, bool scrollX = true, bool scrollY = true);
  31. void drawComponentPlaceholder (Graphics& g, int w, int h, const String& text);
  32. void drawRecessedShadows (Graphics& g, int w, int h, int shadowSize);
  33. //==============================================================================
  34. class PropertyPanelWithTooltips : public Component,
  35. public Timer
  36. {
  37. public:
  38. PropertyPanelWithTooltips();
  39. ~PropertyPanelWithTooltips();
  40. PropertyPanel& getPanel() throw() { return panel; }
  41. void paint (Graphics& g);
  42. void resized();
  43. void timerCallback();
  44. private:
  45. PropertyPanel panel;
  46. TextLayout layout;
  47. Component* lastComp;
  48. String lastTip;
  49. const String findTip (Component* c);
  50. };
  51. //==============================================================================
  52. class FloatingLabelComponent : public Component
  53. {
  54. public:
  55. FloatingLabelComponent();
  56. void remove();
  57. void update (Component* parent, const String& text, const Colour& textColour, int x, int y, bool toRight, bool below);
  58. void paint (Graphics& g);
  59. private:
  60. Font font;
  61. Colour colour;
  62. GlyphArrangement glyphs;
  63. };
  64. //==============================================================================
  65. class JucerToolbarButton : public ToolbarItemComponent
  66. {
  67. public:
  68. //==============================================================================
  69. JucerToolbarButton (int itemId_, const String& labelText)
  70. : ToolbarItemComponent (itemId_, labelText, true)
  71. {
  72. setClickingTogglesState (false);
  73. }
  74. ~JucerToolbarButton()
  75. {
  76. }
  77. //==============================================================================
  78. bool getToolbarItemSizes (int toolbarDepth, bool isToolbarVertical, int& preferredSize, int& minSize, int& maxSize)
  79. {
  80. preferredSize = minSize = maxSize = 50;
  81. return true;
  82. }
  83. void paintButton (Graphics& g, bool over, bool down)
  84. {
  85. Path p;
  86. p.addRoundedRectangle (1.5f, 2.5f, getWidth() - 3.0f, getHeight() - 5.0f, 3.0f);
  87. if (getToggleState())
  88. {
  89. g.setColour (Colours::grey.withAlpha (0.5f));
  90. g.fillPath (p);
  91. }
  92. g.setColour (Colours::darkgrey.withAlpha (0.3f));
  93. g.strokePath (p, PathStrokeType (1.0f));
  94. g.setFont (11.0f);
  95. g.setColour (Colours::black.withAlpha ((over || down) ? 1.0f : 0.7f));
  96. g.drawFittedText (getButtonText(), 2, 2, getWidth() - 4, getHeight() - 4, Justification::centred, 2);
  97. }
  98. void paintButtonArea (Graphics& g, int width, int height, bool isMouseOver, bool isMouseDown)
  99. {
  100. }
  101. void contentAreaChanged (const Rectangle<int>& newBounds)
  102. {
  103. }
  104. private:
  105. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (JucerToolbarButton);
  106. };
  107. //==============================================================================
  108. class DrawableComponent : public Component,
  109. public ValueTree::Listener
  110. {
  111. public:
  112. DrawableComponent (const ValueTree& drawable_)
  113. {
  114. setDrawable (drawable_);
  115. }
  116. ~DrawableComponent()
  117. {
  118. }
  119. void setDrawable (const ValueTree& newDrawable)
  120. {
  121. drawable.removeListener (this);
  122. drawable = newDrawable;
  123. drawable.addListener (this);
  124. drawableObject = Drawable::createFromValueTree (drawable, 0); // xxx image provider missing
  125. addAndMakeVisible (drawableObject);
  126. resized();
  127. repaint();
  128. }
  129. void resized()
  130. {
  131. /* DrawableComposite* dc = dynamic_cast <DrawableComposite*> (static_cast <Drawable*> (drawableObject));
  132. if (dc != 0)
  133. {
  134. const RelativeCoordinate origin, right (getWidth()), bottom (getHeight());
  135. dc->setContentArea (RelativeRectangle (origin, right, origin, bottom));
  136. //dc->resetBoundingBoxToContentArea();
  137. }*/
  138. }
  139. void valueTreePropertyChanged (ValueTree&, const Identifier&) { updateGraphics(); }
  140. void valueTreeChildrenChanged (ValueTree&) { updateGraphics(); }
  141. void valueTreeParentChanged (ValueTree&) { updateGraphics(); }
  142. private:
  143. ValueTree drawable;
  144. ScopedPointer<Drawable> drawableObject;
  145. void updateGraphics()
  146. {
  147. if (drawableObject != 0)
  148. drawableObject->refreshFromValueTree (drawable, 0);
  149. }
  150. };
  151. //==============================================================================
  152. /**
  153. */
  154. class RelativeRectangleLayoutManager : public ComponentListener,
  155. public Expression::EvaluationContext,
  156. public AsyncUpdater
  157. {
  158. public:
  159. //==============================================================================
  160. /**
  161. */
  162. RelativeRectangleLayoutManager (Component* parentComponent);
  163. /** Destructor. */
  164. ~RelativeRectangleLayoutManager();
  165. //==============================================================================
  166. /**
  167. */
  168. void setMarker (const String& name, const RelativeCoordinate& coord);
  169. /**
  170. */
  171. void setComponentBounds (Component* component, const String& componentName, const RelativeRectangle& bounds);
  172. /**
  173. */
  174. void applyLayout();
  175. //==============================================================================
  176. /** @internal */
  177. const Expression getSymbolValue (const String& symbol, const String& member) const;
  178. /** @internal */
  179. void componentMovedOrResized (Component& component, bool wasMoved, bool wasResized);
  180. /** @internal */
  181. void componentBeingDeleted (Component& component);
  182. /** @internal */
  183. void handleAsyncUpdate();
  184. private:
  185. //==============================================================================
  186. struct ComponentPosition
  187. {
  188. ComponentPosition (Component* component, const String& name, const RelativeRectangle& coords);
  189. Component* component;
  190. String name;
  191. RelativeRectangle coords;
  192. };
  193. struct MarkerPosition
  194. {
  195. MarkerPosition (const String& name, const RelativeCoordinate& coord);
  196. String markerName;
  197. RelativeCoordinate position;
  198. };
  199. Component* parent;
  200. OwnedArray <ComponentPosition> components;
  201. OwnedArray <MarkerPosition> markers;
  202. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (RelativeRectangleLayoutManager);
  203. };