Package docking
Class DockingUtils
- java.lang.Object
-
- docking.DockingUtils
-
public class DockingUtils extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceDockingUtils.ComponentCallback<T extends java.awt.Component>A callback to operate on a componentstatic classDockingUtils.TreeTraversalOrderSpecifies the order of component traversalstatic classDockingUtils.TreeTraversalResultControls traversal and communicates cause for termination
-
Field Summary
Fields Modifier and Type Field Description static intCONTROL_KEY_MODIFIER_MASKSystem dependent mask for the Ctrl keystatic intCONTROL_KEY_MODIFIER_MASK_DEPRECATEDDeprecated.use insteadCONTROL_KEY_MODIFIER_MASKstatic java.lang.StringCONTROL_KEY_NAME
-
Constructor Summary
Constructors Constructor Description DockingUtils()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static javax.swing.JSeparatorcreateToolbarSeparator()static DockingUtils.TreeTraversalResultforAllDescendants(java.awt.Container start, DockingUtils.ComponentCallback<java.awt.Component> cb)Perform some operation on a component and all of its descendents, recursively.static <T extends java.awt.Component>
DockingUtils.TreeTraversalResultforAllDescendants(java.awt.Container start, java.lang.Class<T> type, DockingUtils.TreeTraversalOrder order, DockingUtils.ComponentCallback<T> cb)Perform some operation on a component and all of its descendants, recursively This traverses the swing/awt component tree starting at the given container and descends recursively through all containers.static UndoRedoKeeperinstallUndoRedo(javax.swing.text.JTextComponent textComponent)static booleanisControlModifier(java.awt.event.KeyEvent keyEvent)Checks if the mouseEvent has the "control" key down.static booleanisControlModifier(java.awt.event.MouseEvent mouseEvent)Checks if the mouseEvent has the "control" key down.static javax.swing.IconscaleIconAsNeeded(javax.swing.Icon icon)static voidsetTransparent(javax.swing.JComponent c)Sets the given component to transparent, which allows the parent component's background to be painted.
-
-
-
Field Detail
-
CONTROL_KEY_MODIFIER_MASK
public static final int CONTROL_KEY_MODIFIER_MASK
System dependent mask for the Ctrl key
-
CONTROL_KEY_MODIFIER_MASK_DEPRECATED
@Deprecated public static final int CONTROL_KEY_MODIFIER_MASK_DEPRECATED
Deprecated.use insteadCONTROL_KEY_MODIFIER_MASKA version the control key modifiers that is based upon the pre-Java 9InputEventusage. This mask is here for those clients that cannot be upgraded, such as those with dependencies on 3rd-party libraries that still use the old mask style.
-
CONTROL_KEY_NAME
public static final java.lang.String CONTROL_KEY_NAME
-
-
Method Detail
-
createToolbarSeparator
public static javax.swing.JSeparator createToolbarSeparator()
-
scaleIconAsNeeded
public static javax.swing.Icon scaleIconAsNeeded(javax.swing.Icon icon)
-
isControlModifier
public static boolean isControlModifier(java.awt.event.MouseEvent mouseEvent)
Checks if the mouseEvent has the "control" key down. On windows, this is actually the control key. On Mac, it is the command key.- Parameters:
mouseEvent- the event to check- Returns:
- true if the control key is pressed
-
isControlModifier
public static boolean isControlModifier(java.awt.event.KeyEvent keyEvent)
Checks if the mouseEvent has the "control" key down. On windows, this is actually the control key. On Mac, it is the command key.- Parameters:
keyEvent- the event to check- Returns:
- true if the control key is pressed
-
installUndoRedo
public static UndoRedoKeeper installUndoRedo(javax.swing.text.JTextComponent textComponent)
-
forAllDescendants
public static <T extends java.awt.Component> DockingUtils.TreeTraversalResult forAllDescendants(java.awt.Container start, java.lang.Class<T> type, DockingUtils.TreeTraversalOrder order, DockingUtils.ComponentCallback<T> cb)
Perform some operation on a component and all of its descendants, recursively This traverses the swing/awt component tree starting at the given container and descends recursively through all containers. Any time a component of type (or subclass of type) is found, the given callback is executed on it. If order isDockingUtils.TreeTraversalOrder.CHILDREN_FIRST, then the traversal will execute the callback on the children of a container before executing the callback on the container itself; ifDockingUtils.TreeTraversalOrder.PARENT_FIRST, then the traversal will execute the callback on the container before descending. The callback must return one of three result values. In normal circumstances, it should returnDockingUtils.TreeTraversalResult.CONTINUE, allowing traversal to continue to the next element. If the callback wishes to terminate traversal "successfully," e.g., because it needed to locate the first element satisfying some predicate, then it should returnDockingUtils.TreeTraversalResult.FINISH. If an error occurs during traversal, then it should either returnDockingUtils.TreeTraversalResult.TERMINATEor throw an appropriate exception to terminate traversal "unsuccessfully." This method will also return a value ofDockingUtils.TreeTraversalResultindicating how traversal terminated. IfDockingUtils.TreeTraversalResult.CONTINUE, then every element in the subtree was visited, and traversal was successful. IfDockingUtils.TreeTraversalResult.FINISH, then some elements may have been omitted, but traversal was still successful. IfDockingUtils.TreeTraversalResult.TERMINATE, then some elements may have been omitted, and traversal was not successful.- Parameters:
start- the "root" container of the subtree on which to operatetype- the type of components on which to operateorder- whether to operation on children or parents firstcb- the callback to perform the actual operation- Returns:
- a result indicating whether or not traversal completed successfully
-
forAllDescendants
public static DockingUtils.TreeTraversalResult forAllDescendants(java.awt.Container start, DockingUtils.ComponentCallback<java.awt.Component> cb)
Perform some operation on a component and all of its descendents, recursively. This applies the operation to all components in the tree, children first.- Parameters:
start- the "root" container of the subtree on which to operatecb- the callback to perform the actual operation- Returns:
- a result indicating whether or not traversal completed successfully
- See Also:
forAllDescendants(Container, Class, TreeTraversalOrder, ComponentCallback)
-
setTransparent
public static void setTransparent(javax.swing.JComponent c)
Sets the given component to transparent, which allows the parent component's background to be painted.Notes Historically, to make a component transparent you would call
JComponent.setOpaque(boolean)with a false value. However, it turns out that the definition and the implementation of this method are at odds. setOpaque(false) is meant to signal that some part of the component is transparent, so the parent component needs to be painted. Most LaFs implemented this by not painting the background of the component, but used the parent's color instead. The Nimbus LaF actually honors the contract of setOpaque(), which has the effect of painting the components background by default.This method allows components to achieve transparency when they used to rely on setOpaque(false).
- Parameters:
c- the component to be made transparent
-
-