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

interface XMouseClickHandler
Base Interfaces
::com::sun::star::uno::XInterface
  |  
  +--::com::sun::star::lang::XEventListener
       |  
       +--XMouseClickHandler
::com::sun::star::lang::XEventListener
(referenced interface's summary:)
base interface for all event listeners interfaces.
Description
makes it possible to receive events from the mouse in a certain window.
Since
OpenOffice 1.1.2

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] ::com::sun::star::awt::MouseEvent  e );

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

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