Package org.eclipse.jst.pagedesigner.editpolicies

Source Code of org.eclipse.jst.pagedesigner.editpolicies.BasicLabelToolTip

/*******************************************************************************
* Copyright (c) 2001, 2007 Oracle Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*     Oracle Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.pagedesigner.editpolicies;

import org.eclipse.draw2d.ColorConstants;
import org.eclipse.draw2d.IFigure;
import org.eclipse.draw2d.Label;
import org.eclipse.draw2d.LineBorder;
import org.eclipse.draw2d.PositionConstants;
import org.eclipse.draw2d.geometry.Insets;
import org.eclipse.swt.graphics.Image;

/**
* A tool tip based on a label
* @author cbateman
*
*/
public class BasicLabelToolTip extends Label
{
    /**
     * @param i
     */
    public BasicLabelToolTip(Image i) {
        super(i);
        initialize();
    }

    /**
     * @param s
     * @param i
     */
    public BasicLabelToolTip(String s, Image i) {
        super(s, i);
        initialize();
    }

    /**
     * @param s
     */
    public BasicLabelToolTip(String s) {
        super(s);
        initialize();
    }

    /**
     *
     */
    protected void initialize()
    {
        setOpaque(true);
        setBackgroundColor(ColorConstants.tooltipBackground);
        setBorder(
                new LineBorder(ColorConstants.tooltipForeground, 1)
                {
                    // add an extra pixel of inset to make sure the text
                    // isn't pressed against the border
                    public Insets getInsets(IFigure figure) {
                        return new Insets(getWidth()+1);
                    }
                }
        );
        setTextAlignment(PositionConstants.CENTER);
        setForegroundColor(ColorConstants.tooltipForeground);
    }
}
TOP

Related Classes of org.eclipse.jst.pagedesigner.editpolicies.BasicLabelToolTip

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.