JUCE  v6.1.6 (6.0.8-1114)
JUCE API
Looking for a senior C++ dev?
I'm looking for work. Hire me!
juce::AudioProcessorEditor::AudioProcessorEditorListener Struct Reference
Inheritance diagram for juce::AudioProcessorEditor::AudioProcessorEditorListener:
Collaboration diagram for juce::AudioProcessorEditor::AudioProcessorEditorListener:

Public Member Functions

 AudioProcessorEditorListener (AudioProcessorEditor &e)
 
virtual void componentBeingDeleted (Component &component)
 Called when the component is in the process of being deleted. More...
 
virtual void componentBroughtToFront (Component &component)
 Called when the component is brought to the top of the z-order. More...
 
virtual void componentChildrenChanged (Component &component)
 Called when the component has children added or removed, or their z-order changes. More...
 
virtual void componentEnablementChanged (Component &component)
 
void componentMovedOrResized (Component &, bool, bool wasResized) override
 Called when the component's position or size changes. More...
 
virtual void componentNameChanged (Component &component)
 Called when the component's name is changed. More...
 
void componentParentHierarchyChanged (Component &) override
 Called to indicate that the component's parents have changed. More...
 
virtual void componentVisibilityChanged (Component &component)
 Called when the component is made visible or invisible. More...
 

Public Attributes

AudioProcessorEditored
 

Constructor & Destructor Documentation

◆ AudioProcessorEditorListener()

juce::AudioProcessorEditor::AudioProcessorEditorListener::AudioProcessorEditorListener ( AudioProcessorEditor e)
inline

Member Function Documentation

◆ componentBeingDeleted()

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

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, and juce::RelativeCoordinatePositionerBase.

◆ componentBroughtToFront()

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

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::FocusOutline, and juce::DropShadower.

◆ componentChildrenChanged()

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

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

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

◆ componentMovedOrResized()

void juce::AudioProcessorEditor::AudioProcessorEditorListener::componentMovedOrResized ( Component component,
bool  wasMoved,
bool  wasResized 
)
inlineoverridevirtual

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 from juce::ComponentListener.

◆ componentNameChanged()

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

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::AudioProcessorEditor::AudioProcessorEditorListener::componentParentHierarchyChanged ( Component component)
inlineoverridevirtual

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 from juce::ComponentListener.

◆ componentVisibilityChanged()

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

Called when the component is made visible or invisible.

Parameters
componentthe component that changed
See also
Component::setVisible

Reimplemented in juce::Label, juce::FocusOutline, juce::ComponentMovementWatcher, and juce::DropShadower.

Member Data Documentation

◆ ed

AudioProcessorEditor& juce::AudioProcessorEditor::AudioProcessorEditorListener::ed

The documentation for this struct was generated from the following file: