Skip to main content
summaryrefslogtreecommitdiffstats
blob: ce9a61b8b80ab928b2045c1a1fe0cb78133e65cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
/*******************************************************************************
 * Copyright (c) 2004, 2007 Boeing.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Boeing - initial API and implementation
 *******************************************************************************/
package org.eclipse.osee.framework.ui.skynet.widgets;

import java.util.logging.Level;
import org.eclipse.osee.framework.logging.OseeLog;
import org.eclipse.osee.framework.ui.skynet.SkynetGuiPlugin;
import org.eclipse.osee.framework.ui.skynet.widgets.XRadioButton.ButtonType;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;

public class XRadioButtonTest extends Composite {

   public XRadioButtonTest(Composite parent, int style) {
      super(parent, style);
      Composite c = new Composite(parent, SWT.NONE);
      c.setLayout(new GridLayout(2, false));
      c.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_BEGINNING));

      final XRadioButton rb = new XRadioButton("Single Button", "singleButton");
      rb.createWidgets(c, 2);
      rb.addSelectionListener(new SelectionAdapter() {

         @Override
         public void widgetSelected(org.eclipse.swt.events.SelectionEvent e) {
            try {
               System.out.println("isSelected *" + rb.isSelected() + "*");
               System.out.println("toXml *" + rb.toXml() + "*");
            } catch (Exception ex) {
               OseeLog.log(SkynetGuiPlugin.class, Level.SEVERE, ex);
            }
         };
      });

      c = new Composite(parent, SWT.NONE);
      c.setLayout(new GridLayout(2, false));
      c.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_BEGINNING));

      final XRadioButton rb2 = new XRadioButton("Label After", "labelAfter");
      rb2.setLabelAfter(true);
      rb2.createWidgets(c, 2);
      rb2.addSelectionListener(new SelectionAdapter() {

         @Override
         public void widgetSelected(org.eclipse.swt.events.SelectionEvent e) {
            try {
               System.out.println("isSelected *" + rb2.isSelected() + "*");
               System.out.println("toXml *" + rb2.toXml() + "*");
            } catch (Exception ex) {
               OseeLog.log(SkynetGuiPlugin.class, Level.SEVERE, ex);
            }
         };
      });

      c = new Composite(parent, SWT.NONE);
      c.setLayout(new GridLayout(2, false));
      c.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_BEGINNING));

      final XRadioButton rb3 = new XRadioButton("Check Box", "checkBox");
      rb3.setButtonType(ButtonType.Check);
      rb3.setLabelAfter(true);
      rb3.createWidgets(c, 2);

      rb3.addSelectionListener(new SelectionAdapter() {

         @Override
         public void widgetSelected(org.eclipse.swt.events.SelectionEvent e) {
            try {
               System.out.println("isSelected *" + rb3.isSelected() + "*");
               System.out.println("toXml *" + rb3.toXml() + "*");
            } catch (Exception ex) {
               OseeLog.log(SkynetGuiPlugin.class, Level.SEVERE, ex);
            }
         };
      });

      c = new Composite(parent, SWT.NONE);
      c.setLayout(new GridLayout(1, false));
      c.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_BEGINNING));

      final XRadioButtons rb4 = new XRadioButtons("Radios", "radios");
      rb4.addButton("aaaaaa", "First tool tip");
      rb4.addButton("ccccc", "2nd tool tip");
      rb4.addButton("bbbbb", "3rd tool tip");
      rb4.createWidgets(c, 1);
      rb4.addSelectionListener(new SelectionAdapter() {

         @Override
         public void widgetSelected(org.eclipse.swt.events.SelectionEvent e) {
            try {
               System.out.println("isSelected *" + rb4.getXmlData() + "*");
               System.out.println("toXml *" + rb4.toXml() + "*");
            } catch (Exception ex) {
               OseeLog.log(SkynetGuiPlugin.class, Level.SEVERE, ex);
            }
         };
      });

      c = new Composite(parent, SWT.NONE);
      c.setLayout(new GridLayout(2, false));

      rb4.setLabel("Sorted Radios");
      rb4.setSortNames(true);
      rb4.createWidgets(c, 7);
      rb4.addSelectionListener(new SelectionAdapter() {

         @Override
         public void widgetSelected(org.eclipse.swt.events.SelectionEvent e) {
            try {
               System.out.println("isSelected *" + rb4.getXmlData() + "*");
               System.out.println("toXml *" + rb4.toXml() + "*");
            } catch (Exception ex) {
               OseeLog.log(SkynetGuiPlugin.class, Level.SEVERE, ex);
            }
         };
      });

      c = new Composite(parent, SWT.NONE);
      c.setLayout(new GridLayout(1, false));
      final XRadioButtons rb5 = new XRadioButtons("Multi Select", "multiSelect");
      rb5.addButton("aaaaaa", "First tool tip");
      rb5.addButton("ddddd", "2nd tool tip");
      rb5.addButton("fffff", "3rd tool tip");
      rb5.addButton("bbbb", "3rd tool tip");
      rb5.addButton("ccccc", "3rd tool tip");
      rb5.setMultiSelect(true);
      rb5.createWidgets(c, 11);
      rb5.addSelectionListener(new SelectionAdapter() {

         @Override
         public void widgetSelected(org.eclipse.swt.events.SelectionEvent e) {
            try {
               System.out.println("isSelected *" + rb5.getXmlData() + "*");
               System.out.println("toXml *" + rb5.toXml() + "*");
            } catch (Exception ex) {
               OseeLog.log(SkynetGuiPlugin.class, Level.SEVERE, ex);
            }
         };
      });

      c = new Composite(parent, SWT.NONE);
      c.setLayout(new GridLayout(1, false));

      rb5.setLabel("Sorted Multi Select");
      rb5.setSortNames(true);
      rb5.createWidgets(c, 11);
      rb5.addSelectionListener(new SelectionAdapter() {

         @Override
         public void widgetSelected(org.eclipse.swt.events.SelectionEvent e) {
            try {
               System.out.println("isSelected *" + rb5.getXmlData() + "*");
               System.out.println("toXml *" + rb5.toXml() + "*");
            } catch (Exception ex) {
               OseeLog.log(SkynetGuiPlugin.class, Level.SEVERE, ex);
            }
         };
      });

      c = new Composite(parent, SWT.NONE);
      c.setLayout(new GridLayout(1, false));
      final XRadioButtons rb6 = new XRadioButtons("Multi Select", "multiSelect");
      rb6.addButtons(new String[] {"a", "k", "b", "c", "l", "d", "e", "m", "f", "g", "h", "i", "j"});
      rb6.setVertical(true, 7);
      rb6.setSortNames(true);
      rb6.setMultiSelect(true);
      rb6.createWidgets(c, 11);
      rb6.addSelectionListener(new SelectionAdapter() {

         @Override
         public void widgetSelected(org.eclipse.swt.events.SelectionEvent e) {
            try {
               System.out.println("selected *" + rb6.getXmlData() + "*");
               System.out.println("toXml *" + rb6.toXml() + "*");
            } catch (Exception ex) {
               OseeLog.log(SkynetGuiPlugin.class, Level.SEVERE, ex);
            }
         };
      });

   }

   public static void main(String[] args) {
      Display Display_1 = Display.getDefault();
      Shell Shell_1 = new Shell(Display_1, SWT.SHELL_TRIM);
      Shell_1.setBounds(0, 0, 500, 500);
      Shell_1.setLayout(new GridLayout());
      Shell_1.setLayoutData(new GridData(GridData.FILL_BOTH | GridData.HORIZONTAL_ALIGN_BEGINNING));

      new XRadioButtonTest(Shell_1, SWT.NONE);

      Shell_1.open();
      while (!Shell_1.isDisposed()) {
         if (!Display_1.readAndDispatch()) {
            Display_1.sleep();
         }
      }

      Display_1.dispose();
   }
}

Back to the top