All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.assertj.swing.driver.JToolBarIsFloatingQuery Maven / Gradle / Ivy

There is a newer version: 3.17.1
Show newest version
package org.assertj.swing.driver;

import static javax.swing.SwingUtilities.getWindowAncestor;

import java.awt.Frame;
import java.awt.Window;

import javax.annotation.Nonnull;
import javax.swing.JToolBar;
import javax.swing.plaf.ToolBarUI;
import javax.swing.plaf.basic.BasicToolBarUI;

import org.assertj.swing.annotation.RunsInCurrentThread;

/**
 * 

* Indicates whether a {@code JToolBar} is floating. *

* *

* Note: Methods in this class are accessed in the current executing thread. Such thread may or may not be the * event dispatch thread (EDT.) Client code must call methods in this class from the EDT. *

* * @author Yvonne Wang * @author Alex Ruiz */ final class JToolBarIsFloatingQuery { @RunsInCurrentThread static boolean isJToolBarFloating(@Nonnull JToolBar toolBar) { ToolBarUI ui = toolBar.getUI(); if (ui instanceof BasicToolBarUI) { return ((BasicToolBarUI) ui).isFloating(); } // Have to guess; probably ought to check for sibling components Window w = getWindowAncestor(toolBar); return !(w instanceof Frame) && toolBar.getParent().getComponentCount() == 1; } private JToolBarIsFloatingQuery() { } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy