A class for receiving events from a ScrollBar. More...
#include <juce_ScrollBar.h>
Public Member Functions | |
virtual | ~Listener ()=default |
Destructor. More... | |
virtual void | scrollBarMoved (ScrollBar *scrollBarThatHasMoved, double newRangeStart)=0 |
Called when a ScrollBar is moved. More... | |
A class for receiving events from a ScrollBar.
You can register a ScrollBar::Listener with a ScrollBar using the ScrollBar::addListener() method, and it will be called when the bar's position changes.
|
virtualdefault |
Destructor.
|
pure virtual |
Called when a ScrollBar is moved.
scrollBarThatHasMoved | the bar that has moved |
newRangeStart | the new range start of this bar |
Implemented in juce::Viewport.