1 /*
   2  * Copyright (c) 2007, 2017 Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 package org.jemmy.interfaces;
  25 
  26 
  27 import org.jemmy.Point;
  28 import org.jemmy.control.Wrap;
  29 import org.jemmy.dock.Shortcut;
  30 import org.jemmy.env.Timeout;
  31 import org.jemmy.interfaces.Mouse.MouseButton;
  32 
  33 
  34 /**
  35  * 
  36  * @author shura
  37  */
  38 public interface Drag extends ControlInterface {
  39     /**
  40      *
  41      */
  42     public static final Timeout BEFORE_DRAG_TIMEOUT = new Timeout("Control.before.drag", 500);
  43     /**
  44      *
  45      */
  46     public static final Timeout BEFORE_DROP_TIMEOUT = new Timeout("Control.after.drag", 500);
  47     /**
  48      *
  49      */
  50     public static final Timeout IN_DRAG_TIMEOUT = new Timeout("Control.in.drag", 10);
  51 
  52     /**
  53      *
  54      * @param targetPoint target point specified in component local coordinates
  55      */
  56     @Shortcut
  57     public void dnd(Point targetPoint);
  58     /**
  59      *
  60      * @param target
  61      * @param targetPoint target point specified in target component local coordinates
  62      */
  63     @Shortcut
  64     public void dnd(Wrap target, Point targetPoint);
  65     /**
  66      *
  67      * @param point source point specified in component local coordinates
  68      * @param target
  69      * @param targetPoint target point specified in target component local coordinates
  70      */
  71     @Shortcut
  72     public void dnd(Point point, Wrap target, Point targetPoint);
  73     /**
  74      *
  75      * @param point source point specified in component local coordinates
  76      * @param target
  77      * @param targetPoint target point specified in target component local coordinates
  78      * @param button
  79      */
  80     @Shortcut
  81     public void dnd(Point point, Wrap target, Point targetPoint, MouseButton button);
  82     /**
  83      *
  84      * @param point source point specified in component local coordinates
  85      * @param target
  86      * @param targetPoint target point specified in target component local coordinates
  87      * @param button
  88      * @param modifiers
  89      */
  90     @Shortcut
  91     public void dnd(Point point, Wrap target, Point targetPoint, MouseButton button, Modifier... modifiers);
  92 }