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.

109 lines
3.1KB

  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. ToolbarItemPalette::ToolbarItemPalette (ToolbarItemFactory& tbf, Toolbar& bar)
  20. : factory (tbf), toolbar (bar)
  21. {
  22. Component* const itemHolder = new Component();
  23. viewport.setViewedComponent (itemHolder);
  24. Array<int> allIds;
  25. factory.getAllToolbarItemIds (allIds);
  26. for (int i = 0; i < allIds.size(); ++i)
  27. addComponent (allIds.getUnchecked (i), -1);
  28. addAndMakeVisible (viewport);
  29. }
  30. ToolbarItemPalette::~ToolbarItemPalette()
  31. {
  32. }
  33. //==============================================================================
  34. void ToolbarItemPalette::addComponent (const int itemId, const int index)
  35. {
  36. if (ToolbarItemComponent* const tc = Toolbar::createItem (factory, itemId))
  37. {
  38. items.insert (index, tc);
  39. viewport.getViewedComponent()->addAndMakeVisible (tc, index);
  40. tc->setEditingMode (ToolbarItemComponent::editableOnPalette);
  41. }
  42. else
  43. {
  44. jassertfalse;
  45. }
  46. }
  47. void ToolbarItemPalette::replaceComponent (ToolbarItemComponent& comp)
  48. {
  49. const int index = items.indexOf (&comp);
  50. jassert (index >= 0);
  51. items.removeObject (&comp, false);
  52. addComponent (comp.getItemId(), index);
  53. resized();
  54. }
  55. void ToolbarItemPalette::resized()
  56. {
  57. viewport.setBoundsInset (BorderSize<int> (1));
  58. Component* const itemHolder = viewport.getViewedComponent();
  59. const int indent = 8;
  60. const int preferredWidth = viewport.getWidth() - viewport.getScrollBarThickness() - indent;
  61. const int height = toolbar.getThickness();
  62. int x = indent;
  63. int y = indent;
  64. int maxX = 0;
  65. for (int i = 0; i < items.size(); ++i)
  66. {
  67. ToolbarItemComponent* const tc = items.getUnchecked(i);
  68. tc->setStyle (toolbar.getStyle());
  69. int preferredSize = 1, minSize = 1, maxSize = 1;
  70. if (tc->getToolbarItemSizes (height, false, preferredSize, minSize, maxSize))
  71. {
  72. if (x + preferredSize > preferredWidth && x > indent)
  73. {
  74. x = indent;
  75. y += height;
  76. }
  77. tc->setBounds (x, y, preferredSize, height);
  78. x += preferredSize + 8;
  79. maxX = jmax (maxX, x);
  80. }
  81. }
  82. itemHolder->setSize (maxX, y + height + 8);
  83. }