org.jemmy.swt.ControlWrap Maven / Gradle / Ivy
/*
* Copyright (c) 2007, 2018, 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. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle 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 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.jemmy.swt;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Menu;
import org.eclipse.swt.widgets.Shell;
import org.jemmy.Point;
import org.jemmy.Rectangle;
import org.jemmy.action.GetAction;
import org.jemmy.control.Wrap;
import org.jemmy.control.ControlType;
import org.jemmy.control.Property;
import org.jemmy.env.Environment;
import org.jemmy.interfaces.ControlInterface;
import org.jemmy.interfaces.Focus;
import org.jemmy.interfaces.Focusable;
import org.jemmy.interfaces.PopupOwner;
/**
*
* @author shura
* @author erikgreijus
*/
@ControlType(org.eclipse.swt.widgets.Control.class)
public class ControlWrap extends Wrap implements Focusable {
protected ClickFocus focuser;
protected PopupOwner popup = null;
public ControlWrap(Environment env, T node) {
super(env, node);
}
@Override
public Rectangle getScreenBounds() {
return getScreenBounds(getControl(), getEnvironment());
}
public static Rectangle getScreenBounds(Control control, Environment env) {
Rectangle res = getBounds(control, env);
org.eclipse.swt.graphics.Point loc = getScreenLocation(control, env);
res.x = loc.x;
res.y = loc.y;
return res;
}
public static org.eclipse.swt.graphics.Point getScreenLocation(final org.eclipse.swt.widgets.Control control, Environment env) {
GetAction action = new GetAction() {
public void run(Object... parameters) {
setResult(Display.getDefault().map(control, null, new org.eclipse.swt.graphics.Point(0, 0)));
}
@Override
public String toString() {
return "Getting parent for " + control;
}
};
env.getExecutor().execute(env, true, action);
return action.getResult();
}
public Shell getShell() {
GetAction action = new GetAction() {
public void run(Object... parameters) {
setResult(getControl().getShell());
}
@Override
public String toString() {
return "Getting shell for " + getControl();
}
};
getEnvironment().getExecutor().execute(getEnvironment(), true, action);
return action.getResult();
}
public boolean hasFocus() {
GetAction action = new GetAction() {
public void run(Object... parameters) {
setResult(getControl().isFocusControl());
}
@Override
public String toString() {
return "Getting shell for " + getControl();
}
};
getEnvironment().getExecutor().execute(getEnvironment(), true, action);
return action.getResult();
}
public Menu menu() {
GetAction
© 2015 - 2025 Weber Informatics LLC | Privacy Policy