⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 contactdetailspanel.java.svn-base

📁 开源项目openfire的完整源程序
💻 SVN-BASE
字号:
/**
 * $Revision: $
 * $Date: $
 *
 * Copyright (C) 2007 Jive Software. All rights reserved.
 *
 * This software is published under the terms of the GNU Lesser Public License (LGPL),
 * a copy of which is included in this distribution.
 */

package org.jivesoftware.sparkplugin.ui.call;

import org.jivesoftware.sparkplugin.callhistory.TelephoneUtils;
import org.jivesoftware.sparkplugin.ui.TopLabel;
import org.jivesoftware.spark.plugin.phone.resource.PhoneRes;
import net.java.sipmack.sip.InterlocutorUI;
import org.jdesktop.jdic.desktop.Desktop;
import org.jdesktop.jdic.desktop.DesktopException;
import org.jdesktop.jdic.desktop.Message;
import org.jivesoftware.smackx.packet.VCard;
import org.jivesoftware.spark.SparkManager;
import org.jivesoftware.spark.component.LinkLabel;
import org.jivesoftware.spark.component.TimeTrackingLabel;
import org.jivesoftware.spark.util.ModelUtil;
import org.jivesoftware.spark.util.log.Log;

import javax.swing.BorderFactory;
import javax.swing.JLabel;
import javax.swing.JPanel;

import java.awt.Color;
import java.awt.Font;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Insets;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.util.ArrayList;
import java.util.List;

/**
 * ContactDetailsPanel handles does a mapping of the phone number with a VCard search on the server. If a JID is found
 * that is associated with this number, the jid will be returned and the VCard information will be displayed.
 */
public class ContactDetailsPanel extends JPanel implements ActionListener, MouseListener {

    private String phoneNumber;
    // private JLabel avatarLabel;
    private LinkLabel emailLabel;
    private JLabel contactNameLabel;
    private TimeTrackingLabel timeLabel;
    private JLabel jobTitleLabel;
    private LinkLabel viewProfileLabel;

    public ContactDetailsPanel(InterlocutorUI ic) {
        setLayout(new GridBagLayout());

        setBackground(Color.white);
        setBorder(BorderFactory.createLineBorder(Color.black));

        final TopLabel currentCallLabel = new TopLabel(PhoneRes.getIString("phone.contactdetails"));
        add(currentCallLabel, new GridBagConstraints(0, 0, 3, 1, 1.0, 0.0, GridBagConstraints.NORTHWEST, GridBagConstraints.HORIZONTAL, new Insets(0, 0, 2, 0), 0, 5));

        // Add subject label
        String remoteName = ic.getCall().getRemoteName();
        String number = ic.getCall().getNumber();
        if (remoteName.equals(number)) {
            remoteName = TelephoneUtils.formatPattern(remoteName,PhoneRes.getIString("phone.numpattern"));
        }
        contactNameLabel = new JLabel(PhoneRes.getIString("phone.noinfo"));
        contactNameLabel.setFont(contactNameLabel.getFont().deriveFont(Font.BOLD));
        add(contactNameLabel, new GridBagConstraints(1, 1, 2, 1, 0.0, 0.0, GridBagConstraints.NORTHWEST, GridBagConstraints.NONE, new Insets(0, 5, 2, 2), 0, 0));

        // Add phone label
        emailLabel = new LinkLabel("", "", Color.BLACK, Color.BLUE);
        emailLabel.setInvokeBrowser(false);
        emailLabel.addMouseListener(this);
        add(emailLabel, new GridBagConstraints(1, 2, 2, 1, 0.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(0, 5, 2, 2), 0, 0));

        // Add Title Label
        jobTitleLabel = new JLabel("");
        add(jobTitleLabel, new GridBagConstraints(1, 3, 2, 1, 0.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(0, 5, 2, 2), 0, 0));

        // Add Avatar Label
        // avatarLabel = new JLabel(SparkRes.getImageIcon(SparkRes.DEFAULT_AVATAR_64x64_IMAGE));
        // add(avatarLabel, new GridBagConstraints(2, 4, 1, 1, 0.0, 1.0, GridBagConstraints.EAST, GridBagConstraints.NONE, new Insets(2, 2, 2, 2), 0, 0));

        viewProfileLabel = new LinkLabel(PhoneRes.getIString("phone.viewfullprofile"), "", Color.LIGHT_GRAY, Color.BLUE);
        viewProfileLabel.setVisible(false);
        viewProfileLabel.setInvokeBrowser(false);
        viewProfileLabel.setHorizontalTextPosition(JLabel.CENTER);
        viewProfileLabel.setHorizontalAlignment(JLabel.CENTER);
        add(viewProfileLabel, new GridBagConstraints(0, 5, 3, 1, 1.0, 1.0, GridBagConstraints.SOUTH, GridBagConstraints.NONE, new Insets(2, 2, 2, 2), 0, 0));
        viewProfileLabel.addMouseListener(this);

        // Load the VCard information
        VCard vcard = SparkManager.getVCardManager().searchPhoneNumber(ic.getCall().getNumber());
        if (vcard != null) {
            displayVCard(vcard);
        }
    }

    private void displayVCard(VCard vCard) {
        if (vCard.getError() != null) {
            return;
        }
        String firstName = vCard.getFirstName();
        String lastName = vCard.getLastName();
        if (ModelUtil.hasLength(firstName) && ModelUtil.hasLength(lastName)) {
            contactNameLabel.setText(firstName + " " + lastName);
        }
        else if (ModelUtil.hasLength(firstName)) {
            contactNameLabel.setText(firstName);
        }
        else {
            contactNameLabel.setText(PhoneRes.getIString("phone.unknown"));
        }

        String jobTitle = vCard.getField("TITLE");
        if (jobTitle != null) {
            jobTitleLabel.setText(jobTitle);
        }

        String email = vCard.getEmailWork();
        if (email == null) {
            email = vCard.getEmailHome();
        }

        if (email != null) {
            emailLabel.setText(email);
        }

        invalidate();
        validate();
        repaint();

        viewProfileLabel.setVisible(true);
    }


    public void mouseClicked(MouseEvent e) {
        if (e.getSource() == emailLabel) {
            Message message = new Message();
            List list = new ArrayList();
            list.add(emailLabel.getText());
            message.setToAddrs(list);
            try {
                Desktop.mail(message);
            }
            catch (DesktopException e1) {
                Log.error(e1);
            }
        }
        else if (e.getSource() == viewProfileLabel) {
            SparkManager.getVCardManager().viewProfile(emailLabel.getText(), this);
        }
    }

    public void mousePressed(MouseEvent e) {
    }

    public void mouseReleased(MouseEvent e) {
    }

    public void mouseEntered(MouseEvent e) {
    }

    public void mouseExited(MouseEvent e) {
    }

    public void actionPerformed(ActionEvent e) {

    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -