JUCE
|
Holds a list of ChangeListeners, and sends messages to them when instructed. More...
Public Member Functions | |
ChangeBroadcaster () noexcept | |
Creates an ChangeBroadcaster. More... | |
virtual | ~ChangeBroadcaster () |
Destructor. More... | |
void | addChangeListener (ChangeListener *listener) |
Registers a listener to receive change callbacks from this broadcaster. More... | |
void | removeChangeListener (ChangeListener *listener) |
Unregisters a listener from the list. More... | |
void | removeAllChangeListeners () |
Removes all listeners from the list. More... | |
void | sendChangeMessage () |
Causes an asynchronous change message to be sent to all the registered listeners. More... | |
void | sendSynchronousChangeMessage () |
Sends a synchronous change message to all the registered listeners. More... | |
void | dispatchPendingMessages () |
If a change message has been sent but not yet dispatched, this will call sendSynchronousChangeMessage() to make the callback immediately. More... | |
Holds a list of ChangeListeners, and sends messages to them when instructed.
|
noexcept |
Creates an ChangeBroadcaster.
|
virtual |
Destructor.
void ChangeBroadcaster::addChangeListener | ( | ChangeListener * | listener | ) |
Registers a listener to receive change callbacks from this broadcaster.
Trying to add a listener that's already on the list will have no effect.
void ChangeBroadcaster::removeChangeListener | ( | ChangeListener * | listener | ) |
Unregisters a listener from the list.
If the listener isn't on the list, this won't have any effect.
void ChangeBroadcaster::removeAllChangeListeners | ( | ) |
Removes all listeners from the list.
void ChangeBroadcaster::sendChangeMessage | ( | ) |
Causes an asynchronous change message to be sent to all the registered listeners.
The message will be delivered asynchronously by the main message thread, so this method will return immediately. To call the listeners synchronously use sendSynchronousChangeMessage().
Referenced by SelectedItemSet< SelectableItemType >::changed().
void ChangeBroadcaster::sendSynchronousChangeMessage | ( | ) |
Sends a synchronous change message to all the registered listeners.
This will immediately call all the listeners that are registered. For thread-safety reasons, you must only call this method on the main message thread.
Referenced by SelectedItemSet< SelectableItemType >::changed().
void ChangeBroadcaster::dispatchPendingMessages | ( | ) |
If a change message has been sent but not yet dispatched, this will call sendSynchronousChangeMessage() to make the callback immediately.
For thread-safety reasons, you must only call this method on the main message thread.