blob: 563835281ddaf8bd698c0c48bab5886e5ba2fb18 (
plain)
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
|
/*
* 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.impl.neomedia;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import net.java.sip.communicator.plugin.desktoputil.*;
import org.jitsi.service.resources.*;
/**
* The <tt>SecurityConfigForm</tt> allows the user to make all needed call
* security configurations. It now wraps the ZRTP form in order to provide some
* more explanations and make complex configurations available only to advanced
* users.
*
* @author Yana Stamcheva
*/
public class SecurityConfigForm
extends TransparentPanel
{
/**
* Serial version UID.
*/
private static final long serialVersionUID = 0L;
/**
* Creates an instance of <tt>SecurityConfigForm</tt>.
*/
public SecurityConfigForm()
{
super(new BorderLayout());
this.setBorder(BorderFactory.createEmptyBorder(20, 20, 20, 20));
final ResourceManagementService resources
= NeomediaActivator.getResources();
JPanel mainPanel = new TransparentPanel(new BorderLayout(0, 10));
add(mainPanel, BorderLayout.NORTH);
JTextPane pane = new JTextPane();
pane.setEditable(false);
pane.setOpaque(false);
pane.setText(
resources.getI18NString(
"impl.media.security.zrtp.DESCRIPTION",
new String[]
{
resources.getSettingsString(
"service.gui.APPLICATION_NAME")
}));
mainPanel.add(pane);
JButton zrtpButton
= new JButton(
resources.getI18NString(
"impl.media.security.zrtp.ZRTP_NINJA"));
zrtpButton.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
@SuppressWarnings("serial")
SIPCommDialog zrtpDialog
= new SIPCommDialog()
{
@Override
protected void close(boolean escaped) {}
};
zrtpDialog.setTitle(
resources.getI18NString("impl.media.security.zrtp.CONFIG"));
zrtpDialog.getContentPane().add(new ZrtpConfigurePanel());
zrtpDialog.setVisible(true);
}
});
JPanel buttonPanel = new TransparentPanel(
new FlowLayout(FlowLayout.CENTER));
buttonPanel.add(zrtpButton);
mainPanel.add(buttonPanel, BorderLayout.SOUTH);
}
}
|