comparison dwt/events/ShellListener.d @ 0:380af2bdd8e5

Upload of whole dwt tree
author Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
date Sat, 09 Aug 2008 17:00:02 +0200
parents
children 649b8e223d5a
comparison
equal deleted inserted replaced
-1:000000000000 0:380af2bdd8e5
1 /*******************************************************************************
2 * Copyright (c) 2000, 2005 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * IBM Corporation - initial API and implementation
10 *******************************************************************************/
11 module dwt.events.ShellListener;
12
13 import dwt.dwthelper.utils;
14
15 import dwt.internal.DWTEventListener;
16
17 /**
18 * Classes which implement this interface provide methods
19 * that deal with changes in state of <code>Shell</code>s.
20 * <p>
21 * After creating an instance of a class that implements
22 * this interface it can be added to a shell using the
23 * <code>addShellListener</code> method and removed using
24 * the <code>removeShellListener</code> method. When the
25 * state of the shell changes, the appropriate method will
26 * be invoked.
27 * </p>
28 *
29 * @see ShellAdapter
30 * @see ShellEvent
31 */
32 public interface ShellListener extends DWTEventListener {
33
34 /**
35 * Sent when a shell becomes the active window.
36 *
37 * @param e an event containing information about the activation
38 */
39 public void shellActivated(ShellEvent e);
40
41 /**
42 * Sent when a shell is closed.
43 *
44 * @param e an event containing information about the close
45 */
46 public void shellClosed(ShellEvent e);
47
48 /**
49 * Sent when a shell stops being the active window.
50 *
51 * @param e an event containing information about the deactivation
52 */
53 public void shellDeactivated(ShellEvent e);
54
55 /**
56 * Sent when a shell is un-minimized.
57 *
58 * @param e an event containing information about the un-minimization
59 */
60 public void shellDeiconified(ShellEvent e);
61
62 /**
63 * Sent when a shell is minimized.
64 *
65 * @param e an event containing information about the minimization
66 */
67 public void shellIconified(ShellEvent e);
68 }