]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/ui/dialog/SourceFilesDlg.java
Adjusted sizes to accommodate Windows, iMac and Linux GUI
[mirror_edk2.git] / Tools / Source / FrameworkWizard / src / org / tianocore / frameworkwizard / module / ui / dialog / SourceFilesDlg.java
1 /** @file
2
3 The file is used to create, update SourceFiles section of the MSA file
4
5 Copyright (c) 2006, Intel Corporation
6 All rights reserved. This program and the accompanying materials
7 are licensed and made available under the terms and conditions of the BSD License
8 which accompanies this distribution. The full text of the license may be found at
9 http://opensource.org/licenses/bsd-license.php
10
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13
14 **/
15 package org.tianocore.frameworkwizard.module.ui.dialog;
16
17 import java.awt.event.ActionEvent;
18 import java.io.File;
19 import java.util.Vector;
20
21 import javax.swing.JButton;
22 import javax.swing.JFileChooser;
23 import javax.swing.JLabel;
24 import javax.swing.JPanel;
25 import javax.swing.JScrollPane;
26 import javax.swing.JTextField;
27
28 import org.tianocore.frameworkwizard.common.DataType;
29 import org.tianocore.frameworkwizard.common.DataValidation;
30 import org.tianocore.frameworkwizard.common.EnumerationData;
31 import org.tianocore.frameworkwizard.common.Log;
32 import org.tianocore.frameworkwizard.common.Tools;
33 import org.tianocore.frameworkwizard.common.ui.ArchCheckBox;
34 import org.tianocore.frameworkwizard.common.ui.IComboBox;
35 import org.tianocore.frameworkwizard.common.ui.IDialog;
36 import org.tianocore.frameworkwizard.common.ui.IFrame;
37 import org.tianocore.frameworkwizard.common.ui.StarLabel;
38 import org.tianocore.frameworkwizard.module.Identifications.SourceFiles.SourceFilesIdentification;
39
40 /**
41 * The class is used to create, update SourceFiles section of the MSA file
42 *
43 * It extends IDialog
44 *
45 **/
46 public class SourceFilesDlg extends IDialog {
47
48 ///
49 /// Define class Serial Version UID
50 ///
51 private static final long serialVersionUID = -6765742852142775378L;
52
53 //
54 // Define class members
55 //
56 private JPanel jContentPane = null;
57
58 private JLabel jLabelFileName = null;
59
60 private JTextField jTextFieldFileName = null;
61
62 private JButton jButtonOpenFile = null;
63
64 private JLabel jLabelToolChainFamily = null;
65
66 private StarLabel jStarLabel1 = null;
67
68 private JLabel jLabelArch = null;
69
70 private JScrollPane jScrollPane = null;
71
72 private JLabel jLabelTagName = null;
73
74 private JTextField jTextFieldTagName = null;
75
76 private JLabel jLabelToolCode = null;
77
78 private JTextField jTextFieldToolCode = null;
79
80 private IComboBox iComboBoxToolCode = null;
81
82 private JTextField jTextFieldToolChainFamily = null;
83
84 private JLabel jLabelFeatureFlag = null;
85
86 private JTextField jTextFieldFeatureFlag = null;
87
88 private ArchCheckBox jArchCheckBox = null;
89
90 private JButton jButtonOk = null;
91
92 private JButton jButtonCancel = null;
93
94 //
95 // Not used by UI
96 //
97 private SourceFilesIdentification sfid[] = null;
98
99 private String msaFileName = "";
100
101 private EnumerationData ed = new EnumerationData();
102
103 /**
104 This method initializes jTextFieldFileName
105
106 @return javax.swing.JTextField jTextFieldFileName
107
108 **/
109 private JTextField getJTextFieldSourceFilesDirectory() {
110 if (jTextFieldFileName == null) {
111 jTextFieldFileName = new JTextField();
112 jTextFieldFileName.setBounds(new java.awt.Rectangle(168, 12, 250, 20));
113 jTextFieldFileName.setPreferredSize(new java.awt.Dimension(250, 20));
114 jTextFieldFileName.setToolTipText("Path is relative to the MSA file and must include the file name");
115 }
116 return jTextFieldFileName;
117 }
118
119 /**
120 This method initializes jButtonOpenFile
121
122 @return javax.swing.JButton jButtonOpenFile
123
124 **/
125 private JButton getJButtonOpenFile() {
126 if (jButtonOpenFile == null) {
127 jButtonOpenFile = new JButton();
128 jButtonOpenFile.setText("Browse");
129 jButtonOpenFile.setBounds(new java.awt.Rectangle(422, 12, 85, 20));
130 jButtonOpenFile.setPreferredSize(new java.awt.Dimension(85, 20));
131 jButtonOpenFile.addActionListener(this);
132 }
133 return jButtonOpenFile;
134 }
135
136 /**
137 This method initializes jScrollPane
138
139 @return javax.swing.JScrollPane
140 */
141 private JScrollPane getJScrollPane() {
142 if (jScrollPane == null) {
143 jScrollPane = new JScrollPane();
144 jScrollPane.setViewportView(getJContentPane());
145 }
146 return jScrollPane;
147 }
148
149 /**
150 * This method initializes jTextFieldTagName
151 *
152 * @return javax.swing.JTextField
153 */
154 private JTextField getJTextFieldTagName() {
155 if (jTextFieldTagName == null) {
156 jTextFieldTagName = new JTextField();
157 jTextFieldTagName.setBounds(new java.awt.Rectangle(168, 37, 340, 20));
158 jTextFieldTagName.setPreferredSize(new java.awt.Dimension(340, 20));
159 jTextFieldTagName.setToolTipText("You may specify a specific tool chain tag name, such as BILL1");
160 }
161 return jTextFieldTagName;
162 }
163
164 private IComboBox getIComboBoxToolCode() {
165 if (iComboBoxToolCode == null) {
166 iComboBoxToolCode = new IComboBox();
167 iComboBoxToolCode.setBounds(new java.awt.Rectangle(168, 62, 340, 20));
168 iComboBoxToolCode.setPreferredSize(new java.awt.Dimension(340, 20));
169 iComboBoxToolCode.setToolTipText("<html>You may select a specific tool command from drop down list, <br>"
170 + "or you can DOUBLE-CLICK this fild to enter your customizing <br>"
171 + "tool command.<br>"
172 + "Press ENTER to save your input or press ESCAPE to quit</html>");
173 }
174 return iComboBoxToolCode;
175 }
176
177 /**
178 * This method initializes jTextFieldToolCode
179 *
180 * @return javax.swing.JTextField
181 */
182 private JTextField getJTextFieldToolCode() {
183 if (jTextFieldToolCode == null) {
184 jTextFieldToolCode = new JTextField();
185 jTextFieldToolCode.setBounds(new java.awt.Rectangle(168, 62, 340, 20));
186 jTextFieldToolCode.setPreferredSize(new java.awt.Dimension(340, 20));
187 jTextFieldToolCode.setToolTipText("You may specify a specific tool command, such as ASM");
188 jTextFieldToolCode.setVisible(false);
189 }
190 return jTextFieldToolCode;
191 }
192
193 /**
194 * This method initializes jTextFieldToolChainFamily
195 *
196 * @return javax.swing.JTextField
197 */
198 private JTextField getJTextFieldToolChainFamily() {
199 if (jTextFieldToolChainFamily == null) {
200 jTextFieldToolChainFamily = new JTextField();
201 jTextFieldToolChainFamily.setBounds(new java.awt.Rectangle(168, 87, 340, 20));
202 jTextFieldToolChainFamily.setPreferredSize(new java.awt.Dimension(340, 20));
203 jTextFieldToolChainFamily.setToolTipText("You may specify a specific tool chain family, such as GCC");
204 }
205 return jTextFieldToolChainFamily;
206 }
207
208 /**
209 * This method initializes jTextFieldFeatureFlag
210 *
211 * @return javax.swing.JTextField
212 */
213 private JTextField getJTextFieldFeatureFlag() {
214 if (jTextFieldFeatureFlag == null) {
215 jTextFieldFeatureFlag = new JTextField();
216 jTextFieldFeatureFlag.setBounds(new java.awt.Rectangle(168, 112, 340, 20));
217 jTextFieldFeatureFlag.setPreferredSize(new java.awt.Dimension(340, 20));
218 jTextFieldFeatureFlag.setToolTipText("RESERVED FOR FUTURE USE");
219 }
220 return jTextFieldFeatureFlag;
221 }
222
223 /**
224 This method initializes jButtonOk
225
226 @return javax.swing.JButton
227
228 **/
229 private JButton getJButtonOk() {
230 if (jButtonOk == null) {
231 jButtonOk = new JButton();
232 jButtonOk.setBounds(new java.awt.Rectangle(317, 172, 90, 20));
233 jButtonOk.setText("Ok");
234 jButtonOk.addActionListener(this);
235 }
236 return jButtonOk;
237 }
238
239 /**
240 This method initializes jButtonCancel
241
242 @return javax.swing.JButton
243
244 **/
245 private JButton getJButtonCancel() {
246 if (jButtonCancel == null) {
247 jButtonCancel = new JButton();
248 jButtonCancel.setBounds(new java.awt.Rectangle(412, 172, 90, 20));
249 jButtonCancel.setText("Cancel");
250 jButtonCancel.addActionListener(this);
251 }
252 return jButtonCancel;
253 }
254
255 public static void main(String[] args) {
256
257 }
258
259 /**
260 This is the default constructor
261
262 **/
263 public SourceFilesDlg(SourceFilesIdentification inSourceFilesIdentification, IFrame iFrame, String fileName) {
264 super(iFrame, true);
265 init(inSourceFilesIdentification, fileName);
266 }
267
268 /**
269 This method initializes this
270
271 **/
272 private void init() {
273 this.setSize(525, 240);
274 this.setContentPane(getJScrollPane());
275 this.setTitle("Source Files");
276 this.setViewMode(false);
277 this.centerWindow();
278 Tools.generateComboBoxByVector(iComboBoxToolCode, ed.getVToolCode());
279 }
280
281 /**
282 This method initializes this
283 Fill values to all fields if these values are not empty
284
285
286 @param inSourceFiles The input data of SourceFilesDocument.SourceFiles
287
288 **/
289 private void init(SourceFilesIdentification inSourceFilesIdentifications, String fileName) {
290 init();
291 //this.sfid = inSourceFilesIdentifications;
292 this.msaFileName = fileName;
293
294 if (inSourceFilesIdentifications != null) {
295 this.jTextFieldFileName.setText(inSourceFilesIdentifications.getFilename());
296 this.jTextFieldTagName.setText(inSourceFilesIdentifications.getTagName());
297
298 //
299 // Generate Tool Code selection list
300 //
301 Vector<String> v = ed.getVToolCode();
302 boolean isFind = false;
303 String strToolCode = inSourceFilesIdentifications.getToolCode();
304
305 //
306 // If the input value is not in the default list, add it to the list
307 //
308 if (strToolCode != null) {
309 for (int index = 0; index < v.size(); index++) {
310 if (v.elementAt(index).equals(strToolCode)) {
311 isFind = true;
312 break;
313 }
314 }
315 if (!isFind && !isEmpty(strToolCode)) {
316 v.addElement(strToolCode);
317 }
318 }
319
320 Tools.generateComboBoxByVector(iComboBoxToolCode, v);
321 this.iComboBoxToolCode.setSelectedItem(strToolCode);
322
323 this.jTextFieldToolChainFamily.setText(inSourceFilesIdentifications.getToolChainFamily());
324 jTextFieldFeatureFlag.setText(inSourceFilesIdentifications.getFeatureFlag());
325 this.jArchCheckBox.setSelectedItems(inSourceFilesIdentifications.getSupArchList());
326 }
327 }
328
329 /**
330 Disable all components when the mode is view
331
332 @param isView true - The view mode; false - The non-view mode
333
334 **/
335 public void setViewMode(boolean isView) {
336 if (isView) {
337 this.jTextFieldFileName.setEnabled(!isView);
338 this.jButtonOpenFile.setEnabled(!isView);
339 }
340 }
341
342 /**
343 This method initializes jContentPane
344
345 @return javax.swing.JPanel jContentPane
346
347 **/
348 private JPanel getJContentPane() {
349 if (jContentPane == null) {
350 jArchCheckBox = new ArchCheckBox();
351 jArchCheckBox.setBounds(new java.awt.Rectangle(168, 137, 340, 20));
352 jArchCheckBox.setPreferredSize(new java.awt.Dimension(340, 20));
353 jLabelFeatureFlag = new JLabel();
354 jLabelFeatureFlag.setBounds(new java.awt.Rectangle(12, 112, 155, 20));
355 jLabelFeatureFlag.setText("Feature Flag Expression");
356 jLabelToolCode = new JLabel();
357 jLabelToolCode.setBounds(new java.awt.Rectangle(12, 62, 155, 20));
358 jLabelToolCode.setText("Tool Code");
359 jLabelTagName = new JLabel();
360 jLabelTagName.setBounds(new java.awt.Rectangle(12, 37, 155, 20));
361 jLabelTagName.setText("Tag Name");
362 jLabelArch = new JLabel();
363 jLabelArch.setBounds(new java.awt.Rectangle(12, 137, 155, 20));
364 jLabelArch.setText("Supported Architectures");
365 jLabelToolChainFamily = new JLabel();
366 jLabelToolChainFamily.setBounds(new java.awt.Rectangle(12, 87, 155, 20));
367 jLabelToolChainFamily.setText("Tool Chain Family");
368 jLabelFileName = new JLabel();
369 jLabelFileName.setText("File Name");
370 jLabelFileName.setBounds(new java.awt.Rectangle(12, 12, 155, 20));
371
372 jContentPane = new JPanel();
373 jContentPane.setLayout(null);
374 jContentPane.setPreferredSize(new java.awt.Dimension(505, 192));
375
376 jContentPane.add(jLabelFileName, null);
377 jContentPane.add(getJTextFieldSourceFilesDirectory(), null);
378 jContentPane.add(getJButtonOpenFile(), null);
379 jContentPane.add(jLabelToolChainFamily, null);
380 jStarLabel1 = new StarLabel();
381 jStarLabel1.setLocation(new java.awt.Point(0, 10));
382
383 jContentPane.add(jStarLabel1, null);
384 jContentPane.add(jLabelArch, null);
385 jContentPane.add(jLabelTagName, null);
386 jContentPane.add(getJTextFieldTagName(), null);
387 jContentPane.add(jLabelToolCode, null);
388 jContentPane.add(getJTextFieldToolCode(), null);
389 jContentPane.add(getIComboBoxToolCode(), null);
390 jContentPane.add(getJTextFieldToolChainFamily(), null);
391 jContentPane.add(jLabelFeatureFlag, null);
392 jContentPane.add(getJTextFieldFeatureFlag(), null);
393 jContentPane.add(jArchCheckBox, null);
394 jContentPane.add(getJButtonOk(), null);
395 jContentPane.add(getJButtonCancel(), null);
396 }
397 return jContentPane;
398 }
399
400 /* (non-Javadoc)
401 * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)
402 *
403 * Override actionPerformed to listen all actions
404 *
405 */
406 public void actionPerformed(ActionEvent arg0) {
407 if (arg0.getSource() == jButtonOpenFile) {
408 selectFile();
409 }
410
411 if (arg0.getSource() == jButtonOk) {
412 if (checkAdd()) {
413 getCurrentSourceFiles();
414 this.returnType = DataType.RETURN_TYPE_OK;
415 this.setVisible(false);
416 }
417 }
418
419 if (arg0.getSource() == jButtonCancel) {
420 this.returnType = DataType.RETURN_TYPE_CANCEL;
421 this.setVisible(false);
422 }
423 }
424
425 private SourceFilesIdentification[] getCurrentSourceFiles() {
426 String name = this.jTextFieldFileName.getText();
427 String s[] = name.split(";");
428 String tagName = this.jTextFieldTagName.getText();
429 String toolCode = this.iComboBoxToolCode.getSelectedItem().toString();
430 if (toolCode.equals(DataType.EMPTY_SELECT_ITEM)) {
431 toolCode = "";
432 }
433 String tcf = this.jTextFieldToolChainFamily.getText();
434 String featureFlag = this.jTextFieldFeatureFlag.getText();
435 Vector<String> arch = this.jArchCheckBox.getSelectedItemsVector();
436 sfid = new SourceFilesIdentification[s.length];
437 for (int index = 0; index < s.length; index++) {
438 sfid[index] = new SourceFilesIdentification(s[index], tagName, toolCode, tcf, featureFlag, arch);
439 }
440 return sfid;
441 }
442
443 /**
444 Data validation for all fields
445
446 @retval true - All datas are valid
447 @retval false - At least one data is invalid
448
449 **/
450 public boolean checkAdd() {
451 //
452 // Check Filename
453 //
454 if (isEmpty(this.jTextFieldFileName.getText())) {
455 Log.wrn("Update Source Files", "File Name couldn't be empty");
456 return false;
457 }
458 if (!DataValidation.isFilename(this.jTextFieldFileName.getText())) {
459 Log.wrn("Update Source Files", "Incorrect data type for File Name");
460 return false;
461 }
462
463 //
464 // Check TagName
465 //
466 if (!isEmpty(this.jTextFieldTagName.getText())) {
467 if (!DataValidation.isTagName(this.jTextFieldTagName.getText())) {
468 Log.wrn("Update Source Files", "Incorrect data type for Tag Name");
469 return false;
470 }
471 }
472
473 //
474 // Check ToolCode
475 //
476 if (!isEmpty(this.jTextFieldToolCode.getText())) {
477 if (!DataValidation.isToolCode(this.jTextFieldToolCode.getText())) {
478 Log.wrn("Update Source Files", "Incorrect data type for Tool Code");
479 return false;
480 }
481 }
482
483 //
484 // Check ToolChainFamily
485 //
486 if (!isEmpty(this.jTextFieldToolChainFamily.getText())) {
487 if (!DataValidation.isToolChainFamily(this.jTextFieldToolChainFamily.getText())) {
488 Log.wrn("Update Source Files", "Incorrect data type for Tool Chain Family");
489 return false;
490 }
491 }
492
493 //
494 // Check FeatureFlag
495 //
496 if (!isEmpty(this.jTextFieldFeatureFlag.getText())) {
497 if (!DataValidation.isFeatureFlag(this.jTextFieldFeatureFlag.getText())) {
498 Log.wrn("Update Source Files", "Incorrect data type for Feature Flag");
499 return false;
500 }
501 }
502
503 return true;
504 }
505
506 /**
507 Display a file open browser to let user select file
508
509 **/
510 private void selectFile() {
511 JFileChooser fc = new JFileChooser();
512 fc.setCurrentDirectory(new File(Tools.getFilePathOnly(msaFileName)));
513 fc.setMultiSelectionEnabled(true);
514 int result = fc.showOpenDialog(new JPanel());
515 if (result == JFileChooser.APPROVE_OPTION) {
516 File f[] = fc.getSelectedFiles();
517 String s = "";
518 for (int index = 0; index < f.length; index++) {
519 s = s + f[index].getName() + ";";
520 }
521 this.jTextFieldFileName.setText(s);
522 }
523 }
524
525 public SourceFilesIdentification[] getSfid() {
526 return sfid;
527 }
528
529 public void setSfid(SourceFilesIdentification[] sfid) {
530 this.sfid = sfid;
531 }
532 }