Skip to content

Commit 0ec3d2e

Browse files
author
Abhishek Kumar
committedApr 5, 2023
7124527: [macosx] SwingSet2, label is not read by VoiceOver when focus is on textfield for Internalframe and Table demo.
Reviewed-by: asemenov, serb
1 parent ed9592c commit 0ec3d2e

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed
 

‎src/demo/share/jfc/SwingSet2/InternalFrameDemo.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
*
3-
* Copyright (c) 2007, 2021, Oracle and/or its affiliates. All rights reserved.
3+
* Copyright (c) 2007, 2023, Oracle and/or its affiliates. All rights reserved.
44
*
55
* Redistribution and use in source and binary forms, with or without
66
* modification, are permitted provided that the following conditions
@@ -271,6 +271,7 @@ public Insets getInsets() {
271271

272272
windowTitleField = new JTextField(getString("InternalFrameDemo.frame_label"));
273273
windowTitleLabel = new JLabel(getString("InternalFrameDemo.title_text_field_label"));
274+
windowTitleLabel.setLabelFor(windowTitleField);
274275

275276
p.setLayout(new BoxLayout(p, BoxLayout.X_AXIS));
276277
p.add(Box.createRigidArea(HGAP5));

‎src/demo/share/jfc/SwingSet2/TableDemo.java

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
*
3-
* Copyright (c) 2007, 2021, Oracle and/or its affiliates. All rights reserved.
3+
* Copyright (c) 2007, 2023, Oracle and/or its affiliates. All rights reserved.
44
*
55
* Redistribution and use in source and binary forms, with or without
66
* modification, are permitted provided that the following conditions
@@ -281,6 +281,7 @@ public Dimension getMaximumSize() {
281281
selectionModeComboBox.addItem(getString("TableDemo.one_range"));
282282
selectionModeComboBox.addItem(getString("TableDemo.multiple_ranges"));
283283
selectionModeComboBox.setSelectedIndex(tableView.getSelectionModel().getSelectionMode());
284+
selectionModeComboBox.getAccessibleContext().setAccessibleName(getString("TableDemo.selection_mode"));
284285
selectionModeComboBox.addItemListener(new ItemListener() {
285286
public void itemStateChanged(ItemEvent e) {
286287
JComboBox<?> source = (JComboBox<?>)e.getSource();
@@ -310,6 +311,7 @@ public Dimension getMaximumSize() {
310311
resizeModeComboBox.addItem(getString("TableDemo.last_column"));
311312
resizeModeComboBox.addItem(getString("TableDemo.all_columns"));
312313
resizeModeComboBox.setSelectedIndex(tableView.getAutoResizeMode());
314+
resizeModeComboBox.getAccessibleContext().setAccessibleName(getString("TableDemo.autoresize_mode"));
313315
resizeModeComboBox.addItemListener(new ItemListener() {
314316
public void itemStateChanged(ItemEvent e) {
315317
JComboBox<?> source = (JComboBox<?>)e.getSource();
@@ -330,6 +332,9 @@ public void itemStateChanged(ItemEvent e) {
330332
footerTextField = new JTextField(getString("TableDemo.footerText"), 15);
331333
fitWidth = new JCheckBox(getString("TableDemo.fitWidth"), true);
332334
printButton = new JButton(getString("TableDemo.print"));
335+
336+
headerLabel.setLabelFor(headerTextField);
337+
footerLabel.setLabelFor(footerTextField);
333338
printButton.addActionListener(new ActionListener() {
334339
public void actionPerformed(ActionEvent ae) {
335340
printTable();

0 commit comments

Comments
 (0)
Please sign in to comment.