/* * 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. * * 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.util.Arrays; import org.eclipse.swt.custom.CCombo; import org.jemmy.action.GetAction; import org.jemmy.control.ControlType; import org.jemmy.control.Property; import org.jemmy.control.Wrap; import org.jemmy.env.Environment; import org.jemmy.input.KeyboardSelectable; import org.jemmy.input.KeyboardSelector; import org.jemmy.input.SelectionText; import org.jemmy.interfaces.ControlInterface; import org.jemmy.interfaces.Focusable; import org.jemmy.interfaces.Selector; /** * @author Erik Greijus */ @ControlType(CCombo.class) public class CComboWrap extends ControlWrap implements KeyboardSelectable, Focusable { class FocusableSelectionText extends SelectionText implements Focusable { protected ClickFocus focuser; private final CComboWrap cComboWrap; public FocusableSelectionText(CComboWrap textWrap) { super(textWrap); this.cComboWrap = textWrap; } @Override public double position() { return cComboWrap.position(); } @Override public String text() { return cComboWrap.text(); } @Override public double anchor() { return cComboWrap.anchor(); } @Override public ClickFocus focuser() { if (focuser == null) { focuser = new ClickFocus(); } return focuser; } } FocusableSelectionText text = new FocusableSelectionText(this); private KeyboardSelector selector = null; public CComboWrap(Environment env, T node) { super(env, node); } @Override public java.util.List getStates() { return new GetAction>() { @Override public void run(Object... parameters) throws Exception { setResult(Arrays.asList(getControl().getItems())); } }.dispatch(getEnvironment()); } @Override public String getState() { return new GetAction() { @Override public void run(Object... parameters) throws Exception { if (getControl().getSelectionIndex() >= 0) { setResult(getControl().getItem(getControl().getSelectionIndex())); } else { setResult(null); } } }.dispatch(getEnvironment()); } @Override public int selection() { return new GetAction() { @Override public void run(Object... parameters) throws Exception { setResult(getControl().getSelectionIndex()); } }.dispatch(getEnvironment()); } @Override public Selector selector() { if (selector == null) { selector = new KeyboardSelector(this, this); } return selector; } @Override public Class getType() { return String.class; } @Override public boolean isVertical() { return true; } @Override public int index(String item) { return getStates().indexOf(item); } @Override public ClickFocus focuser() { if (focuser == null) { super.focuser().clickCount = 2; } return focuser; } @Property(Wrap.POSITION_PROP_NAME) public Integer position() { GetAction action = new GetAction() { @Override public void run(Object... parameters) { setResult(getControl().getSelection().x); } }; getEnvironment().getExecutor().execute(getEnvironment(), true, action); return action.getResult(); } @Property(SelectionText.SELECTION_ANCHOR_PROP_NAME) public Integer anchor() { return position(); } @Property(Wrap.TEXT_PROP_NAME) @Override public String text() { GetAction action = new GetAction() { @Override public void run(Object... parameters) { setResult(getControl().getText()); } }; getEnvironment().getExecutor().execute(getEnvironment(), true, action); return action.getResult(); } @Override public boolean is(Class interfaceClass) { if (interfaceClass.isAssignableFrom(SelectionText.class)) { return true; } if (interfaceClass.equals(Focusable.class)) { return true; } return super.is(interfaceClass); } @Override public INTERFACE as(Class interfaceClass) { if (interfaceClass.isAssignableFrom(SelectionText.class)) { return (INTERFACE) text; } if (interfaceClass.isAssignableFrom(Focusable.class)) { return (INTERFACE) text; } return super.as(interfaceClass); } }