|
JUCE-7.0.12-0-g4f43011b96 JUCE-7.0.12-0-g4f43011b96
JUCE — C++ application framework with suport for VST, VST3, LV2 audio plug-ins
« « « Anklang Documentation |
Gets informed about changes to a component's hierarchy or position. More...
#include "juce_ComponentListener.h"
Public Member Functions | |
| virtual | ~ComponentListener ()=default |
| Destructor. | |
| virtual void | componentMovedOrResized (Component &component, bool wasMoved, bool wasResized) |
| Called when the component's position or size changes. | |
| virtual void | componentBroughtToFront (Component &component) |
| Called when the component is brought to the top of the z-order. | |
| virtual void | componentVisibilityChanged (Component &component) |
| Called when the component is made visible or invisible. | |
| virtual void | componentChildrenChanged (Component &component) |
| Called when the component has children added or removed, or their z-order changes. | |
| virtual void | componentParentHierarchyChanged (Component &component) |
| Called to indicate that the component's parents have changed. | |
| virtual void | componentNameChanged (Component &component) |
| Called when the component's name is changed. | |
| virtual void | componentBeingDeleted (Component &component) |
| Called when the component is in the process of being deleted. | |
| virtual void | componentEnablementChanged (Component &component) |
Gets informed about changes to a component's hierarchy or position.
To monitor a component for changes, register a subclass of ComponentListener with the component using Component::addComponentListener().
Be sure to deregister listeners before you delete them!
@tags{GUI}
Definition at line 42 of file juce_ComponentListener.h.
Called when the component is in the process of being deleted.
This callback is made from inside the destructor, so be very, very cautious about what you do in here.
In particular, bear in mind that it's the Component base class's destructor that calls this - so if the object that's being deleted is a subclass of Component, then the subclass layers of the object will already have been destructed when it gets to this point!
| component | the component that was deleted |
Reimplemented in juce::ComponentMovementWatcher, juce::RelativeCoordinatePositionerBase, and juce::ModalComponentManager::ModalItem.
Definition at line 35 of file juce_ComponentListener.cpp.
Called when the component is brought to the top of the z-order.
| component | the component that was moved |
Definition at line 30 of file juce_ComponentListener.cpp.
Called when the component has children added or removed, or their z-order changes.
| component | the component whose children have changed |
Reimplemented in juce::RelativeCoordinatePositionerBase.
Definition at line 32 of file juce_ComponentListener.cpp.
Definition at line 36 of file juce_ComponentListener.cpp.
|
virtual |
Called when the component's position or size changes.
| component | the component that was moved or resized |
| wasMoved | true if the component's top-left corner has just moved |
| wasResized | true if the component's width or height has just changed |
Reimplemented in juce::ModalComponentManager::ModalItem, juce::ComponentMovementWatcher, juce::Viewport, juce::Label, and juce::RelativeCoordinatePositionerBase.
Definition at line 29 of file juce_ComponentListener.cpp.
Called when the component's name is changed.
| component | the component that had its name changed |
Reimplemented in juce::MultiDocumentPanel.
Definition at line 34 of file juce_ComponentListener.cpp.
Called to indicate that the component's parents have changed.
When a component is added or removed from its parent, all of its children will produce this notification (recursively - so all children of its children will also be called as well).
| component | the component that this listener is registered with |
Reimplemented in juce::ComponentMovementWatcher, juce::RelativeCoordinatePositionerBase, juce::Label, juce::VBlankAttachment, juce::DropShadower::VirtualDesktopWatcher, and juce::DropShadower::ParentVisibilityChangedListener.
Definition at line 33 of file juce_ComponentListener.cpp.
Called when the component is made visible or invisible.
| component | the component that changed |
Reimplemented in juce::ModalComponentManager::ModalItem, juce::ComponentMovementWatcher, juce::Label, and juce::DropShadower::ParentVisibilityChangedListener.
Definition at line 31 of file juce_ComponentListener.cpp.