LMMS
Loading...
Searching...
No Matches
juce::ComponentListener Class Reference

#include <juce_ComponentListener.h>

Inheritance diagram for juce::ComponentListener:
juce::AudioProcessorEditor::AudioProcessorEditorListener juce::ComponentMovementWatcher juce::DropShadower juce::DropShadower::ParentVisibilityChangedListener juce::FocusOutline juce::Label juce::MultiDocumentPanel juce::RelativeCoordinatePositionerBase juce::SidePanel juce::Viewport juce::XEmbedComponent::Pimpl

Public Member Functions

virtual ~ComponentListener ()=default
virtual void componentMovedOrResized (Component &component, bool wasMoved, bool wasResized)
virtual void componentBroughtToFront (Component &component)
virtual void componentVisibilityChanged (Component &component)
virtual void componentChildrenChanged (Component &component)
virtual void componentParentHierarchyChanged (Component &component)
virtual void componentNameChanged (Component &component)
virtual void componentBeingDeleted (Component &component)
virtual void componentEnablementChanged (Component &component)

Detailed Description

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!

See also
Component::addComponentListener, Component::removeComponentListener

@tags{GUI}

Constructor & Destructor Documentation

◆ ~ComponentListener()

virtual juce::ComponentListener::~ComponentListener ( )
virtualdefault

Destructor.

Member Function Documentation

◆ componentBeingDeleted()

void juce::ComponentListener::componentBeingDeleted ( Component & component)
virtual

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!

Parameters
componentthe component that was deleted

Reimplemented in juce::ComponentMovementWatcher, juce::ModalComponentManager::ModalItem, and juce::RelativeCoordinatePositionerBase.

◆ componentBroughtToFront()

void juce::ComponentListener::componentBroughtToFront ( Component & component)
virtual

Called when the component is brought to the top of the z-order.

Parameters
componentthe component that was moved
See also
Component::toFront, Component::broughtToFront

Reimplemented in juce::AndroidViewComponent::Pimpl, juce::DropShadower, juce::FocusOutline, and juce::HWNDComponent::Pimpl.

◆ componentChildrenChanged()

void juce::ComponentListener::componentChildrenChanged ( Component & component)
virtual

Called when the component has children added or removed, or their z-order changes.

Parameters
componentthe component whose children have changed
See also
Component::childrenChanged, Component::addChildComponent, Component::removeChildComponent

Reimplemented in juce::DropShadower, and juce::RelativeCoordinatePositionerBase.

◆ componentEnablementChanged()

void juce::ComponentListener::componentEnablementChanged ( Component & component)
virtual

◆ componentMovedOrResized()

void juce::ComponentListener::componentMovedOrResized ( Component & component,
bool wasMoved,
bool wasResized )
virtual

Called when the component's position or size changes.

Parameters
componentthe component that was moved or resized
wasMovedtrue if the component's top-left corner has just moved
wasResizedtrue if the component's width or height has just changed
See also
Component::setBounds, Component::resized, Component::moved

Reimplemented in juce::ActiveXControlComponent::Pimpl, juce::AudioProcessorEditor::AudioProcessorEditorListener, juce::ComponentMovementWatcher, juce::DropShadower, juce::FocusOutline, juce::HWNDComponent::Pimpl, juce::Label, juce::ModalComponentManager::ModalItem, juce::NativeScaleFactorNotifier, juce::RelativeCoordinatePositionerBase, juce::SidePanel, juce::Viewport, juce::Win32WebView::EventHandler, and juce::XEmbedComponent::Pimpl.

◆ componentNameChanged()

void juce::ComponentListener::componentNameChanged ( Component & component)
virtual

Called when the component's name is changed.

Parameters
componentthe component that had its name changed
See also
Component::setName, Component::getName

Reimplemented in juce::MultiDocumentPanel.

◆ componentParentHierarchyChanged()

void juce::ComponentListener::componentParentHierarchyChanged ( Component & component)
virtual

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).

Parameters
componentthe component that this listener is registered with
See also
Component::parentHierarchyChanged

Reimplemented in juce::AudioProcessorEditor::AudioProcessorEditorListener, juce::ComponentMovementWatcher, juce::DropShadower, juce::DropShadower::ParentVisibilityChangedListener, juce::FocusOutline, juce::Label, juce::RelativeCoordinatePositionerBase, and juce::XEmbedComponent::Pimpl.

◆ componentVisibilityChanged()

void juce::ComponentListener::componentVisibilityChanged ( Component & component)
virtual

The documentation for this class was generated from the following files: