Inheritance diagram for ChangeListener:

Many objects use a ChangeListenerList to keep a set of listeners which they will inform when something changes. 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.
Public Member Functions | |
| virtual | ~ChangeListener () |
| Destructor. | |
| virtual void | changeListenerCallback (void *objectThatHasChanged)=0 |
| Overridden by your subclass to receive the callback. | |
|
|
Destructor.
|
|
|
Overridden by your subclass to receive the callback.
Implemented in PluginListComponent, FileListComponent, KeyMappingEditorComponent, and AudioDeviceSelectorComponent. |