comparison snippets/spinner/Snippet184.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 1f0a7a472680
comparison
equal deleted inserted replaced
76:04f122e90b0a 78:4a04b6759f98
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 * Port to the D programming language:
11 * Bill Baxter <bill@billbaxter.com>
12 *******************************************************************************/
13 module snippets.spinner.Snippet184;
14
15 /*
16 * Spinner example snippet: create and initialize a spinner widget
17 *
18 * For a list of all DWT example snippets see
19 * http://www.eclipse.org/swt/snippets/
20 *
21 * @since 3.1
22 */
23 import dwt.DWT;
24 import dwt.widgets.Display;
25 import dwt.widgets.Shell;
26 import dwt.widgets.Spinner;
27
28 void main() {
29 Display display = new Display();
30 Shell shell = new Shell(display);
31 Spinner spinner = new Spinner (shell, DWT.BORDER);
32 spinner.setMinimum(0);
33 spinner.setMaximum(1000);
34 spinner.setSelection(500);
35 spinner.setIncrement(1);
36 spinner.setPageIncrement(100);
37 spinner.pack();
38 shell.pack();
39 shell.open();
40 while (!shell.isDisposed()) {
41 if (!display.readAndDispatch())
42 display.sleep();
43 }
44 display.dispose();
45 }
46