comparison dwt/events/ShellListener.d @ 9:ad2b69216039

moved org.eclipse.swt to dwt
author Frank Benoit <benoit@tionex.de>
date Sat, 05 Jan 2008 17:39:49 +0100
parents org/eclipse/swt/events/ShellListener.d@5dfd6e42e2ef
children 63c023465156
comparison
equal deleted inserted replaced
8:a1f832ca7d17 9:ad2b69216039
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 org.eclipse.swt.events.ShellListener;
12
13
14 public import org.eclipse.swt.internal.SWTEventListener;
15 public import org.eclipse.swt.events.ShellEvent;
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 :
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 : SWTEventListener {
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 }