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.

114 lines
3.1KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2022 - 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 7 End-User License
  8. Agreement and JUCE Privacy Policy.
  9. End User License Agreement: www.juce.com/juce-7-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. ToolbarButton::ToolbarButton (const int iid, const String& buttonText,
  21. std::unique_ptr<Drawable> normalIm,
  22. std::unique_ptr<Drawable> toggledOnIm)
  23. : ToolbarItemComponent (iid, buttonText, true),
  24. normalImage (std::move (normalIm)),
  25. toggledOnImage (std::move (toggledOnIm))
  26. {
  27. jassert (normalImage != nullptr);
  28. }
  29. ToolbarButton::~ToolbarButton()
  30. {
  31. }
  32. //==============================================================================
  33. bool ToolbarButton::getToolbarItemSizes (int toolbarDepth, bool /*isToolbarVertical*/, int& preferredSize, int& minSize, int& maxSize)
  34. {
  35. preferredSize = minSize = maxSize = toolbarDepth;
  36. return true;
  37. }
  38. void ToolbarButton::paintButtonArea (Graphics&, int /*width*/, int /*height*/, bool /*isMouseOver*/, bool /*isMouseDown*/)
  39. {
  40. }
  41. void ToolbarButton::contentAreaChanged (const Rectangle<int>&)
  42. {
  43. buttonStateChanged();
  44. }
  45. void ToolbarButton::setCurrentImage (Drawable* const newImage)
  46. {
  47. if (newImage != currentImage)
  48. {
  49. removeChildComponent (currentImage);
  50. currentImage = newImage;
  51. if (currentImage != nullptr)
  52. {
  53. enablementChanged();
  54. addAndMakeVisible (currentImage);
  55. updateDrawable();
  56. }
  57. }
  58. }
  59. void ToolbarButton::updateDrawable()
  60. {
  61. if (currentImage != nullptr)
  62. {
  63. currentImage->setInterceptsMouseClicks (false, false);
  64. currentImage->setTransformToFit (getContentArea().toFloat(), RectanglePlacement::centred);
  65. currentImage->setAlpha (isEnabled() ? 1.0f : 0.5f);
  66. }
  67. }
  68. void ToolbarButton::resized()
  69. {
  70. ToolbarItemComponent::resized();
  71. updateDrawable();
  72. }
  73. void ToolbarButton::enablementChanged()
  74. {
  75. ToolbarItemComponent::enablementChanged();
  76. updateDrawable();
  77. }
  78. Drawable* ToolbarButton::getImageToUse() const
  79. {
  80. if (getStyle() == Toolbar::textOnly)
  81. return nullptr;
  82. if (getToggleState() && toggledOnImage != nullptr)
  83. return toggledOnImage.get();
  84. return normalImage.get();
  85. }
  86. void ToolbarButton::buttonStateChanged()
  87. {
  88. setCurrentImage (getImageToUse());
  89. }
  90. } // namespace juce