JUCE
Public Member Functions | List of all members
ComponentMovementWatcher Class Referenceabstract

An object that watches for any movement of a component or any of its parent components. More...

+ Inheritance diagram for ComponentMovementWatcher:

Public Member Functions

 ComponentMovementWatcher (Component *component)
 Creates a ComponentMovementWatcher to watch a given target component. More...
 
 ~ComponentMovementWatcher ()
 Destructor. More...
 
virtual void componentMovedOrResized (bool wasMoved, bool wasResized)=0
 This callback happens when the component that is being watched is moved relative to its top-level peer window, or when it is resized. More...
 
virtual void componentPeerChanged ()=0
 This callback happens when the component's top-level peer is changed. More...
 
virtual void componentVisibilityChanged ()=0
 This callback happens when the component's visibility state changes, possibly due to one of its parents being made visible or invisible. More...
 
ComponentgetComponent () const noexcept
 Returns the component that's being watched. More...
 
void componentParentHierarchyChanged (Component &) override
 
void componentMovedOrResized (Component &, bool wasMoved, bool wasResized) override
 
void componentBeingDeleted (Component &) override
 
void componentVisibilityChanged (Component &) override
 
- Public Member Functions inherited from ComponentListener
virtual ~ComponentListener ()
 Destructor. 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 componentNameChanged (Component &component)
 Called when the component's name is changed. More...
 

Detailed Description

An object that watches for any movement of a component or any of its parent components.

This makes it easy to check when a component is moved relative to its top-level peer window. The normal Component::moved() method is only called when a component moves relative to its immediate parent, and sometimes you want to know if any of components higher up the tree have moved (which of course will affect the overall position of all their sub-components).

It also includes a callback that lets you know when the top-level peer is changed.

This class is used by specialised components like WebBrowserComponent or QuickTimeComponent because they need to keep their custom windows in the right place and respond to changes in the peer.

Constructor & Destructor Documentation

ComponentMovementWatcher::ComponentMovementWatcher ( Component component)

Creates a ComponentMovementWatcher to watch a given target component.

ComponentMovementWatcher::~ComponentMovementWatcher ( )

Destructor.

Member Function Documentation

virtual void ComponentMovementWatcher::componentMovedOrResized ( bool  wasMoved,
bool  wasResized 
)
pure virtual

This callback happens when the component that is being watched is moved relative to its top-level peer window, or when it is resized.

virtual void ComponentMovementWatcher::componentPeerChanged ( )
pure virtual

This callback happens when the component's top-level peer is changed.

virtual void ComponentMovementWatcher::componentVisibilityChanged ( )
pure virtual

This callback happens when the component's visibility state changes, possibly due to one of its parents being made visible or invisible.

Component* ComponentMovementWatcher::getComponent ( ) const
noexcept
void ComponentMovementWatcher::componentParentHierarchyChanged ( Component )
overridevirtual

Reimplemented from ComponentListener.

void ComponentMovementWatcher::componentMovedOrResized ( Component ,
bool  wasMoved,
bool  wasResized 
)
overridevirtual

Reimplemented from ComponentListener.

void ComponentMovementWatcher::componentBeingDeleted ( Component )
overridevirtual

Reimplemented from ComponentListener.

void ComponentMovementWatcher::componentVisibilityChanged ( Component )
overridevirtual

Reimplemented from ComponentListener.


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