convert Point from on Component to Another Component - Java java.awt

Java examples for java.awt:Component

Description

convert Point from on Component to Another Component

Demo Code

/*******************************************************************************
 * Copyright (c) 2006, 2015, Carnegie Mellon University. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * 1. Redistributions of source code must retain the above copyright notice,
 *    this list of conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright notice,
 *    this list of conditions and the following disclaimer in the documentation
 *    and/or other materials provided with the distribution.
 *
 * 3. Products derived from the software may not be called "Alice", nor may
 *    "Alice" appear in their name, without prior written permission of
 *    Carnegie Mellon University.//from  ww w.  ja  v a 2 s . c o m
 *
 * 4. All advertising materials mentioning features or use of this software must
 *    display the following acknowledgement: "This product includes software
 *    developed by Carnegie Mellon University"
 *
 * 5. The gallery of art assets and animations provided with this software is
 *    contributed by Electronic Arts Inc. and may be used for personal,
 *    non-commercial, and academic use only. Redistributions of any program
 *    source code that utilizes The Sims 2 Assets must also retain the copyright
 *    notice, list of conditions and the disclaimer contained in
 *    The Alice 3.0 Art Gallery License.
 *
 * DISCLAIMER:
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND.
 * ANY AND ALL EXPRESS, STATUTORY OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,  FITNESS FOR A
 * PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT
 * SHALL THE AUTHORS, COPYRIGHT OWNERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, PUNITIVE OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING FROM OR OTHERWISE RELATING TO
 * THE USE OF OR OTHER DEALINGS WITH THE SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 *******************************************************************************/
//package com.java2s;

public class Main {
    public static java.awt.Point convertPoint(java.awt.Component src,
            int srcX, int srcY, java.awt.Component dst) {
        java.awt.Component srcRoot = javax.swing.SwingUtilities
                .getRoot(src);
        java.awt.Component dstRoot = javax.swing.SwingUtilities
                .getRoot(dst);
        //avoid tree lock, if possible
        if ((srcRoot != null) && (srcRoot == dstRoot)) {
            java.awt.Point srcPt = getLocation(src, srcRoot);
            java.awt.Point dstPt = getLocation(dst, dstRoot);
            java.awt.Point rv = srcPt;
            rv.x -= dstPt.x;
            rv.y -= dstPt.y;
            rv.x += srcX;
            rv.y += srcY;
            return rv;
        } else {
            return javax.swing.SwingUtilities.convertPoint(src, srcX, srcY,
                    dst);
        }
    }

    public static java.awt.Point convertPoint(java.awt.Component src,
            java.awt.Point srcPt, java.awt.Component dst) {
        return convertPoint(src, srcPt.x, srcPt.y, dst);
    }

    private static java.awt.Point getLocation(java.awt.Point rv,
            java.awt.Component c, java.awt.Component ancestor) {
        assert c != null;
        if (c == ancestor) {
            return rv;
        } else {
            rv.x += c.getX();
            rv.y += c.getY();
            return getLocation(rv, c.getParent(), ancestor);
        }
    }

    private static java.awt.Point getLocation(java.awt.Component c,
            java.awt.Component ancestor) {
        return getLocation(new java.awt.Point(), c, ancestor);
    }
}

Related Tutorials