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.

95 lines
3.2KB

  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. namespace juce
  20. {
  21. //==============================================================================
  22. /**
  23. Base class for Component::Positioners that are based upon relative coordinates.
  24. @tags{GUI}
  25. */
  26. class JUCE_API RelativeCoordinatePositionerBase : public Component::Positioner,
  27. public ComponentListener,
  28. public MarkerList::Listener
  29. {
  30. public:
  31. RelativeCoordinatePositionerBase (Component&);
  32. ~RelativeCoordinatePositionerBase() override;
  33. void componentMovedOrResized (Component&, bool, bool) override;
  34. void componentParentHierarchyChanged (Component&) override;
  35. void componentChildrenChanged (Component&) override;
  36. void componentBeingDeleted (Component&) override;
  37. void markersChanged (MarkerList*) override;
  38. void markerListBeingDeleted (MarkerList*) override;
  39. void apply();
  40. bool addCoordinate (const RelativeCoordinate&);
  41. bool addPoint (const RelativePoint&);
  42. //==============================================================================
  43. /** Used for resolving a RelativeCoordinate expression in the context of a component. */
  44. class ComponentScope : public Expression::Scope
  45. {
  46. public:
  47. ComponentScope (Component&);
  48. // Suppress a VS2013 compiler warning
  49. ComponentScope& operator= (const ComponentScope&) = delete;
  50. Expression getSymbolValue (const String& symbol) const override;
  51. void visitRelativeScope (const String& scopeName, Visitor&) const override;
  52. String getScopeUID() const override;
  53. protected:
  54. Component& component;
  55. Component* findSiblingComponent (const String& componentID) const;
  56. };
  57. protected:
  58. virtual bool registerCoordinates() = 0;
  59. virtual void applyToComponentBounds() = 0;
  60. private:
  61. class DependencyFinderScope;
  62. friend class DependencyFinderScope;
  63. Array<Component*> sourceComponents;
  64. Array<MarkerList*> sourceMarkerLists;
  65. bool registeredOk;
  66. void registerComponentListener (Component&);
  67. void registerMarkerListListener (MarkerList*);
  68. void unregisterListeners();
  69. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (RelativeCoordinatePositionerBase)
  70. };
  71. } // namespace juce