aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/java/sip/communicator/impl/googlecontacts/configform/GoogleContactsConfigForm.java
blob: 9d810068ce6c19cb43afac1945ee75e72f5af3bf (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
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
/*
 * 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.impl.googlecontacts.configform;

import java.awt.*;
import java.awt.event.*;

import javax.swing.*;
import javax.swing.event.*;

import net.java.sip.communicator.util.*;
import net.java.sip.communicator.util.swing.*;
import net.java.sip.communicator.impl.googlecontacts.*;
import net.java.sip.communicator.service.gui.*;
import net.java.sip.communicator.service.googlecontacts.*;

/**
 * This ConfigurationForm shows the list of Google Contacts account and allow
 * users to manage them.
 *
 * @author Sebastien Mazy
 * @author Sebastien Vincent
 */
public class GoogleContactsConfigForm
    extends TransparentPanel
    implements ConfigurationForm,
                ActionListener,
                ListSelectionListener

{
    /**
     * Serial version UID.
     */
    private static final long serialVersionUID = 0L;

    /**
     * The logger for this class.
     */
    private static Logger logger = Logger.getLogger(
            GoogleContactsConfigForm.class);

    /**
     * Opens the new directory registration wizard
     */
    private JButton newButton = new JButton("+");

    /**
     * Opens a directory modification dialog
     */
    private JButton modifyButton = new JButton(
            Resources.getString("impl.googlecontacts.EDIT"));

    /**
     * Pops a directory deletion confirmation dialog
     */
    private JButton removeButton = new JButton("-");

    /**
     * Displays the registered Google Contacts account.
     */
    private JTable accountTable = new JTable();

    /**
     * Contains the new/modify/remove buttons
     */
    private TransparentPanel buttonsPanel
        = new TransparentPanel(new FlowLayout(FlowLayout.LEFT));

    /**
     * Contains the directoryTable
     */
    private JScrollPane scrollPane = new JScrollPane();

    /**
     * Contains the buttonsPanel,
     */
    private JPanel rightPanel = new TransparentPanel(new BorderLayout());

    /**
     * Contains listPanel and rightPanel
     */
    private JPanel mainPanel = this;

    /**
     * Model for the directoryTable
     */
    private GoogleContactsTableModel tableModel =
        new GoogleContactsTableModel();

    /**
     * Settings form.
     */
    private final AccountSettingsForm settingsForm =
        new AccountSettingsForm();

    /**
     * Constructor
     */
    public GoogleContactsConfigForm()
    {
        super(new BorderLayout());
        logger.trace("GoogleContacts configuration form.");
        initComponents();
    }

    /**
     * Inits the swing components
     */
    private void initComponents()
    {
        modifyButton.setEnabled(false);
        removeButton.setEnabled(false);

        newButton.setSize(newButton.getMinimumSize());
        modifyButton.setSize(modifyButton.getMinimumSize());
        removeButton.setSize(removeButton.getMinimumSize());

        accountTable.setRowHeight(22);
        accountTable.setSelectionMode(
                ListSelectionModel.SINGLE_SELECTION);

        accountTable.setShowHorizontalLines(false);
        accountTable.setShowVerticalLines(false);
        accountTable.setModel(tableModel);
        accountTable.setAutoResizeMode(JTable.AUTO_RESIZE_LAST_COLUMN);
        accountTable.addMouseListener(new MouseAdapter()
        {
            @Override
            public void mouseClicked(MouseEvent e)
            {
                if(e.getClickCount() > 1)
                {
                }
            }
        });

        settingsForm.setModal(true);

        /* consistency with the accounts config form */
        rightPanel.setBorder(BorderFactory.createEmptyBorder(5, 5, 5, 5));

        rightPanel.add(buttonsPanel, BorderLayout.NORTH);

        scrollPane.getViewport().add(accountTable);
        mainPanel.add(scrollPane,  BorderLayout.CENTER);
        mainPanel.add(rightPanel, BorderLayout.SOUTH);

        mainPanel.setPreferredSize(new Dimension(500, 400));

        buttonsPanel.add(newButton);
        buttonsPanel.add(removeButton);
        buttonsPanel.add(modifyButton);

        accountTable.getSelectionModel().addListSelectionListener(this);

        newButton.setActionCommand("new");
        newButton.addActionListener(this);
        modifyButton.addActionListener(this);
        modifyButton.setActionCommand("modify");
        removeButton.addActionListener(this);
        removeButton.setActionCommand("remove");
    }

    /**
     * @see net.java.sip.communicator.service.gui.ConfigurationForm#getTitle
     */
    public String getTitle()
    {
        return Resources.getString("impl.googlecontacts.CONFIG_FORM_TITLE");
    }

    /**
     * @see net.java.sip.communicator.service.gui.ConfigurationForm#getIcon
     */
    public byte[] getIcon()
    {
        return Resources.getImageInBytes(
                "GOOGLECONTACTS_CONFIG_FORM_ICON");
    }

    /**
     * @see net.java.sip.communicator.service.gui.ConfigurationForm#getForm
     */
    public Object getForm()
    {
        return this;
    }

    /**
     * Required by ConfirgurationForm interface
     *
     * Returns the index of this configuration form in the configuration window.
     * This index is used to put configuration forms in the desired order.
     * <p>
     * 0 is the first position
     * -1 means that the form will be put at the end
     * </p>
     * @return the index of this configuration form in the configuration window.
     *
     * @see net.java.sip.communicator.service.gui.ConfigurationForm#getIndex
     */
    public int getIndex()
    {
        return -1;
    }

    /**
     * Processes buttons events (new, modify, remove)
     *
     * @see java.awt.event.ActionListener#actionPerformed
     */
    public void actionPerformed(ActionEvent e)
    {
        int row = accountTable.getSelectedRow();

        if (e.getActionCommand().equals("new"))
        {
            settingsForm.setNameFieldEnabled(true);
            settingsForm.loadData(null);
            int ret = settingsForm.showDialog();

            if(ret == 1)
            {
                GoogleContactsConnection cnx = settingsForm.getConnection();
                tableModel.addAccount(cnx, true);
                new RefreshContactSourceThread(null, cnx).start();
                GoogleContactsActivator.getGoogleContactsService().saveConfig(
                        cnx);
                refresh();
            }
        }

        if (e.getActionCommand().equals("modify") && row != -1)
        {
            settingsForm.setNameFieldEnabled(false);
            GoogleContactsConnectionImpl cnx = tableModel.getAccountAt(row);
            settingsForm.loadData(cnx);

            int ret = settingsForm.showDialog();

            if(ret == 1)
            {
                GoogleContactsActivator.getGoogleContactsService().saveConfig(
                        cnx);
                if(cnx.isEnabled())
                {
                    new RefreshContactSourceThread(cnx, cnx).start();
                }
                refresh();
            }
        }

        if (e.getActionCommand().equals("remove") && row != -1)
        {
            GoogleContactsConnection cnx = tableModel.getAccountAt(row);
            tableModel.removeAccount(cnx.getLogin());
            GoogleContactsActivator.getGoogleContactsService().removeConfig(
                    cnx);
            new RefreshContactSourceThread(cnx, null).start();
            refresh();
        }
    }

    /**
     * Required by ListSelectionListener. Enables the "modify"
     * button when a server is selected in the table
     *
     * @param e event triggered
     */
    public void valueChanged(ListSelectionEvent e)
    {
        if(accountTable.getSelectedRow() == -1)
        {
            modifyButton.setEnabled(false);
            removeButton.setEnabled(false);
            return;
        }
        else if(!e.getValueIsAdjusting())
        {
            modifyButton.setEnabled(true);
            removeButton.setEnabled(true);
            GoogleContactsActivator.getGoogleContactsService().
                saveConfig(tableModel.getAccountAt(
                        accountTable.getSelectedRow()));
        }
    }

    /**
     * refreshes the table display
     */
    private void refresh()
    {
        tableModel.fireTableStructureChanged();
    }

    /**
     * Indicates if this is an advanced configuration form.
     * @return <tt>true</tt> if this is an advanced configuration form,
     * otherwise it returns <tt>false</tt>
     */
    public boolean isAdvanced()
    {
        return true;
    }

    /**
     * Thread that will perform refresh of contact sources.
     */
    public static class RefreshContactSourceThread
        extends Thread
    {
        /**
         * Old connection.
         */
        private GoogleContactsConnection oldCnx = null;

        /**
         * New connection.
         */
        private GoogleContactsConnection newCnx = null;

        /**
         * Constructor.
         *
         * @param oldCnx old connection.
         * @param newCnx new connection.
         */
        RefreshContactSourceThread(GoogleContactsConnection oldCnx,
                GoogleContactsConnection newCnx)
        {
            this.oldCnx = oldCnx;
            this.newCnx = newCnx;
        }

        /**
         * Thread entry point.
         */
        public void run()
        {
            if(oldCnx != null)
            {
                GoogleContactsActivator.getGoogleContactsService().
                    removeContactSource(oldCnx);
            }

            if(newCnx != null)
            {
                GoogleContactsActivator.getGoogleContactsService().
                    addContactSource(newCnx);
            }
        }
    }
}