openshot-audio  0.1.7
Public Member Functions | List of all members
juce::ChangeListener Class Referenceabstract

#include <juce_events.h>

Inheritance diagram for juce::ChangeListener:
juce::FileListComponent juce::FileListTreeItem juce::KeyMappingEditorComponent::TopLevelItem juce::PluginListComponent

Public Member Functions

virtual ~ChangeListener ()
 
virtual void changeListenerCallback (ChangeBroadcaster *source)=0
 

Detailed Description

Receives change event callbacks that are sent out by a ChangeBroadcaster.

A ChangeBroadcaster keeps a set of listeners to which it broadcasts a message when the ChangeBroadcaster::sendChangeMessage() method is called. A subclass of ChangeListener is used to receive these callbacks.

Note that the major difference between an ActionListener and a ChangeListener is that for a ChangeListener, multiple changes will be coalesced into fewer callbacks, but ActionListeners perform one callback for every event posted.

See Also
ChangeBroadcaster, ActionListener

Constructor & Destructor Documentation

virtual juce::ChangeListener::~ChangeListener ( )
inlinevirtual

Destructor.

Member Function Documentation

virtual void juce::ChangeListener::changeListenerCallback ( ChangeBroadcaster source)
pure virtual

Your subclass should implement this method to receive the callback.

Parameters
sourcethe ChangeBroadcaster that triggered the callback.

Implemented in juce::KeyMappingEditorComponent::TopLevelItem, and juce::FileListTreeItem.


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