:: com :: sun :: star :: awt ::

interface XMouseClickHandler
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-::com::sun::star::lang::XEventListener
    |
    +-XMouseClickHandler
Description
makes it possible to receive events from the mouse in a certain window.
Since version
OpenOffice.org 1.1

Methods' Summary
mousePressed is invoked when a mouse button has been pressed on a window.
mouseReleased is invoked when a mouse button has been released on a window.
Methods' Details
mousePressed
boolean
mousePressed(
 
[in] MouseEvent
 
e );

Description
is invoked when a mouse button has been pressed on a window.
mouseReleased
boolean
mouseReleased(
 
[in] MouseEvent
 
e );

Description
is invoked when a mouse button has been released on a window.
Top of Page