comparison org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/events/ShellEvent.d @ 0:6dd524f61e62

add dwt win and basic java stuff
author Frank Benoit <benoit@tionex.de>
date Mon, 02 Mar 2009 14:44:16 +0100
parents
children 6bf2837c50fe
comparison
equal deleted inserted replaced
-1:000000000000 0:6dd524f61e62
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 tango.text.convert.Format;
20 import java.lang.all;
21
22 /**
23 * Instances of this class are sent as a result of
24 * operations being performed on shells.
25 *
26 * @see ShellListener
27 * @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
28 */
29
30 public final class ShellEvent : TypedEvent {
31
32 /**
33 * A flag indicating whether the operation should be allowed.
34 * Setting this field to <code>false</code> will cancel the operation.
35 */
36 public bool doit;
37
38 //static final long serialVersionUID = 3257569490479888441L;
39
40 /**
41 * Constructs a new instance of this class based on the
42 * information in the given untyped event.
43 *
44 * @param e the untyped event containing the information
45 */
46 public this(Event e) {
47 super(e);
48 this.doit = e.doit;
49 }
50
51 /**
52 * Returns a string containing a concise, human-readable
53 * description of the receiver.
54 *
55 * @return a string representation of the event
56 */
57 public override String toString() {
58 return Format( "{} doit={}}", super.toString[ 0 .. $-2 ], doit );
59 }
60 }
61