|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- /*
- ==============================================================================
-
- This file is part of the JUCE library.
- Copyright (c) 2017 - ROLI Ltd.
-
- JUCE is an open source library subject to commercial or open-source
- licensing.
-
- By using JUCE, you agree to the terms of both the JUCE 5 End-User License
- Agreement and JUCE 5 Privacy Policy (both updated and effective as of the
- 27th April 2017).
-
- End User License Agreement: www.juce.com/juce-5-licence
- Privacy Policy: www.juce.com/juce-5-privacy-policy
-
- Or: You may also use this code under the terms of the GPL v3 (see
- www.gnu.org/licenses).
-
- JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
- EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
- DISCLAIMED.
-
- ==============================================================================
- */
-
- namespace juce
- {
-
- ToolbarItemPalette::ToolbarItemPalette (ToolbarItemFactory& tbf, Toolbar& bar)
- : factory (tbf), toolbar (bar)
- {
- Component* const itemHolder = new Component();
- viewport.setViewedComponent (itemHolder);
-
- Array<int> allIds;
- factory.getAllToolbarItemIds (allIds);
-
- for (int i = 0; i < allIds.size(); ++i)
- addComponent (allIds.getUnchecked (i), -1);
-
- addAndMakeVisible (viewport);
- }
-
- ToolbarItemPalette::~ToolbarItemPalette()
- {
- }
-
- //==============================================================================
- void ToolbarItemPalette::addComponent (const int itemId, const int index)
- {
- if (ToolbarItemComponent* const tc = Toolbar::createItem (factory, itemId))
- {
- items.insert (index, tc);
- viewport.getViewedComponent()->addAndMakeVisible (tc, index);
- tc->setEditingMode (ToolbarItemComponent::editableOnPalette);
- }
- else
- {
- jassertfalse;
- }
- }
-
- void ToolbarItemPalette::replaceComponent (ToolbarItemComponent& comp)
- {
- const int index = items.indexOf (&comp);
- jassert (index >= 0);
- items.removeObject (&comp, false);
-
- addComponent (comp.getItemId(), index);
- resized();
- }
-
- void ToolbarItemPalette::resized()
- {
- viewport.setBoundsInset (BorderSize<int> (1));
-
- Component* const itemHolder = viewport.getViewedComponent();
-
- const int indent = 8;
- const int preferredWidth = viewport.getWidth() - viewport.getScrollBarThickness() - indent;
- const int height = toolbar.getThickness();
- int x = indent;
- int y = indent;
- int maxX = 0;
-
- for (int i = 0; i < items.size(); ++i)
- {
- ToolbarItemComponent* const tc = items.getUnchecked(i);
-
- tc->setStyle (toolbar.getStyle());
-
- int preferredSize = 1, minSize = 1, maxSize = 1;
-
- if (tc->getToolbarItemSizes (height, false, preferredSize, minSize, maxSize))
- {
- if (x + preferredSize > preferredWidth && x > indent)
- {
- x = indent;
- y += height;
- }
-
- tc->setBounds (x, y, preferredSize, height);
-
- x += preferredSize + 8;
- maxX = jmax (maxX, x);
- }
- }
-
- itemHolder->setSize (maxX, y + height + 8);
- }
-
- } // namespace juce
|