com.maxistech.desktopex
Interface SystemTrayListener

All Known Implementing Classes:
SystemTrayAdapter

public interface SystemTrayListener

The listener interface for receiving events from system tray when mouse cursor is over or a mouse button is clicked on a system tray.

The class that is interested in processing a system tray event either implements this interface (and all the methods it contains) or extends the abstract SystemTrayAdapter class (overriding only the methods of interest).

The listener object created from that class is then registered with SystemTray.addSystemTrayListener(com.maxistech.desktopex.SystemTrayListener) method.


Method Summary
 void mouseDblClicked(SystemTrayEvent e)
          Invoked when a mouse button has been double-clicked on a system tray.
 void mouseMoved(SystemTrayEvent e)
          Invoked when a mouse cursor has been moved on a system tray (with no buttons down).
 void mousePressed(SystemTrayEvent e)
          Invoked when a mouse button has been pressed on a system tray.
 void mouseReleased(SystemTrayEvent e)
          Invoked when a mouse button has been released on a system tray.
 

Method Detail

mousePressed

public void mousePressed(SystemTrayEvent e)
Invoked when a mouse button has been pressed on a system tray.


mouseReleased

public void mouseReleased(SystemTrayEvent e)
Invoked when a mouse button has been released on a system tray.


mouseDblClicked

public void mouseDblClicked(SystemTrayEvent e)
Invoked when a mouse button has been double-clicked on a system tray.


mouseMoved

public void mouseMoved(SystemTrayEvent e)
Invoked when a mouse cursor has been moved on a system tray (with no buttons down).



Copyright (c) 2001-2002 mAxis Technology Company. All Rights Reserved.