openshot-audio
0.1.5
|
#include <juce_gui_basics.h>
Classes | |
class | ComponentScope |
class | DependencyFinderScope |
Protected Member Functions | |
virtual bool | registerCoordinates ()=0 |
virtual void | applyToComponentBounds ()=0 |
Friends | |
class | DependencyFinderScope |
Base class for Component::Positioners that are based upon relative coordinates.
RelativeCoordinatePositionerBase::RelativeCoordinatePositionerBase | ( | Component & | component | ) |
RelativeCoordinatePositionerBase::~RelativeCoordinatePositionerBase | ( | ) |
bool RelativeCoordinatePositionerBase::addCoordinate | ( | const RelativeCoordinate & | coord | ) |
bool RelativeCoordinatePositionerBase::addPoint | ( | const RelativePoint & | point | ) |
void RelativeCoordinatePositionerBase::apply | ( | ) |
|
protectedpure virtual |
|
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!
Reimplemented from juce::ComponentListener.
|
virtual |
Called when the component has children added or removed, or their z-order changes.
component | the component whose children have changed |
Reimplemented from juce::ComponentListener.
|
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 from juce::ComponentListener.
|
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).
component | the component that this listener is registered with |
Reimplemented from juce::ComponentListener.
|
virtual |
Called when the given marker list is being deleted.
Reimplemented from juce::MarkerList::Listener.
|
virtual |
Called when something in the given marker list changes.
Implements juce::MarkerList::Listener.
|
protectedpure virtual |
|
friend |