comparison examples/helloworld/HelloWorld2.d @ 78:4a04b6759f98

Clean up directory names
author John Reimer <terminal.node@gmail.com>
date Sat, 10 May 2008 13:32:45 -0700
parents
children eb84f9418bbf
comparison
equal deleted inserted replaced
76:04f122e90b0a 78:4a04b6759f98
1 /*******************************************************************************
2 * Copyright (c) 2000, 2003 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 examples.helloworld.HelloWorld2;
12
13 import dwt.DWT;
14 import dwt.widgets.Display;
15 import dwt.widgets.Label;
16 import dwt.widgets.Shell;
17
18 /*
19 * This example builds on HelloWorld1 and demonstrates the minimum amount
20 * of code required to open an DWT Shell with a Label and process the events.
21 */
22
23 void main(){
24 Display display = new Display ();
25 Shell shell = new Shell (display);
26 Label label = new Label (shell, DWT.CENTER);
27 label.setText ("Hello_world");
28 label.setBounds (shell.getClientArea ());
29 shell.open ();
30 while (!shell.isDisposed ()) {
31 if (!display.readAndDispatch ()) display.sleep ();
32 }
33 display.dispose ();
34 }