]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/ui/ModuleSourceFiles.java
1. Fix bug in get industry std headers
[mirror_edk2.git] / Tools / Source / FrameworkWizard / src / org / tianocore / frameworkwizard / module / ui / ModuleSourceFiles.java
1 /** @file
2
3 The file is used to create, update SourceFile of MSA/MBD 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;
16
17 import java.awt.Dimension;
18 import java.awt.event.ActionEvent;
19 import java.awt.event.ComponentEvent;
20 import java.awt.event.MouseEvent;
21 import java.util.Vector;
22
23 import javax.swing.JButton;
24 import javax.swing.JCheckBox;
25 import javax.swing.JPanel;
26 import javax.swing.JScrollPane;
27 import javax.swing.JTable;
28 import javax.swing.ListSelectionModel;
29 import javax.swing.event.ListSelectionEvent;
30
31 import org.tianocore.SourceFilesDocument;
32 import org.tianocore.FilenameDocument.Filename;
33 import org.tianocore.ModuleSurfaceAreaDocument.ModuleSurfaceArea;
34 import org.tianocore.SourceFilesDocument.SourceFiles;
35 import org.tianocore.frameworkwizard.common.DataType;
36 import org.tianocore.frameworkwizard.common.IDefaultTableModel;
37 import org.tianocore.frameworkwizard.common.Log;
38 import org.tianocore.frameworkwizard.common.Tools;
39 import org.tianocore.frameworkwizard.common.Identifications.OpeningModuleType;
40 import org.tianocore.frameworkwizard.common.ui.IFrame;
41 import org.tianocore.frameworkwizard.common.ui.IInternalFrame;
42 import org.tianocore.frameworkwizard.module.Identifications.SourceFiles.SourceFilesIdentification;
43 import org.tianocore.frameworkwizard.module.Identifications.SourceFiles.SourceFilesVector;
44 import org.tianocore.frameworkwizard.module.ui.dialog.SourceFilesDlg;
45
46 /**
47 The class is used to create, update SourceFile of MSA/MBD file
48 It extends IInternalFrame
49
50 **/
51 public class ModuleSourceFiles extends IInternalFrame {
52
53 ///
54 /// Define class Serial Version UID
55 ///
56 private static final long serialVersionUID = -6765742852142775378L;
57
58 //
59 // Define class members
60 //
61 private SourceFilesDocument.SourceFiles sourceFiles = null;
62
63 private JPanel jContentPane = null;
64
65 private JButton jButtonAdd = null;
66
67 private JButton jButtonRemove = null;
68
69 private JButton jButtonUpdate = null;
70
71 private JCheckBox jCheckBoxArch = null;
72
73 private JScrollPane jScrollPane = null;
74
75 private JScrollPane jScrollPaneTable = null;
76
77 private JTable jTable = null;
78
79 //
80 // Not used by UI
81 //
82 private OpeningModuleType omt = null;
83
84 private ModuleSurfaceArea msa = null;
85
86 private SourceFilesVector vSourceFiles = new SourceFilesVector();
87
88 private IDefaultTableModel model = null;
89
90 private int selectedRow = -1;
91
92 /**
93 This method initializes jButtonAdd
94
95 @return javax.swing.JButton jButtonAdd
96
97 **/
98 private JButton getJButtonAdd() {
99 if (jButtonAdd == null) {
100 jButtonAdd = new JButton();
101 jButtonAdd.setBounds(new java.awt.Rectangle(230, 220, 80, 20));
102 jButtonAdd.setText("Add");
103 jButtonAdd.addActionListener(this);
104 jButtonAdd.setPreferredSize(new java.awt.Dimension(80, 20));
105 }
106 return jButtonAdd;
107 }
108
109 /**
110 This method initializes jButtonRemove
111
112 @return javax.swing.JButton jButtonRemove
113
114 **/
115 private JButton getJButtonRemove() {
116 if (jButtonRemove == null) {
117 jButtonRemove = new JButton();
118 jButtonRemove.setBounds(new java.awt.Rectangle(400, 220, 80, 20));
119 jButtonRemove.setText("Remove");
120 jButtonRemove.addActionListener(this);
121 jButtonRemove.setPreferredSize(new java.awt.Dimension(80, 20));
122 }
123 return jButtonRemove;
124 }
125
126 /**
127 This method initializes jButtonUpdate
128
129 @return javax.swing.JButton jButtonUpdate
130
131 **/
132 private JButton getJButtonUpdate() {
133 if (jButtonUpdate == null) {
134 jButtonUpdate = new JButton();
135 jButtonUpdate.setBounds(new java.awt.Rectangle(315, 220, 80, 20));
136 jButtonUpdate.setPreferredSize(new java.awt.Dimension(80, 20));
137 jButtonUpdate.setText("Edit");
138 jButtonUpdate.addActionListener(this);
139 }
140 return jButtonUpdate;
141 }
142
143 /**
144 This method initializes jScrollPane
145
146 @return javax.swing.JScrollPane
147 */
148 private JScrollPane getJScrollPane() {
149 if (jScrollPane == null) {
150 jScrollPane = new JScrollPane();
151 jScrollPane.setViewportView(getJContentPane());
152 }
153 return jScrollPane;
154 }
155
156 /**
157 * This method initializes jScrollPaneTable
158 *
159 * @return javax.swing.JScrollPane
160 */
161 private JScrollPane getJScrollPaneTable() {
162 if (jScrollPaneTable == null) {
163 jScrollPaneTable = new JScrollPane();
164 jScrollPaneTable.setBounds(new java.awt.Rectangle(15, 10, 470, 420));
165 jScrollPaneTable.setPreferredSize(new Dimension(470, 420));
166 jScrollPaneTable.setViewportView(getJTable());
167 }
168 return jScrollPaneTable;
169 }
170
171 /**
172 * This method initializes jTable
173 *
174 * @return javax.swing.JTable
175 */
176 private JTable getJTable() {
177 if (jTable == null) {
178 jTable = new JTable();
179 model = new IDefaultTableModel();
180 jTable = new JTable(model);
181 jTable.setRowHeight(20);
182
183 model.addColumn("File Name");
184
185 jTable.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
186 jTable.getSelectionModel().addListSelectionListener(this);
187 jTable.getModel().addTableModelListener(this);
188 jTable.addMouseListener(this);
189 }
190 return jTable;
191 }
192
193 public static void main(String[] args) {
194
195 }
196
197 /**
198 This is the default constructor
199
200 **/
201 public ModuleSourceFiles() {
202 super();
203 init();
204 this.setVisible(true);
205 }
206
207 /**
208 This is the override edit constructor
209
210 @param
211
212 **/
213 public ModuleSourceFiles(OpeningModuleType inOmt) {
214 super();
215 this.omt = inOmt;
216 this.msa = omt.getXmlMsa();
217 init(msa.getSourceFiles());
218 this.setVisible(true);
219 }
220
221 /**
222 This method initializes this
223 Fill values to all fields if these values are not empty
224
225
226 @param inSourceFiles The input data of SourceFilesDocument.SourceFiles
227
228 **/
229 private void init(SourceFilesDocument.SourceFiles inSourceFiles) {
230 init();
231 this.sourceFiles = inSourceFiles;
232
233 if (this.sourceFiles != null) {
234 if (this.sourceFiles.getFilenameList().size() > 0) {
235 for (int index = 0; index < this.sourceFiles.getFilenameList().size(); index++) {
236 String name = sourceFiles.getFilenameList().get(index).getStringValue();
237 String tagName = sourceFiles.getFilenameList().get(index).getTagName();
238 String toolCode = sourceFiles.getFilenameList().get(index).getToolCode();
239 String tcf = sourceFiles.getFilenameList().get(index).getToolChainFamily();
240 String featureFlag = sourceFiles.getFilenameList().get(index).getFeatureFlag();
241 Vector<String> arch = Tools.convertListToVector(sourceFiles.getFilenameList().get(index)
242 .getSupArchList());
243 SourceFilesIdentification sfid = new SourceFilesIdentification(name, tagName, toolCode, tcf,
244 featureFlag, arch);
245 vSourceFiles.addSourceFiles(sfid);
246 }
247 }
248 }
249 showTable();
250 }
251
252 /**
253 This method initializes this
254
255 **/
256 private void init() {
257 this.setSize(500, 515);
258 this.setContentPane(getJScrollPane());
259 this.setTitle("Source Files");
260 this.setViewMode(false);
261 }
262
263 /**
264 Disable all components when the mode is view
265
266 @param isView true - The view mode; false - The non-view mode
267
268 **/
269 public void setViewMode(boolean isView) {
270 if (isView) {
271 this.jButtonAdd.setEnabled(!isView);
272 this.jButtonRemove.setEnabled(!isView);
273 this.jButtonUpdate.setEnabled(!isView);
274 this.jCheckBoxArch.setEnabled(!isView);
275 }
276 }
277
278 /**
279 This method initializes jContentPane
280
281 @return javax.swing.JPanel jContentPane
282
283 **/
284 private JPanel getJContentPane() {
285 if (jContentPane == null) {
286 jContentPane = new JPanel();
287 jContentPane.setLayout(null);
288 jContentPane.setPreferredSize(new java.awt.Dimension(490, 490));
289
290 jContentPane.add(getJButtonAdd(), null);
291 jContentPane.add(getJButtonRemove(), null);
292 jContentPane.add(getJButtonUpdate(), null);
293 jContentPane.add(getJScrollPaneTable(), null);
294 }
295 return jContentPane;
296 }
297
298 /**
299 Save all components of SourceFiles
300 if exists sourceFiles, set the value directly
301 if not exists sourceFiles, new an instance first
302
303 **/
304 public void save() {
305 try {
306 //
307 //Save as file name
308 //
309 int count = this.vSourceFiles.size();
310
311 this.sourceFiles = SourceFiles.Factory.newInstance();
312 if (count > 0) {
313 for (int index = 0; index < count; index++) {
314 Filename mFilename = Filename.Factory.newInstance();
315 if (!isEmpty(vSourceFiles.getSourceFiles(index).getFilename())) {
316 mFilename.setStringValue(vSourceFiles.getSourceFiles(index).getFilename());
317 }
318 if (!isEmpty(vSourceFiles.getSourceFiles(index).getTagName())) {
319 mFilename.setTagName(vSourceFiles.getSourceFiles(index).getTagName());
320 }
321 if (!isEmpty(vSourceFiles.getSourceFiles(index).getToolCode())) {
322 mFilename.setToolCode(vSourceFiles.getSourceFiles(index).getToolCode());
323 }
324 if (!isEmpty(vSourceFiles.getSourceFiles(index).getToolChainFamily())) {
325 mFilename.setToolChainFamily(vSourceFiles.getSourceFiles(index).getToolChainFamily());
326 }
327 if (!isEmpty(vSourceFiles.getSourceFiles(index).getFeatureFlag())) {
328 mFilename.setFeatureFlag(vSourceFiles.getSourceFiles(index).getFeatureFlag());
329 }
330 if (vSourceFiles.getSourceFiles(index).getSupArchList() != null
331 && vSourceFiles.getSourceFiles(index).getSupArchList().size() > 0) {
332 mFilename.setSupArchList(vSourceFiles.getSourceFiles(index).getSupArchList());
333 }
334
335 this.sourceFiles.addNewFilename();
336 this.sourceFiles.setFilenameArray(index, mFilename);
337 }
338 }
339 this.msa.setSourceFiles(sourceFiles);
340 this.omt.setSaved(false);
341 } catch (Exception e) {
342 Log.err("Update Source Files", e.getMessage());
343 }
344 }
345
346 private void showEdit(int index) {
347 SourceFilesDlg sfd = new SourceFilesDlg(this.vSourceFiles.getSourceFiles(index), new IFrame(), omt.getId().getPath());
348 int result = sfd.showDialog();
349 if (result == DataType.RETURN_TYPE_OK) {
350 if (index == -1) {
351 this.vSourceFiles.addSourceFiles(sfd.getSfid());
352 } else {
353 this.vSourceFiles.setSourceFiles(sfd.getSfid(), index);
354 }
355 this.showTable();
356 this.save();
357 sfd.dispose();
358 }
359 if (result == DataType.RETURN_TYPE_CANCEL) {
360 sfd.dispose();
361 }
362 }
363
364 /* (non-Javadoc)
365 * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)
366 *
367 * Override actionPerformed to listen all actions
368 *
369 */
370 public void actionPerformed(ActionEvent arg0) {
371 if (arg0.getSource() == jButtonAdd) {
372 showEdit(-1);
373 }
374 if (arg0.getSource() == jButtonUpdate) {
375 if (this.selectedRow < 0) {
376 Log.err("Please select one record first.");
377 return;
378 }
379 showEdit(selectedRow);
380 }
381
382 if (arg0.getSource() == jButtonRemove) {
383 if (jTable.isEditing()) {
384 jTable.getCellEditor().stopCellEditing();
385 }
386 if (selectedRow > -1) {
387 this.model.removeRow(selectedRow);
388 this.vSourceFiles.removeSourceFiles(selectedRow);
389 selectedRow = -1;
390 this.save();
391 }
392 }
393 }
394
395 /**
396 Clear all table rows
397
398 **/
399 private void clearAll() {
400 if (model != null) {
401 for (int index = model.getRowCount() - 1; index >= 0; index--) {
402 model.removeRow(index);
403 }
404 }
405 }
406
407 /**
408 Read content of vector and put then into table
409
410 **/
411 private void showTable() {
412 clearAll();
413
414 if (vSourceFiles.size() > 0) {
415 for (int index = 0; index < vSourceFiles.size(); index++) {
416 model.addRow(vSourceFiles.toStringVector(index));
417 }
418 }
419 this.jTable.repaint();
420 this.jTable.updateUI();
421 //this.jScrollPane.setViewportView(this.jTable);
422 }
423
424 /* (non-Javadoc)
425 * @see javax.swing.event.ListSelectionListener#valueChanged(javax.swing.event.ListSelectionEvent)
426 *
427 */
428 public void valueChanged(ListSelectionEvent arg0) {
429 if (arg0.getValueIsAdjusting()) {
430 return;
431 }
432 ListSelectionModel lsm = (ListSelectionModel) arg0.getSource();
433 if (lsm.isSelectionEmpty()) {
434 return;
435 } else {
436 selectedRow = lsm.getMinSelectionIndex();
437 }
438 }
439
440 /* (non-Javadoc)
441 * @see java.awt.event.MouseListener#mouseClicked(java.awt.event.MouseEvent)
442 *
443 */
444 public void mouseClicked(MouseEvent arg0) {
445 if (arg0.getClickCount() == 2) {
446 if (this.selectedRow < 0) {
447 return;
448 } else {
449 showEdit(selectedRow);
450 }
451 }
452 }
453
454 /* (non-Javadoc)
455 * @see java.awt.event.ComponentListener#componentResized(java.awt.event.ComponentEvent)
456 *
457 * Override componentResized to resize all components when frame's size is changed
458 */
459 public void componentResized(ComponentEvent arg0) {
460 int intCurrentWidth = this.getJContentPane().getWidth();
461 int intCurrentHeight = this.getJContentPane().getHeight();
462 int intPreferredWidth = this.getJContentPane().getPreferredSize().width;
463 int intPreferredHeight = this.getJContentPane().getPreferredSize().height;
464
465 resizeComponent(this.jScrollPaneTable, intCurrentWidth, intCurrentHeight, intPreferredWidth, intPreferredHeight);
466 relocateComponent(this.jButtonAdd, intCurrentWidth, intCurrentHeight, intPreferredWidth, intPreferredHeight,
467 DataType.SPACE_TO_RIGHT_FOR_ADD_BUTTON, DataType.SPACE_TO_BOTTOM_FOR_ADD_BUTTON);
468 relocateComponent(this.jButtonRemove, intCurrentWidth, intCurrentHeight, intPreferredWidth, intPreferredHeight,
469 DataType.SPACE_TO_RIGHT_FOR_REMOVE_BUTTON, DataType.SPACE_TO_BOTTOM_FOR_REMOVE_BUTTON);
470 relocateComponent(this.jButtonUpdate, intCurrentWidth, intCurrentHeight, intPreferredWidth, intPreferredHeight,
471 DataType.SPACE_TO_RIGHT_FOR_UPDATE_BUTTON, DataType.SPACE_TO_BOTTOM_FOR_UPDATE_BUTTON);
472 }
473 }