comparison org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet39.d @ 28:69b1fa94a4a8

Added SWT snippets
author Frank Benoit <benoit@tionex.de>
date Sun, 22 Mar 2009 15:17:04 +0100
parents
children 4e5843b771cc
comparison
equal deleted inserted replaced
27:1bf55a6eb092 28:69b1fa94a4a8
1 /*******************************************************************************
2 * Copyright (c) 2000, 2004 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 * D Port:
11 * Thomas Demmer <t_demmer AT web DOT de>
12 *******************************************************************************/
13 module org.eclipse.swt.snippets.Snippet39;
14
15 /*
16 * CCombo example snippet: create a CCombo
17 *
18 * For a list of all SWT example snippets see
19 * http://www.eclipse.org/swt/snippets/
20 */
21 import org.eclipse.swt.SWT;
22 import org.eclipse.swt.custom.CCombo;
23 import org.eclipse.swt.events.SelectionAdapter;
24 import org.eclipse.swt.events.SelectionListener;
25 import org.eclipse.swt.layout.GridData;
26 import org.eclipse.swt.layout.GridLayout;
27 import org.eclipse.swt.widgets.Display;
28 import org.eclipse.swt.widgets.Shell;
29
30 import java.lang.all;
31 import tango.util.Convert;
32 import tango.io.Stdout;
33 public static void main(String[] args) {
34 Display display = new Display();
35 Shell shell = new Shell(display);
36 shell.setLayout(new GridLayout());
37
38 CCombo combo = new CCombo(shell, SWT.FLAT | DWT.BORDER);
39 combo.setLayoutData(new GridData(SWT.FILL, DWT.CENTER, true, false));
40 for (int i = 0; i < 5; i++) {
41 combo.add("item" ~ to!(char[])(i));
42 }
43 combo.setText("item0");
44
45 combo.addSelectionListener(new class() SelectionAdapter {
46 public void widgetSelected(SelectionEvent e) {
47 Stdout.formatln("Item selected");
48 };
49 });
50
51 shell.pack();
52 shell.open();
53 while (!shell.isDisposed()) {
54 if (!display.readAndDispatch()) display.sleep();
55 }
56 }