8211160: Handle different look and feels in JInternalFrameOperator

Reviewed-by: serb
This commit is contained in:
Abdul Kolarkunnu 2018-10-01 18:03:19 -07:00 committed by Abdul Kolarkunnu
parent 493b31ba91
commit 2aa950f8bd
4 changed files with 126 additions and 23 deletions

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -24,6 +24,8 @@
*/ */
package org.netbeans.jemmy.drivers; package org.netbeans.jemmy.drivers;
import javax.swing.UIManager;
import org.netbeans.jemmy.ClassReference; import org.netbeans.jemmy.ClassReference;
import org.netbeans.jemmy.JemmyException; import org.netbeans.jemmy.JemmyException;
import org.netbeans.jemmy.JemmyProperties; import org.netbeans.jemmy.JemmyProperties;
@ -50,6 +52,7 @@ import org.netbeans.jemmy.drivers.trees.JTreeMouseDriver;
import org.netbeans.jemmy.drivers.windows.DefaultFrameDriver; import org.netbeans.jemmy.drivers.windows.DefaultFrameDriver;
import org.netbeans.jemmy.drivers.windows.DefaultInternalFrameDriver; import org.netbeans.jemmy.drivers.windows.DefaultInternalFrameDriver;
import org.netbeans.jemmy.drivers.windows.DefaultWindowDriver; import org.netbeans.jemmy.drivers.windows.DefaultWindowDriver;
import org.netbeans.jemmy.drivers.windows.InternalFramePopupMenuDriver;
/** /**
* Installs all necessary drivers for Jemmy operators except low-level drivers * Installs all necessary drivers for Jemmy operators except low-level drivers
@ -119,9 +122,9 @@ public class DefaultDriverInstaller extends ArrayDriverInstaller {
new ChoiceDriver(), new ChoiceDriver(),
new DefaultFrameDriver(), new DefaultFrameDriver(),
new DefaultWindowDriver(), new DefaultWindowDriver(),
new DefaultInternalFrameDriver(), "Motif".equals(UIManager.getLookAndFeel().getID())? new InternalFramePopupMenuDriver(): new DefaultInternalFrameDriver(),
new DefaultInternalFrameDriver(), "Motif".equals(UIManager.getLookAndFeel().getID())? new InternalFramePopupMenuDriver(): new DefaultInternalFrameDriver(),
new DefaultInternalFrameDriver(), "Motif".equals(UIManager.getLookAndFeel().getID())? new InternalFramePopupMenuDriver(): new DefaultInternalFrameDriver(),
new APIFocusDriver(), new APIFocusDriver(),
new MouseFocusDriver(), new MouseFocusDriver(),
(shortcutEvents ? new QueueJMenuDriver() : new DefaultJMenuDriver()), (shortcutEvents ? new QueueJMenuDriver() : new DefaultJMenuDriver()),

View File

@ -0,0 +1,87 @@
/*
* Copyright (c) 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.netbeans.jemmy.drivers.windows;
import javax.swing.UIManager;
import org.netbeans.jemmy.operators.ComponentOperator;
import org.netbeans.jemmy.operators.JInternalFrameOperator;
import org.netbeans.jemmy.operators.JMenuItemOperator;
import org.netbeans.jemmy.operators.JPopupMenuOperator;
/**
* InternalFrameDriver to do Close, Minimize, Maximize, and Restore actions
* using popup menus.
*/
public class InternalFramePopupMenuDriver extends DefaultInternalFrameDriver {
@Override
public void requestClose(ComponentOperator oper) {
checkSupported(oper);
pushMenuItem(oper, UIManager.getString(
"InternalFrameTitlePane.closeButtonText"));
}
@Override
public void iconify(ComponentOperator oper) {
checkSupported(oper);
pushMenuItem(oper, UIManager.getString(
"InternalFrameTitlePane.minimizeButtonText"));
}
@Override
public void maximize(ComponentOperator oper) {
checkSupported(oper);
if (!((JInternalFrameOperator) oper).isMaximum()) {
if (!((JInternalFrameOperator) oper).isSelected()) {
activate(oper);
}
pushMenuItem(oper, UIManager.getString(
"InternalFrameTitlePane.maximizeButtonText"));
}
}
@Override
public void demaximize(ComponentOperator oper) {
checkSupported(oper);
if (((JInternalFrameOperator) oper).isMaximum()) {
if (!((JInternalFrameOperator) oper).isSelected()) {
activate(oper);
}
pushMenuItem(oper, UIManager.getString(
"InternalFrameTitlePane.restoreButtonText"));
}
}
private void pushMenuItem(ComponentOperator oper,
String menuText) {
((JInternalFrameOperator) oper).getPopupButton().push();
JPopupMenuOperator popupMenu = new JPopupMenuOperator();
JMenuItemOperator menuItem =
new JMenuItemOperator(popupMenu, menuText);
menuItem.push();
}
}

