9c6457f222
8262031: Create implementation for NSAccessibilityNavigableStaticText protocol 8264287: Create implementation for NSAccessibilityComboBox protocol peer 8264303: Create implementation for NSAccessibilityTabGroup protocol peer 8264292: Create implementation for NSAccessibilityList protocol peer 8267387: Create implementation for NSAccessibilityOutline protocol 8267388: Create implementation for NSAccessibilityTable protocol 8264286: Create implementation for NSAccessibilityColumn protocol peer 8264298: Create implementation for NSAccessibilityRow protocol peer 8264291: Create implementation for NSAccessibilityCell protocol peer Reviewed-by: kizune, pbansal, serb
120 lines
4.0 KiB
Java
120 lines
4.0 KiB
Java
/*
|
|
* Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved.
|
|
* Copyright (c) 2021, JetBrains s.r.o.. 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.
|
|
*/
|
|
|
|
import java.awt.*;
|
|
import java.security.PublicKey;
|
|
import java.util.concurrent.TimeUnit;
|
|
import java.util.concurrent.CountDownLatch;
|
|
|
|
import java.awt.event.ActionEvent;
|
|
import java.awt.event.ActionListener;
|
|
import java.awt.event.WindowAdapter;
|
|
import java.awt.event.WindowEvent;
|
|
import java.awt.GridBagLayout;
|
|
|
|
import javax.swing.JPanel;
|
|
import javax.swing.JFrame;
|
|
import javax.swing.JTextArea;
|
|
import javax.swing.JButton;
|
|
|
|
public abstract class AccessibleComponentTest {
|
|
|
|
protected static volatile boolean testResult = true;
|
|
protected static volatile CountDownLatch countDownLatch;
|
|
protected static String INSTRUCTIONS;
|
|
protected static String exceptionString;
|
|
protected JFrame mainFrame;
|
|
protected static AccessibleComponentTest a11yTest;
|
|
|
|
public abstract CountDownLatch createCountDownLatch();
|
|
|
|
public void createUI(JPanel component, String testName) {
|
|
mainFrame = new JFrame(testName);
|
|
GridBagLayout layout = new GridBagLayout();
|
|
JPanel mainControlPanel = new JPanel(layout);
|
|
JPanel resultButtonPanel = new JPanel(layout);
|
|
|
|
GridBagConstraints gbc = new GridBagConstraints();
|
|
|
|
JTextArea instructionTextArea = new JTextArea();
|
|
instructionTextArea.setText(INSTRUCTIONS);
|
|
instructionTextArea.setEditable(false);
|
|
instructionTextArea.setBackground(Color.white);
|
|
|
|
gbc.gridx = 0;
|
|
gbc.gridy = 0;
|
|
gbc.fill = GridBagConstraints.HORIZONTAL;
|
|
mainControlPanel.add(instructionTextArea, gbc);
|
|
gbc.gridx = 0;
|
|
gbc.gridy = 1;
|
|
mainControlPanel.add(component);
|
|
|
|
JButton passButton = new JButton("Pass");
|
|
passButton.setActionCommand("Pass");
|
|
passButton.addActionListener(new ActionListener() {
|
|
@Override
|
|
public void actionPerformed(ActionEvent e) {
|
|
mainFrame.dispose();
|
|
countDownLatch.countDown();
|
|
}
|
|
});
|
|
|
|
JButton failButton = new JButton("Fail");
|
|
failButton.setActionCommand("Fail");
|
|
failButton.addActionListener(new ActionListener() {
|
|
@Override
|
|
public void actionPerformed(ActionEvent e) {
|
|
testResult = false;
|
|
mainFrame.dispose();
|
|
countDownLatch.countDown();
|
|
}
|
|
});
|
|
|
|
gbc.gridx = 0;
|
|
gbc.gridy = 0;
|
|
resultButtonPanel.add(passButton, gbc);
|
|
|
|
gbc.gridx = 1;
|
|
gbc.gridy = 0;
|
|
resultButtonPanel.add(failButton, gbc);
|
|
|
|
gbc.gridx = 0;
|
|
gbc.gridy = 2;
|
|
mainControlPanel.add(resultButtonPanel, gbc);
|
|
|
|
mainFrame.add(mainControlPanel);
|
|
mainFrame.pack();
|
|
|
|
mainFrame.addWindowListener(new WindowAdapter() {
|
|
|
|
@Override
|
|
public void windowClosing(WindowEvent e) {
|
|
mainFrame.dispose();
|
|
countDownLatch.countDown();
|
|
}
|
|
});
|
|
mainFrame.setVisible(true);
|
|
}
|
|
}
|