/* * Copyright (c) 1997, 2016, Oracle and/or its affiliates. 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. * * 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package org.netbeans.jemmy.drivers.scrolling; import java.awt.Point; import javax.swing.JSlider; import org.netbeans.jemmy.QueueTool; import org.netbeans.jemmy.Timeout; import org.netbeans.jemmy.drivers.DriverManager; import org.netbeans.jemmy.drivers.MouseDriver; import org.netbeans.jemmy.operators.ComponentOperator; import org.netbeans.jemmy.operators.JSliderOperator; import org.netbeans.jemmy.operators.Operator; /** * A scroll driver serving JSlider component. * * @author Alexandre Iline(alexandre.iline@oracle.com) */ public class JSliderDriver extends AbstractScrollDriver { private QueueTool queueTool; /** * Constructs a JSliderDriver object. */ public JSliderDriver() { super(new String[]{"org.netbeans.jemmy.operators.JSliderOperator"}); queueTool = new QueueTool(); } @Override protected int position(ComponentOperator oper, int orientation) { return ((JSliderOperator) oper).getValue(); } @Override public void scrollToMinimum(final ComponentOperator oper, int orientation) { checkSupported(oper); scroll(oper, new ScrollAdjuster() { @Override public int getScrollDirection() { return ((((JSliderOperator) oper).getMinimum() < ((JSliderOperator) oper).getValue()) ? DECREASE_SCROLL_DIRECTION : DO_NOT_TOUCH_SCROLL_DIRECTION); } @Override public int getScrollOrientation() { return ((JSliderOperator) oper).getOrientation(); } @Override public String getDescription() { return "Scroll to minimum"; } @Override public String toString() { return "scrollToMinimum.ScrollAdjuster{description = " + getDescription() + '}'; } }); } @Override public void scrollToMaximum(final ComponentOperator oper, int orientation) { checkSupported(oper); scroll(oper, new ScrollAdjuster() { @Override public int getScrollDirection() { return ((((JSliderOperator) oper).getMaximum() > ((JSliderOperator) oper).getValue()) ? INCREASE_SCROLL_DIRECTION : DO_NOT_TOUCH_SCROLL_DIRECTION); } @Override public int getScrollOrientation() { return ((JSliderOperator) oper).getOrientation(); } @Override public String getDescription() { return "Scroll to maximum"; } @Override public String toString() { return "scrollToMaximum.ScrollAdjuster{description = " + getDescription() + '}'; } }); } @Override protected void step(final ComponentOperator oper, final ScrollAdjuster adj) { if (adj.getScrollDirection() != ScrollAdjuster.DO_NOT_TOUCH_SCROLL_DIRECTION) { queueTool.invokeSmoothly(new QueueTool.QueueAction<Void>("Scrolling by clicking with the mouse") { @Override public Void launch() { Point clickPoint = getClickPoint(oper, adj.getScrollDirection(), adj.getScrollOrientation()); if (clickPoint != null) { DriverManager.getMouseDriver(oper). clickMouse(oper, clickPoint.x, clickPoint.y, 1, Operator.getDefaultMouseButton(), 0, oper.getTimeouts(). create("ComponentOperator.MouseClickTimeout")); } return null; } }); } } @Override protected void jump(ComponentOperator oper, ScrollAdjuster adj) { //cannot } @Override protected void startPushAndWait(final ComponentOperator oper, final int direction, final int orientation) { queueTool.invokeSmoothly(new QueueTool.QueueAction<Void>("Start scrolling") { @Override public Void launch() { Point clickPoint = getClickPoint(oper, direction, orientation); if (clickPoint != null) { MouseDriver mdriver = DriverManager.getMouseDriver(oper); mdriver.moveMouse(oper, clickPoint.x, clickPoint.y); mdriver.pressMouse(oper, clickPoint.x, clickPoint.y, Operator.getDefaultMouseButton(), 0); } return null; } }); } @Override protected void stopPushAndWait(final ComponentOperator oper, final int direction, final int orientation) { queueTool.invokeSmoothly(new QueueTool.QueueAction<Void>("Stop scrolling") { @Override public Void launch() { Point clickPoint = getClickPoint(oper, direction, orientation); if (clickPoint != null) { MouseDriver mdriver = DriverManager.getMouseDriver(oper); mdriver.releaseMouse(oper, clickPoint.x, clickPoint.y, Operator.getDefaultMouseButton(), 0); } return null; } }); } @Override protected Point startDragging(ComponentOperator oper) { //cannot return null; } @Override protected void drop(ComponentOperator oper, Point pnt) { //cannot } @Override protected void drag(ComponentOperator oper, Point pnt) { //cannot } @Override protected Timeout getScrollDeltaTimeout(ComponentOperator oper) { return oper.getTimeouts().create("JSliderOperator.ScrollingDelta"); } @Override protected boolean canDragAndDrop(ComponentOperator oper) { return false; } @Override protected boolean canJump(ComponentOperator oper) { return false; } @Override protected boolean canPushAndWait(ComponentOperator oper) { return true; } @Override protected int getDragAndDropStepLength(ComponentOperator oper) { return 0; } private Point getClickPoint(ComponentOperator oper, int direction, int orientation) { int x, y; boolean inverted = ((JSliderOperator) oper).getInverted(); int realDirection = ScrollAdjuster.DO_NOT_TOUCH_SCROLL_DIRECTION; if (inverted) { if (direction == ScrollAdjuster.INCREASE_SCROLL_DIRECTION) { realDirection = ScrollAdjuster.DECREASE_SCROLL_DIRECTION; } else if (direction == ScrollAdjuster.DECREASE_SCROLL_DIRECTION) { realDirection = ScrollAdjuster.INCREASE_SCROLL_DIRECTION; } else { return null; } } else { realDirection = direction; } if (orientation == JSlider.HORIZONTAL) { if (realDirection == ScrollAdjuster.INCREASE_SCROLL_DIRECTION) { x = oper.getWidth() - 1; } else if (realDirection == ScrollAdjuster.DECREASE_SCROLL_DIRECTION) { x = 0; } else { return null; } y = oper.getHeight() / 2; } else if (orientation == JSlider.VERTICAL) { if (realDirection == ScrollAdjuster.INCREASE_SCROLL_DIRECTION) { y = 0; } else if (realDirection == ScrollAdjuster.DECREASE_SCROLL_DIRECTION) { y = oper.getHeight() - 1; } else { return null; } x = oper.getWidth() / 2; } else { return null; } return new Point(x, y); } }