Class TabOverviewDialogWidget
java.lang.Object
org.pushingpixels.lafwidget.LafWidgetAdapter<JTabbedPane>
org.pushingpixels.lafwidget.tabbed.TabOverviewDialogWidget
- All Implemented Interfaces:
LafWidget<JTabbedPane>
Adds tab overview dialog to tabbed panes.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected ContainerListener
Listens on tabs being added or removed.protected TabOverviewButton
Tab overview button.protected PropertyChangeListener
Listens on changes to relevant tabbed pane properties.Fields inherited from class org.pushingpixels.lafwidget.LafWidgetAdapter
jcomp
Fields inherited from interface org.pushingpixels.lafwidget.LafWidget
AUTO_SCROLL, COMPONENT_PREVIEW_PAINTER, HAS_LOCK_ICON, IGNORE_GLOBAL_LOCALE, PASSWORD_STRENGTH_CHECKER, TABBED_PANE_PREVIEW_PAINTER, TEXT_EDIT_CONTEXT_MENU, TEXT_FLIP_SELECT_ON_ESCAPE, TEXT_SELECT_ON_FOCUS, TREE_AUTO_DND_SUPPORT
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
Installs components for the associated component.void
Installs default settings for the associated component.void
Installs listeners for the associated component.boolean
Returns indication whetherthis
widget requires custom LAF support.void
Uninstalls components for the associated component.void
Uninstalls listeners for the associated component.Methods inherited from class org.pushingpixels.lafwidget.LafWidgetAdapter
installUI, setComponent, uninstallDefaults, uninstallUI
-
Field Details
-
overviewButton
Tab overview button. -
propertyListener
Listens on changes to relevant tabbed pane properties. -
containerListener
Listens on tabs being added or removed.
-
-
Constructor Details
-
TabOverviewDialogWidget
public TabOverviewDialogWidget()
-
-
Method Details
-
installComponents
public void installComponents()Description copied from interface:LafWidget
Installs components for the associated component.- Specified by:
installComponents
in interfaceLafWidget<JTabbedPane>
- Overrides:
installComponents
in classLafWidgetAdapter<JTabbedPane>
-
installDefaults
public void installDefaults()Description copied from interface:LafWidget
Installs default settings for the associated component.- Specified by:
installDefaults
in interfaceLafWidget<JTabbedPane>
- Overrides:
installDefaults
in classLafWidgetAdapter<JTabbedPane>
-
uninstallComponents
public void uninstallComponents()Description copied from interface:LafWidget
Uninstalls components for the associated component.- Specified by:
uninstallComponents
in interfaceLafWidget<JTabbedPane>
- Overrides:
uninstallComponents
in classLafWidgetAdapter<JTabbedPane>
-
installListeners
public void installListeners()Description copied from interface:LafWidget
Installs listeners for the associated component.- Specified by:
installListeners
in interfaceLafWidget<JTabbedPane>
- Overrides:
installListeners
in classLafWidgetAdapter<JTabbedPane>
-
uninstallListeners
public void uninstallListeners()Description copied from interface:LafWidget
Uninstalls listeners for the associated component.- Specified by:
uninstallListeners
in interfaceLafWidget<JTabbedPane>
- Overrides:
uninstallListeners
in classLafWidgetAdapter<JTabbedPane>
-
requiresCustomLafSupport
public boolean requiresCustomLafSupport()Description copied from interface:LafWidget
Returns indication whetherthis
widget requires custom LAF support. Some widgets such asTabOverviewDialogWidget
orTabHoverPreviewWidget
require custom implementation based on the internals of the specific LAF. Relevant functions in the baseLafWidgetSupport
support throwUnsupportedOperationException
.- Returns:
true
ifthis
widget requires custom LAF support,false
otherwise.
-