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
|
/* DebuggingPanel.java -- Displays and sets options for debugging.
Copyright (C) 2010 Red Hat
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package net.sourceforge.jnlp.controlpanel;
import java.awt.Component;
import java.awt.Dimension;
import java.awt.FlowLayout;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.event.ItemEvent;
import java.awt.event.ItemListener;
import javax.swing.Box;
import javax.swing.JCheckBox;
import javax.swing.JComboBox;
import javax.swing.JLabel;
import javax.swing.JPanel;
import net.sourceforge.jnlp.config.DeploymentConfiguration;
import net.sourceforge.jnlp.runtime.Translator;
import net.sourceforge.jnlp.util.logging.LogConfig;
/**
* This displays the options related to debugging.
*
* @author Andrew Su (asu@redhat.com, andrew.su@utoronto.ca)
*
*/
public class DebuggingPanel extends NamedBorderPanel implements ItemListener {
/** List of properties used by checkboxes in this panel */
public static String[] properties = {
DeploymentConfiguration.KEY_ENABLE_LOGGING,
DeploymentConfiguration.KEY_ENABLE_LOGGING_HEADERS,
DeploymentConfiguration.KEY_ENABLE_LOGGING_TOFILE,
DeploymentConfiguration.KEY_ENABLE_LOGGING_TOSTREAMS,
DeploymentConfiguration.KEY_ENABLE_LOGGING_TOSYSTEMLOG
};
private DeploymentConfiguration config;
/**
* Create a new instance of the debugging panel.
*
* @param config
* loaded DeploymentConfiguration file.
*/
public DebuggingPanel(DeploymentConfiguration config) {
super(Translator.R("CPHeadDebugging"), new GridBagLayout());
this.config = config;
addComponents();
}
/**
* Add components to panel.
*/
private void addComponents() {
GridBagConstraints c = new GridBagConstraints();
JLabel debuggingDescription = new JLabel("<html>" + Translator.R("CPDebuggingDescription") + "<hr /><br /></html>");
JCheckBox[] debuggingOptions = {
new JCheckBox(Translator.R("DPEnableLogging")),
new JCheckBox(Translator.R("DPEnableHeaders")),
new JCheckBox(Translator.R("DPEnableFile")),
new JCheckBox(Translator.R("DPEnableStds")),
new JCheckBox(Translator.R("DPEnableSyslog"))
};
String[] hints = {
(Translator.R("DPEnableLoggingHint")),
(Translator.R("DPEnableHeadersHint")),
(Translator.R("DPEnableFileHint", LogConfig.getLogConfig().getIcedteaLogDir())),
(Translator.R("DPEnableStdsHint")),
(Translator.R("DPEnableSyslogHint"))
};
ComboItem[] javaConsoleItems = { new ComboItem(Translator.R("DPDisable"), "DISABLE"),
new ComboItem(Translator.R("DPHide"), "HIDE"),
new ComboItem(Translator.R("DPShow"), "SHOW"), };
JLabel consoleLabel = new JLabel(Translator.R("DPJavaConsole"));
JComboBox consoleComboBox = new JComboBox();
consoleComboBox.setActionCommand(DeploymentConfiguration.KEY_CONSOLE_STARTUP_MODE); // The property this comboBox affects.
JPanel consolePanel = new JPanel();
consolePanel.setLayout(new FlowLayout(FlowLayout.LEADING));
consolePanel.add(consoleLabel);
consolePanel.add(consoleComboBox);
c.fill = GridBagConstraints.BOTH;
c.weightx = 1;
c.gridx = 0;
c.gridy = 0;
add(debuggingDescription, c);
/*
* Add the items to the panel unless we can not get the values for them.
*/
for (int i = 0; i < properties.length; i++) {
String s = config.getProperty(properties[i]);
c.gridy++;
if (i == 2) {
JLabel space = new JLabel("<html>" + Translator.R("CPDebuggingPossibilites") + ":</html>");
add(space, c);
c.gridy++;
}
debuggingOptions[i].setSelected(Boolean.parseBoolean(s));
debuggingOptions[i].setActionCommand(properties[i]);
debuggingOptions[i].setToolTipText(hints[i]);
debuggingOptions[i].addItemListener(this);
add(debuggingOptions[i], c);
}
for (int j = 0; j < javaConsoleItems.length; j++) {
consoleComboBox.addItem(javaConsoleItems[j]);
if (config.getProperty(DeploymentConfiguration.KEY_CONSOLE_STARTUP_MODE).equals(javaConsoleItems[j].getValue())) {
consoleComboBox.setSelectedIndex(j);
}
}
c.gridy++;
consoleComboBox.addItemListener(this);
add(consolePanel, c);
// pack the bottom so that it doesn't change size if resized.
Component filler = Box.createRigidArea(new Dimension(1, 1));
c.gridy++;
c.weighty = 1;
add(filler, c);
}
@Override
public void itemStateChanged(ItemEvent e) {
Object o = e.getSource();
if (o instanceof JCheckBox) {
JCheckBox jcb = (JCheckBox) o;
config.setProperty(jcb.getActionCommand(), String.valueOf(jcb.isSelected()));
} else if (o instanceof JComboBox) {
JComboBox jcb = (JComboBox) o;
ComboItem c = (ComboItem) e.getItem();
config.setProperty(jcb.getActionCommand(), c.getValue());
}
}
}
|