comparison examples/controlexample/LabelTab.d @ 161:eb84f9418bbf

Change module names to this not have examples in the FQN.
author Frank Benoit <benoit@tionex.de>
date Mon, 01 Sep 2008 22:24:27 +0200
parents 4a04b6759f98
children
comparison
equal deleted inserted replaced
158:683d3e7b184a 161:eb84f9418bbf
8 * Contributors: 8 * Contributors:
9 * IBM Corporation - initial API and implementation 9 * IBM Corporation - initial API and implementation
10 * Port to the D programming language: 10 * Port to the D programming language:
11 * Frank Benoit <benoit@tionex.de> 11 * Frank Benoit <benoit@tionex.de>
12 *******************************************************************************/ 12 *******************************************************************************/
13 module examples.controlexample.LabelTab; 13 module controlexample.LabelTab;
14 14
15 15
16 16
17 import dwt.DWT; 17 import dwt.DWT;
18 import dwt.layout.GridData; 18 import dwt.layout.GridData;
20 import dwt.widgets.Button; 20 import dwt.widgets.Button;
21 import dwt.widgets.Group; 21 import dwt.widgets.Group;
22 import dwt.widgets.Label; 22 import dwt.widgets.Label;
23 import dwt.widgets.Widget; 23 import dwt.widgets.Widget;
24 24
25 import examples.controlexample.Tab; 25 import controlexample.Tab;
26 import examples.controlexample.ControlExample; 26 import controlexample.ControlExample;
27 import examples.controlexample.AlignableTab; 27 import controlexample.AlignableTab;
28 28
29 class LabelTab : AlignableTab { 29 class LabelTab : AlignableTab {
30 /* Example widgets and groups that contain them */ 30 /* Example widgets and groups that contain them */
31 Label label1, label2, label3, label4, label5, label6; 31 Label label1, label2, label3, label4, label5, label6;
32 Group textLabelGroup, imageLabelGroup; 32 Group textLabelGroup, imageLabelGroup;