Audio plugin host https://kx.studio/carla
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.

juce_PropertyComponent.h 6.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2020 - Raw Material Software Limited
  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 6 End-User License
  8. Agreement and JUCE Privacy Policy (both effective as of the 16th June 2020).
  9. End User License Agreement: www.juce.com/juce-6-licence
  10. Privacy Policy: www.juce.com/juce-privacy-policy
  11. Or: You may also use this code under the terms of the GPL v3 (see
  12. www.gnu.org/licenses).
  13. JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  14. EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  15. DISCLAIMED.
  16. ==============================================================================
  17. */
  18. namespace juce
  19. {
  20. //==============================================================================
  21. /**
  22. A base class for a component that goes in a PropertyPanel and displays one of
  23. an item's properties.
  24. Subclasses of this are used to display a property in various forms, e.g. a
  25. ChoicePropertyComponent shows its value as a combo box; a SliderPropertyComponent
  26. shows its value as a slider; a TextPropertyComponent as a text box, etc.
  27. A subclass must implement the refresh() method which will be called to tell the
  28. component to update itself, and is also responsible for calling this it when the
  29. item that it refers to is changed.
  30. @see PropertyPanel, TextPropertyComponent, SliderPropertyComponent,
  31. ChoicePropertyComponent, ButtonPropertyComponent, BooleanPropertyComponent
  32. @tags{GUI}
  33. */
  34. class JUCE_API PropertyComponent : public Component,
  35. public SettableTooltipClient
  36. {
  37. public:
  38. //==============================================================================
  39. /** Creates a PropertyComponent.
  40. @param propertyName the name is stored as this component's name, and is
  41. used as the name displayed next to this component in
  42. a property panel
  43. @param preferredHeight the height that the component should be given - some
  44. items may need to be larger than a normal row height.
  45. This value can also be set if a subclass changes the
  46. preferredHeight member variable.
  47. */
  48. PropertyComponent (const String& propertyName,
  49. int preferredHeight = 25);
  50. /** Destructor. */
  51. ~PropertyComponent() override;
  52. //==============================================================================
  53. /** Returns this item's preferred height.
  54. This value is specified either in the constructor or by a subclass changing the
  55. preferredHeight member variable.
  56. */
  57. int getPreferredHeight() const noexcept { return preferredHeight; }
  58. void setPreferredHeight (int newHeight) noexcept { preferredHeight = newHeight; }
  59. //==============================================================================
  60. /** Updates the property component if the item it refers to has changed.
  61. A subclass must implement this method, and other objects may call it to
  62. force it to refresh itself.
  63. The subclass should be economical in the amount of work is done, so for
  64. example it should check whether it really needs to do a repaint rather than
  65. just doing one every time this method is called, as it may be called when
  66. the value being displayed hasn't actually changed.
  67. */
  68. virtual void refresh() = 0;
  69. /** The default paint method fills the background and draws a label for the
  70. item's name.
  71. @see LookAndFeel::drawPropertyComponentBackground(), LookAndFeel::drawPropertyComponentLabel()
  72. */
  73. void paint (Graphics&) override;
  74. /** The default resize method positions any child component to the right of this
  75. one, based on the look and feel's default label size.
  76. */
  77. void resized() override;
  78. /** By default, this just repaints the component. */
  79. void enablementChanged() override;
  80. //==============================================================================
  81. /** A set of colour IDs to use to change the colour of various aspects of the combo box.
  82. These constants can be used either via the Component::setColour(), or LookAndFeel::setColour()
  83. methods.
  84. @see Component::setColour, Component::findColour, LookAndFeel::setColour, LookAndFeel::findColour
  85. */
  86. enum ColourIds
  87. {
  88. backgroundColourId = 0x1008300, /**< The background colour to fill the component with. */
  89. labelTextColourId = 0x1008301, /**< The colour for the property's label text. */
  90. };
  91. //==============================================================================
  92. /** This abstract base class is implemented by LookAndFeel classes. */
  93. struct JUCE_API LookAndFeelMethods
  94. {
  95. virtual ~LookAndFeelMethods() = default;
  96. virtual void drawPropertyPanelSectionHeader (Graphics&, const String& name, bool isOpen, int width, int height) = 0;
  97. virtual void drawPropertyComponentBackground (Graphics&, int width, int height, PropertyComponent&) = 0;
  98. virtual void drawPropertyComponentLabel (Graphics&, int width, int height, PropertyComponent&) = 0;
  99. virtual Rectangle<int> getPropertyComponentContentPosition (PropertyComponent&) = 0;
  100. virtual int getPropertyPanelSectionHeaderHeight (const String& sectionTitle) = 0;
  101. };
  102. protected:
  103. /** Used by the PropertyPanel to determine how high this component needs to be.
  104. A subclass can update this value in its constructor but shouldn't alter it later
  105. as changes won't necessarily be picked up.
  106. */
  107. int preferredHeight;
  108. private:
  109. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (PropertyComponent)
  110. };
  111. } // namespace juce