Class DesktopIconHoverPreviewWidget
- java.lang.Object
-
- org.pushingpixels.lafwidget.LafWidgetAdapter<JInternalFrame.JDesktopIcon>
-
- org.pushingpixels.lafwidget.desktop.DesktopIconHoverPreviewWidget
-
- All Implemented Interfaces:
LafWidget<JInternalFrame.JDesktopIcon>
public class DesktopIconHoverPreviewWidget extends LafWidgetAdapter<JInternalFrame.JDesktopIcon>
Adds internal frame thumbnail preview on desktop icon mouse hover.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected classDesktopIconHoverPreviewWidget.TitleMouseHandlerMouse handler for showing / hiding the preview window.
-
Field Summary
Fields Modifier and Type Field Description protected JComponentcompToHoverThe component that initiates the desktop icon preview (when the mouse hover above it).protected PropertyChangeListenerinternalFramePropertyListenerListens on the changes to the ancestor.protected DesktopIconHoverPreviewWidget.TitleMouseHandlertitleMouseHandlerMouse handler for thecompToHover.-
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 Constructor Description DesktopIconHoverPreviewWidget()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BufferedImagegetSnapshot(JInternalFrame frame)Returns the snapshot of the specified internal frame.voidinstallComponents()Installs components for the associated component.voidinstallListeners()Installs listeners for the associated component.booleanrequiresCustomLafSupport()Returns indication whetherthiswidget requires custom LAF support.voiduninstallListeners()Uninstalls listeners for the associated component.-
Methods inherited from class org.pushingpixels.lafwidget.LafWidgetAdapter
installDefaults, installUI, setComponent, uninstallComponents, uninstallDefaults, uninstallUI
-
-
-
-
Field Detail
-
compToHover
protected JComponent compToHover
The component that initiates the desktop icon preview (when the mouse hover above it).
-
internalFramePropertyListener
protected PropertyChangeListener internalFramePropertyListener
Listens on the changes to the ancestor.
-
titleMouseHandler
protected DesktopIconHoverPreviewWidget.TitleMouseHandler titleMouseHandler
Mouse handler for thecompToHover.
-
-
Method Detail
-
installComponents
public void installComponents()
Description copied from interface:LafWidgetInstalls components for the associated component.- Specified by:
installComponentsin interfaceLafWidget<JInternalFrame.JDesktopIcon>- Overrides:
installComponentsin classLafWidgetAdapter<JInternalFrame.JDesktopIcon>
-
installListeners
public void installListeners()
Description copied from interface:LafWidgetInstalls listeners for the associated component.- Specified by:
installListenersin interfaceLafWidget<JInternalFrame.JDesktopIcon>- Overrides:
installListenersin classLafWidgetAdapter<JInternalFrame.JDesktopIcon>
-
uninstallListeners
public void uninstallListeners()
Description copied from interface:LafWidgetUninstalls listeners for the associated component.- Specified by:
uninstallListenersin interfaceLafWidget<JInternalFrame.JDesktopIcon>- Overrides:
uninstallListenersin classLafWidgetAdapter<JInternalFrame.JDesktopIcon>
-
getSnapshot
public BufferedImage getSnapshot(JInternalFrame frame)
Returns the snapshot of the specified internal frame.- Parameters:
frame- Internal frame.- Returns:
- The snapshot of the specified internal frame.
-
requiresCustomLafSupport
public boolean requiresCustomLafSupport()
Description copied from interface:LafWidgetReturns indication whetherthiswidget requires custom LAF support. Some widgets such asTabOverviewDialogWidgetorTabHoverPreviewWidgetrequire custom implementation based on the internals of the specific LAF. Relevant functions in the baseLafWidgetSupportsupport throwUnsupportedOperationException.- Returns:
trueifthiswidget requires custom LAF support,falseotherwise.
-
-