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
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
|
/*
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package net.java.sip.communicator.plugin.generalconfig;
import java.awt.*;
import java.awt.event.*;
import java.io.*;
import java.util.*;
import javax.swing.*;
import javax.swing.border.*;
import javax.swing.event.*;
import net.java.sip.communicator.plugin.generalconfig.autoaway.*;
import net.java.sip.communicator.service.systray.*;
import net.java.sip.communicator.util.*;
import net.java.sip.communicator.util.swing.*;
import org.osgi.framework.*;
/**
* The general configuration form.
*
* @author Yana Stamcheva
*/
public class GeneralConfigurationPanel
extends TransparentPanel
{
/**
* Serial version UID.
*/
private static final long serialVersionUID = 0L;
/**
* The <tt>Logger</tt> used by this <tt>GeneralConfigurationPanel</tt> for
* logging output.
*/
private final Logger logger
= Logger.getLogger(GeneralConfigurationPanel.class);
/**
* Indicates if the Startup configuration panel should be disabled, i.e.
* not visible to the user.
*/
private static final String STARTUP_CONFIG_DISABLED_PROP
=
"net.java.sip.communicator.plugin.generalconfig.STARTUP_CONFIG_DISABLED";
/**
* Indicates if the Message configuration panel should be disabled, i.e.
* not visible to the user.
*/
private static final String MESSAGE_CONFIG_DISABLED_PROP
=
"net.java.sip.communicator.plugin.generalconfig.MESSAGE_CONFIG_DISABLED";
/**
* Indicates if the AutoAway configuration panel should be disabled, i.e.
* not visible to the user.
*/
private static final String AUTO_AWAY_CONFIG_DISABLED_PROP
=
"net.java.sip.communicator.plugin.generalconfig.AUTOAWAY_CONFIG_DISABLED";
/**
* Indicates if the Notification configuration panel should be disabled,
* i.e. not visible to the user.
*/
private static final String NOTIFICATION_CONFIG_DISABLED_PROP
=
"net.java.sip.communicator.plugin.generalconfig.NOTIFICATION_CONFIG_DISABLED";
/**
* Indicates if the Locale configuration panel should be disabled, i.e.
* not visible to the user.
*/
private static final String LOCALE_CONFIG_DISABLED_PROP
=
"net.java.sip.communicator.plugin.generalconfig.LOCALE_CONFIG_DISABLED";
/**
* Indicates if the Call configuration panel should be disabled, i.e.
* not visible to the user.
*/
private static final String CALL_CONFIG_DISABLED_PROP
=
"net.java.sip.communicator.plugin.generalconfig.CALL_CONFIG_DISABLED";
/**
* Creates the general configuration panel.
*/
public GeneralConfigurationPanel()
{
super(new BorderLayout());
TransparentPanel mainPanel = new TransparentPanel();
BoxLayout boxLayout = new BoxLayout(mainPanel, BoxLayout.Y_AXIS);
mainPanel.setLayout(boxLayout);
mainPanel.setBorder(new EmptyBorder(0, 0, 0, 10));
final JScrollPane scroller = new JScrollPane(mainPanel);
scroller.setOpaque(false);
scroller.getViewport().setOpaque(false);
scroller.setPreferredSize(new Dimension(500, 420));
scroller.setBorder(new EmptyBorder(0, 0, 0, 0));
this.add(scroller, BorderLayout.CENTER);
if(!GeneralConfigPluginActivator.getConfigurationService()
.getBoolean(STARTUP_CONFIG_DISABLED_PROP, false))
{
Component startupConfigPanel = createStartupConfigPanel();
if (startupConfigPanel != null)
{
mainPanel.add(startupConfigPanel);
mainPanel.add(Box.createVerticalStrut(10));
}
}
if(!GeneralConfigPluginActivator.getConfigurationService()
.getBoolean(MESSAGE_CONFIG_DISABLED_PROP, false))
{
mainPanel.add(createMessageConfigPanel());
mainPanel.add(Box.createVerticalStrut(10));
}
if(!GeneralConfigPluginActivator.getConfigurationService()
.getBoolean(AUTO_AWAY_CONFIG_DISABLED_PROP, false))
{
mainPanel.add(new AutoAwayConfigurationPanel());
mainPanel.add(Box.createVerticalStrut(10));
}
if(!GeneralConfigPluginActivator.getConfigurationService()
.getBoolean(NOTIFICATION_CONFIG_DISABLED_PROP, false))
{
Component notifConfigPanel = createNotificationConfigPanel();
if (notifConfigPanel != null)
{
mainPanel.add(notifConfigPanel);
mainPanel.add(Box.createVerticalStrut(10));
}
}
if(!GeneralConfigPluginActivator.getConfigurationService()
.getBoolean(LOCALE_CONFIG_DISABLED_PROP, false))
{
mainPanel.add(createLocaleConfigPanel());
mainPanel.add(Box.createVerticalStrut(10));
}
if(!GeneralConfigPluginActivator.getConfigurationService()
.getBoolean(CALL_CONFIG_DISABLED_PROP, false))
{
mainPanel.add(createCallConfigPanel());
mainPanel.add(Box.createVerticalStrut(10));
}
SwingUtilities.invokeLater(new Runnable()
{
public void run()
{
scroller.getVerticalScrollBar().setValue(0);
scroller.revalidate();
scroller.repaint();
}
});
}
/**
* Returns the application name.
* @return the application name
*/
private String getApplicationName()
{
return Resources.getSettingsString("service.gui.APPLICATION_NAME");
}
/**
* Initializes the auto start checkbox. Used only on windows.
* @return the created auto start check box
*/
private Component createAutoStartCheckBox()
{
final JCheckBox autoStartCheckBox = new SIPCommCheckBox();
String label = Resources.getString(
"plugin.generalconfig.AUTO_START",
new String[]{getApplicationName()});
autoStartCheckBox.setText(label);
autoStartCheckBox.setToolTipText(label);
autoStartCheckBox.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
try
{
setAutostart(autoStartCheckBox.isSelected());
}
catch (Exception ex)
{
logger.error("Cannot create/delete startup shortcut", ex);
}
}
});
try
{
autoStartCheckBox.setSelected(
WindowsStartup.isStartupEnabled(getApplicationName()));
}
catch (Exception e)
{
logger.error(e);
}
return autoStartCheckBox;
}
/**
* Creates the message configuration panel.
* @return the created panel
*/
private Component createMessageConfigPanel()
{
JPanel configPanel
= GeneralConfigPluginActivator.createConfigSectionComponent(
Resources.getString("service.gui.MESSAGE"));
configPanel.add(createGroupMessagesCheckbox());
configPanel.add(createHistoryPanel());
configPanel.add(createSendMessagePanel());
configPanel.add(createTypingNitificationsCheckBox());
configPanel.add(createBringToFrontCheckBox());
configPanel.add(createMultichatCheckbox());
return configPanel;
}
/**
* Initializes the group messages check box.
* @return the created check box
*/
private Component createGroupMessagesCheckbox()
{
final JCheckBox groupMessagesCheckBox = new SIPCommCheckBox();
groupMessagesCheckBox.setText(
Resources.getString(
"plugin.generalconfig.GROUP_CHAT_MESSAGES"));
groupMessagesCheckBox.setAlignmentX(JCheckBox.LEFT_ALIGNMENT);
groupMessagesCheckBox.setSelected(
ConfigurationManager.isMultiChatWindowEnabled());
groupMessagesCheckBox.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
ConfigurationManager.setMultiChatWindowEnabled(
groupMessagesCheckBox.isSelected());
}
});
return groupMessagesCheckBox;
}
/**
* Initializes the group messages check box.
* @return the created check box
*/
private Component createMultichatCheckbox()
{
final JCheckBox leaveChatroomCheckBox = new SIPCommCheckBox();
leaveChatroomCheckBox.setText(
Resources.getString(
"plugin.generalconfig.LEAVE_CHATROOM_ON_WINDOW_CLOSE"));
leaveChatroomCheckBox.setAlignmentX(JCheckBox.LEFT_ALIGNMENT);
leaveChatroomCheckBox.setSelected(
ConfigurationManager.isLeaveChatRoomOnWindowCloseEnabled());
leaveChatroomCheckBox.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
ConfigurationManager.setLeaveChatRoomOnWindowClose(
leaveChatroomCheckBox.isSelected());
}
});
return leaveChatroomCheckBox;
}
/**
* Initializes the history panel.
* @return the created history panel
*/
private Component createHistoryPanel()
{
JPanel logHistoryPanel = new TransparentPanel();
logHistoryPanel.setLayout(new BorderLayout());
logHistoryPanel.setAlignmentX(JCheckBox.LEFT_ALIGNMENT);
// Log history check box.
final JCheckBox logHistoryCheckBox = new SIPCommCheckBox();
logHistoryPanel.add(logHistoryCheckBox, BorderLayout.NORTH);
logHistoryCheckBox.setText(
Resources.getString("plugin.generalconfig.LOG_HISTORY"));
logHistoryCheckBox.setSelected(
ConfigurationManager.isHistoryLoggingEnabled());
logHistoryCheckBox.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
ConfigurationManager.setHistoryLoggingEnabled(
logHistoryCheckBox.isSelected());
}
});
// Show history check box.
JPanel showHistoryPanel = new TransparentPanel();
showHistoryPanel.setBorder(
BorderFactory.createEmptyBorder(0, 10, 0, 0));
logHistoryPanel.add(showHistoryPanel, BorderLayout.SOUTH);
final JCheckBox showHistoryCheckBox = new SIPCommCheckBox();
showHistoryPanel.add(showHistoryCheckBox);
showHistoryCheckBox.setText(
Resources.getString("plugin.generalconfig.SHOW_HISTORY"));
showHistoryCheckBox.setSelected(
ConfigurationManager.isHistoryShown());
showHistoryCheckBox.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
ConfigurationManager.setHistoryShown(
showHistoryCheckBox.isSelected());
}
});
// History size.
SpinnerNumberModel historySizeSpinnerModel =
new SpinnerNumberModel(0, 0, 140, 1);
final JSpinner historySizeSpinner = new JSpinner();
showHistoryPanel.add(historySizeSpinner);
historySizeSpinner.setModel(historySizeSpinnerModel);
historySizeSpinner.setValue(
ConfigurationManager.getChatHistorySize());
logHistoryCheckBox.addChangeListener(new ChangeListener()
{
public void stateChanged(ChangeEvent e)
{
showHistoryCheckBox.setEnabled(
logHistoryCheckBox.isSelected());
historySizeSpinner.setEnabled(
logHistoryCheckBox.isSelected());
}
});
showHistoryCheckBox.addChangeListener(new ChangeListener()
{
public void stateChanged(ChangeEvent e)
{
historySizeSpinner.setEnabled(
showHistoryCheckBox.isSelected());
}
});
historySizeSpinnerModel.addChangeListener(
new ChangeListener()
{
public void stateChanged(ChangeEvent e)
{
ConfigurationManager.setChatHistorySize(
((Integer) historySizeSpinner
.getValue()).intValue());
}
});
JLabel historySizeLabel = new JLabel();
showHistoryPanel.add(historySizeLabel);
historySizeLabel.setText(
Resources.getString("plugin.generalconfig.HISTORY_SIZE"));
if (!ConfigurationManager.isHistoryLoggingEnabled())
{
showHistoryCheckBox.setEnabled(false);
historySizeSpinner.setEnabled(false);
}
if (!ConfigurationManager.isHistoryShown())
{
historySizeSpinner.setEnabled(false);
}
return logHistoryPanel;
}
/**
* Initializes the send message configuration panel.
* @return the created message config panel
*/
private Component createSendMessagePanel()
{
TransparentPanel sendMessagePanel
= new TransparentPanel(new BorderLayout(5, 5));
sendMessagePanel.setAlignmentX(JCheckBox.LEFT_ALIGNMENT);
JLabel sendMessageLabel = new JLabel();
sendMessagePanel.add(sendMessageLabel, BorderLayout.WEST);
sendMessageLabel.setText(
Resources.getString("plugin.generalconfig.SEND_MESSAGES_WITH"));
ComboBoxModel sendMessageComboBoxModel =
new DefaultComboBoxModel(
new String[] {
ConfigurationManager.ENTER_COMMAND,
ConfigurationManager.CTRL_ENTER_COMMAND });
final JComboBox sendMessageComboBox = new JComboBox();
sendMessagePanel.add(sendMessageComboBox);
sendMessageComboBox.setModel(sendMessageComboBoxModel);
sendMessageComboBox.setSelectedItem(
ConfigurationManager.getSendMessageCommand());
sendMessageComboBox.addItemListener(new ItemListener()
{
public void itemStateChanged(ItemEvent arg0)
{
ConfigurationManager.setSendMessageCommand(
(String)sendMessageComboBox.getSelectedItem());
}
});
return sendMessagePanel;
}
/**
* Initializes typing notifications panel.
* @return the created check box
*/
private Component createTypingNitificationsCheckBox()
{
final JCheckBox enableTypingNotifiCheckBox = new SIPCommCheckBox();
enableTypingNotifiCheckBox.setLayout(null);
enableTypingNotifiCheckBox.setAlignmentX(JCheckBox.LEFT_ALIGNMENT);
enableTypingNotifiCheckBox.setText(
Resources.getString("service.gui.ENABLE_TYPING_NOTIFICATIONS"));
enableTypingNotifiCheckBox.setPreferredSize(
new Dimension(253, 20));
enableTypingNotifiCheckBox.setSelected(
ConfigurationManager.isSendTypingNotifications());
enableTypingNotifiCheckBox.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
ConfigurationManager.setSendTypingNotifications(
enableTypingNotifiCheckBox.isSelected());
}
});
return enableTypingNotifiCheckBox;
}
/**
* Initializes the bring to front check box.
* @return the created check box
*/
private Component createBringToFrontCheckBox()
{
final JCheckBox bringToFrontCheckBox = new SIPCommCheckBox();
bringToFrontCheckBox.setText(
Resources.getString("plugin.generalconfig.BRING_WINDOW_TO_FRONT"));
bringToFrontCheckBox.setAlignmentX(Component.LEFT_ALIGNMENT);
bringToFrontCheckBox.setSelected(
ConfigurationManager.isAutoPopupNewMessage());
bringToFrontCheckBox.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
ConfigurationManager.setAutoPopupNewMessage(
bringToFrontCheckBox.isSelected());
}
});
return bringToFrontCheckBox;
}
/**
* Initializes the notification configuration panel.
* @return the created panel
*/
private Component createNotificationConfigPanel()
{
ServiceReference[] handlerRefs = null;
BundleContext bc = GeneralConfigPluginActivator.bundleContext;
try
{
handlerRefs = bc.getServiceReferences(
PopupMessageHandler.class.getName(),
null);
}
catch (InvalidSyntaxException ex)
{
logger.warn("Error while retrieving service refs", ex);
}
if (handlerRefs == null)
return null;
JPanel notifConfigPanel = GeneralConfigPluginActivator.
createConfigSectionComponent(
Resources.getString(
"plugin.notificationconfig.POPUP_NOTIF_HANDLER"));
final JComboBox notifConfigComboBox = new JComboBox();
String configuredHandler = (String) GeneralConfigPluginActivator
.getConfigurationService().getProperty("systray.POPUP_HANDLER");
for (ServiceReference ref : handlerRefs)
{
PopupMessageHandler handler =
(PopupMessageHandler) bc.getService(ref);
notifConfigComboBox.addItem(handler);
if (configuredHandler != null &&
configuredHandler.equals(handler.getClass().getName()))
{
notifConfigComboBox.setSelectedItem(handler);
}
}
// We need an entry in combo box that represents automatic
// popup handler selection in systray service. It is selected
// only if there is no user preference regarding which popup
// handler to use.
String auto = "Auto";
notifConfigComboBox.addItem(auto);
if (configuredHandler == null)
{
notifConfigComboBox.setSelectedItem(auto);
}
notifConfigComboBox.addItemListener(new ItemListener()
{
public void itemStateChanged(ItemEvent evt)
{
if (notifConfigComboBox.getSelectedItem() instanceof String)
{
// "Auto" selected. Delete the user's preference and
// select the best available handler.
ConfigurationManager.setPopupHandlerConfig(null);
GeneralConfigPluginActivator.getSystrayService()
.selectBestPopupMessageHandler();
} else
{
PopupMessageHandler handler =
(PopupMessageHandler)
notifConfigComboBox.getSelectedItem();
ConfigurationManager.setPopupHandlerConfig(
handler.getClass().getName());
GeneralConfigPluginActivator.getSystrayService()
.setActivePopupMessageHandler(handler);
}
}
});
notifConfigPanel.add(notifConfigComboBox);
return notifConfigPanel;
}
/**
* Initializes the local configuration panel.
* @return the created component
*/
private Component createLocaleConfigPanel()
{
JPanel localeConfigPanel = GeneralConfigPluginActivator.
createConfigSectionComponent(
Resources.getString("plugin.generalconfig.DEFAULT_LANGUAGE"));
final JComboBox localesConfigComboBox = new JComboBox();
Iterator<Locale> iter =
Resources.getResources().getAvailableLocales();
while (iter.hasNext())
{
Locale locale = iter.next();
localesConfigComboBox.addItem(
locale.getDisplayLanguage(locale));
}
Locale currLocale =
ConfigurationManager.getCurrentLanguage();
localesConfigComboBox.setSelectedItem(currLocale
.getDisplayLanguage(currLocale));
localesConfigComboBox.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
GeneralConfigPluginActivator.getUIService().getPopupDialog().
showMessagePopupDialog(Resources.getString(
"plugin.generalconfig.DEFAULT_LANGUAGE_RESTART_WARN"));
String language =
(String)localesConfigComboBox.getSelectedItem();
Iterator<Locale> iter =
Resources.getResources().getAvailableLocales();
while (iter.hasNext())
{
Locale locale = iter.next();
if(locale.getDisplayLanguage(locale)
.equals(language))
{
ConfigurationManager.setLanguage(locale);
break;
}
}
}
});
localeConfigPanel.add(localesConfigComboBox);
String label = "* " +
Resources.getString(
"plugin.generalconfig.DEFAULT_LANGUAGE_RESTART_WARN");
JLabel warnLabel = new JLabel(label);
warnLabel.setToolTipText(label);
warnLabel.setForeground(Color.GRAY);
warnLabel.setFont(warnLabel.getFont().deriveFont(8));
warnLabel.setBorder(BorderFactory.createEmptyBorder(0, 0, 8, 0));
warnLabel.setHorizontalAlignment(JLabel.RIGHT);
localeConfigPanel.add(warnLabel);
return localeConfigPanel;
}
/**
* Creates the call configuration panel.
*
* @return the call configuration panel
*/
private Component createCallConfigPanel()
{
JPanel callConfigPanel = GeneralConfigPluginActivator.
createConfigSectionComponent(
Resources.getString("service.gui.CALL"));
callConfigPanel.add(createNormalizeNumberCheckBox());
return callConfigPanel;
}
/**
* Creates the normalized phone number check box.
*
* @return the created component
*/
private Component createNormalizeNumberCheckBox()
{
JPanel checkBoxPanel = new TransparentPanel(new BorderLayout());
SIPCommCheckBox formatPhoneNumber = new SIPCommCheckBox("",
ConfigurationManager.isNormalizePhoneNumber());
formatPhoneNumber.setAlignmentY(Component.TOP_ALIGNMENT);
formatPhoneNumber.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
ConfigurationManager.setNormalizePhoneNumber(
((JCheckBox)e.getSource()).isSelected());
}
});
StyledHTMLEditorPane checkBoxTextLabel = new StyledHTMLEditorPane();
checkBoxTextLabel.setContentType("text/html");
checkBoxTextLabel.appendToEnd(
"<html>" + GeneralConfigPluginActivator.getResources().getI18NString(
"plugin.generalconfig.REMOVE_SPECIAL_PHONE_SYMBOLS") + "</html>");
checkBoxTextLabel.setBorder(
BorderFactory.createEmptyBorder(3, 0, 0, 0));
checkBoxTextLabel.setOpaque(false);
checkBoxTextLabel.setEditable(false);
checkBoxPanel.add(formatPhoneNumber, BorderLayout.WEST);
checkBoxPanel.add(checkBoxTextLabel, BorderLayout.CENTER);
return checkBoxPanel;
}
/**
* Initializes the startup config panel.
* @return the created component
*/
public Component createStartupConfigPanel()
{
if (!OSUtils.IS_WINDOWS)
return null;
JPanel updateConfigPanel = GeneralConfigPluginActivator.
createConfigSectionComponent(
Resources.getString("plugin.generalconfig.STARTUP_CONFIG"));
updateConfigPanel.add(createAutoStartCheckBox());
updateConfigPanel.add(createUpdateCheckBox());
return updateConfigPanel;
}
/**
* Initializes the update check panel.
* @return the created component
*/
public Component createUpdateCheckBox()
{
JCheckBox updateCheckBox = new SIPCommCheckBox();
updateCheckBox.setText(
Resources.getString("plugin.generalconfig.CHECK_FOR_UPDATES"));
updateCheckBox.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e)
{
GeneralConfigPluginActivator.getConfigurationService()
.setProperty(
"net.java.sip.communicator.plugin.updatechecker.ENABLED",
Boolean.toString(
((JCheckBox)e.getSource()).isSelected()));
}
});
updateCheckBox.setSelected(
GeneralConfigPluginActivator.getConfigurationService().getBoolean((
"net.java.sip.communicator.plugin.updatechecker.ENABLED"), true));
return updateCheckBox;
}
/**
* Sets the auto start.
* @param isAutoStart indicates if the auto start property is set to true or
* false
* @throws Exception if something goes wrong when obtaining the canonical
* path or when creating or saving the shortcut
*/
private void setAutostart(boolean isAutoStart)
throws Exception
{
String workingDir = new File(".").getCanonicalPath();
WindowsStartup.setAutostart(
getApplicationName(), workingDir, isAutoStart);
}
}
|