Example usage for java.awt.dnd DragGestureListener interface-usage

List of usage examples for java.awt.dnd DragGestureListener interface-usage

Introduction

In this page you can find the example usage for java.awt.dnd DragGestureListener interface-usage.

Usage

From source file Main.java

class DragLabel extends JLabel implements DragGestureListener, DragSourceListener {
    private DragSource ds = DragSource.getDefaultDragSource();

    public DragLabel(String s, int alignment) {
        super(s, alignment);

From source file Main.java

class DragLabel extends JLabel implements DragGestureListener, DragSourceListener {
    private DragSource ds = DragSource.getDefaultDragSource();

    public DragLabel(String s, int alignment) {
        super(s, alignment);

From source file Main.java

class DragLabel extends JLabel implements DragGestureListener, DragSourceListener {
    private DragSource ds = DragSource.getDefaultDragSource();

    public DragLabel(String s, int alignment) {
        super(s, alignment);

From source file Main.java

class DragLabel extends JLabel implements DragGestureListener, DragSourceListener {
    private DragSource ds = DragSource.getDefaultDragSource();

    public DragLabel(String s, int alignment) {
        super(s, alignment);

From source file Main.java

class DragLabel extends JLabel implements DragGestureListener, DragSourceListener {
    private DragSource ds = DragSource.getDefaultDragSource();

    public DragLabel(String s, int alignment) {
        super(s, alignment);

From source file Main.java

class DragLabel extends JLabel implements DragGestureListener, DragSourceListener {
    private DragSource ds = DragSource.getDefaultDragSource();

    public DragLabel(String s, int alignment) {
        super(s, alignment);

From source file MainClass.java

class DragLabel extends JLabel implements DragGestureListener, DragSourceListener {
    private DragSource ds = DragSource.getDefaultDragSource();

    public DragLabel(String s, int alignment) {
        super(s, alignment);

From source file org.kuali.test.ui.components.repositorytree.RepositoryTree.java

/**
 *
 * @author rbtucker
 */
public class RepositoryTree extends BaseTree implements DragGestureListener {
    private static final Logger LOG = Logger.getLogger(RepositoryTree.class);

From source file ScribbleDragAndDrop.java

/**
 * This component can operate in two modes. In "draw mode", it allows the user
 * to scribble with the mouse. In "drag mode", it allows the user to drag
 * scribbles with the mouse. Regardless of the mode, it always allows scribbles
 * to be dropped on it from other applications.
 */

From source file TreeDragTest.java

class TreeDragSource implements DragSourceListener, DragGestureListener {

    DragSource source;

    DragGestureRecognizer recognizer;