Package com.cubusmail.gwtui.client.widgets

Source Code of com.cubusmail.gwtui.client.widgets.EmailAddressLink

/* EmailAddressLink.java

   Copyright (c) 2009 Juergen Schlierf, All Rights Reserved
  
   This file is part of Cubusmail (http://code.google.com/p/cubusmail/).
 
   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 3 of the License, or (at your option) any later version.
 
   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.
 
   You should have received a copy of the GNU Lesser General Public
   License along with Cubusmail. If not, see <http://www.gnu.org/licenses/>.
  
*/
package com.cubusmail.gwtui.client.widgets;

import com.google.gwt.user.client.DOM;
import com.google.gwt.user.client.ui.Composite;
import com.google.gwt.user.client.ui.FlowPanel;
import com.google.gwt.user.client.ui.HTML;
import com.google.gwt.user.client.ui.MouseListenerAdapter;
import com.google.gwt.user.client.ui.Widget;
import com.gwtext.client.widgets.menu.Menu;

import com.cubusmail.gwtui.client.actions.contact.AddContactFromEmailAddressAction;
import com.cubusmail.gwtui.client.actions.contact.NewMessageToEmailAddressAction;
import com.cubusmail.gwtui.client.model.GWTAddress;
import com.cubusmail.gwtui.client.util.UIFactory;

/**
* Hyperlink for email addresses.
*
* @author Juergen Schlierf
*/
public class EmailAddressLink extends Composite {

  private Menu contextMenu;

  public EmailAddressLink( GWTAddress address, boolean withSeparator ) {

    super();

    FlowPanel panel = new FlowPanel();
    initWidget( panel );
    DOM.setStyleAttribute( panel.getElement(), "whiteSpace", "nowrap" );
    DOM.setStyleAttribute( getElement(), "whiteSpace", "nowrap" );

    ImageHyperlink link = new ImageHyperlink();
    link.setText( address.getInternetAddress() );

    AddContactFromEmailAddressAction addContactAction = new AddContactFromEmailAddressAction();
    addContactAction.setAddress( address );
    NewMessageToEmailAddressAction newMessageAction = new NewMessageToEmailAddressAction();
    newMessageAction.setAddress( address );

    this.contextMenu = new Menu();
    this.contextMenu.addItem( UIFactory.createMenuItem( addContactAction ) );
    this.contextMenu.addItem( UIFactory.createMenuItem( newMessageAction ) );

    MouseListenerAdapter listener = new MouseListenerAdapter() {

      @Override
      public void onMouseDown( Widget sender, int x, int y ) {

        contextMenu.showAt( sender.getAbsoluteLeft() + x + 10, sender.getAbsoluteTop() + y );
      }
    };
    link.addLeftButtonListener( listener );
    link.addRightButtonListener( listener );

    panel.add( link );
    if ( withSeparator ) {
      panel.add( new HTML( ",&nbsp;&nbsp;" ) );
    }
  }
}
TOP

Related Classes of com.cubusmail.gwtui.client.widgets.EmailAddressLink

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.