View File

@ -170,6 +170,8 @@ public class JInternalFrameOperator extends JComponentOperator
*/ */
protected JButtonOperator closeOper = null; protected JButtonOperator closeOper = null;
protected JButtonOperator popupButtonOper = null;
/** /**
* A title operator. * A title operator.
*/ */
@ -202,9 +204,8 @@ public class JInternalFrameOperator extends JComponentOperator
* @param index an index between appropriate ones. * @param index an index between appropriate ones.
*/ */
public JInternalFrameOperator(ContainerOperator<?> cont, ComponentChooser chooser, int index) { public JInternalFrameOperator(ContainerOperator<?> cont, ComponentChooser chooser, int index) {
this((JInternalFrame) cont. this(waitJInternalFrame((Container)cont.getSource(),
waitSubComponent(new JInternalFrameFinder(chooser), chooser, index));
index));
copyEnvironment(cont); copyEnvironment(cont);
} }
@ -255,7 +256,7 @@ public class JInternalFrameOperator extends JComponentOperator
* *
*/ */
public JInternalFrameOperator(ContainerOperator<?> cont, int index) { public JInternalFrameOperator(ContainerOperator<?> cont, int index) {
this((JInternalFrame) waitComponent(cont, this(waitJInternalFrame((Container)cont.getSource(),
new JInternalFrameFinder(), new JInternalFrameFinder(),
index)); index));
copyEnvironment(cont); copyEnvironment(cont);
@ -667,6 +668,11 @@ public class JInternalFrameOperator extends JComponentOperator
return closeOper; return closeOper;
} }
public JButtonOperator getPopupButton() {
initOperators();
return popupButtonOper;
}
/** /**
* Waits for the title pane. * Waits for the title pane.
* *
@ -1413,6 +1419,9 @@ public class JInternalFrameOperator extends JComponentOperator
return "JInternalFrameOperator.initOperators.ComponentChooser{description = " + getDescription() + '}'; return "JInternalFrameOperator.initOperators.ComponentChooser{description = " + getDescription() + '}';
} }
}) != null) { }) != null) {
if("Motif".equals(UIManager.getLookAndFeel().getID())) {
popupButtonOper = new JButtonOperator(titleOperator, 0);
} else {
minOper = new JButtonOperator(titleOperator, minOper = new JButtonOperator(titleOperator,
new JComponentByTipFinder(MINIMIZE_BUTTON_TOOLTIP)); new JComponentByTipFinder(MINIMIZE_BUTTON_TOOLTIP));
if (((JInternalFrame) getSource()).isMaximizable()) { if (((JInternalFrame) getSource()).isMaximizable()) {
@ -1421,13 +1430,16 @@ public class JInternalFrameOperator extends JComponentOperator
} else { } else {
maxOper = null; maxOper = null;
} }
}
} else { } else {
minOper = null; minOper = null;
maxOper = null; maxOper = null;
} }
if (isClosable()) { if (isClosable()) {
if(!"Motif".equals(UIManager.getLookAndFeel().getID())) {
closeOper = new JButtonOperator(titleOperator, closeOper = new JButtonOperator(titleOperator,
new JComponentByTipFinder(CLOSE_BUTTON_TOOLTIP)); new JComponentByTipFinder(CLOSE_BUTTON_TOOLTIP));
}
} else { } else {
closeOper = null; closeOper = null;
} }
@ -1588,23 +1600,24 @@ public class JInternalFrameOperator extends JComponentOperator
} }
/** /**
* Creates an operator for the correspondent intenal frame. * Creates an operator for the correspondent internal frame.
* *
* @return an operator. * @return an operator.
*/ */
public JInternalFrame getInternalFrame() { public JInternalFrame getInternalFrame() {
return ((JInternalFrame) getEventDispatcher(). return (runMapping(new MapAction<JInternalFrame>("getInternalFrame") {
invokeExistingMethod("getInternalFrame", @Override
null, public JInternalFrame map() {
null, return ((JInternalFrame.JDesktopIcon) getSource()).getInternalFrame();
output)); }
}));
} }
/** /**
* Pushs the deiconifying button. * Pushs the deiconifying button.
*/ */
public void pushButton() { public void pushButton() {
new JButtonOperator(this).push(); this.clickMouse(2);
} }
} }

View File

@ -1,6 +1,6 @@
Manifest-version: 1.0 Manifest-version: 1.0
Main-Class: org.netbeans.jemmy.JemmyProperties Main-Class: org.netbeans.jemmy.JemmyProperties
Jemmy-MajorVersion: 3.0 Jemmy-MajorVersion: 3.0
Jemmy-MinorVersion: 4.0 Jemmy-MinorVersion: 5.0
Jemmy-Build: @BUILD_NUMBER@ Jemmy-Build: @BUILD_NUMBER@