Class BasicToolBarUI

All Implemented Interfaces:
SwingConstants
Direct Known Subclasses:
MetalToolBarUI, SynthToolBarUI

public class BasicToolBarUI extends ToolBarUI implements SwingConstants
A Basic L&F implementation of ToolBarUI. This implementation is a "combined" view/controller.
  • Field Details Link icon

    • toolBar Link icon

      protected JToolBar toolBar
      The instance of JToolBar.
    • dragWindow Link icon

      protected BasicToolBarUI.DragWindow dragWindow
      The instance of DragWindow.
    • focusedCompIndex Link icon

      protected int focusedCompIndex
      The index of the focused component.
    • dockingColor Link icon

      protected Color dockingColor
      The background color of the docking border.
    • floatingColor Link icon

      protected Color floatingColor
      The background color of the not docking border.
    • dockingBorderColor Link icon

      protected Color dockingBorderColor
      The color of the docking border.
    • floatingBorderColor Link icon

      protected Color floatingBorderColor
      The color of the not docking border.
    • dockingListener Link icon

      protected MouseInputListener dockingListener
      The instance of a MouseInputListener.
    • propertyListener Link icon

      protected PropertyChangeListener propertyListener
      The instance of a PropertyChangeListener.
    • toolBarContListener Link icon

      protected ContainerListener toolBarContListener
      The instance of a ContainerListener.
    • toolBarFocusListener Link icon

      protected FocusListener toolBarFocusListener
      The instance of a FocusListener.
    • constraintBeforeFloating Link icon

      protected String constraintBeforeFloating
      The layout before floating.
    • upKey Link icon

      @Deprecated protected KeyStroke upKey
      Deprecated.
      As of Java 2 platform v1.3.
      As of Java 2 platform v1.3 this previously undocumented field is no longer used. Key bindings are now defined by the LookAndFeel, please refer to the key bindings specification for further details.
    • downKey Link icon

      @Deprecated protected KeyStroke downKey
      Deprecated.
      As of Java 2 platform v1.3.
      As of Java 2 platform v1.3 this previously undocumented field is no longer used. Key bindings are now defined by the LookAndFeel, please refer to the key bindings specification for further details.
    • leftKey Link icon

      @Deprecated protected KeyStroke leftKey
      Deprecated.
      As of Java 2 platform v1.3.
      As of Java 2 platform v1.3 this previously undocumented field is no longer used. Key bindings are now defined by the LookAndFeel, please refer to the key bindings specification for further details.
    • rightKey Link icon

      @Deprecated protected KeyStroke rightKey
      Deprecated.
      As of Java 2 platform v1.3.
      As of Java 2 platform v1.3 this previously undocumented field is no longer used. Key bindings are now defined by the LookAndFeel, please refer to the key bindings specification for further details.
  • Constructor Details Link icon

    • BasicToolBarUI Link icon

      public BasicToolBarUI()
      Constructs a BasicToolBarUI.
  • Method Details Link icon

    • createUI Link icon

      public static ComponentUI createUI(JComponent c)
      Constructs a new instance of BasicToolBarUI.
      Parameters:
      c - a component
      Returns:
      a new instance of BasicToolBarUI
    • installDefaults Link icon

      protected void installDefaults()
      Installs default properties.
    • uninstallDefaults Link icon

      protected void uninstallDefaults()
      Uninstalls default properties.
    • installComponents Link icon

      protected void installComponents()
      Registers components.
    • uninstallComponents Link icon

      protected void uninstallComponents()
      Unregisters components.
    • installListeners Link icon

      protected void installListeners()
      Registers listeners.
    • uninstallListeners Link icon

      protected void uninstallListeners()
      Unregisters listeners.
    • installKeyboardActions Link icon

      protected void installKeyboardActions()
      Registers keyboard actions.
    • uninstallKeyboardActions Link icon

      protected void uninstallKeyboardActions()
      Unregisters keyboard actions.
    • createRolloverBorder Link icon

      protected Border createRolloverBorder()
      Creates a rollover border for toolbar components. The rollover border will be installed if rollover borders are enabled.

      Override this method to provide an alternate rollover border.

      Returns:
      a rollover border for toolbar components
      Since:
      1.4
    • createNonRolloverBorder Link icon

      protected Border createNonRolloverBorder()
      Creates the non rollover border for toolbar components. This border will be installed as the border for components added to the toolbar if rollover borders are not enabled.

      Override this method to provide an alternate rollover border.

      Returns:
      the non rollover border for toolbar components
      Since:
      1.4
    • createFloatingFrame Link icon

      @Deprecated(since="17", forRemoval=true) protected JFrame createFloatingFrame(JToolBar toolbar)
      Deprecated, for removal: This API element is subject to removal in a future version.
      It is recommended that createFloatingWindow(JToolBar) be used instead
      No longer used, use BasicToolBarUI.createFloatingWindow(JToolBar)
      Parameters:
      toolbar - an instance of JToolBar
      Returns:
      an instance of JFrame
      See Also:
    • createFloatingWindow Link icon

      protected RootPaneContainer createFloatingWindow(JToolBar toolbar)
      Creates a window which contains the toolbar after it has been dragged out from its container
      Parameters:
      toolbar - an instance of JToolBar
      Returns:
      a RootPaneContainer object, containing the toolbar
      Since:
      1.4
    • createDragWindow Link icon

      protected BasicToolBarUI.DragWindow createDragWindow(JToolBar toolbar)
      Returns an instance of DragWindow.
      Parameters:
      toolbar - an instance of JToolBar
      Returns:
      an instance of DragWindow
    • isRolloverBorders Link icon

      public boolean isRolloverBorders()
      Returns a flag to determine whether rollover button borders are enabled.
      Returns:
      true if rollover borders are enabled; false otherwise
      Since:
      1.4
      See Also:
    • setRolloverBorders Link icon

      public void setRolloverBorders(boolean rollover)
      Sets the flag for enabling rollover borders on the toolbar and it will also install the appropriate border depending on the state of the flag.
      Parameters:
      rollover - if true, rollover borders are installed. Otherwise non-rollover borders are installed
      Since:
      1.4
      See Also:
    • installRolloverBorders Link icon

      protected void installRolloverBorders(JComponent c)
      Installs rollover borders on all the child components of the JComponent.

      This is a convenience method to call setBorderToRollover for each child component.

      Parameters:
      c - container which holds the child components (usually a JToolBar)
      Since:
      1.4
      See Also:
    • installNonRolloverBorders Link icon

      protected void installNonRolloverBorders(JComponent c)
      Installs non-rollover borders on all the child components of the JComponent. A non-rollover border is the border that is installed on the child component while it is in the toolbar.

      This is a convenience method to call setBorderToNonRollover for each child component.

      Parameters:
      c - container which holds the child components (usually a JToolBar)
      Since:
      1.4
      See Also:
    • installNormalBorders Link icon

      protected void installNormalBorders(JComponent c)
      Installs normal borders on all the child components of the JComponent. A normal border is the original border that was installed on the child component before it was added to the toolbar.

      This is a convenience method to call setBorderNormal for each child component.

      Parameters:
      c - container which holds the child components (usually a JToolBar)
      Since:
      1.4
      See Also:
    • setBorderToRollover Link icon

      protected void setBorderToRollover(Component c)
      Sets the border of the component to have a rollover border which was created by the createRolloverBorder() method.
      Parameters:
      c - component which will have a rollover border installed
      Since:
      1.4
      See Also:
    • getRolloverBorder Link icon

      protected Border getRolloverBorder(AbstractButton b)
      Returns a rollover border for the button.
      Parameters:
      b - the button to calculate the rollover border for
      Returns:
      the rollover border
      Since:
      1.6
      See Also:
    • setBorderToNonRollover Link icon

      protected void setBorderToNonRollover(Component c)
      Sets the border of the component to have a non-rollover border which was created by the createNonRolloverBorder() method.
      Parameters:
      c - component which will have a non-rollover border installed
      Since:
      1.4
      See Also:
    • getNonRolloverBorder Link icon

      protected Border getNonRolloverBorder(AbstractButton b)
      Returns a non-rollover border for the button.
      Parameters:
      b - the button to calculate the non-rollover border for
      Returns:
      the non-rollover border
      Since:
      1.6
      See Also:
    • setBorderToNormal Link icon

      protected void setBorderToNormal(Component c)
      Sets the border of the component to have a normal border. A normal border is the original border that was installed on the child component before it was added to the toolbar.
      Parameters:
      c - component which will have a normal border re-installed
      Since:
      1.4
      See Also:
    • setFloatingLocation Link icon

      public void setFloatingLocation(int x, int y)
      Sets the floating location.
      Parameters:
      x - an X coordinate
      y - an Y coordinate
    • isFloating Link icon

      public boolean isFloating()
      Returns true if the JToolBar is floating
      Returns:
      true if the JToolBar is floating
    • setFloating Link icon

      public void setFloating(boolean b, Point p)
      Sets the floating property.
      Parameters:
      b - true if the JToolBar is floating
      p - the position
    • setOrientation Link icon

      public void setOrientation(int orientation)
      Sets the tool bar's orientation.
      Parameters:
      orientation - the new orientation
    • getDockingColor Link icon

      public Color getDockingColor()
      Gets the color displayed when over a docking area
      Returns:
      the color displayed when over a docking area
    • setDockingColor Link icon

      public void setDockingColor(Color c)
      Sets the color displayed when over a docking area
      Parameters:
      c - the new color
    • getFloatingColor Link icon

      public Color getFloatingColor()
      Gets the color displayed when over a floating area
      Returns:
      the color displayed when over a floating area
    • setFloatingColor Link icon

      public void setFloatingColor(Color c)
      Sets the color displayed when over a floating area
      Parameters:
      c - the new color
    • canDock Link icon

      public boolean canDock(Component c, Point p)
      Returns true if the JToolBar can dock at the given position.
      Parameters:
      c - a component
      p - a position
      Returns:
      true if the JToolBar can dock at the given position
    • dragTo Link icon

      protected void dragTo(Point position, Point origin)
      The method is used to drag DragWindow during the JToolBar is being dragged.
      Parameters:
      position - the relative to the JTollBar position
      origin - the screen position of JToolBar before dragging
    • floatAt Link icon

      protected void floatAt(Point position, Point origin)
      The method is called at end of dragging to place the frame in either its original place or in its floating frame.
      Parameters:
      position - the relative to the JTollBar position
      origin - the screen position of JToolBar before dragging
    • createToolBarContListener Link icon

      protected ContainerListener createToolBarContListener()
      Returns an instance of ContainerListener.
      Returns:
      an instance of ContainerListener
    • createToolBarFocusListener Link icon

      protected FocusListener createToolBarFocusListener()
      Returns an instance of FocusListener.
      Returns:
      an instance of FocusListener
    • createPropertyListener Link icon

      protected PropertyChangeListener createPropertyListener()
      Returns an instance of PropertyChangeListener.
      Returns:
      an instance of PropertyChangeListener
    • createDockingListener Link icon

      protected MouseInputListener createDockingListener()
      Returns an instance of MouseInputListener.
      Returns:
      an instance of MouseInputListener
    • createFrameListener Link icon

      protected WindowListener createFrameListener()
      Constructs a new instance of WindowListener.
      Returns:
      a new instance of WindowListener
    • paintDragWindow Link icon

      protected void paintDragWindow(Graphics g)
      Paints the contents of the window used for dragging.
      Parameters:
      g - Graphics to paint to.
      Throws:
      NullPointerException - is g is null
      Since:
      1.5