ShellAdapter

This adapter class provides default implementations for the methods described by the <code>ShellListener</code> interface. <p> Classes that wish to deal with <code>ShellEvent</code>s can extend this class and override only the methods which they are interested in. </p>

@see ShellListener @see ShellEvent @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>

Members

Functions

shellActivated
void shellActivated(ShellEvent e)

Sent when a shell becomes the active window. The default behavior is to do nothing.

shellClosed
void shellClosed(ShellEvent e)

Sent when a shell is closed. The default behavior is to do nothing.

shellDeactivated
void shellDeactivated(ShellEvent e)

Sent when a shell stops being the active window. The default behavior is to do nothing.

shellDeiconified
void shellDeiconified(ShellEvent e)

Sent when a shell is un-minimized. The default behavior is to do nothing.

shellIconified
void shellIconified(ShellEvent e)

Sent when a shell is minimized. The default behavior is to do nothing.

Inherited Members

From ShellListener

shellActivated
void shellActivated(ShellEvent e)

Sent when a shell becomes the active window.

shellClosed
void shellClosed(ShellEvent e)

Sent when a shell is closed.

shellDeactivated
void shellDeactivated(ShellEvent e)

Sent when a shell stops being the active window.

shellDeiconified
void shellDeiconified(ShellEvent e)

Sent when a shell is un-minimized.

shellIconified
void shellIconified(ShellEvent e)

Sent when a shell is minimized.

Meta