/* ============================================================================== This file is part of the JUCE library - "Jules' Utility Class Extensions" Copyright 2004-11 by Raw Material Software Ltd. ------------------------------------------------------------------------------ JUCE can be redistributed and/or modified under the terms of the GNU General Public License (Version 2), as published by the Free Software Foundation. A copy of the license is included in the JUCE distribution, or can be found online at www.gnu.org/licenses. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. ------------------------------------------------------------------------------ To release a closed-source product which uses JUCE, commercial licenses are available: visit www.rawmaterialsoftware.com/juce for more information. ============================================================================== */ const char* const Toolbar::toolbarDragDescriptor = "_toolbarItem_"; //============================================================================== class Toolbar::Spacer : public ToolbarItemComponent { public: Spacer (const int itemId_, const float fixedSize_, const bool drawBar_) : ToolbarItemComponent (itemId_, String::empty, false), fixedSize (fixedSize_), drawBar (drawBar_) { } bool getToolbarItemSizes (int toolbarThickness, bool /*isToolbarVertical*/, int& preferredSize, int& minSize, int& maxSize) { if (fixedSize <= 0) { preferredSize = toolbarThickness * 2; minSize = 4; maxSize = 32768; } else { maxSize = roundToInt (toolbarThickness * fixedSize); minSize = drawBar ? maxSize : jmin (4, maxSize); preferredSize = maxSize; if (getEditingMode() == editableOnPalette) preferredSize = maxSize = toolbarThickness / (drawBar ? 3 : 2); } return true; } void paintButtonArea (Graphics&, int, int, bool, bool) { } void contentAreaChanged (const Rectangle&) { } int getResizeOrder() const noexcept { return fixedSize <= 0 ? 0 : 1; } void paint (Graphics& g) { const int w = getWidth(); const int h = getHeight(); if (drawBar) { g.setColour (findColour (Toolbar::separatorColourId, true)); const float thickness = 0.2f; if (isToolbarVertical()) g.fillRect (w * 0.1f, h * (0.5f - thickness * 0.5f), w * 0.8f, h * thickness); else g.fillRect (w * (0.5f - thickness * 0.5f), h * 0.1f, w * thickness, h * 0.8f); } if (getEditingMode() != normalMode && ! drawBar) { g.setColour (findColour (Toolbar::separatorColourId, true)); const int indentX = jmin (2, (w - 3) / 2); const int indentY = jmin (2, (h - 3) / 2); g.drawRect (indentX, indentY, w - indentX * 2, h - indentY * 2, 1); if (fixedSize <= 0) { float x1, y1, x2, y2, x3, y3, x4, y4, hw, hl; if (isToolbarVertical()) { x1 = w * 0.5f; y1 = h * 0.4f; x2 = x1; y2 = indentX * 2.0f; x3 = x1; y3 = h * 0.6f; x4 = x1; y4 = h - y2; hw = w * 0.15f; hl = w * 0.2f; } else { x1 = w * 0.4f; y1 = h * 0.5f; x2 = indentX * 2.0f; y2 = y1; x3 = w * 0.6f; y3 = y1; x4 = w - x2; y4 = y1; hw = h * 0.15f; hl = h * 0.2f; } Path p; p.addArrow (Line (x1, y1, x2, y2), 1.5f, hw, hl); p.addArrow (Line (x3, y3, x4, y4), 1.5f, hw, hl); g.fillPath (p); } } } private: const float fixedSize; const bool drawBar; JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (Spacer); }; //============================================================================== class Toolbar::MissingItemsComponent : public PopupMenu::CustomComponent { public: MissingItemsComponent (Toolbar& owner_, const int height_) : PopupMenu::CustomComponent (true), owner (&owner_), height (height_) { for (int i = owner_.items.size(); --i >= 0;) { ToolbarItemComponent* const tc = owner_.items.getUnchecked(i); if (dynamic_cast (tc) == nullptr && ! tc->isVisible()) { oldIndexes.insert (0, i); addAndMakeVisible (tc, 0); } } layout (400); } ~MissingItemsComponent() { if (owner != nullptr) { for (int i = 0; i < getNumChildComponents(); ++i) { ToolbarItemComponent* const tc = dynamic_cast (getChildComponent (i)); if (tc != nullptr) { tc->setVisible (false); const int index = oldIndexes.remove (i); owner->addChildComponent (tc, index); --i; } } owner->resized(); } } void layout (const int preferredWidth) { const int indent = 8; int x = indent; int y = indent; int maxX = 0; for (int i = 0; i < getNumChildComponents(); ++i) { ToolbarItemComponent* const tc = dynamic_cast (getChildComponent (i)); if (tc != nullptr) { 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; maxX = jmax (maxX, x); } } } setSize (maxX + 8, y + height + 8); } void getIdealSize (int& idealWidth, int& idealHeight) { idealWidth = getWidth(); idealHeight = getHeight(); } private: Component::SafePointer owner; const int height; Array oldIndexes; JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (MissingItemsComponent); }; //============================================================================== Toolbar::Toolbar() : vertical (false), isEditingActive (false), toolbarStyle (Toolbar::iconsOnly) { addChildComponent (missingItemsButton = getLookAndFeel().createToolbarMissingItemsButton (*this)); missingItemsButton->setAlwaysOnTop (true); missingItemsButton->addListener (this); } Toolbar::~Toolbar() { items.clear(); } void Toolbar::setVertical (const bool shouldBeVertical) { if (vertical != shouldBeVertical) { vertical = shouldBeVertical; resized(); } } void Toolbar::clear() { items.clear(); resized(); } ToolbarItemComponent* Toolbar::createItem (ToolbarItemFactory& factory, const int itemId) { if (itemId == ToolbarItemFactory::separatorBarId) return new Spacer (itemId, 0.1f, true); else if (itemId == ToolbarItemFactory::spacerId) return new Spacer (itemId, 0.5f, false); else if (itemId == ToolbarItemFactory::flexibleSpacerId) return new Spacer (itemId, 0, false); return factory.createItem (itemId); } void Toolbar::addItemInternal (ToolbarItemFactory& factory, const int itemId, const int insertIndex) { // An ID can't be zero - this might indicate a mistake somewhere? jassert (itemId != 0); ToolbarItemComponent* const tc = createItem (factory, itemId); if (tc != nullptr) { #if JUCE_DEBUG Array allowedIds; factory.getAllToolbarItemIds (allowedIds); // If your factory can create an item for a given ID, it must also return // that ID from its getAllToolbarItemIds() method! jassert (allowedIds.contains (itemId)); #endif items.insert (insertIndex, tc); addAndMakeVisible (tc, insertIndex); } } void Toolbar::addItem (ToolbarItemFactory& factory, const int itemId, const int insertIndex) { addItemInternal (factory, itemId, insertIndex); resized(); } void Toolbar::addDefaultItems (ToolbarItemFactory& factoryToUse) { Array ids; factoryToUse.getDefaultItemSet (ids); clear(); for (int i = 0; i < ids.size(); ++i) addItemInternal (factoryToUse, ids.getUnchecked (i), -1); resized(); } void Toolbar::removeToolbarItem (const int itemIndex) { items.remove (itemIndex); resized(); } int Toolbar::getNumItems() const noexcept { return items.size(); } int Toolbar::getItemId (const int itemIndex) const noexcept { ToolbarItemComponent* const tc = getItemComponent (itemIndex); return tc != nullptr ? tc->getItemId() : 0; } ToolbarItemComponent* Toolbar::getItemComponent (const int itemIndex) const noexcept { return items [itemIndex]; } ToolbarItemComponent* Toolbar::getNextActiveComponent (int index, const int delta) const { for (;;) { index += delta; ToolbarItemComponent* const tc = getItemComponent (index); if (tc == nullptr) break; if (tc->isActive) return tc; } return nullptr; } void Toolbar::setStyle (const ToolbarItemStyle& newStyle) { if (toolbarStyle != newStyle) { toolbarStyle = newStyle; updateAllItemPositions (false); } } String Toolbar::toString() const { String s ("TB:"); for (int i = 0; i < getNumItems(); ++i) s << getItemId(i) << ' '; return s.trimEnd(); } bool Toolbar::restoreFromString (ToolbarItemFactory& factoryToUse, const String& savedVersion) { if (! savedVersion.startsWith ("TB:")) return false; StringArray tokens; tokens.addTokens (savedVersion.substring (3), false); clear(); for (int i = 0; i < tokens.size(); ++i) addItemInternal (factoryToUse, tokens[i].getIntValue(), -1); resized(); return true; } void Toolbar::paint (Graphics& g) { getLookAndFeel().paintToolbarBackground (g, getWidth(), getHeight(), *this); } int Toolbar::getThickness() const noexcept { return vertical ? getWidth() : getHeight(); } int Toolbar::getLength() const noexcept { return vertical ? getHeight() : getWidth(); } void Toolbar::setEditingActive (const bool active) { if (isEditingActive != active) { isEditingActive = active; updateAllItemPositions (false); } } //============================================================================== void Toolbar::resized() { updateAllItemPositions (false); } void Toolbar::updateAllItemPositions (const bool animate) { if (getWidth() > 0 && getHeight() > 0) { StretchableObjectResizer resizer; int i; for (i = 0; i < items.size(); ++i) { ToolbarItemComponent* const tc = items.getUnchecked(i); tc->setEditingMode (isEditingActive ? ToolbarItemComponent::editableOnToolbar : ToolbarItemComponent::normalMode); tc->setStyle (toolbarStyle); Spacer* const spacer = dynamic_cast (tc); int preferredSize = 1, minSize = 1, maxSize = 1; if (tc->getToolbarItemSizes (getThickness(), isVertical(), preferredSize, minSize, maxSize)) { tc->isActive = true; resizer.addItem (preferredSize, minSize, maxSize, spacer != nullptr ? spacer->getResizeOrder() : 2); } else { tc->isActive = false; tc->setVisible (false); } } resizer.resizeToFit (getLength()); int totalLength = 0; for (i = 0; i < resizer.getNumItems(); ++i) totalLength += (int) resizer.getItemSize (i); const bool itemsOffTheEnd = totalLength > getLength(); const int extrasButtonSize = getThickness() / 2; missingItemsButton->setSize (extrasButtonSize, extrasButtonSize); missingItemsButton->setVisible (itemsOffTheEnd); missingItemsButton->setEnabled (! isEditingActive); if (vertical) missingItemsButton->setCentrePosition (getWidth() / 2, getHeight() - 4 - extrasButtonSize / 2); else missingItemsButton->setCentrePosition (getWidth() - 4 - extrasButtonSize / 2, getHeight() / 2); const int maxLength = itemsOffTheEnd ? (vertical ? missingItemsButton->getY() : missingItemsButton->getX()) - 4 : getLength(); int pos = 0, activeIndex = 0; for (i = 0; i < items.size(); ++i) { ToolbarItemComponent* const tc = items.getUnchecked(i); if (tc->isActive) { const int size = (int) resizer.getItemSize (activeIndex++); Rectangle newBounds; if (vertical) newBounds.setBounds (0, pos, getWidth(), size); else newBounds.setBounds (pos, 0, size, getHeight()); if (animate) { Desktop::getInstance().getAnimator().animateComponent (tc, newBounds, 1.0f, 200, false, 3.0, 0.0); } else { Desktop::getInstance().getAnimator().cancelAnimation (tc, false); tc->setBounds (newBounds); } pos += size; tc->setVisible (pos <= maxLength && ((! tc->isBeingDragged) || tc->getEditingMode() == ToolbarItemComponent::editableOnPalette)); } } } } //============================================================================== void Toolbar::buttonClicked (Button*) { jassert (missingItemsButton->isShowing()); if (missingItemsButton->isShowing()) { PopupMenu m; m.addCustomItem (1, new MissingItemsComponent (*this, getThickness())); m.showMenuAsync (PopupMenu::Options().withTargetComponent (missingItemsButton), nullptr); } } //============================================================================== bool Toolbar::isInterestedInDragSource (const SourceDetails& dragSourceDetails) { return dragSourceDetails.description == toolbarDragDescriptor && isEditingActive; } void Toolbar::itemDragMove (const SourceDetails& dragSourceDetails) { ToolbarItemComponent* const tc = dynamic_cast (dragSourceDetails.sourceComponent.get()); if (tc != nullptr) { if (! items.contains (tc)) { if (tc->getEditingMode() == ToolbarItemComponent::editableOnPalette) { ToolbarItemPalette* const palette = tc->findParentComponentOfClass(); if (palette != nullptr) palette->replaceComponent (tc); } else { jassert (tc->getEditingMode() == ToolbarItemComponent::editableOnToolbar); } items.add (tc); addChildComponent (tc); updateAllItemPositions (true); } for (int i = getNumItems(); --i >= 0;) { const int currentIndex = items.indexOf (tc); int newIndex = currentIndex; const int dragObjectLeft = vertical ? (dragSourceDetails.localPosition.getY() - tc->dragOffsetY) : (dragSourceDetails.localPosition.getX() - tc->dragOffsetX); const int dragObjectRight = dragObjectLeft + (vertical ? tc->getHeight() : tc->getWidth()); const Rectangle current (Desktop::getInstance().getAnimator() .getComponentDestination (getChildComponent (newIndex))); ToolbarItemComponent* const prev = getNextActiveComponent (newIndex, -1); if (prev != nullptr) { const Rectangle previousPos (Desktop::getInstance().getAnimator().getComponentDestination (prev)); if (abs (dragObjectLeft - (vertical ? previousPos.getY() : previousPos.getX()) < abs (dragObjectRight - (vertical ? current.getBottom() : current.getRight())))) { newIndex = getIndexOfChildComponent (prev); } } ToolbarItemComponent* const next = getNextActiveComponent (newIndex, 1); if (next != nullptr) { const Rectangle nextPos (Desktop::getInstance().getAnimator().getComponentDestination (next)); if (abs (dragObjectLeft - (vertical ? current.getY() : current.getX()) > abs (dragObjectRight - (vertical ? nextPos.getBottom() : nextPos.getRight())))) { newIndex = getIndexOfChildComponent (next) + 1; } } if (newIndex == currentIndex) break; items.removeObject (tc, false); removeChildComponent (tc); addChildComponent (tc, newIndex); items.insert (newIndex, tc); updateAllItemPositions (true); } } } void Toolbar::itemDragExit (const SourceDetails& dragSourceDetails) { ToolbarItemComponent* const tc = dynamic_cast (dragSourceDetails.sourceComponent.get()); if (tc != nullptr && isParentOf (tc)) { items.removeObject (tc, false); removeChildComponent (tc); updateAllItemPositions (true); } } void Toolbar::itemDropped (const SourceDetails& dragSourceDetails) { ToolbarItemComponent* const tc = dynamic_cast (dragSourceDetails.sourceComponent.get()); if (tc != nullptr) tc->setState (Button::buttonNormal); } //============================================================================== void Toolbar::mouseDown (const MouseEvent&) { } //============================================================================== class Toolbar::CustomisationDialog : public DialogWindow { public: CustomisationDialog (ToolbarItemFactory& factory, Toolbar* const toolbar_, const int optionFlags) : DialogWindow (TRANS("Add/remove items from toolbar"), Colours::white, true, true), toolbar (toolbar_) { setContentOwned (new CustomiserPanel (factory, toolbar, optionFlags), true); setResizable (true, true); setResizeLimits (400, 300, 1500, 1000); positionNearBar(); } ~CustomisationDialog() { toolbar->setEditingActive (false); } void closeButtonPressed() { setVisible (false); } bool canModalEventBeSentToComponent (const Component* comp) { return toolbar->isParentOf (comp); } void positionNearBar() { const Rectangle screenSize (toolbar->getParentMonitorArea()); const int tbx = toolbar->getScreenX(); const int tby = toolbar->getScreenY(); const int gap = 8; int x, y; if (toolbar->isVertical()) { y = tby; if (tbx > screenSize.getCentreX()) x = tbx - getWidth() - gap; else x = tbx + toolbar->getWidth() + gap; } else { x = tbx + (toolbar->getWidth() - getWidth()) / 2; if (tby > screenSize.getCentreY()) y = tby - getHeight() - gap; else y = tby + toolbar->getHeight() + gap; } setTopLeftPosition (x, y); } private: Toolbar* const toolbar; class CustomiserPanel : public Component, private ComboBoxListener, // (can't use ComboBox::Listener due to idiotic VC2005 bug) private ButtonListener { public: CustomiserPanel (ToolbarItemFactory& factory_, Toolbar* const toolbar_, const int optionFlags) : factory (factory_), toolbar (toolbar_), palette (factory_, toolbar_), instructions (String::empty, TRANS ("You can drag the items above and drop them onto a toolbar to add them.\n\n" "Items on the toolbar can also be dragged around to change their order, or dragged off the edge to delete them.")), defaultButton (TRANS ("Restore to default set of items")) { addAndMakeVisible (&palette); if ((optionFlags & (Toolbar::allowIconsOnlyChoice | Toolbar::allowIconsWithTextChoice | Toolbar::allowTextOnlyChoice)) != 0) { addAndMakeVisible (&styleBox); styleBox.setEditableText (false); if ((optionFlags & Toolbar::allowIconsOnlyChoice) != 0) styleBox.addItem (TRANS("Show icons only"), 1); if ((optionFlags & Toolbar::allowIconsWithTextChoice) != 0) styleBox.addItem (TRANS("Show icons and descriptions"), 2); if ((optionFlags & Toolbar::allowTextOnlyChoice) != 0) styleBox.addItem (TRANS("Show descriptions only"), 3); int selectedStyle = 0; switch (toolbar_->getStyle()) { case Toolbar::iconsOnly: selectedStyle = 1; break; case Toolbar::iconsWithText: selectedStyle = 2; break; case Toolbar::textOnly: selectedStyle = 3; break; } styleBox.setSelectedId (selectedStyle); styleBox.addListener (this); } if ((optionFlags & Toolbar::showResetToDefaultsButton) != 0) { addAndMakeVisible (&defaultButton); defaultButton.addListener (this); } addAndMakeVisible (&instructions); instructions.setFont (Font (13.0f)); setSize (500, 300); } void comboBoxChanged (ComboBox*) { switch (styleBox.getSelectedId()) { case 1: toolbar->setStyle (Toolbar::iconsOnly); break; case 2: toolbar->setStyle (Toolbar::iconsWithText); break; case 3: toolbar->setStyle (Toolbar::textOnly); break; } palette.resized(); // to make it update the styles } void buttonClicked (Button*) { toolbar->addDefaultItems (factory); } void paint (Graphics& g) { Colour background; DialogWindow* const dw = findParentComponentOfClass(); if (dw != nullptr) background = dw->getBackgroundColour(); g.setColour (background.contrasting().withAlpha (0.3f)); g.fillRect (palette.getX(), palette.getBottom() - 1, palette.getWidth(), 1); } void resized() { palette.setBounds (0, 0, getWidth(), getHeight() - 120); styleBox.setBounds (10, getHeight() - 110, 200, 22); defaultButton.changeWidthToFitText (22); defaultButton.setTopLeftPosition (240, getHeight() - 110); instructions.setBounds (10, getHeight() - 80, getWidth() - 20, 80); } private: ToolbarItemFactory& factory; Toolbar* const toolbar; ToolbarItemPalette palette; Label instructions; ComboBox styleBox; TextButton defaultButton; }; }; void Toolbar::showCustomisationDialog (ToolbarItemFactory& factory, const int optionFlags) { setEditingActive (true); (new CustomisationDialog (factory, this, optionFlags)) ->enterModalState (true, 0, true); }