Class BasicTabbedPaneUI

All Implemented Interfaces:
SwingConstants
Direct Known Subclasses:
MetalTabbedPaneUI, SynthTabbedPaneUI

public class BasicTabbedPaneUI extends TabbedPaneUI implements SwingConstants
A Basic L&F implementation of TabbedPaneUI.
  • Field Details Link icon

    • tabPane Link icon

      protected JTabbedPane tabPane
      The tab pane
    • highlight Link icon

      protected Color highlight
      Highlight color
    • lightHighlight Link icon

      protected Color lightHighlight
      Light highlight color
    • shadow Link icon

      protected Color shadow
      Shadow color
    • darkShadow Link icon

      protected Color darkShadow
      Dark shadow color
    • focus Link icon

      protected Color focus
      Focus color
    • textIconGap Link icon

      protected int textIconGap
      Text icon gap
    • tabRunOverlay Link icon

      protected int tabRunOverlay
      Tab run overlay
    • tabInsets Link icon

      protected Insets tabInsets
      Tab insets
    • selectedTabPadInsets Link icon

      protected Insets selectedTabPadInsets
      Selected tab insets
    • tabAreaInsets Link icon

      protected Insets tabAreaInsets
      Tab area insets
    • contentBorderInsets Link icon

      protected Insets contentBorderInsets
      Content border insets
    • 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.
    • tabRuns Link icon

      protected int[] tabRuns
      Tab runs
    • runCount Link icon

      protected int runCount
      Run count
    • selectedRun Link icon

      protected int selectedRun
      Selected run
    • rects Link icon

      protected Rectangle[] rects
      Tab rects
    • maxTabHeight Link icon

      protected int maxTabHeight
      Maximum tab height
    • maxTabWidth Link icon

      protected int maxTabWidth
      Maximum tab width
    • tabChangeListener Link icon

      protected ChangeListener tabChangeListener
      Tab change listener
    • propertyChangeListener Link icon

      protected PropertyChangeListener propertyChangeListener
      Property change listener
    • mouseListener Link icon

      protected MouseListener mouseListener
      Mouse change listener
    • focusListener Link icon

      protected FocusListener focusListener
      Focus change listener
    • calcRect Link icon

      protected transient Rectangle calcRect
      A rectangle used for general layout calculations in order to avoid constructing many new Rectangles on the fly.
  • Constructor Details Link icon

    • BasicTabbedPaneUI Link icon

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

    • createUI Link icon

      public static ComponentUI createUI(JComponent c)
      Creates a UI.
      Parameters:
      c - a component
      Returns:
      a UI
    • createLayoutManager Link icon

      protected LayoutManager createLayoutManager()
      Invoked by installUI to create a layout manager object to manage the JTabbedPane.
      Returns:
      a layout manager object
      See Also:
    • installComponents Link icon

      protected void installComponents()
      Creates and installs any required subcomponents for the JTabbedPane. Invoked by installUI.
      Since:
      1.4
    • createScrollButton Link icon

      protected JButton createScrollButton(int direction)
      Creates and returns a JButton that will provide the user with a way to scroll the tabs in a particular direction. The returned JButton must be instance of UIResource.
      Parameters:
      direction - One of the SwingConstants constants: SOUTH, NORTH, EAST or WEST
      Returns:
      Widget for user to
      Throws:
      IllegalArgumentException - if direction is not one of NORTH, SOUTH, EAST or WEST
      Since:
      1.5
      See Also:
    • uninstallComponents Link icon

      protected void uninstallComponents()
      Removes any installed subcomponents from the JTabbedPane. Invoked by uninstallUI.
      Since:
      1.4
    • installDefaults Link icon

      protected void installDefaults()
      Installs the defaults.
    • uninstallDefaults Link icon

      protected void uninstallDefaults()
      Uninstalls the defaults.
    • installListeners Link icon

      protected void installListeners()
      Installs the listeners.
    • uninstallListeners Link icon

      protected void uninstallListeners()
      Uninstalls the listeners.
    • createMouseListener Link icon

      protected MouseListener createMouseListener()
      Creates a mouse listener.
      Returns:
      a mouse listener
    • createFocusListener Link icon

      protected FocusListener createFocusListener()
      Creates a focus listener.
      Returns:
      a focus listener
    • createChangeListener Link icon

      protected ChangeListener createChangeListener()
      Creates a change listener.
      Returns:
      a change listener
    • createPropertyChangeListener Link icon

      protected PropertyChangeListener createPropertyChangeListener()
      Creates a property change listener.
      Returns:
      a property change listener
    • installKeyboardActions Link icon

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

      protected void uninstallKeyboardActions()
      Uninstalls the keyboard actions.
    • setRolloverTab Link icon

      protected void setRolloverTab(int index)
      Sets the tab the mouse is currently over to index. index will be -1 if the mouse is no longer over any tab. No checking is done to ensure the passed in index identifies a valid tab.
      Parameters:
      index - Index of the tab the mouse is over.
      Since:
      1.5
    • getRolloverTab Link icon

      protected int getRolloverTab()
      Returns the tab the mouse is currently over, or -1 if the mouse is no longer over any tab.
      Returns:
      the tab the mouse is currently over, or -1 if the mouse is no longer over any tab
      Since:
      1.5
    • getBaseline Link icon

      public int getBaseline(JComponent c, int width, int height)
      Returns the baseline.
      Overrides:
      getBaseline in class ComponentUI
      Parameters:
      c - JComponent baseline is being requested for
      width - the width to get the baseline for
      height - the height to get the baseline for
      Returns:
      baseline or a value < 0 indicating there is no reasonable baseline
      Throws:
      NullPointerException - if c is null
      IllegalArgumentException - if width or height is < 0
      Since:
      1.6
      See Also:
    • getBaselineResizeBehavior Link icon

      public Component.BaselineResizeBehavior getBaselineResizeBehavior(JComponent c)
      Returns an enum indicating how the baseline of the component changes as the size changes.
      Overrides:
      getBaselineResizeBehavior in class ComponentUI
      Parameters:
      c - JComponent to return baseline resize behavior for
      Returns:
      an enum indicating how the baseline changes as the component size changes
      Throws:
      NullPointerException - if c is null
      Since:
      1.6
      See Also:
    • getBaseline Link icon

      protected int getBaseline(int tab)
      Returns the baseline for the specified tab.
      Parameters:
      tab - index of tab to get baseline for
      Returns:
      baseline or a value < 0 indicating there is no reasonable baseline
      Throws:
      IndexOutOfBoundsException - if index is out of range (index < 0 || index >= tab count)
      Since:
      1.6
    • getBaselineOffset Link icon

      protected int getBaselineOffset()
      Returns the amount the baseline is offset by. This is typically the same as getTabLabelShiftY.
      Returns:
      amount to offset the baseline by
      Since:
      1.6
    • paintTabArea Link icon

      protected void paintTabArea(Graphics g, int tabPlacement, int selectedIndex)
      Paints the tabs in the tab area. Invoked by paint(). The graphics parameter must be a valid Graphics object. Tab placement may be either: JTabbedPane.TOP, JTabbedPane.BOTTOM, JTabbedPane.LEFT, or JTabbedPane.RIGHT. The selected index must be a valid tabbed pane tab index (0 to tab count - 1, inclusive) or -1 if no tab is currently selected. The handling of invalid parameters is unspecified.
      Parameters:
      g - the graphics object to use for rendering
      tabPlacement - the placement for the tabs within the JTabbedPane
      selectedIndex - the tab index of the selected component
      Since:
      1.4
    • paintTab Link icon

      protected void paintTab(Graphics g, int tabPlacement, Rectangle[] rects, int tabIndex, Rectangle iconRect, Rectangle textRect)
      Paints a tab.
      Parameters:
      g - the graphics
      tabPlacement - the tab placement
      rects - the tab rectangles
      tabIndex - the tab index
      iconRect - the icon rectangle
      textRect - the text rectangle
    • layoutLabel Link icon

      protected void layoutLabel(int tabPlacement, FontMetrics metrics, int tabIndex, String title, Icon icon, Rectangle tabRect, Rectangle iconRect, Rectangle textRect, boolean isSelected)
      Lays out a label.
      Parameters:
      tabPlacement - the tab placement
      metrics - the font metrics
      tabIndex - the tab index
      title - the title
      icon - the icon
      tabRect - the tab rectangle
      iconRect - the icon rectangle
      textRect - the text rectangle
      isSelected - selection status
    • paintIcon Link icon

      protected void paintIcon(Graphics g, int tabPlacement, int tabIndex, Icon icon, Rectangle iconRect, boolean isSelected)
      Paints an icon.
      Parameters:
      g - the graphics
      tabPlacement - the tab placement
      tabIndex - the tab index
      icon - the icon
      iconRect - the icon rectangle
      isSelected - selection status
    • paintText Link icon

      protected void paintText(Graphics g, int tabPlacement, Font font, FontMetrics metrics, int tabIndex, String title, Rectangle textRect, boolean isSelected)
      Paints text.
      Parameters:
      g - the graphics
      tabPlacement - the tab placement
      font - the font
      metrics - the font metrics
      tabIndex - the tab index
      title - the title
      textRect - the text rectangle
      isSelected - selection status
    • getTabLabelShiftX Link icon

      protected int getTabLabelShiftX(int tabPlacement, int tabIndex, boolean isSelected)
      Returns the tab label shift x.
      Parameters:
      tabPlacement - the tab placement
      tabIndex - the tab index
      isSelected - selection status
      Returns:
      the tab label shift x
    • getTabLabelShiftY Link icon

      protected int getTabLabelShiftY(int tabPlacement, int tabIndex, boolean isSelected)
      Returns the tab label shift y.
      Parameters:
      tabPlacement - the tab placement
      tabIndex - the tab index
      isSelected - selection status
      Returns:
      the tab label shift y
    • paintFocusIndicator Link icon

      protected void paintFocusIndicator(Graphics g, int tabPlacement, Rectangle[] rects, int tabIndex, Rectangle iconRect, Rectangle textRect, boolean isSelected)
      Paints the focus indicator.
      Parameters:
      g - the graphics
      tabPlacement - the tab placement
      rects - the tab rectangles
      tabIndex - the tab index
      iconRect - the icon rectangle
      textRect - the text rectangle
      isSelected - selection status
    • paintTabBorder Link icon

      protected void paintTabBorder(Graphics g, int tabPlacement, int tabIndex, int x, int y, int w, int h, boolean isSelected)
      Paints the border around a tab. Note that this function does not paint the background of the tab, that is done elsewhere.
      Parameters:
      g - the graphics context in which to paint
      tabPlacement - the placement (left, right, bottom, top) of the tab
      tabIndex - the index of the tab with respect to other tabs
      x - the x coordinate of tab
      y - the y coordinate of tab
      w - the width of the tab
      h - the height of the tab
      isSelected - a boolean which determines whether or not the tab is selected
    • paintTabBackground Link icon

      protected void paintTabBackground(Graphics g, int tabPlacement, int tabIndex, int x, int y, int w, int h, boolean isSelected)
      Paints the tab background.
      Parameters:
      g - the graphics context in which to paint
      tabPlacement - the placement (left, right, bottom, top) of the tab
      tabIndex - the index of the tab with respect to other tabs
      x - the x coordinate of tab
      y - the y coordinate of tab
      w - the width of the tab
      h - the height of the tab
      isSelected - a boolean which determines whether or not the tab is selected
    • paintContentBorder Link icon

      protected void paintContentBorder(Graphics g, int tabPlacement, int selectedIndex)
      Paints the content border.
      Parameters:
      g - the graphics context in which to paint
      tabPlacement - the placement (left, right, bottom, top) of the tab
      selectedIndex - the tab index of the selected component
    • paintContentBorderTopEdge Link icon

      protected void paintContentBorderTopEdge(Graphics g, int tabPlacement, int selectedIndex, int x, int y, int w, int h)
      Paints the content border top edge.
      Parameters:
      g - the graphics context in which to paint
      tabPlacement - the placement (left, right, bottom, top) of the tab
      selectedIndex - the tab index of the selected component
      x - the x coordinate of tab
      y - the y coordinate of tab
      w - the width of the tab
      h - the height of the tab
    • paintContentBorderLeftEdge Link icon

      protected void paintContentBorderLeftEdge(Graphics g, int tabPlacement, int selectedIndex, int x, int y, int w, int h)
      Paints the content border left edge.
      Parameters:
      g - the graphics context in which to paint
      tabPlacement - the placement (left, right, bottom, top) of the tab
      selectedIndex - the tab index of the selected component
      x - the x coordinate of tab
      y - the y coordinate of tab
      w - the width of the tab
      h - the height of the tab
    • paintContentBorderBottomEdge Link icon

      protected void paintContentBorderBottomEdge(Graphics g, int tabPlacement, int selectedIndex, int x, int y, int w, int h)
      Paints the content border bottom edge.
      Parameters:
      g - the graphics context in which to paint
      tabPlacement - the placement (left, right, bottom, top) of the tab
      selectedIndex - the tab index of the selected component
      x - the x coordinate of tab
      y - the y coordinate of tab
      w - the width of the tab
      h - the height of the tab
    • paintContentBorderRightEdge Link icon

      protected void paintContentBorderRightEdge(Graphics g, int tabPlacement, int selectedIndex, int x, int y, int w, int h)
      Paints the content border right edge.
      Parameters:
      g - the graphics context in which to paint
      tabPlacement - the placement (left, right, bottom, top) of the tab
      selectedIndex - the tab index of the selected component
      x - the x coordinate of tab
      y - the y coordinate of tab
      w - the width of the tab
      h - the height of the tab
    • getTabBounds Link icon

      public Rectangle getTabBounds(JTabbedPane pane, int i)
      Returns the bounds of the specified tab index. The bounds are with respect to the JTabbedPane's coordinate space.
      Specified by:
      getTabBounds in class TabbedPaneUI
      Parameters:
      pane - the pane
      i - the index
      Returns:
      the rectangle for the tab bounds
    • getTabRunCount Link icon

      public int getTabRunCount(JTabbedPane pane)
      Description copied from class: TabbedPaneUI
      Returns the tab run count.
      Specified by:
      getTabRunCount in class TabbedPaneUI
      Parameters:
      pane - the pane
      Returns:
      the tab run count
    • tabForCoordinate Link icon

      public int tabForCoordinate(JTabbedPane pane, int x, int y)
      Returns the tab index which intersects the specified point in the JTabbedPane's coordinate space.
      Specified by:
      tabForCoordinate in class TabbedPaneUI
      Parameters:
      pane - the pane
      x - the x coordinate
      y - the y coordinate
      Returns:
      the tab for the coordinate
    • getTabBounds Link icon

      protected Rectangle getTabBounds(int tabIndex, Rectangle dest)
      Returns the bounds of the specified tab in the coordinate space of the JTabbedPane component. This is required because the tab rects are by default defined in the coordinate space of the component where they are rendered, which could be the JTabbedPane (for WRAP_TAB_LAYOUT) or a ScrollableTabPanel (SCROLL_TAB_LAYOUT). This method should be used whenever the tab rectangle must be relative to the JTabbedPane itself and the result should be placed in a designated Rectangle object (rather than instantiating and returning a new Rectangle each time). The tab index parameter must be a valid tabbed pane tab index (0 to tab count - 1, inclusive). The destination rectangle parameter must be a valid Rectangle instance. The handling of invalid parameters is unspecified.
      Parameters:
      tabIndex - the index of the tab
      dest - the rectangle where the result should be placed
      Returns:
      the resulting rectangle
      Since:
      1.4
    • getVisibleComponent Link icon

      protected Component getVisibleComponent()
      Returns the visible component.
      Returns:
      the visible component
    • setVisibleComponent Link icon

      protected void setVisibleComponent(Component component)
      Sets the visible component.
      Parameters:
      component - the component
    • assureRectsCreated Link icon

      protected void assureRectsCreated(int tabCount)
      Assures the tab rectangles are created.
      Parameters:
      tabCount - the tab count
    • expandTabRunsArray Link icon

      protected void expandTabRunsArray()
      Expands the tab runs array.
    • getRunForTab Link icon

      protected int getRunForTab(int tabCount, int tabIndex)
      Returns the run for a tab.
      Parameters:
      tabCount - the tab count
      tabIndex - the tab index.
      Returns:
      the run for a tab
    • lastTabInRun Link icon

      protected int lastTabInRun(int tabCount, int run)
      Returns the last tab in a run.
      Parameters:
      tabCount - the tab count
      run - the run
      Returns:
      the last tab in a run
    • getTabRunOverlay Link icon

      protected int getTabRunOverlay(int tabPlacement)
      Returns the tab run overlay.
      Parameters:
      tabPlacement - the placement (left, right, bottom, top) of the tab
      Returns:
      the tab run overlay
    • getTabRunIndent Link icon

      protected int getTabRunIndent(int tabPlacement, int run)
      Returns the tab run indent.
      Parameters:
      tabPlacement - the placement (left, right, bottom, top) of the tab
      run - the tab run
      Returns:
      the tab run indent
    • shouldPadTabRun Link icon

      protected boolean shouldPadTabRun(int tabPlacement, int run)
      Returns whether or not the tab run should be padded.
      Parameters:
      tabPlacement - the placement (left, right, bottom, top) of the tab
      run - the tab run
      Returns:
      whether or not the tab run should be padded
    • shouldRotateTabRuns Link icon

      protected boolean shouldRotateTabRuns(int tabPlacement)
      Returns whether or not the tab run should be rotated.
      Parameters:
      tabPlacement - the placement (left, right, bottom, top) of the tab
      Returns:
      whether or not the tab run should be rotated
    • getIconForTab Link icon

      protected Icon getIconForTab(int tabIndex)
      Returns the icon for a tab.
      Parameters:
      tabIndex - the index of the tab
      Returns:
      the icon for a tab
    • getTextViewForTab Link icon

      protected View getTextViewForTab(int tabIndex)
      Returns the text View object required to render stylized text (HTML) for the specified tab or null if no specialized text rendering is needed for this tab. This is provided to support html rendering inside tabs.
      Parameters:
      tabIndex - the index of the tab
      Returns:
      the text view to render the tab's text or null if no specialized rendering is required
      Since:
      1.4
    • calculateTabHeight Link icon

      protected int calculateTabHeight(int tabPlacement, int tabIndex, int fontHeight)
      Calculates the tab height.
      Parameters:
      tabPlacement - the placement (left, right, bottom, top) of the tab
      tabIndex - the index of the tab with respect to other tabs
      fontHeight - the font height
      Returns:
      the tab height
    • calculateMaxTabHeight Link icon

      protected int calculateMaxTabHeight(int tabPlacement)
      Calculates the maximum tab height.
      Parameters:
      tabPlacement - the placement (left, right, bottom, top) of the tab
      Returns:
      the maximum tab height
    • calculateTabWidth Link icon

      protected int calculateTabWidth(int tabPlacement, int tabIndex, FontMetrics metrics)
      Calculates the tab width.
      Parameters:
      tabPlacement - the placement (left, right, bottom, top) of the tab
      tabIndex - the index of the tab with respect to other tabs
      metrics - the font metrics
      Returns:
      the tab width
    • calculateMaxTabWidth Link icon

      protected int calculateMaxTabWidth(int tabPlacement)
      Calculates the maximum tab width.
      Parameters:
      tabPlacement - the placement (left, right, bottom, top) of the tab
      Returns:
      the maximum tab width
    • calculateTabAreaHeight Link icon

      protected int calculateTabAreaHeight(int tabPlacement, int horizRunCount, int maxTabHeight)
      Calculates the tab area height.
      Parameters:
      tabPlacement - the placement (left, right, bottom, top) of the tab
      horizRunCount - horizontal run count
      maxTabHeight - maximum tab height
      Returns:
      the tab area height
    • calculateTabAreaWidth Link icon

      protected int calculateTabAreaWidth(int tabPlacement, int vertRunCount, int maxTabWidth)
      Calculates the tab area width.
      Parameters:
      tabPlacement - the placement (left, right, bottom, top) of the tab
      vertRunCount - vertical run count
      maxTabWidth - maximum tab width
      Returns:
      the tab area width
    • getTabInsets Link icon

      protected Insets getTabInsets(int tabPlacement, int tabIndex)
      Returns the tab insets.
      Parameters:
      tabPlacement - the placement (left, right, bottom, top) of the tab
      tabIndex - the tab index
      Returns:
      the tab insets
    • getSelectedTabPadInsets Link icon

      protected Insets getSelectedTabPadInsets(int tabPlacement)
      Returns the selected tab pad insets.
      Parameters:
      tabPlacement - the placement (left, right, bottom, top) of the tab
      Returns:
      the selected tab pad insets
    • getTabAreaInsets Link icon

      protected Insets getTabAreaInsets(int tabPlacement)
      Returns the tab area insets.
      Parameters:
      tabPlacement - the placement (left, right, bottom, top) of the tab
      Returns:
      the pad area insets
    • getContentBorderInsets Link icon

      protected Insets getContentBorderInsets(int tabPlacement)
      Returns the content border insets.
      Parameters:
      tabPlacement - the placement (left, right, bottom, top) of the tab
      Returns:
      the content border insets
    • getFontMetrics Link icon

      protected FontMetrics getFontMetrics()
      Returns the font metrics.
      Returns:
      the font metrics
    • selectNextTabInRun Link icon

      protected void selectNextTabInRun(int current)
      Selects the next tab in the run.
      Parameters:
      current - the current tab
    • selectPreviousTabInRun Link icon

      protected void selectPreviousTabInRun(int current)
      Selects the previous tab in the run.
      Parameters:
      current - the current tab
    • selectNextTab Link icon

      protected void selectNextTab(int current)
      Selects the next tab.
      Parameters:
      current - the current tab
    • selectPreviousTab Link icon

      protected void selectPreviousTab(int current)
      Selects the previous tab.
      Parameters:
      current - the current tab
    • selectAdjacentRunTab Link icon

      protected void selectAdjacentRunTab(int tabPlacement, int tabIndex, int offset)
      Selects an adjacent run of tabs.
      Parameters:
      tabPlacement - the placement (left, right, bottom, top) of the tab
      tabIndex - the index of the tab with respect to other tabs
      offset - selection offset
    • getFocusIndex Link icon

      protected int getFocusIndex()
      Returns the index of the tab that has focus.
      Returns:
      index of tab that has focus
      Since:
      1.5
    • getTabRunOffset Link icon

      protected int getTabRunOffset(int tabPlacement, int tabCount, int tabIndex, boolean forward)
      Returns the tab run offset.
      Parameters:
      tabPlacement - the placement (left, right, bottom, top) of the tab
      tabCount - the tab count
      tabIndex - the index of the tab with respect to other tabs
      forward - forward or not
      Returns:
      the tab run offset
    • getPreviousTabIndex Link icon

      protected int getPreviousTabIndex(int base)
      Returns the previous tab index.
      Parameters:
      base - the base
      Returns:
      the previous tab index
    • getNextTabIndex Link icon

      protected int getNextTabIndex(int base)
      Returns the next tab index.
      Parameters:
      base - the base
      Returns:
      the next tab index
    • getNextTabIndexInRun Link icon

      protected int getNextTabIndexInRun(int tabCount, int base)
      Returns the next tab index in the run.
      Parameters:
      tabCount - the tab count
      base - the base
      Returns:
      the next tab index in the run
    • getPreviousTabIndexInRun Link icon

      protected int getPreviousTabIndexInRun(int tabCount, int base)
      Returns the previous tab index in the run.
      Parameters:
      tabCount - the tab count
      base - the base
      Returns:
      the previous tab index in the run
    • getPreviousTabRun Link icon

      protected int getPreviousTabRun(int baseRun)
      Returns the previous tab run.
      Parameters:
      baseRun - the base run
      Returns:
      the previous tab run
    • getNextTabRun Link icon

      protected int getNextTabRun(int baseRun)
      Returns the next tab run.
      Parameters:
      baseRun - the base run
      Returns:
      the next tab run
    • rotateInsets Link icon

      protected static void rotateInsets(Insets topInsets, Insets targetInsets, int targetPlacement)
      Rotates the insets.
      Parameters:
      topInsets - the top insets
      targetInsets - the target insets
      targetPlacement - the target placement