mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-09 23:34:20 +00:00
194 lines
5.5 KiB
C++
194 lines
5.5 KiB
C++
/*
|
|
==============================================================================
|
|
|
|
This file is part of the JUCE framework.
|
|
Copyright (c) Raw Material Software Limited
|
|
|
|
JUCE is an open source framework subject to commercial or open source
|
|
licensing.
|
|
|
|
By downloading, installing, or using the JUCE framework, or combining the
|
|
JUCE framework with any other source code, object code, content or any other
|
|
copyrightable work, you agree to the terms of the JUCE End User Licence
|
|
Agreement, and all incorporated terms including the JUCE Privacy Policy and
|
|
the JUCE Website Terms of Service, as applicable, which will bind you. If you
|
|
do not agree to the terms of these agreements, we will not license the JUCE
|
|
framework to you, and you must discontinue the installation or download
|
|
process and cease use of the JUCE framework.
|
|
|
|
JUCE End User Licence Agreement: https://juce.com/legal/juce-8-licence/
|
|
JUCE Privacy Policy: https://juce.com/juce-privacy-policy
|
|
JUCE Website Terms of Service: https://juce.com/juce-website-terms-of-service/
|
|
|
|
Or:
|
|
|
|
You may also use this code under the terms of the AGPLv3:
|
|
https://www.gnu.org/licenses/agpl-3.0.en.html
|
|
|
|
THE JUCE FRAMEWORK IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL
|
|
WARRANTIES, WHETHER EXPRESSED OR IMPLIED, INCLUDING WARRANTY OF
|
|
MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, ARE DISCLAIMED.
|
|
|
|
==============================================================================
|
|
*/
|
|
|
|
namespace juce
|
|
{
|
|
|
|
//==============================================================================
|
|
struct OutlineWindowComponent final : public Component
|
|
{
|
|
OutlineWindowComponent (Component* c, FocusOutline::OutlineWindowProperties& p)
|
|
: target (c), props (p)
|
|
{
|
|
setVisible (true);
|
|
setInterceptsMouseClicks (false, false);
|
|
|
|
if (target->isOnDesktop())
|
|
{
|
|
setSize (1, 1);
|
|
addToDesktop (ComponentPeer::windowIgnoresMouseClicks
|
|
| ComponentPeer::windowIsTemporary
|
|
| ComponentPeer::windowIgnoresKeyPresses);
|
|
}
|
|
else if (auto* parent = target->getParentComponent())
|
|
{
|
|
auto targetIndex = parent->getIndexOfChildComponent (target);
|
|
parent->addChildComponent (this, targetIndex + 1);
|
|
}
|
|
}
|
|
|
|
void paint (Graphics& g) override
|
|
{
|
|
if (target != nullptr)
|
|
props.drawOutline (g, getWidth(), getHeight());
|
|
}
|
|
|
|
void resized() override
|
|
{
|
|
repaint();
|
|
}
|
|
|
|
float getDesktopScaleFactor() const override
|
|
{
|
|
return target != nullptr ? target->getDesktopScaleFactor()
|
|
: Component::getDesktopScaleFactor();
|
|
}
|
|
|
|
private:
|
|
WeakReference<Component> target;
|
|
FocusOutline::OutlineWindowProperties& props;
|
|
|
|
JUCE_DECLARE_NON_COPYABLE (OutlineWindowComponent)
|
|
};
|
|
|
|
//==============================================================================
|
|
FocusOutline::FocusOutline (std::unique_ptr<OutlineWindowProperties> props)
|
|
: properties (std::move (props))
|
|
{
|
|
}
|
|
|
|
FocusOutline::~FocusOutline()
|
|
{
|
|
if (owner != nullptr)
|
|
owner->removeComponentListener (this);
|
|
|
|
if (lastParentComp != nullptr)
|
|
lastParentComp->removeComponentListener (this);
|
|
}
|
|
|
|
void FocusOutline::setOwner (Component* componentToFollow)
|
|
{
|
|
if (componentToFollow != owner)
|
|
{
|
|
if (owner != nullptr)
|
|
owner->removeComponentListener (this);
|
|
|
|
owner = componentToFollow;
|
|
|
|
if (owner != nullptr)
|
|
owner->addComponentListener (this);
|
|
|
|
updateParent();
|
|
updateOutlineWindow();
|
|
}
|
|
}
|
|
|
|
void FocusOutline::componentMovedOrResized (Component& c, bool, bool)
|
|
{
|
|
if (owner == &c)
|
|
updateOutlineWindow();
|
|
}
|
|
|
|
void FocusOutline::componentBroughtToFront (Component& c)
|
|
{
|
|
if (owner == &c)
|
|
updateOutlineWindow();
|
|
}
|
|
|
|
void FocusOutline::componentParentHierarchyChanged (Component& c)
|
|
{
|
|
if (owner == &c)
|
|
{
|
|
updateParent();
|
|
updateOutlineWindow();
|
|
}
|
|
}
|
|
|
|
void FocusOutline::componentVisibilityChanged (Component& c)
|
|
{
|
|
if (owner == &c)
|
|
updateOutlineWindow();
|
|
}
|
|
|
|
void FocusOutline::updateParent()
|
|
{
|
|
lastParentComp = (owner != nullptr ? owner->getParentComponent()
|
|
: nullptr);
|
|
}
|
|
|
|
void FocusOutline::updateOutlineWindow()
|
|
{
|
|
if (reentrant)
|
|
return;
|
|
|
|
const ScopedValueSetter<bool> setter (reentrant, true);
|
|
|
|
if (owner == nullptr)
|
|
{
|
|
outlineWindow = nullptr;
|
|
return;
|
|
}
|
|
|
|
if (owner->isShowing()
|
|
&& owner->getWidth() > 0 && owner->getHeight() > 0)
|
|
{
|
|
if (outlineWindow == nullptr)
|
|
outlineWindow = std::make_unique<OutlineWindowComponent> (owner, *properties);
|
|
|
|
WeakReference<Component> deletionChecker (outlineWindow.get());
|
|
|
|
outlineWindow->setAlwaysOnTop (owner->isAlwaysOnTop());
|
|
|
|
if (deletionChecker == nullptr)
|
|
return;
|
|
|
|
const auto windowBounds = [this]
|
|
{
|
|
const auto bounds = properties->getOutlineBounds (*owner);
|
|
|
|
if (lastParentComp != nullptr)
|
|
return lastParentComp->getLocalArea (nullptr, bounds);
|
|
|
|
return bounds;
|
|
}();
|
|
|
|
outlineWindow->setBounds (windowBounds);
|
|
}
|
|
else
|
|
{
|
|
outlineWindow = nullptr;
|
|
}
|
|
}
|
|
|
|
} // namespace juce
|