LibreOffice
LibreOffice 24.2 SDK API Reference
|
makes it possible to receive mouse motion events on a window. More...
import"XMouseMotionHandler.idl";
Public Member Functions | |
boolean | mouseDragged ([in] com::sun::star::awt::MouseEvent e) |
is invoked when a mouse button is pressed on a window and then dragged. More... | |
boolean | mouseMoved ([in] com::sun::star::awt::MouseEvent e) |
is invoked when the mouse button has been moved on a window (with no buttons down). More... | |
Public Member Functions inherited from XEventListener | |
void | disposing ([in] com::sun::star::lang::EventObject Source) |
gets called when the broadcaster is about to be disposed. More... | |
Public Member Functions inherited from XInterface | |
any | queryInterface ([in] type aType) |
queries for a new interface to an existing UNO object. More... | |
void | acquire () |
increases the reference counter by one. More... | |
void | release () |
decreases the reference counter by one. More... | |
makes it possible to receive mouse motion events on a window.
boolean mouseDragged | ( | [in] com::sun::star::awt::MouseEvent | e | ) |
is invoked when a mouse button is pressed on a window and then dragged.
Mouse drag events will continue to be delivered to the window where the first event originated until the mouse button is released (regardless of whether the mouse position is within the bounds of the window).
FALSE
is returned the other handlers are called and a following handling of the event by the broadcaster takes place. Otherwise, when TRUE
is returned, no other handler will be called and the broadcaster will take no further actions regarding the event. boolean mouseMoved | ( | [in] com::sun::star::awt::MouseEvent | e | ) |
is invoked when the mouse button has been moved on a window (with no buttons down).
FALSE
is returned the other handlers are called and a following handling of the event by the broadcaster takes place. Otherwise, when TRUE
is returned, no other handler will be called and the broadcaster will take no further actions regarding the event.