Skip to content

Commit

Permalink
8054572: [macosx] JComboBox paints the border incorrectly
Browse files Browse the repository at this point in the history
Reviewed-by: honkar, psadhukhan
  • Loading branch information
Damon Nguyen authored and prsadhuk committed Sep 19, 2022
1 parent b920d29 commit 8082c24
Show file tree
Hide file tree
Showing 2 changed files with 121 additions and 3 deletions.
29 changes: 26 additions & 3 deletions src/java.desktop/macosx/classes/com/apple/laf/AquaComboBoxUI.java
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2011, 2021, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2011, 2022, 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
Expand Down Expand Up @@ -453,6 +453,31 @@ protected LayoutManager createLayoutManager() {
}

class AquaComboBoxLayoutManager extends BasicComboBoxUI.ComboBoxLayoutManager {
protected Rectangle rectangleForCurrentValue() {
int width = comboBox.getWidth();
int height = 22;
Insets insets = getInsets();
int buttonSize = height - (insets.top + insets.bottom);
if ( arrowButton != null ) {
buttonSize = arrowButton.getWidth();
}
int midHeight = (comboBox.getHeight() - height - (insets.top + insets.bottom)) / 2 - 1;
if (midHeight < 0) {
midHeight = 0;
}

if (comboBox.getComponentOrientation().isLeftToRight()) {
return new Rectangle(insets.left, insets.top + midHeight,
width - (insets.left + insets.right + buttonSize) + 4,
height - (insets.top + insets.bottom));
}
else {
return new Rectangle(insets.left + buttonSize, insets.top + midHeight,
width - (insets.left + insets.right + buttonSize) + 4,
height - (insets.top + insets.bottom));
}
}

public void layoutContainer(final Container parent) {
if (arrowButton != null && !comboBox.isEditable()) {
final Insets insets = comboBox.getInsets();
Expand All @@ -476,8 +501,6 @@ public void layoutContainer(final Container parent) {

if (editor != null) {
final Rectangle editorRect = rectangleForCurrentValue();
editorRect.width += 4;
editorRect.height += 1;
editor.setBounds(editorRect);
}
}
Expand Down
95 changes: 95 additions & 0 deletions test/jdk/javax/swing/JComboBox/JComboBoxBorderTest.java
@@ -0,0 +1,95 @@
/*
* Copyright (c) 2022, 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.
*/

/*
* @test
* @bug 8054572
* @library /java/awt/regtesthelpers
* @build PassFailJFrame
* @summary Tests if JComboBox displays correctly when editable/non-editable
* @run main/manual JComboBoxBorderTest
*/

import java.awt.FlowLayout;
import java.lang.reflect.InvocationTargetException;

import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.SwingUtilities;
import javax.swing.UIManager;

public class JComboBoxBorderTest {
private static final String instructionsText = "Pass if you can see both " +
"an editable and non-editable JComboBox and if they display " +
"reasonably. Fail if they do not appear or are misaligned.";

private static JFrame frame;

public static void createAndShowGUI() throws InterruptedException,
InvocationTargetException {
SwingUtilities.invokeAndWait(() -> {

JLabel label = new JLabel("Editable combo box:");
JLabel label2 = new JLabel("Non-editable combo box:");

JComboBox<String> comboBox = new JComboBox<>(new String[]
{ "Item 1", "Item 2", "Item 3" });
JComboBox<String> comboBox2 = new JComboBox<>(new String[]
{ "Item 1", "Item 2", "Item 3" });
comboBox.setEditable(true);

FlowLayout layout = new FlowLayout(FlowLayout.LEADING);
JPanel panel = new JPanel(layout);
panel.add(label);
panel.add(comboBox);

panel.add(label2);
panel.add(comboBox2);

frame = new JFrame();
frame.getContentPane().add(panel);
frame.pack();
frame.setLocationRelativeTo(null);

PassFailJFrame.addTestWindow(frame);
PassFailJFrame.positionTestWindow(frame,
PassFailJFrame.Position.HORIZONTAL);

frame.setVisible(true);
});
}

public static void main(String[] args) throws Exception {

UIManager.setLookAndFeel("com.apple.laf.AquaLookAndFeel");

PassFailJFrame pfjFrame = new PassFailJFrame("JScrollPane "
+ "Test Instructions", instructionsText, 5);

createAndShowGUI();

pfjFrame.awaitAndCheck();
}
}

1 comment on commit 8082c24

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.