Class LookAndFeelTheme
- java.lang.Object
-
- net.infonode.tabbedpanel.theme.TabbedPanelTitledTabTheme
-
- net.infonode.tabbedpanel.theme.LookAndFeelTheme
-
public class LookAndFeelTheme extends TabbedPanelTitledTabTheme
An experimental theme that tries to replicate the look of the active look and feel. This may or may not work depending on the look and feel used.
This is a theme that tries to replicate the JTabbedPane's look using the active look and feel. The theme uses a heavyweight AWT component internally so the
dispose()
method must be called when the theme is no longer needed, otherwise the native resources will not be disposed.The theme uses the hover mechanism so that tab hover effects can be replicated.
This theme is considered to be experimental and is not guaranteed to be an exact replica of the active look and feel. It is also not guaranteed to work together with the active look and feel. The theme may be changed, removed etc in future versions. No support is given for the theme. This theme doesn't work well with Aqua Look and Feel on Macintosh.
- Since:
- ITP 1.4.0
-
-
Constructor Summary
Constructors Constructor Description LookAndFeelTheme()
Constructs a Look and Feel Theme
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
dispose()
Disposes this theme.java.awt.Color
getBorderColor(Direction d)
java.lang.String
getName()
Gets the name for this themeTabbedPanelProperties
getTabbedPanelProperties()
Gets the TabbedPanelProperties for this themeTitledTabProperties
getTitledTabProperties()
Gets the TitledTabProperties for this theme
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Gets the name for this theme- Specified by:
getName
in classTabbedPanelTitledTabTheme
- Returns:
- the name
-
getTabbedPanelProperties
public TabbedPanelProperties getTabbedPanelProperties()
Gets the TabbedPanelProperties for this theme- Specified by:
getTabbedPanelProperties
in classTabbedPanelTitledTabTheme
- Returns:
- the TabbedPanelProperties
-
getTitledTabProperties
public TitledTabProperties getTitledTabProperties()
Gets the TitledTabProperties for this theme- Specified by:
getTitledTabProperties
in classTabbedPanelTitledTabTheme
- Returns:
- the TitledTabProperties
-
dispose
public void dispose()
Disposes this theme.
This method must be called in order to dispose the heavyweight AWT component used internally.
-
getBorderColor
public java.awt.Color getBorderColor(Direction d)
-
-