|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568 |
- /*
- ==============================================================================
-
- This file is part of the JUCE library.
- Copyright (c) 2015 - ROLI Ltd.
-
- Permission is granted to use this software under the terms of either:
- a) the GPL v2 (or any later version)
- b) the Affero GPL v3
-
- Details of these licenses can be found 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.juce.com for more information.
-
- ==============================================================================
- */
-
- Viewport::Viewport (const String& name)
- : Component (name),
- scrollBarThickness (0),
- singleStepX (16),
- singleStepY (16),
- showHScrollbar (true),
- showVScrollbar (true),
- deleteContent (true),
- customScrollBarThickness (false),
- allowScrollingWithoutScrollbarV (false),
- allowScrollingWithoutScrollbarH (false),
- verticalScrollBar (true),
- horizontalScrollBar (false)
- {
- // content holder is used to clip the contents so they don't overlap the scrollbars
- addAndMakeVisible (contentHolder);
- contentHolder.setInterceptsMouseClicks (false, true);
-
- scrollBarThickness = getLookAndFeel().getDefaultScrollbarWidth();
-
- addChildComponent (verticalScrollBar);
- addChildComponent (horizontalScrollBar);
-
- verticalScrollBar.addListener (this);
- horizontalScrollBar.addListener (this);
-
- setInterceptsMouseClicks (false, true);
- setWantsKeyboardFocus (true);
- }
-
- Viewport::~Viewport()
- {
- setScrollOnDragEnabled (false);
- deleteOrRemoveContentComp();
- }
-
- //==============================================================================
- void Viewport::visibleAreaChanged (const Rectangle<int>&) {}
- void Viewport::viewedComponentChanged (Component*) {}
-
- //==============================================================================
- void Viewport::deleteOrRemoveContentComp()
- {
- if (contentComp != nullptr)
- {
- contentComp->removeComponentListener (this);
-
- if (deleteContent)
- {
- // This sets the content comp to a null pointer before deleting the old one, in case
- // anything tries to use the old one while it's in mid-deletion..
- ScopedPointer<Component> oldCompDeleter (contentComp);
- contentComp = nullptr;
- }
- else
- {
- contentHolder.removeChildComponent (contentComp);
- contentComp = nullptr;
- }
- }
- }
-
- void Viewport::setViewedComponent (Component* const newViewedComponent, const bool deleteComponentWhenNoLongerNeeded)
- {
- if (contentComp.get() != newViewedComponent)
- {
- deleteOrRemoveContentComp();
- contentComp = newViewedComponent;
- deleteContent = deleteComponentWhenNoLongerNeeded;
-
- if (contentComp != nullptr)
- {
- contentHolder.addAndMakeVisible (contentComp);
- setViewPosition (Point<int>());
- contentComp->addComponentListener (this);
- }
-
- viewedComponentChanged (contentComp);
- updateVisibleArea();
- }
- }
-
- int Viewport::getMaximumVisibleWidth() const { return contentHolder.getWidth(); }
- int Viewport::getMaximumVisibleHeight() const { return contentHolder.getHeight(); }
-
- Point<int> Viewport::viewportPosToCompPos (Point<int> pos) const
- {
- jassert (contentComp != nullptr);
-
- Rectangle<int> contentBounds = contentHolder.getLocalArea (contentComp, contentComp->getLocalBounds());
- Point<int> p (jmax (jmin (0, contentHolder.getWidth() - contentBounds.getWidth()), jmin (0, -(pos.x))),
- jmax (jmin (0, contentHolder.getHeight() - contentBounds.getHeight()), jmin (0, -(pos.y))));
-
-
- return p.transformedBy (contentComp->getTransform().inverted());
- }
-
- void Viewport::setViewPosition (const int xPixelsOffset, const int yPixelsOffset)
- {
- setViewPosition (Point<int> (xPixelsOffset, yPixelsOffset));
- }
-
- void Viewport::setViewPosition (Point<int> newPosition)
- {
- if (contentComp != nullptr)
- contentComp->setTopLeftPosition (viewportPosToCompPos (newPosition));
- }
-
- void Viewport::setViewPositionProportionately (const double x, const double y)
- {
- if (contentComp != nullptr)
- setViewPosition (jmax (0, roundToInt (x * (contentComp->getWidth() - getWidth()))),
- jmax (0, roundToInt (y * (contentComp->getHeight() - getHeight()))));
- }
-
- bool Viewport::autoScroll (const int mouseX, const int mouseY, const int activeBorderThickness, const int maximumSpeed)
- {
- if (contentComp != nullptr)
- {
- int dx = 0, dy = 0;
-
- if (horizontalScrollBar.isVisible() || contentComp->getX() < 0 || contentComp->getRight() > getWidth())
- {
- if (mouseX < activeBorderThickness)
- dx = activeBorderThickness - mouseX;
- else if (mouseX >= contentHolder.getWidth() - activeBorderThickness)
- dx = (contentHolder.getWidth() - activeBorderThickness) - mouseX;
-
- if (dx < 0)
- dx = jmax (dx, -maximumSpeed, contentHolder.getWidth() - contentComp->getRight());
- else
- dx = jmin (dx, maximumSpeed, -contentComp->getX());
- }
-
- if (verticalScrollBar.isVisible() || contentComp->getY() < 0 || contentComp->getBottom() > getHeight())
- {
- if (mouseY < activeBorderThickness)
- dy = activeBorderThickness - mouseY;
- else if (mouseY >= contentHolder.getHeight() - activeBorderThickness)
- dy = (contentHolder.getHeight() - activeBorderThickness) - mouseY;
-
- if (dy < 0)
- dy = jmax (dy, -maximumSpeed, contentHolder.getHeight() - contentComp->getBottom());
- else
- dy = jmin (dy, maximumSpeed, -contentComp->getY());
- }
-
- if (dx != 0 || dy != 0)
- {
- contentComp->setTopLeftPosition (contentComp->getX() + dx,
- contentComp->getY() + dy);
-
- return true;
- }
- }
-
- return false;
- }
-
- void Viewport::componentMovedOrResized (Component&, bool, bool)
- {
- updateVisibleArea();
- }
-
- //==============================================================================
- typedef AnimatedPosition<AnimatedPositionBehaviours::ContinuousWithMomentum> ViewportDragPosition;
-
- struct Viewport::DragToScrollListener : private MouseListener,
- private ViewportDragPosition::Listener
- {
- DragToScrollListener (Viewport& v)
- : viewport (v), numTouches (0), isDragging (false)
- {
- viewport.contentHolder.addMouseListener (this, true);
- offsetX.addListener (this);
- offsetY.addListener (this);
- }
-
- ~DragToScrollListener()
- {
- viewport.contentHolder.removeMouseListener (this);
- }
-
- void positionChanged (ViewportDragPosition&, double) override
- {
- viewport.setViewPosition (originalViewPos - Point<int> ((int) offsetX.getPosition(),
- (int) offsetY.getPosition()));
- }
-
- void mouseDown (const MouseEvent&) override
- {
- ++numTouches;
- }
-
- void mouseDrag (const MouseEvent& e) override
- {
- if (numTouches == 1)
- {
- Point<float> totalOffset = e.getOffsetFromDragStart().toFloat();
-
- if (! isDragging && totalOffset.getDistanceFromOrigin() > 8.0f)
- {
- isDragging = true;
-
- originalViewPos = viewport.getViewPosition();
- offsetX.setPosition (0.0);
- offsetX.beginDrag();
- offsetY.setPosition (0.0);
- offsetY.beginDrag();
- }
-
- if (isDragging)
- {
- offsetX.drag (totalOffset.x);
- offsetY.drag (totalOffset.y);
- }
- }
- }
-
- void mouseUp (const MouseEvent&) override
- {
- if (--numTouches == 0)
- {
- offsetX.endDrag();
- offsetY.endDrag();
- isDragging = false;
- }
-
- jassert (numTouches >= 0);
- }
-
- Viewport& viewport;
- ViewportDragPosition offsetX, offsetY;
- Point<int> originalViewPos;
- int numTouches;
- bool isDragging;
-
- JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (DragToScrollListener)
- };
-
- void Viewport::setScrollOnDragEnabled (bool shouldScrollOnDrag)
- {
- if (isScrollOnDragEnabled() != shouldScrollOnDrag)
- {
- if (shouldScrollOnDrag)
- dragToScrollListener = new DragToScrollListener (*this);
- else
- dragToScrollListener = nullptr;
- }
- }
-
- bool Viewport::isScrollOnDragEnabled() const noexcept
- {
- return dragToScrollListener != nullptr;
- }
-
- bool Viewport::isCurrentlyScrollingOnDrag() const noexcept
- {
- return dragToScrollListener != nullptr && dragToScrollListener->isDragging;
- }
-
- //==============================================================================
- void Viewport::lookAndFeelChanged()
- {
- if (! customScrollBarThickness)
- {
- scrollBarThickness = getLookAndFeel().getDefaultScrollbarWidth();
- resized();
- }
- }
-
- void Viewport::resized()
- {
- updateVisibleArea();
- }
-
- //==============================================================================
- void Viewport::updateVisibleArea()
- {
- const int scrollbarWidth = getScrollBarThickness();
- const bool canShowAnyBars = getWidth() > scrollbarWidth && getHeight() > scrollbarWidth;
- const bool canShowHBar = showHScrollbar && canShowAnyBars;
- const bool canShowVBar = showVScrollbar && canShowAnyBars;
-
- bool hBarVisible = false, vBarVisible = false;
- Rectangle<int> contentArea;
-
- for (int i = 3; --i >= 0;)
- {
- hBarVisible = canShowHBar && ! horizontalScrollBar.autoHides();
- vBarVisible = canShowVBar && ! verticalScrollBar.autoHides();
- contentArea = getLocalBounds();
-
- if (contentComp != nullptr && ! contentArea.contains (contentComp->getBounds()))
- {
- hBarVisible = canShowHBar && (hBarVisible || contentComp->getX() < 0 || contentComp->getRight() > contentArea.getWidth());
- vBarVisible = canShowVBar && (vBarVisible || contentComp->getY() < 0 || contentComp->getBottom() > contentArea.getHeight());
-
- if (vBarVisible)
- contentArea.setWidth (getWidth() - scrollbarWidth);
-
- if (hBarVisible)
- contentArea.setHeight (getHeight() - scrollbarWidth);
-
- if (! contentArea.contains (contentComp->getBounds()))
- {
- hBarVisible = canShowHBar && (hBarVisible || contentComp->getRight() > contentArea.getWidth());
- vBarVisible = canShowVBar && (vBarVisible || contentComp->getBottom() > contentArea.getHeight());
- }
- }
-
- if (vBarVisible) contentArea.setWidth (getWidth() - scrollbarWidth);
- if (hBarVisible) contentArea.setHeight (getHeight() - scrollbarWidth);
-
- if (contentComp == nullptr)
- {
- contentHolder.setBounds (contentArea);
- break;
- }
-
- const Rectangle<int> oldContentBounds (contentComp->getBounds());
- contentHolder.setBounds (contentArea);
-
- // If the content has changed its size, that might affect our scrollbars, so go round again and re-caclulate..
- if (oldContentBounds == contentComp->getBounds())
- break;
- }
-
- Rectangle<int> contentBounds;
- if (contentComp != nullptr)
- contentBounds = contentHolder.getLocalArea (contentComp, contentComp->getLocalBounds());
-
- Point<int> visibleOrigin (-contentBounds.getPosition());
-
- horizontalScrollBar.setBounds (0, contentArea.getHeight(), contentArea.getWidth(), scrollbarWidth);
- horizontalScrollBar.setRangeLimits (0.0, contentBounds.getWidth());
- horizontalScrollBar.setCurrentRange (visibleOrigin.x, contentArea.getWidth());
- horizontalScrollBar.setSingleStepSize (singleStepX);
- horizontalScrollBar.cancelPendingUpdate();
-
- if (canShowHBar && ! hBarVisible)
- visibleOrigin.setX (0);
-
- verticalScrollBar.setBounds (contentArea.getWidth(), 0, scrollbarWidth, contentArea.getHeight());
- verticalScrollBar.setRangeLimits (0.0, contentBounds.getHeight());
- verticalScrollBar.setCurrentRange (visibleOrigin.y, contentArea.getHeight());
- verticalScrollBar.setSingleStepSize (singleStepY);
- verticalScrollBar.cancelPendingUpdate();
-
- if (canShowVBar && ! vBarVisible)
- visibleOrigin.setY (0);
-
- // Force the visibility *after* setting the ranges to avoid flicker caused by edge conditions in the numbers.
- horizontalScrollBar.setVisible (hBarVisible);
- verticalScrollBar.setVisible (vBarVisible);
-
- if (contentComp != nullptr)
- {
- const Point<int> newContentCompPos (viewportPosToCompPos (visibleOrigin));
-
- if (contentComp->getBounds().getPosition() != newContentCompPos)
- {
- contentComp->setTopLeftPosition (newContentCompPos); // (this will re-entrantly call updateVisibleArea again)
- return;
- }
- }
-
- const Rectangle<int> visibleArea (visibleOrigin.x, visibleOrigin.y,
- jmin (contentBounds.getWidth() - visibleOrigin.x, contentArea.getWidth()),
- jmin (contentBounds.getHeight() - visibleOrigin.y, contentArea.getHeight()));
-
- if (lastVisibleArea != visibleArea)
- {
- lastVisibleArea = visibleArea;
- visibleAreaChanged (visibleArea);
- }
-
- horizontalScrollBar.handleUpdateNowIfNeeded();
- verticalScrollBar.handleUpdateNowIfNeeded();
- }
-
- //==============================================================================
- void Viewport::setSingleStepSizes (const int stepX, const int stepY)
- {
- if (singleStepX != stepX || singleStepY != stepY)
- {
- singleStepX = stepX;
- singleStepY = stepY;
- updateVisibleArea();
- }
- }
-
- void Viewport::setScrollBarsShown (const bool showVerticalScrollbarIfNeeded,
- const bool showHorizontalScrollbarIfNeeded,
- const bool allowVerticalScrollingWithoutScrollbar,
- const bool allowHorizontalScrollingWithoutScrollbar)
- {
- allowScrollingWithoutScrollbarV = allowVerticalScrollingWithoutScrollbar;
- allowScrollingWithoutScrollbarH = allowHorizontalScrollingWithoutScrollbar;
-
- if (showVScrollbar != showVerticalScrollbarIfNeeded
- || showHScrollbar != showHorizontalScrollbarIfNeeded)
- {
- showVScrollbar = showVerticalScrollbarIfNeeded;
- showHScrollbar = showHorizontalScrollbarIfNeeded;
- updateVisibleArea();
- }
- }
-
- void Viewport::setScrollBarThickness (const int thickness)
- {
- int newThickness;
-
- // To stay compatible with the previous code: use the
- // default thickness if thickness parameter is zero
- // or negative
- if (thickness <= 0)
- {
- customScrollBarThickness = false;
- newThickness = getLookAndFeel().getDefaultScrollbarWidth();
- }
- else
- {
- customScrollBarThickness = true;
- newThickness = thickness;
- }
-
- if (scrollBarThickness != newThickness)
- {
- scrollBarThickness = newThickness;
- updateVisibleArea();
- }
- }
-
- int Viewport::getScrollBarThickness() const
- {
- return scrollBarThickness;
- }
-
- void Viewport::scrollBarMoved (ScrollBar* scrollBarThatHasMoved, double newRangeStart)
- {
- const int newRangeStartInt = roundToInt (newRangeStart);
-
- if (scrollBarThatHasMoved == &horizontalScrollBar)
- {
- setViewPosition (newRangeStartInt, getViewPositionY());
- }
- else if (scrollBarThatHasMoved == &verticalScrollBar)
- {
- setViewPosition (getViewPositionX(), newRangeStartInt);
- }
- }
-
- void Viewport::mouseWheelMove (const MouseEvent& e, const MouseWheelDetails& wheel)
- {
- if (! useMouseWheelMoveIfNeeded (e, wheel))
- Component::mouseWheelMove (e, wheel);
- }
-
- static int rescaleMouseWheelDistance (float distance, int singleStepSize) noexcept
- {
- if (distance == 0)
- return 0;
-
- distance *= 14.0f * singleStepSize;
-
- return roundToInt (distance < 0 ? jmin (distance, -1.0f)
- : jmax (distance, 1.0f));
- }
-
- bool Viewport::useMouseWheelMoveIfNeeded (const MouseEvent& e, const MouseWheelDetails& wheel)
- {
- if (! (e.mods.isAltDown() || e.mods.isCtrlDown() || e.mods.isCommandDown()))
- {
- const bool canScrollVert = (allowScrollingWithoutScrollbarV || verticalScrollBar.isVisible());
- const bool canScrollHorz = (allowScrollingWithoutScrollbarH || horizontalScrollBar.isVisible());
-
- if (canScrollHorz || canScrollVert)
- {
- const int deltaX = rescaleMouseWheelDistance (wheel.deltaX, singleStepX);
- const int deltaY = rescaleMouseWheelDistance (wheel.deltaY, singleStepY);
-
- Point<int> pos (getViewPosition());
-
- if (deltaX != 0 && deltaY != 0 && canScrollHorz && canScrollVert)
- {
- pos.x -= deltaX;
- pos.y -= deltaY;
- }
- else if (canScrollHorz && (deltaX != 0 || e.mods.isShiftDown() || ! canScrollVert))
- {
- pos.x -= deltaX != 0 ? deltaX : deltaY;
- }
- else if (canScrollVert && deltaY != 0)
- {
- pos.y -= deltaY;
- }
-
- if (pos != getViewPosition())
- {
- setViewPosition (pos);
- return true;
- }
- }
- }
-
- return false;
- }
-
- static bool isUpDownKeyPress (const KeyPress& key)
- {
- return key == KeyPress::upKey
- || key == KeyPress::downKey
- || key == KeyPress::pageUpKey
- || key == KeyPress::pageDownKey
- || key == KeyPress::homeKey
- || key == KeyPress::endKey;
- }
-
- static bool isLeftRightKeyPress (const KeyPress& key)
- {
- return key == KeyPress::leftKey
- || key == KeyPress::rightKey;
- }
-
- bool Viewport::keyPressed (const KeyPress& key)
- {
- const bool isUpDownKey = isUpDownKeyPress (key);
-
- if (verticalScrollBar.isVisible() && isUpDownKey)
- return verticalScrollBar.keyPressed (key);
-
- const bool isLeftRightKey = isLeftRightKeyPress (key);
-
- if (horizontalScrollBar.isVisible() && (isUpDownKey || isLeftRightKey))
- return horizontalScrollBar.keyPressed (key);
-
- return false;
- }
-
- bool Viewport::respondsToKey (const KeyPress& key)
- {
- return isUpDownKeyPress (key) || isLeftRightKeyPress (key);
- }
|