Add card tab type support for JideTabbedPane#1094
Open
FoxyBOA wants to merge 1 commit intoJFormDesigner:mainfrom
Open
Add card tab type support for JideTabbedPane#1094FoxyBOA wants to merge 1 commit intoJFormDesigner:mainfrom
FoxyBOA wants to merge 1 commit intoJFormDesigner:mainfrom
Conversation
FlatLaf supports the "card" tab type for standard JTabbedPane via
UIManager.put("TabbedPane.tabType", "card"), but this style was not
available for JideTabbedPane. This commit adds card tab rendering
directly into FlatJideTabbedPaneUI.
Changes:
- Read TabbedPane.tabType, cardTabSelectionHeight, and cardTabArc
UI defaults
- Support per-component override via JTabbedPane.tabType client property
- Paint rounded card tab background when cardTabArc > 0
- Paint card tab border frame around the selected tab
- Paint card tab selection stripe at the outer edge of the selected tab
- Paint content separator gap under the selected card tab
- Skip tab separators adjacent to the selected card tab
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
FlatLaf supports the
"card"tab type for standardJTabbedPaneviaUIManager.put("TabbedPane.tabType", "card"), but this style was not available forJideTabbedPane. This PR adds card tab rendering directly intoFlatJideTabbedPaneUI, bringing feature parity with the standardFlatTabbedPaneUI.Changes
TabbedPane.tabType,TabbedPane.cardTabSelectionHeight, andTabbedPane.cardTabArcUI defaults ininstallDefaults()JTabbedPane.tabTypeclient propertycardTabArc > 0FlatTabbedPaneUIbehavior)instanceofcheck inpaintTabBackground()before casting_closeButtons[tabIndex]toNoFocusButtonHow to test
All four tab placements (TOP, BOTTOM, LEFT, RIGHT) are supported, both in wrap and scroll tab layouts.
🤖 Generated with Claude Code