Java Code Examples for java.awt.dnd.DnDConstants#ACTION_LINK
The following examples show how to use
java.awt.dnd.DnDConstants#ACTION_LINK .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: SunDropTargetContextPeer.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
/** * mapOperation */ private int mapOperation(int operation) { int[] operations = { DnDConstants.ACTION_MOVE, DnDConstants.ACTION_COPY, DnDConstants.ACTION_LINK, }; int ret = DnDConstants.ACTION_NONE; for (int i = 0; i < operations.length; i++) { if ((operation & operations[i]) == operations[i]) { ret = operations[i]; break; } } return ret; }
Example 2
Source File: SunDropTargetContextPeer.java From jdk8u-jdk with GNU General Public License v2.0 | 6 votes |
/** * mapOperation */ private int mapOperation(int operation) { int[] operations = { DnDConstants.ACTION_MOVE, DnDConstants.ACTION_COPY, DnDConstants.ACTION_LINK, }; int ret = DnDConstants.ACTION_NONE; for (int i = 0; i < operations.length; i++) { if ((operation & operations[i]) == operations[i]) { ret = operations[i]; break; } } return ret; }
Example 3
Source File: DragDropUtilities.java From netbeans with Apache License 2.0 | 6 votes |
/** Utility method. * @return true if given node supports given action, * false otherwise. */ static boolean checkNodeForAction(Node node, int dragAction) { if ( node.canCut() && ((dragAction == DnDConstants.ACTION_MOVE) || (dragAction == DnDConstants.ACTION_COPY_OR_MOVE)) ) { return true; } if ( node.canCopy() && ((dragAction == DnDConstants.ACTION_COPY) || (dragAction == DnDConstants.ACTION_COPY_OR_MOVE) || (dragAction == DnDConstants.ACTION_LINK) || (dragAction == DnDConstants.ACTION_REFERENCE)) ) { return true; } // hmmm, conditions not satisfied.. return false; }
Example 4
Source File: SunDragSourceContextPeer.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
public static int convertModifiersToDropAction(final int modifiers, final int supportedActions) { int dropAction = DnDConstants.ACTION_NONE; /* * Fix for 4285634. * Calculate the drop action to match Motif DnD behavior. * If the user selects an operation (by pressing a modifier key), * return the selected operation or ACTION_NONE if the selected * operation is not supported by the drag source. * If the user doesn't select an operation search the set of operations * supported by the drag source for ACTION_MOVE, then for * ACTION_COPY, then for ACTION_LINK and return the first operation * found. */ switch (modifiers & (InputEvent.SHIFT_DOWN_MASK | InputEvent.CTRL_DOWN_MASK)) { case InputEvent.SHIFT_DOWN_MASK | InputEvent.CTRL_DOWN_MASK: dropAction = DnDConstants.ACTION_LINK; break; case InputEvent.CTRL_DOWN_MASK: dropAction = DnDConstants.ACTION_COPY; break; case InputEvent.SHIFT_DOWN_MASK: dropAction = DnDConstants.ACTION_MOVE; break; default: if ((supportedActions & DnDConstants.ACTION_MOVE) != 0) { dropAction = DnDConstants.ACTION_MOVE; } else if ((supportedActions & DnDConstants.ACTION_COPY) != 0) { dropAction = DnDConstants.ACTION_COPY; } else if ((supportedActions & DnDConstants.ACTION_LINK) != 0) { dropAction = DnDConstants.ACTION_LINK; } } return dropAction & supportedActions; }
Example 5
Source File: SunDragSourceContextPeer.java From Bytecoder with Apache License 2.0 | 5 votes |
public static int convertModifiersToDropAction(final int modifiers, final int supportedActions) { int dropAction = DnDConstants.ACTION_NONE; /* * Fix for 4285634. * Calculate the drop action to match Motif DnD behavior. * If the user selects an operation (by pressing a modifier key), * return the selected operation or ACTION_NONE if the selected * operation is not supported by the drag source. * If the user doesn't select an operation search the set of operations * supported by the drag source for ACTION_MOVE, then for * ACTION_COPY, then for ACTION_LINK and return the first operation * found. */ switch (modifiers & (InputEvent.SHIFT_DOWN_MASK | InputEvent.CTRL_DOWN_MASK)) { case InputEvent.SHIFT_DOWN_MASK | InputEvent.CTRL_DOWN_MASK: dropAction = DnDConstants.ACTION_LINK; break; case InputEvent.CTRL_DOWN_MASK: dropAction = DnDConstants.ACTION_COPY; break; case InputEvent.SHIFT_DOWN_MASK: dropAction = DnDConstants.ACTION_MOVE; break; default: if ((supportedActions & DnDConstants.ACTION_MOVE) != 0) { dropAction = DnDConstants.ACTION_MOVE; } else if ((supportedActions & DnDConstants.ACTION_COPY) != 0) { dropAction = DnDConstants.ACTION_COPY; } else if ((supportedActions & DnDConstants.ACTION_LINK) != 0) { dropAction = DnDConstants.ACTION_LINK; } } return dropAction & supportedActions; }
Example 6
Source File: XDnDConstants.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
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; } }
Example 7
Source File: SunDragSourceContextPeer.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
public static int convertModifiersToDropAction(final int modifiers, final int supportedActions) { int dropAction = DnDConstants.ACTION_NONE; /* * Fix for 4285634. * Calculate the drop action to match Motif DnD behavior. * If the user selects an operation (by pressing a modifier key), * return the selected operation or ACTION_NONE if the selected * operation is not supported by the drag source. * If the user doesn't select an operation search the set of operations * supported by the drag source for ACTION_MOVE, then for * ACTION_COPY, then for ACTION_LINK and return the first operation * found. */ switch (modifiers & (InputEvent.SHIFT_DOWN_MASK | InputEvent.CTRL_DOWN_MASK)) { case InputEvent.SHIFT_DOWN_MASK | InputEvent.CTRL_DOWN_MASK: dropAction = DnDConstants.ACTION_LINK; break; case InputEvent.CTRL_DOWN_MASK: dropAction = DnDConstants.ACTION_COPY; break; case InputEvent.SHIFT_DOWN_MASK: dropAction = DnDConstants.ACTION_MOVE; break; default: if ((supportedActions & DnDConstants.ACTION_MOVE) != 0) { dropAction = DnDConstants.ACTION_MOVE; } else if ((supportedActions & DnDConstants.ACTION_COPY) != 0) { dropAction = DnDConstants.ACTION_COPY; } else if ((supportedActions & DnDConstants.ACTION_LINK) != 0) { dropAction = DnDConstants.ACTION_LINK; } } return dropAction & supportedActions; }
Example 8
Source File: MotifDnDConstants.java From jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
public static int getJavaActionsForMotifActions(int motifActions) { int javaActions = DnDConstants.ACTION_NONE; if ((motifActions & MOTIF_DND_MOVE) != 0) { javaActions |= DnDConstants.ACTION_MOVE; } if ((motifActions & MOTIF_DND_COPY) != 0) { javaActions |= DnDConstants.ACTION_COPY; } if ((motifActions & MOTIF_DND_LINK) != 0) { javaActions |= DnDConstants.ACTION_LINK; } return javaActions; }
Example 9
Source File: XDnDConstants.java From jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
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; } }
Example 10
Source File: MotifDnDConstants.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
public static int getMotifActionsForJavaActions(int javaActions) { int motifActions = MOTIF_DND_NOOP; if ((javaActions & DnDConstants.ACTION_MOVE) != 0) { motifActions |= MOTIF_DND_MOVE; } if ((javaActions & DnDConstants.ACTION_COPY) != 0) { motifActions |= MOTIF_DND_COPY; } if ((javaActions & DnDConstants.ACTION_LINK) != 0) { motifActions |= MOTIF_DND_LINK; } return motifActions; }
Example 11
Source File: SunDragSourceContextPeer.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
public static int convertModifiersToDropAction(final int modifiers, final int supportedActions) { int dropAction = DnDConstants.ACTION_NONE; /* * Fix for 4285634. * Calculate the drop action to match Motif DnD behavior. * If the user selects an operation (by pressing a modifier key), * return the selected operation or ACTION_NONE if the selected * operation is not supported by the drag source. * If the user doesn't select an operation search the set of operations * supported by the drag source for ACTION_MOVE, then for * ACTION_COPY, then for ACTION_LINK and return the first operation * found. */ switch (modifiers & (InputEvent.SHIFT_DOWN_MASK | InputEvent.CTRL_DOWN_MASK)) { case InputEvent.SHIFT_DOWN_MASK | InputEvent.CTRL_DOWN_MASK: dropAction = DnDConstants.ACTION_LINK; break; case InputEvent.CTRL_DOWN_MASK: dropAction = DnDConstants.ACTION_COPY; break; case InputEvent.SHIFT_DOWN_MASK: dropAction = DnDConstants.ACTION_MOVE; break; default: if ((supportedActions & DnDConstants.ACTION_MOVE) != 0) { dropAction = DnDConstants.ACTION_MOVE; } else if ((supportedActions & DnDConstants.ACTION_COPY) != 0) { dropAction = DnDConstants.ACTION_COPY; } else if ((supportedActions & DnDConstants.ACTION_LINK) != 0) { dropAction = DnDConstants.ACTION_LINK; } } return dropAction & supportedActions; }
Example 12
Source File: MotifDnDConstants.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
public static int getMotifActionsForJavaActions(int javaActions) { int motifActions = MOTIF_DND_NOOP; if ((javaActions & DnDConstants.ACTION_MOVE) != 0) { motifActions |= MOTIF_DND_MOVE; } if ((javaActions & DnDConstants.ACTION_COPY) != 0) { motifActions |= MOTIF_DND_COPY; } if ((javaActions & DnDConstants.ACTION_LINK) != 0) { motifActions |= MOTIF_DND_LINK; } return motifActions; }
Example 13
Source File: SunDragSourceContextPeer.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
public static int convertModifiersToDropAction(final int modifiers, final int supportedActions) { int dropAction = DnDConstants.ACTION_NONE; /* * Fix for 4285634. * Calculate the drop action to match Motif DnD behavior. * If the user selects an operation (by pressing a modifier key), * return the selected operation or ACTION_NONE if the selected * operation is not supported by the drag source. * If the user doesn't select an operation search the set of operations * supported by the drag source for ACTION_MOVE, then for * ACTION_COPY, then for ACTION_LINK and return the first operation * found. */ switch (modifiers & (InputEvent.SHIFT_DOWN_MASK | InputEvent.CTRL_DOWN_MASK)) { case InputEvent.SHIFT_DOWN_MASK | InputEvent.CTRL_DOWN_MASK: dropAction = DnDConstants.ACTION_LINK; break; case InputEvent.CTRL_DOWN_MASK: dropAction = DnDConstants.ACTION_COPY; break; case InputEvent.SHIFT_DOWN_MASK: dropAction = DnDConstants.ACTION_MOVE; break; default: if ((supportedActions & DnDConstants.ACTION_MOVE) != 0) { dropAction = DnDConstants.ACTION_MOVE; } else if ((supportedActions & DnDConstants.ACTION_COPY) != 0) { dropAction = DnDConstants.ACTION_COPY; } else if ((supportedActions & DnDConstants.ACTION_LINK) != 0) { dropAction = DnDConstants.ACTION_LINK; } } return dropAction & supportedActions; }
Example 14
Source File: MotifDnDConstants.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
public static int getJavaActionsForMotifActions(int motifActions) { int javaActions = DnDConstants.ACTION_NONE; if ((motifActions & MOTIF_DND_MOVE) != 0) { javaActions |= DnDConstants.ACTION_MOVE; } if ((motifActions & MOTIF_DND_COPY) != 0) { javaActions |= DnDConstants.ACTION_COPY; } if ((motifActions & MOTIF_DND_LINK) != 0) { javaActions |= DnDConstants.ACTION_LINK; } return javaActions; }
Example 15
Source File: SunDragSourceContextPeer.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
public static int convertModifiersToDropAction(final int modifiers, final int supportedActions) { int dropAction = DnDConstants.ACTION_NONE; /* * Fix for 4285634. * Calculate the drop action to match Motif DnD behavior. * If the user selects an operation (by pressing a modifier key), * return the selected operation or ACTION_NONE if the selected * operation is not supported by the drag source. * If the user doesn't select an operation search the set of operations * supported by the drag source for ACTION_MOVE, then for * ACTION_COPY, then for ACTION_LINK and return the first operation * found. */ switch (modifiers & (InputEvent.SHIFT_DOWN_MASK | InputEvent.CTRL_DOWN_MASK)) { case InputEvent.SHIFT_DOWN_MASK | InputEvent.CTRL_DOWN_MASK: dropAction = DnDConstants.ACTION_LINK; break; case InputEvent.CTRL_DOWN_MASK: dropAction = DnDConstants.ACTION_COPY; break; case InputEvent.SHIFT_DOWN_MASK: dropAction = DnDConstants.ACTION_MOVE; break; default: if ((supportedActions & DnDConstants.ACTION_MOVE) != 0) { dropAction = DnDConstants.ACTION_MOVE; } else if ((supportedActions & DnDConstants.ACTION_COPY) != 0) { dropAction = DnDConstants.ACTION_COPY; } else if ((supportedActions & DnDConstants.ACTION_LINK) != 0) { dropAction = DnDConstants.ACTION_LINK; } } return dropAction & supportedActions; }
Example 16
Source File: SunDropTargetContextPeer.java From dragonwell8_jdk with GNU General Public License v2.0 | 4 votes |
/** * @param actions set the current actions */ public synchronized void setTargetActions(int actions) { currentA = actions & (DnDConstants.ACTION_COPY_OR_MOVE | DnDConstants.ACTION_LINK); }
Example 17
Source File: SunDropTargetContextPeer.java From Bytecoder with Apache License 2.0 | 4 votes |
/** * @param actions set the current actions */ public synchronized void setTargetActions(int actions) { currentA = actions & (DnDConstants.ACTION_COPY_OR_MOVE | DnDConstants.ACTION_LINK); }
Example 18
Source File: SunDropTargetContextPeer.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
/** * @param actions set the current actions */ public synchronized void setTargetActions(int actions) { currentA = actions & (DnDConstants.ACTION_COPY_OR_MOVE | DnDConstants.ACTION_LINK); }
Example 19
Source File: SunDropTargetContextPeer.java From TencentKona-8 with GNU General Public License v2.0 | 4 votes |
/** * @param actions set the current actions */ public synchronized void setTargetActions(int actions) { currentA = actions & (DnDConstants.ACTION_COPY_OR_MOVE | DnDConstants.ACTION_LINK); }
Example 20
Source File: SunDropTargetContextPeer.java From jdk8u60 with GNU General Public License v2.0 | 4 votes |
/** * @param actions set the current actions */ public synchronized void setTargetActions(int actions) { currentA = actions & (DnDConstants.ACTION_COPY_OR_MOVE | DnDConstants.ACTION_LINK); }