Searched refs:isPopupVisible (Results 1 - 17 of 17) sorted by relevance

/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/plaf/
H A DComboBoxUI.java52 public abstract boolean isPopupVisible( JComboBox<?> c ); method in class:ComboBoxUI
/openjdk9/jdk/test/javax/swing/JComboBox/8033069/
H A Dbug8033069NoScrollBar.java110 Util.invokeOnEDT(cb1::isPopupVisible));
122 Util.invokeOnEDT(cb1::isPopupVisible));
127 Util.invokeOnEDT(cb1::isPopupVisible));
132 Util.invokeOnEDT(cb1::isPopupVisible));
140 Util.invokeOnEDT(cb1::isPopupVisible));
145 Util.invokeOnEDT(cb1::isPopupVisible));
156 Util.invokeOnEDT(cb1::isPopupVisible));
/openjdk9/jdk/test/javax/swing/JComboBox/ShowPopupAfterHidePopupTest/
H A DShowPopupAfterHidePopupTest.java71 popupIsVisible = comboBox.isPopupVisible();
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/plaf/multi/
H A DMultiComboBoxUI.java97 * Invokes the <code>isPopupVisible</code> method on each UI handled by this object.
102 public boolean isPopupVisible(JComboBox<?> a) { method in class:MultiComboBoxUI
104 ((ComboBoxUI) (uis.elementAt(0))).isPopupVisible(a);
106 ((ComboBoxUI) (uis.elementAt(i))).isPopupVisible(a);
/openjdk9/jdk/test/sanity/client/lib/jemmy/src/org/netbeans/jemmy/drivers/lists/
H A DJComboMouseDriver.java64 if (!coper.isPopupVisible()) {
/openjdk9/jdk/test/javax/swing/JComboBox/6406264/
H A Dbug6406264.java83 if (comboBox.getUI().isPopupVisible(comboBox) == false)
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/plaf/basic/
H A DBasicComboBoxUI.java906 public boolean isPopupVisible( JComboBox<?> c ) { method in class:BasicComboBoxUI
1154 if ( comboBox.isPopupVisible() ) {
1165 if (!(UIManager.getBoolean("ComboBox.noActionOnKeyNavigation") && comboBox.isPopupVisible())) {
1180 if ( comboBox.isPopupVisible() ) {
1191 if (!(UIManager.getBoolean("ComboBox.noActionOnKeyNavigation") && comboBox.isPopupVisible())) {
1203 setPopupVisible(comboBox, !isPopupVisible(comboBox));
1260 if ( hasFocus && !isPopupVisible(comboBox) ) {
1276 if ( hasFocus && !isPopupVisible(comboBox) ) {
1552 if (UIManager.getBoolean("ComboBox.noActionOnKeyNavigation") && comboBox.isPopupVisible()) {
1563 if ( comboBox.isPopupVisible() ) {
[all...]
H A DBasicPopupMenuUI.java921 || ((src instanceof JComboBox) && ((JComboBox) src).isPopupVisible())) {
/openjdk9/jdk/test/java/awt/EmbeddedFrame/EmbeddedFrameGrabTest/
H A DEmbeddedFrameGrabTest.java106 if (!combo.isPopupVisible()) {
/openjdk9/jdk/test/javax/swing/Action/8133039/
H A Dbug8133039.java151 return !c.isPopupVisible();
/openjdk9/jdk/src/java.desktop/macosx/classes/com/apple/laf/
H A DAquaComboBoxUI.java298 if (comboBox.isPopupVisible()) {
473 if (comboBox.isPopupVisible()) {
507 return comboBox.isPopupVisible() && super.isEnabled();
520 if (comboBox.isPopupVisible()) {
541 return comboBox.isPopupVisible() && super.isEnabled();
/openjdk9/jdk/src/java.desktop/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsComboBoxUI.java231 } else if (isPopupVisible(comboBox)) {
291 if ( hasFocus && !isPopupVisible(comboBox) ) {
448 getModel().setPressed(comboBox.isPopupVisible());
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/plaf/synth/
H A DSynthComboBoxUI.java599 return b || (pressedWhenPopupVisible && comboBox.isPopupVisible());
613 (pressedWhenPopupVisible && comboBox.isPopupVisible());
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/
H A DJComboBox.java826 public boolean isPopupVisible() { method in class:JComboBox
827 return getUI().isPopupVisible(this);
1866 if (JComboBox.this.isPopupVisible()) {
1918 setPopupVisible(!isPopupVisible());
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/plaf/metal/
H A DMetalComboBoxUI.java123 if (hasFocus && !isPopupVisible(comboBox) &&
/openjdk9/jdk/test/javax/swing/JComboBox/4199622/
H A Dbug4199622.java75 if (UIManager.getBoolean("ComboBox.noActionOnKeyNavigation") && cb.isPopupVisible()) {
/openjdk9/jdk/test/sanity/client/lib/jemmy/src/org/netbeans/jemmy/operators/
H A DJComboBoxOperator.java1020 * Maps {@code JComboBox.isPopupVisible()} through queue
1022 public boolean isPopupVisible() { method in class:JComboBoxOperator
1023 return (runMapping(new MapBooleanAction("isPopupVisible") {
1026 return ((JComboBox) getSource()).isPopupVisible();

Completed in 223 milliseconds