jdk/src/solaris/classes/sun/awt/X11/XDnDConstants.java
author dcherepanov
Thu, 09 Jul 2009 15:23:22 -0400
changeset 3234 f0007f6747b0
parent 117 766ae458aaf1
child 5506 202f599c92aa
permissions -rw-r--r--
6847958: MouseWheel event is getting triggered for the disabled Textarea in jdk7 b60 pit build. Reviewed-by: art

/*
 * Copyright 2003-2008 Sun Microsystems, Inc.  All Rights Reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.  Sun designates this
 * particular file as subject to the "Classpath" exception as provided
 * by Sun in the LICENSE file that accompanied this code.
 *
 * This code 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 General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
 * CA 95054 USA or visit www.sun.com if you need additional information or
 * have any questions.
 */

package sun.awt.X11;

import java.awt.dnd.DnDConstants;

/**
 * XDnD protocol global constants.
 *
 * @since 1.5
 */
class XDnDConstants {
    static final XAtom XA_XdndActionCopy = XAtom.get("XdndActionCopy");
    static final XAtom XA_XdndActionMove = XAtom.get("XdndActionMove");
    static final XAtom XA_XdndActionLink = XAtom.get("XdndActionLink");
    static final XAtom XA_XdndActionList = XAtom.get("XdndActionList");
    static final XAtom XA_XdndTypeList   = XAtom.get("XdndTypeList");
    static final XAtom XA_XdndAware      = XAtom.get("XdndAware");
    static final XAtom XA_XdndProxy      = XAtom.get("XdndProxy");
    static final XAtom XA_XdndSelection  = XAtom.get("XdndSelection");
    static final XAtom XA_XdndEnter      = XAtom.get("XdndEnter");
    static final XAtom XA_XdndPosition   = XAtom.get("XdndPosition");
    static final XAtom XA_XdndLeave      = XAtom.get("XdndLeave");
    static final XAtom XA_XdndDrop       = XAtom.get("XdndDrop");
    static final XAtom XA_XdndStatus     = XAtom.get("XdndStatus");
    static final XAtom XA_XdndFinished   = XAtom.get("XdndFinished");

    static final XSelection XDnDSelection = new XSelection(XA_XdndSelection);

    public static final int XDND_MIN_PROTOCOL_VERSION = 3;
    public static final int XDND_PROTOCOL_VERSION     = 5;

    public static final int XDND_PROTOCOL_MASK        = 0xFF000000;
    public static final int XDND_PROTOCOL_SHIFT       = 24;
    public static final int XDND_DATA_TYPES_BIT       = 0x1;
    public static final int XDND_ACCEPT_DROP_FLAG     = 0x1;

    private XDnDConstants() {}

    static long getXDnDActionForJavaAction(int javaAction) {
        switch (javaAction) {
        case DnDConstants.ACTION_COPY : return XA_XdndActionCopy.getAtom();
        case DnDConstants.ACTION_MOVE : return XA_XdndActionMove.getAtom();
        case DnDConstants.ACTION_LINK : return XA_XdndActionLink.getAtom();
        default                       : return 0;
        }
    }

    static int getJavaActionForXDnDAction(long xdndAction) {
        if (xdndAction == XA_XdndActionCopy.getAtom()) {
            return DnDConstants.ACTION_COPY;
        } else if (xdndAction == XA_XdndActionMove.getAtom()) {
            return DnDConstants.ACTION_MOVE;
        } else if (xdndAction == XA_XdndActionLink.getAtom()) {
            return DnDConstants.ACTION_LINK;
        } else {
            return DnDConstants.ACTION_NONE;
        }
    }
}