Class BasicPopupPanelUI
java.lang.Object
javax.swing.plaf.ComponentUI
javax.swing.plaf.PanelUI
org.pushingpixels.flamingo.internal.ui.common.popup.PopupPanelUI
org.pushingpixels.flamingo.internal.ui.common.popup.BasicPopupPanelUI
- Direct Known Subclasses:
BasicCommandPopupMenuUI
,BasicRibbonApplicationMenuPopupPanelUI
Basic UI for popup panel
JPopupPanel
.-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprotected static class
This class is used to trace the changes in the shown popup panels and install ESC key listener on the matching root pane so that the popup panels can be dismissed with the ESC key.protected static class
This class is used to dismiss popup panels on the following events: Mouse click outside any shown popup panel. Closing, iconifying or deactivation of a top-level window. Any change in the component hierarchy of a top-level window. Only one top-level window is tracked at any time. -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic ComponentUI
protected static void
Initializes the global listeners.protected void
Installs components on the associated command popup menu.protected void
Installs default settings for the associated command popup menu.protected void
Installs listeners on the associated command popup menu.void
protected void
Uninstalls subcomponents from the associated command popup menu.protected void
Uninstalls default settings from the associated command popup menu.protected void
Uninstalls listeners from the associated command popup menu.void
Methods inherited from class javax.swing.plaf.ComponentUI
contains, getAccessibleChild, getAccessibleChildrenCount, getBaseline, getBaselineResizeBehavior, getMaximumSize, getMinimumSize, getPreferredSize, paint, update
-
Field Details
-
popupPanel
The associated popup panel.
-
-
Constructor Details
-
BasicPopupPanelUI
public BasicPopupPanelUI()
-
-
Method Details
-
createUI
-
installUI
- Overrides:
installUI
in classComponentUI
-
uninstallUI
- Overrides:
uninstallUI
in classComponentUI
-
installDefaults
protected void installDefaults()Installs default settings for the associated command popup menu. -
installListeners
protected void installListeners()Installs listeners on the associated command popup menu. -
installComponents
protected void installComponents()Installs components on the associated command popup menu. -
uninstallDefaults
protected void uninstallDefaults()Uninstalls default settings from the associated command popup menu. -
uninstallListeners
protected void uninstallListeners()Uninstalls listeners from the associated command popup menu. -
uninstallComponents
protected void uninstallComponents()Uninstalls subcomponents from the associated command popup menu. -
initiliazeGlobalListeners
protected static void initiliazeGlobalListeners()Initializes the global listeners.
-