Top   Module   Use   Manual   Index 
 EXPORTING SERVICES | METHODS' SUMMARY | METHODS' DETAILS 

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

interface XMouseListener

Base Interface
com::sun::star::lang::XEventListener

Description
makes it possible to receive events from the mouse in a certain window.


Methods' Summary

mousePressed gets invoked when a mouse button has been pressed on a window.
mouseReleased gets invoked when a mouse button has been released on a window.
mouseEntered gets invoked when the mouse enters a window.
mouseExited gets invoked when the mouse exits a window.

Methods' Details

mousePressed
 
[ oneway ] void
mousePressed(
[ in ] com::sun::star::awt::MouseEvent e );

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

Description
gets invoked when a mouse button has been released on a window.
mouseEntered
 
[ oneway ] void
mouseEntered(
[ in ] com::sun::star::awt::MouseEvent e );

Description
gets invoked when the mouse enters a window.
mouseExited
 
[ oneway ] void
mouseExited(
[ in ] com::sun::star::awt::MouseEvent e );

Description
gets invoked when the mouse exits a window.

Top of Page