blob: 84d95254e7d643b8bb6c248703933366cce8b3ca (
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
/*
* 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.addrbook.msoutlook;
import java.awt.event.*;
import javax.swing.*;
import org.jitsi.service.resources.*;
import net.java.sip.communicator.plugin.addrbook.*;
import net.java.sip.communicator.plugin.desktoputil.*;
/**
* A dialog with warning message that Outlook is not the default mail client
* shown when the contact source is started.
*
* @author Hristo Terezov
*/
public class DefaultMailClientMessageDialog
extends MessageDialog
{
/**
* Serial ID.
*/
private static final long serialVersionUID = -6321186451307613417L;
/**
* The <tt>ResourceManagementService</tt>
*/
private static ResourceManagementService resources
= AddrBookActivator.getResources();
/**
* Make Outlook default mail client check box.
*/
private JCheckBox defaultMailClientCheckBox = new SIPCommCheckBox(
resources
.getI18NString("plugin.addrbook.MAKE_OUTLOOK_DEFAULT_MAIL_CLIENT"));
public static int DONT_ASK_SELECTED_MASK = 1;
public static int DEFAULT_MAIL_CLIENT_SELECTED_MASK = 2;
/**
* Creates an instance of <tt>DefaultMailClientMessageDialog</tt>.
*/
public DefaultMailClientMessageDialog()
{
super(null,
AddrBookActivator.getResources().getI18NString(
"plugin.addrbook.OUTLOOK_IS_NOT_DEFAULT_MAIL_CLIENT_TITLE"),
resources.getI18NString(
"plugin.addrbook.OUTLOOK_IS_NOT_DEFAULT_MAIL_CLIENT",
new String[]{
resources.getSettingsString(
"service.gui.APPLICATION_NAME")}), false);
checkBoxPanel.setLayout(new BoxLayout(checkBoxPanel, BoxLayout.Y_AXIS));
checkBoxPanel.add(defaultMailClientCheckBox);
}
/**
* Handles the <tt>ActionEvent</tt>. Depending on the user choice sets
* the return code to the appropriate value.
*
* @param e the <tt>ActionEvent</tt> that notified us
*/
public void actionPerformed(ActionEvent e)
{
JButton button = (JButton)e.getSource();
if(!button.equals(okButton))
return;
this.returnCode = 0;
if (doNotAskAgain.isSelected())
{
this.returnCode = this.returnCode | DONT_ASK_SELECTED_MASK;
}
if (defaultMailClientCheckBox.isSelected())
{
this.returnCode
= this.returnCode | DEFAULT_MAIL_CLIENT_SELECTED_MASK;
}
this.dispose();
}
}
|