1 /*******************************************************************************
2  * Copyright (c) 2000, 2008 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  * Port to the D programming language:
11  *     Frank Benoit <benoit@tionex.de>
12  *******************************************************************************/
13 module org.eclipse.swt.events.ShellEvent;
14 
15 
16 import org.eclipse.swt.widgets.Event;
17 import org.eclipse.swt.events.TypedEvent;
18 
19 import java.lang.all;
20 
21 /**
22  * Instances of this class are sent as a result of
23  * operations being performed on shells.
24  *
25  * @see ShellListener
26  * @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
27  */
28 
29 public final class ShellEvent : TypedEvent {
30 
31     /**
32      * A flag indicating whether the operation should be allowed.
33      * Setting this field to <code>false</code> will cancel the operation.
34      */
35     public bool doit;
36 
37     //static const long serialVersionUID = 3257569490479888441L;
38 
39 /**
40  * Constructs a new instance of this class based on the
41  * information in the given untyped event.
42  *
43  * @param e the untyped event containing the information
44  */
45 public this(Event e) {
46     super(e);
47     this.doit = e.doit;
48 }
49 
50 /**
51  * Returns a string containing a concise, human-readable
52  * description of the receiver.
53  *
54  * @return a string representation of the event
55  */
56 public override String toString() {
57     return Format( "{} doit={}}", super.toString[ 0 .. $-1 ], doit );
58 }
59 }
60