JUCE
|
A MouseListener can be registered with a component to receive callbacks about mouse events that happen to that component. More...
Public Member Functions | |
virtual | ~MouseListener ()=default |
Destructor. More... | |
virtual void | mouseMove (const MouseEvent &event) |
Called when the mouse moves inside a component. More... | |
virtual void | mouseEnter (const MouseEvent &event) |
Called when the mouse first enters a component. More... | |
virtual void | mouseExit (const MouseEvent &event) |
Called when the mouse moves out of a component. More... | |
virtual void | mouseDown (const MouseEvent &event) |
Called when a mouse button is pressed. More... | |
virtual void | mouseDrag (const MouseEvent &event) |
Called when the mouse is moved while a button is held down. More... | |
virtual void | mouseUp (const MouseEvent &event) |
Called when a mouse button is released. More... | |
virtual void | mouseDoubleClick (const MouseEvent &event) |
Called when a mouse button has been double-clicked on a component. More... | |
virtual void | mouseWheelMove (const MouseEvent &event, const MouseWheelDetails &wheel) |
Called when the mouse-wheel is moved. More... | |
virtual void | mouseMagnify (const MouseEvent &event, float scaleFactor) |
Called when a pinch-to-zoom mouse-gesture is used. More... | |
A MouseListener can be registered with a component to receive callbacks about mouse events that happen to that component.
|
virtualdefault |
Destructor.
|
virtual |
Called when the mouse moves inside a component.
If the mouse button isn't pressed and the mouse moves over a component, this will be called to let the component react to this.
A component will always get a mouseEnter callback before a mouseMove.
event | details about the position and status of the mouse event, including the source component in which it occurred |
Reimplemented in Component, Slider, TableHeaderComponent, MidiKeyboardComponent, ResizableBorderComponent, and MenuBarComponent.
Referenced by Component::getComponentEffect().
|
virtual |
Called when the mouse first enters a component.
If the mouse button isn't pressed and the mouse moves into a component, this will be called to let the component react to this.
When the mouse button is pressed and held down while being moved in or out of a component, no mouseEnter or mouseExit callbacks are made - only mouseDrag messages are sent to the component that the mouse was originally clicked on, until the button is released.
event | details about the position and status of the mouse event, including the source component in which it occurred |
Reimplemented in Component, Slider, Button, TableHeaderComponent, MidiKeyboardComponent, ResizableBorderComponent, and MenuBarComponent.
Referenced by Component::getComponentEffect().
|
virtual |
Called when the mouse moves out of a component.
This will be called when the mouse moves off the edge of this component.
If the mouse button was pressed, and it was then dragged off the edge of the component and released, then this callback will happen when the button is released, after the mouseUp callback.
event | details about the position and status of the mouse event, including the source component in which it occurred |
Reimplemented in Component, Slider, Button, TableHeaderComponent, MidiKeyboardComponent, and MenuBarComponent.
Referenced by Component::getComponentEffect().
|
virtual |
Called when a mouse button is pressed.
The MouseEvent object passed in contains lots of methods for finding out which button was pressed, as well as which modifier keys (e.g. shift, ctrl) were held down at the time.
Once a button is held down, the mouseDrag method will be called when the mouse moves, until the button is released.
event | details about the position and status of the mouse event, including the source component in which it occurred |
Reimplemented in Component, Slider, TextEditor, Button, AlertWindow, TableHeaderComponent, ScrollBar, ComboBox, CodeEditorComponent, ResizableWindow, MidiKeyboardComponent, Toolbar, ResizableBorderComponent, StretchableLayoutResizerBar, ResizableEdgeComponent, MenuBarComponent, and ResizableCornerComponent.
Referenced by Component::getComponentEffect().
|
virtual |
Called when the mouse is moved while a button is held down.
When a mouse button is pressed inside a component, that component receives mouseDrag callbacks each time the mouse moves, even if the mouse strays outside the component's bounds.
event | details about the position and status of the mouse event, including the source component in which it occurred |
Reimplemented in Component, Slider, TextEditor, Button, AlertWindow, TableHeaderComponent, ScrollBar, ComboBox, CodeEditorComponent, ResizableWindow, MidiKeyboardComponent, ResizableBorderComponent, SidePanel, StretchableLayoutResizerBar, ResizableEdgeComponent, MenuBarComponent, and ResizableCornerComponent.
Referenced by Component::getComponentEffect().
|
virtual |
Called when a mouse button is released.
A mouseUp callback is sent to the component in which a button was pressed even if the mouse is actually over a different component when the button is released.
The MouseEvent object passed in contains lots of methods for finding out which buttons were down just before they were released.
event | details about the position and status of the mouse event, including the source component in which it occurred |
Reimplemented in Component, Slider, TextEditor, ListBox, Button, TableHeaderComponent, ScrollBar, ComboBox, CodeEditorComponent, ResizableWindow, Label, MidiKeyboardComponent, ResizableBorderComponent, SidePanel, ResizableEdgeComponent, MenuBarComponent, and ResizableCornerComponent.
Referenced by Component::getComponentEffect().
|
virtual |
Called when a mouse button has been double-clicked on a component.
The MouseEvent object passed in contains lots of methods for finding out which button was pressed, as well as which modifier keys (e.g. shift, ctrl) were held down at the time.
event | details about the position and status of the mouse event, including the source component in which it occurred |
Reimplemented in Component, Slider, TextEditor, CodeEditorComponent, and Label.
Referenced by Component::getComponentEffect().
|
virtual |
Called when the mouse-wheel is moved.
This callback is sent to the component that the mouse is over when the wheel is moved.
If not overridden, a component will forward this message to its parent, so that parent components can collect mouse-wheel messages that happen to child components which aren't interested in them.
event | details about the mouse event |
wheel | details about the wheel movement |
Reimplemented in Component, Slider, TextEditor, ListBox, ComboBox, ScrollBar, CodeEditorComponent, MidiKeyboardComponent, and Viewport.
Referenced by Component::getComponentEffect().
|
virtual |
Called when a pinch-to-zoom mouse-gesture is used.
If not overridden, a component will forward this message to its parent, so that parent components can collect gesture messages that are unused by child components.
event | details about the mouse event |
scaleFactor | a multiplier to indicate by how much the size of the target should be changed. A value of 1.0 would indicate no change, values greater than 1.0 mean it should be enlarged. |
Reimplemented in Component.
Referenced by Component::getComponentEffect().