Class RadianceThemingWidget<T extends JComponent>
java.lang.Object
org.pushingpixels.radiance.theming.api.RadianceThemingWidget<T>
- Direct Known Subclasses:
AutoScrollWidget
,CapsLockPasswordBorderWidget
,DesktopIconHoverPreviewWidget
,EditContextMenuWidget
,GhostAnimationWidget
,LockBorderWidget
,MenuSearchWidget
,PasswordStrengthCheckerWidget
,RootPaneTitlePaneUiDebugger
,ScrollPaneSelectorWidget
,SelectAllOnFocusGainWidget
,SelectOnEscapeWidget
,TabHoverPreviewWidget
,TabOverviewDialogWidget
,TabPagerWidget
,TreeDragAndDropWidget
Interface for Radiance widgets (behavioral traits).
-
Field Summary
Fields -
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.void
Installs UI on the associated component.void
setComponent
(T jcomp) Associates a component withthis
widget.void
Uninstalls components for the associated component.void
Uninstalls default settings for the associated component.void
Uninstalls listeners for the associated component.void
Uninstalls UI on the associated component.
-
Field Details
-
jcomp
Associated component.
-
-
Constructor Details
-
RadianceThemingWidget
public RadianceThemingWidget()
-
-
Method Details
-
setComponent
Associates a component withthis
widget.- Parameters:
jcomp
- Component.
-
installUI
public void installUI()Installs UI on the associated component. -
installDefaults
public void installDefaults()Installs default settings for the associated component. -
installListeners
public void installListeners()Installs listeners for the associated component. -
installComponents
public void installComponents()Installs components for the associated component. -
uninstallUI
public void uninstallUI()Uninstalls UI on the associated component. -
uninstallDefaults
public void uninstallDefaults()Uninstalls default settings for the associated component. -
uninstallListeners
public void uninstallListeners()Uninstalls listeners for the associated component. -
uninstallComponents
public void uninstallComponents()Uninstalls components for the associated component.
-