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
|
/*
* SIP Communicator, 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.addrbook;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import net.java.sip.communicator.plugin.addrbook.macosx.MacOSXAddrBookContactSourceService;
import net.java.sip.communicator.plugin.addrbook.msoutlook.MsOutlookAddrBookContactSourceService;
import net.java.sip.communicator.util.*;
import net.java.sip.communicator.util.swing.*;
/**
* Implementation of the advanced address book configuration form.
*
* @author Yana Stamcheva
*/
public class AdvancedConfigForm
extends TransparentPanel
{
/**
* Creates the form.
*/
public AdvancedConfigForm()
{
super(new BorderLayout());
JPanel propertiesPanel = new TransparentPanel();
propertiesPanel.setLayout(
new BoxLayout(propertiesPanel, BoxLayout.Y_AXIS));
JTextPane descriptionTextPane = new JTextPane();
descriptionTextPane.setEditable(false);
descriptionTextPane.setOpaque(false);
descriptionTextPane.setForeground(Color.GRAY);
descriptionTextPane.setText(
AddrBookActivator.getResources().getI18NString(
"plugin.addrbook.DESCRIPTION"));
propertiesPanel.add(descriptionTextPane);
propertiesPanel.add(Box.createVerticalStrut(15));
if (OSUtils.IS_MAC)
propertiesPanel.add(createEnableCheckBox(
"plugin.addrbook.ENABLE_MACOSX_ADDRESS_BOOK_SEARCH",
"plugin.addrbook.ENABLE_MACOSX_ADDRESSBOOK"));
if (OSUtils.IS_WINDOWS)
propertiesPanel.add(createEnableCheckBox(
"plugin.addrbook.ENABLE_MICROSOFT_OUTLOOK_SEARCH",
"plugin.addrbook.ENABLE_MICROSOFT_OUTLOOK"));
propertiesPanel.add(Box.createVerticalStrut(15));
propertiesPanel.add(createPrefixPanel());
add(propertiesPanel, BorderLayout.NORTH);
}
/**
* Creates the enable check box.
*
* @return the created enable check box
*/
private Component createEnableCheckBox(final String configPropName,
String labelNameKey)
{
final JCheckBox checkBox = new JCheckBox(AddrBookActivator
.getResources().getI18NString(
labelNameKey),
AddrBookActivator.getConfigService().getBoolean(configPropName,
true));
checkBox.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent arg0)
{
AddrBookActivator.getConfigService().setProperty(
configPropName,
new Boolean(checkBox.isSelected()).toString());
}
});
return checkBox;
}
/**
* Creates the prefix panel.
*
* @return the created prefix panel
*/
private JComponent createPrefixPanel()
{
JLabel prefixLabel = new JLabel(AddrBookActivator
.getResources().getI18NString("plugin.addrbook.PREFIX"));
final SIPCommTextField prefixField = new SIPCommTextField(
AddrBookActivator.getResources()
.getI18NString("plugin.addrbook.PREFIX_EXAMPLE"));
String storedPrefix = null;
if (OSUtils.IS_MAC)
storedPrefix = AddrBookActivator.getConfigService().getString(
MacOSXAddrBookContactSourceService
.MACOSX_ADDR_BOOK_PREFIX);
if (OSUtils.IS_WINDOWS)
storedPrefix = AddrBookActivator.getConfigService().getString(
MsOutlookAddrBookContactSourceService
.OUTLOOK_ADDR_BOOK_PREFIX);
if (storedPrefix != null && storedPrefix.length() > 0)
prefixField.setText(storedPrefix);
JPanel prefixPanel = new TransparentPanel(new BorderLayout());
prefixPanel.add(prefixLabel, BorderLayout.WEST);
prefixPanel.add(prefixField);
prefixField.addFocusListener(new FocusAdapter()
{
@Override
public void focusLost(FocusEvent e)
{
String prefix = prefixField.getText();
if (prefix == null || prefix.length() <= 0)
return;
if (OSUtils.IS_MAC)
AddrBookActivator.getConfigService().setProperty(
MacOSXAddrBookContactSourceService
.MACOSX_ADDR_BOOK_PREFIX,
prefix);
if (OSUtils.IS_WINDOWS)
AddrBookActivator.getConfigService().setProperty(
MsOutlookAddrBookContactSourceService
.OUTLOOK_ADDR_BOOK_PREFIX,
prefix);
}
});
return prefixPanel;
}
}
|