comparison snippets/composite/Snippet75.d @ 119:9a1be6ff19a2

More snippets, thanks to Tom D.
author Frank Benoit <benoit@tionex.de>
date Sun, 20 Jul 2008 15:26:06 +0200
parents
children
comparison
equal deleted inserted replaced
118:7b1c122b4128 119:9a1be6ff19a2
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 composite.Snippet75;
14
15 /*
16 * Composite example snippet: set the tab traversal order of children
17 * In this example, composite1 (i.e. c1) tab order is set to: B2, B1, B3, and
18 * shell tab order is set to: c1, B7, toolBar1, (c4: no focusable children), c2, L2
19 *
20 * For a list of all SWT example snippets see
21 * http://www.eclipse.org/swt/snippets/
22 */
23 import dwt.DWT;
24 import dwt.widgets.Button;
25 import dwt.widgets.Combo;
26 import dwt.widgets.Composite;
27 import dwt.widgets.Control;
28 import dwt.widgets.Display;
29 import dwt.widgets.Label;
30 import dwt.widgets.List;
31 import dwt.widgets.Shell;
32 import dwt.widgets.ToolBar;
33 import dwt.widgets.ToolItem;
34 import dwt.layout.FillLayout;
35 import dwt.layout.RowLayout;
36
37 import dwt.dwthelper.utils;
38
39
40 void main (String [] args) {
41 Display display = new Display ();
42 Shell shell = new Shell (display);
43 shell.setLayout (new RowLayout ());
44
45 Composite c1 = new Composite (shell, DWT.BORDER);
46 c1.setLayout (new RowLayout ());
47 Button b1 = new Button (c1, DWT.PUSH);
48 b1.setText ("B&1");
49 Button r1 = new Button (c1, DWT.RADIO);
50 r1.setText ("R1");
51 Button r2 = new Button (c1, DWT.RADIO);
52 r2.setText ("R&2");
53 Button r3 = new Button (c1, DWT.RADIO);
54 r3.setText ("R3");
55 Button b2 = new Button (c1, DWT.PUSH);
56 b2.setText ("B2");
57 List l1 = new List (c1, DWT.SINGLE | DWT.BORDER);
58 l1.setItems (["L1"]);
59 Button b3 = new Button (c1, DWT.PUSH);
60 b3.setText ("B&3");
61 Button b4 = new Button (c1, DWT.PUSH);
62 b4.setText ("B&4");
63
64 Composite c2 = new Composite (shell, DWT.BORDER);
65 c2.setLayout (new RowLayout ());
66 Button b5 = new Button (c2, DWT.PUSH);
67 b5.setText ("B&5");
68 Button b6 = new Button (c2, DWT.PUSH);
69 b6.setText ("B&6");
70
71 List l2 = new List (shell, DWT.SINGLE | DWT.BORDER);
72 l2.setItems ( ["L2"] );
73
74 ToolBar tb1 = new ToolBar (shell, DWT.FLAT | DWT.BORDER);
75 ToolItem i1 = new ToolItem (tb1, DWT.RADIO);
76 i1.setText ("I1");
77 ToolItem i2 = new ToolItem (tb1, DWT.RADIO);
78 i2.setText ("I2");
79 Combo combo1 = new Combo (tb1, DWT.READ_ONLY | DWT.BORDER);
80 combo1.setItems (["C1"]);
81 combo1.setText ("C1");
82 combo1.pack ();
83 ToolItem i3 = new ToolItem (tb1, DWT.SEPARATOR);
84 i3.setWidth (combo1.getSize ().x);
85 i3.setControl (combo1);
86 ToolItem i4 = new ToolItem (tb1, DWT.PUSH);
87 i4.setText ("I&4");
88 ToolItem i5 = new ToolItem (tb1, DWT.CHECK);
89 i5.setText ("I5");
90
91 Button b7 = new Button (shell, DWT.PUSH);
92 b7.setText ("B&7");
93
94 Composite c4 = new Composite (shell, DWT.BORDER);
95 Composite c5 = new Composite (c4, DWT.BORDER);
96 c5.setLayout(new FillLayout());
97 (new Label(c5, DWT.NONE)).setText("No");
98 c5.pack();
99
100
101 Control [] tabList1 = [cast(Control)b2, b1, b3];
102 c1.setTabList (tabList1);
103 Control [] tabList2 = [cast(Control)c1, b7, tb1, c4, c2, l2];
104 shell.setTabList (tabList2);
105 shell.pack ();
106 shell.open ();
107
108 while (!shell.isDisposed ()) {
109 if (!display.readAndDispatch ()) display.sleep ();
110 }
111 display.dispose ();
112 }