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.

142 lines
6.0KB

  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. /**
  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. */
  33. class JUCE_API PropertyComponent : public Component,
  34. public SettableTooltipClient
  35. {
  36. public:
  37. //==============================================================================
  38. /** Creates a PropertyComponent.
  39. @param propertyName the name is stored as this component's name, and is
  40. used as the name displayed next to this component in
  41. a property panel
  42. @param preferredHeight the height that the component should be given - some
  43. items may need to be larger than a normal row height.
  44. This value can also be set if a subclass changes the
  45. preferredHeight member variable.
  46. */
  47. PropertyComponent (const String& propertyName,
  48. int preferredHeight = 25);
  49. /** Destructor. */
  50. ~PropertyComponent();
  51. //==============================================================================
  52. /** Returns this item's preferred height.
  53. This value is specified either in the constructor or by a subclass changing the
  54. preferredHeight member variable.
  55. */
  56. int getPreferredHeight() const noexcept { return preferredHeight; }
  57. void setPreferredHeight (int newHeight) noexcept { preferredHeight = newHeight; }
  58. //==============================================================================
  59. /** Updates the property component if the item it refers to has changed.
  60. A subclass must implement this method, and other objects may call it to
  61. force it to refresh itself.
  62. The subclass should be economical in the amount of work is done, so for
  63. example it should check whether it really needs to do a repaint rather than
  64. just doing one every time this method is called, as it may be called when
  65. the value being displayed hasn't actually changed.
  66. */
  67. virtual void refresh() = 0;
  68. /** The default paint method fills the background and draws a label for the
  69. item's name.
  70. @see LookAndFeel::drawPropertyComponentBackground(), LookAndFeel::drawPropertyComponentLabel()
  71. */
  72. void paint (Graphics&) override;
  73. /** The default resize method positions any child component to the right of this
  74. one, based on the look and feel's default label size.
  75. */
  76. void resized() override;
  77. /** By default, this just repaints the component. */
  78. void enablementChanged() override;
  79. //==============================================================================
  80. /** A set of colour IDs to use to change the colour of various aspects of the combo box.
  81. These constants can be used either via the Component::setColour(), or LookAndFeel::setColour()
  82. methods.
  83. @see Component::setColour, Component::findColour, LookAndFeel::setColour, LookAndFeel::findColour
  84. */
  85. enum ColourIds
  86. {
  87. backgroundColourId = 0x1008300, /**< The background colour to fill the component with. */
  88. labelTextColourId = 0x1008301, /**< The colour for the property's label text. */
  89. };
  90. //==============================================================================
  91. /** This abstract base class is implemented by LookAndFeel classes. */
  92. struct JUCE_API LookAndFeelMethods
  93. {
  94. virtual ~LookAndFeelMethods() {}
  95. virtual void drawPropertyPanelSectionHeader (Graphics&, const String& name, bool isOpen, int width, int height) = 0;
  96. virtual void drawPropertyComponentBackground (Graphics&, int width, int height, PropertyComponent&) = 0;
  97. virtual void drawPropertyComponentLabel (Graphics&, int width, int height, PropertyComponent&) = 0;
  98. virtual Rectangle<int> getPropertyComponentContentPosition (PropertyComponent&) = 0;
  99. };
  100. protected:
  101. /** Used by the PropertyPanel to determine how high this component needs to be.
  102. A subclass can update this value in its constructor but shouldn't alter it later
  103. as changes won't necessarily be picked up.
  104. */
  105. int preferredHeight;
  106. private:
  107. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (PropertyComponent)
  108. };