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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
|
/*
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
*
* Copyright @ 2015 Atlassian Pty Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.java.sip.communicator.plugin.advancedconfig;
import java.awt.*;
import javax.swing.*;
import javax.swing.event.*;
import net.java.sip.communicator.plugin.desktoputil.*;
import net.java.sip.communicator.service.gui.*;
import net.java.sip.communicator.util.*;
import org.osgi.framework.*;
/**
* The advanced configuration panel.
*
* @author Yana Stamcheva
*/
public class AdvancedConfigurationPanel
extends TransparentPanel
implements ConfigurationForm,
ConfigurationContainer,
ServiceListener,
ListSelectionListener
{
/**
* Serial version UID.
*/
private static final long serialVersionUID = 0L;
/**
* The <tt>Logger</tt> used by this <tt>AdvancedConfigurationPanel</tt> for
* logging output.
*/
private final Logger logger
= Logger.getLogger(AdvancedConfigurationPanel.class);
/**
* The configuration list.
*/
private final JList configList = new JList();
/**
* The center panel.
*/
private final JPanel centerPanel = new TransparentPanel(new BorderLayout());
/**
* Creates an instance of the <tt>AdvancedConfigurationPanel</tt>.
*/
public AdvancedConfigurationPanel()
{
super(new BorderLayout(10, 0));
initList();
centerPanel.setPreferredSize(new Dimension(500, 500));
add(centerPanel, BorderLayout.CENTER);
}
/**
* Initializes the config list.
*/
private void initList()
{
configList.setModel(new DefaultListModel());
configList.setCellRenderer(new ConfigListCellRenderer());
configList.addListSelectionListener(this);
configList.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
JScrollPane configScrollList = new JScrollPane();
configScrollList.getVerticalScrollBar().setUnitIncrement(30);
configScrollList.getViewport().add(configList);
add(configScrollList, BorderLayout.WEST);
String osgiFilter = "("
+ ConfigurationForm.FORM_TYPE
+ "="+ConfigurationForm.ADVANCED_TYPE+")";
ServiceReference[] confFormsRefs = null;
try
{
confFormsRefs = AdvancedConfigActivator.bundleContext
.getServiceReferences( ConfigurationForm.class.getName(),
osgiFilter);
}
catch (InvalidSyntaxException ex)
{}
if(confFormsRefs != null)
{
for (int i = 0; i < confFormsRefs.length; i++)
{
ConfigurationForm form
= (ConfigurationForm) AdvancedConfigActivator.bundleContext
.getService(confFormsRefs[i]);
if (form.isAdvanced())
this.addConfigForm(form);
}
}
}
/**
* Shows on the right the configuration form given by the given
* <tt>ConfigFormDescriptor</tt>.
*
* @param configForm the configuration form to show
*/
private void showFormContent(ConfigurationForm configForm)
{
this.centerPanel.removeAll();
JComponent configFormPanel
= (JComponent) configForm.getForm();
configFormPanel.setOpaque(false);
this.centerPanel.add(configFormPanel, BorderLayout.CENTER);
this.centerPanel.revalidate();
this.centerPanel.repaint();
}
/**
* Handles registration of a new configuration form.
* @param event the <tt>ServiceEvent</tt> that notified us
*/
public void serviceChanged(ServiceEvent event)
{
Object sService
= AdvancedConfigActivator.bundleContext
.getService(event.getServiceReference());
// we don't care if the source service is not a configuration form
if (!(sService instanceof ConfigurationForm))
return;
ConfigurationForm configForm = (ConfigurationForm) sService;
/*
* This AdvancedConfigurationPanel is an advanced ConfigurationForm so
* don't try to add it to itself.
*/
if ((configForm == this) || !configForm.isAdvanced())
return;
switch (event.getType())
{
case ServiceEvent.REGISTERED:
if (logger.isInfoEnabled())
logger.info("Handling registration of a new Configuration Form.");
this.addConfigForm(configForm);
break;
case ServiceEvent.UNREGISTERING:
this.removeConfigForm(configForm);
break;
}
}
/**
* Adds a new <tt>ConfigurationForm</tt> to this list.
* @param configForm The <tt>ConfigurationForm</tt> to add.
*/
public void addConfigForm(final ConfigurationForm configForm)
{
if(!SwingUtilities.isEventDispatchThread())
{
SwingUtilities.invokeLater(new Runnable()
{
public void run()
{
addConfigForm(configForm);
}
});
return;
}
if (configForm == null)
throw new IllegalArgumentException("configForm");
DefaultListModel listModel = (DefaultListModel) configList.getModel();
int i = 0;
int count = listModel.getSize();
int configFormIndex = configForm.getIndex();
for (; i < count; i++)
{
ConfigurationForm form = (ConfigurationForm) listModel.get(i);
if (configFormIndex < form.getIndex())
break;
}
listModel.add(i, configForm);
}
/**
* Implements <code>ApplicationWindow.show</code> method.
*
* @param isVisible specifies whether the frame is to be visible or not.
*/
@Override
public void setVisible(boolean isVisible)
{
if (isVisible && configList.getSelectedIndex() < 0)
{
this.configList.setSelectedIndex(0);
}
super.setVisible(isVisible);
}
/**
* Removes a <tt>ConfigurationForm</tt> from this list.
* @param configForm The <tt>ConfigurationForm</tt> to remove.
*/
public void removeConfigForm(final ConfigurationForm configForm)
{
if(!SwingUtilities.isEventDispatchThread())
{
SwingUtilities.invokeLater(new Runnable()
{
public void run()
{
removeConfigForm(configForm);
}
});
return;
}
DefaultListModel listModel = (DefaultListModel) configList.getModel();
for(int count = listModel.getSize(), i = count - 1; i >= 0; i--)
{
ConfigurationForm form
= (ConfigurationForm) listModel.get(i);
if(form.equals(configForm))
{
listModel.remove(i);
/*
* TODO We may just consider not allowing duplicates on addition
* and then break here.
*/
}
}
}
/**
* A custom cell renderer that represents a <tt>ConfigurationForm</tt>.
*/
private class ConfigListCellRenderer extends DefaultListCellRenderer
{
/**
* Serial version UID.
*/
private static final long serialVersionUID = 0L;
private boolean isSelected = false;
private final Color selectedColor
= new Color(AdvancedConfigActivator.getResources().
getColor("service.gui.LIST_SELECTION_COLOR"));
/**
* Creates an instance of <tt>ConfigListCellRenderer</tt> and specifies
* that this renderer is transparent.
*/
public ConfigListCellRenderer()
{
this.setBorder(BorderFactory.createEmptyBorder(5, 5, 5, 5));
this.setOpaque(false);
}
/**
* Returns the component representing the cell given by parameters.
* @param list the parent list
* @param value the value of the cell
* @param index the index of the cell
* @param isSelected indicates if the cell is selected
* @param cellHasFocus indicates if the cell has the focus
* @return the component representing the cell
*/
@Override
public Component getListCellRendererComponent( JList list,
Object value,
int index,
boolean isSelected,
boolean cellHasFocus)
{
ConfigurationForm configForm = (ConfigurationForm) value;
this.isSelected = isSelected;
this.setText(configForm.getTitle());
return this;
}
/**
* Paint a background for all groups and a round blue border and
* background when a cell is selected.
* @param g the <tt>Graphics</tt> object
*/
@Override
public void paintComponent(Graphics g)
{
Graphics g2 = g.create();
try
{
internalPaintComponent(g2);
}
finally
{
g2.dispose();
}
super.paintComponent(g);
}
/**
* Paint a background for all groups and a round blue border and
* background when a cell is selected.
* @param g the <tt>Graphics</tt> object
*/
private void internalPaintComponent(Graphics g)
{
AntialiasingManager.activateAntialiasing(g);
Graphics2D g2 = (Graphics2D) g;
if (isSelected)
{
g2.setColor(selectedColor);
g2.fillRect(0, 0, this.getWidth(), this.getHeight());
}
}
}
/**
* Called when user selects a component in the list of configuration forms.
* @param e the <tt>ListSelectionEvent</tt>
*/
public void valueChanged(ListSelectionEvent e)
{
if(!e.getValueIsAdjusting())
{
ConfigurationForm configForm
= (ConfigurationForm) configList.getSelectedValue();
if(configForm != null)
showFormContent(configForm);
}
}
/**
* Selects the given <tt>ConfigurationForm</tt>.
*
* @param configForm the <tt>ConfigurationForm</tt> to select
*/
public void setSelected(ConfigurationForm configForm)
{
configList.setSelectedValue(configForm, true);
}
/**
* Returns the title of the form.
* @return the title of the form
*/
public String getTitle()
{
return AdvancedConfigActivator.getResources()
.getI18NString("service.gui.ADVANCED");
}
/**
* Returns the icon of the form.
* @return a byte array containing the icon of the form
*/
public byte[] getIcon()
{
return AdvancedConfigActivator.getResources()
.getImageInBytes("plugin.advancedconfig.PLUGIN_ICON");
}
/**
* Returns the form component.
* @return the form component
*/
public Object getForm()
{
return this;
}
/**
* Returns the index of the form in its parent container.
* @return the index of the form in its parent container
*/
public int getIndex()
{
return 300;
}
/**
* Indicates if the form is an advanced form.
* @return <tt>true</tt> to indicate that this is an advanced form,
* otherwise returns <tt>false</tt>
*/
public boolean isAdvanced()
{
return false;
}
/**
* Validates the currently selected configuration form. This method is meant
* to be used by configuration forms the re-validate when a new component
* has been added or size has changed.
*/
public void validateCurrentForm() {}
}
|