java.lang.Object
javax.swing.plaf.ComponentUI
javax.swing.plaf.DesktopIconUI
javax.swing.plaf.basic.BasicDesktopIconUI
- Direct Known Subclasses:
MetalDesktopIconUI
,SynthDesktopIconUI
Basic L&F for a minimized window on a desktop.
-
Nested Class Summary
Modifier and TypeClassDescriptionclass
Listens for mouse movements and acts on them. -
Field Summary
Modifier and TypeFieldDescriptionprotected JInternalFrame.JDesktopIcon
The instance ofJInternalFrame.JDesktopIcon
.protected JInternalFrame
The instance ofJInternalFrame
.protected JComponent
The title pane component used in the desktop icon. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected MouseInputListener
Returns a new instance ofMouseInputListener
.static ComponentUI
Constructs a new instance ofBasicDesktopIconUI
.void
De-iconifies the internal frame.Returns the insets.Desktop icons can not be resized.protected void
Registers components.protected void
Installs default properties.protected void
Registers listeners.protected void
Unregisters components.protected void
Uninstalls default properties.protected void
Unregisters listeners.Methods declared in class javax.swing.plaf.ComponentUI
contains, getAccessibleChild, getAccessibleChildrenCount, getBaseline, getBaselineResizeBehavior, getMinimumSize, getPreferredSize, installUI, paint, uninstallUI, update
-
Field Details
-
desktopIcon
The instance ofJInternalFrame.JDesktopIcon
. -
frame
The instance ofJInternalFrame
. -
iconPane
The title pane component used in the desktop icon.- Since:
- 1.5
-
-
Constructor Details
-
BasicDesktopIconUI
public BasicDesktopIconUI()Constructs a new instance ofBasicDesktopIconUI
.
-
-
Method Details
-
createUI
Constructs a new instance ofBasicDesktopIconUI
.- Parameters:
c
- a component- Returns:
- a new instance of
BasicDesktopIconUI
-
installComponents
protected void installComponents()Registers components. -
uninstallComponents
protected void uninstallComponents()Unregisters components. -
installListeners
protected void installListeners()Registers listeners. -
uninstallListeners
protected void uninstallListeners()Unregisters listeners. -
installDefaults
protected void installDefaults()Installs default properties. -
uninstallDefaults
protected void uninstallDefaults()Uninstalls default properties. -
createMouseInputListener
Returns a new instance ofMouseInputListener
.- Returns:
- a new instance of
MouseInputListener
-
getMaximumSize
Desktop icons can not be resized. Therefore, we should always return the minimum size of the desktop icon.- Overrides:
getMaximumSize
in classComponentUI
- Parameters:
c
- the component whose maximum size is being queried; this argument is often ignored, but might be used if the UI object is stateless and shared by multiple components- Returns:
- a
Dimension
object ornull
- See Also:
-
getInsets
Returns the insets.- Parameters:
c
- a component- Returns:
- the insets
-
deiconize
public void deiconize()De-iconifies the internal frame.
-