]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/PackageEditor/src/org/tianocore/packaging/UpdateLibraryClass.java
Initial import.
[mirror_edk2.git] / Tools / Source / PackageEditor / src / org / tianocore / packaging / UpdateLibraryClass.java
1 /** @file
2 Java class UpdateLibraryClass is GUI for update library class in spd file.
3
4 Copyright (c) 2006, Intel Corporation
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12 **/
13 package org.tianocore.packaging;
14
15 import javax.swing.JPanel;
16 import javax.swing.JFrame;
17 import javax.swing.JLabel;
18 import javax.swing.JTextField;
19 import javax.swing.JButton;
20
21 import javax.swing.JScrollPane;
22 import javax.swing.JTable;
23 import javax.swing.table.*;
24
25 import org.tianocore.common.Tools;
26
27 import java.awt.event.ActionEvent;
28 import java.awt.event.ActionListener;
29 import java.io.*;
30
31 /**
32 GUI for update library class in spd file
33
34 @since PackageEditor 1.0
35 **/
36 public class UpdateLibraryClass extends JFrame implements ActionListener {
37
38 private JPanel jContentPane = null;
39
40 private JScrollPane jScrollPane = null;
41
42 private JTable jTable = null;
43
44 private SpdFileContents sfc = null;
45
46 private JButton jButtonOk = null;
47
48 private JButton jButtonCancel = null;
49
50 private DefaultTableModel model = null;
51
52 private JButton jButton = null;
53
54 /**
55 This is the default constructor
56 **/
57 public UpdateLibraryClass(SpdFileContents sfc) {
58 super();
59 this.sfc = sfc;
60 initialize();
61
62 }
63
64 public void actionPerformed(ActionEvent arg0) {
65 if (arg0.getSource() == jButtonOk) {
66 this.save();
67 this.dispose();
68
69 }
70 if (arg0.getSource() == jButtonCancel) {
71 this.dispose();
72
73 }
74
75 if (arg0.getSource() == jButton) {
76 String[] o = { "", "" };
77 model.addRow(o);
78 }
79 }
80
81 /**
82 This method initializes this
83
84 @return void
85 **/
86 private void initialize() {
87 this.setSize(604, 553);
88 this.setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);
89 this.setTitle("Update Library Class Declarations");
90 this.setContentPane(getJContentPane());
91 }
92
93 /**
94 This method initializes jContentPane
95
96 @return javax.swing.JPanel
97 **/
98 private JPanel getJContentPane() {
99 if (jContentPane == null) {
100 jContentPane = new JPanel();
101 jContentPane.setLayout(null);
102 jContentPane.add(getJScrollPane(), null);
103 jContentPane.add(getJButtonOk(), null);
104 jContentPane.add(getJButtonCancel(), null);
105 jContentPane.add(getJButton(), null);
106 }
107 return jContentPane;
108 }
109
110 /**
111 This method initializes jScrollPane
112
113 @return javax.swing.JScrollPane
114 **/
115 private JScrollPane getJScrollPane() {
116 if (jScrollPane == null) {
117 jScrollPane = new JScrollPane();
118 jScrollPane.setBounds(new java.awt.Rectangle(38, 45, 453, 419));
119 jScrollPane.setViewportView(getJTable());
120 }
121 return jScrollPane;
122 }
123
124 /**
125 This method initializes jTable
126
127 @return javax.swing.JTable
128 **/
129 private JTable getJTable() {
130 if (jTable == null) {
131 model = new DefaultTableModel();
132 jTable = new JTable(model);
133 jTable.setRowHeight(20);
134 model.addColumn("LibraryClass");
135 model.addColumn("IncludeHeader");
136 if (sfc.getSpdLibClassDeclarationCount() == 0) {
137 return jTable;
138 }
139 //
140 // initialize table using SpdFileContents object
141 //
142 String[][] saa = new String[sfc.getSpdLibClassDeclarationCount()][2];
143 sfc.getSpdLibClassDeclarations(saa);
144 int i = 0;
145 while (i < saa.length) {
146 model.addRow(saa[i]);
147 i++;
148 }
149
150 }
151 return jTable;
152 }
153
154 /**
155 Remove original library classes before saving updated ones
156 **/
157 protected void save() {
158 sfc.removeSpdLibClass();
159 int rowCount = model.getRowCount();
160 int i = 0;
161 while (i < rowCount) {
162 String libClass = null;
163 if (model.getValueAt(i, 0) != null) {
164 libClass = model.getValueAt(i, 0).toString();
165 }
166 String headerFile = null;
167 if (model.getValueAt(i, 1) != null) {
168 headerFile = model.getValueAt(i, 1).toString();
169 }
170 sfc.genSpdLibClassDeclarations(libClass, null, headerFile, null, null, null, null, null, null, null);
171 i++;
172 }
173 }
174
175 /**
176 This method initializes jButtonOk
177
178 @return javax.swing.JButton
179 **/
180 private JButton getJButtonOk() {
181 if (jButtonOk == null) {
182 jButtonOk = new JButton();
183 jButtonOk.setText("Ok");
184 jButtonOk.setSize(new java.awt.Dimension(84, 20));
185 jButtonOk.setLocation(new java.awt.Point(316, 486));
186 jButtonOk.addActionListener(this);
187 }
188 return jButtonOk;
189 }
190
191 /**
192 This method initializes jButtonCancel
193
194 @return javax.swing.JButton
195 **/
196 private JButton getJButtonCancel() {
197 if (jButtonCancel == null) {
198 jButtonCancel = new JButton();
199 jButtonCancel.setText("Cancel");
200 jButtonCancel.setSize(new java.awt.Dimension(82, 20));
201 jButtonCancel.setLocation(new java.awt.Point(411, 486));
202 jButtonCancel.addActionListener(this);
203 }
204 return jButtonCancel;
205 }
206
207 /**
208 This method initializes jButton
209
210 @return javax.swing.JButton
211 **/
212 private JButton getJButton() {
213 if (jButton == null) {
214 jButton = new JButton();
215 jButton.setBounds(new java.awt.Rectangle(221, 486, 79, 19));
216 jButton.setText("Insert");
217 jButton.addActionListener(this);
218 }
219 return jButton;
220 }
221 } // @jve:decl-index=0:visual-constraint="11,7"