Uses of Class
javax.swing.JInternalFrame
Package
Description
Provides a set of "lightweight" (all-Java language) components
that, to the maximum degree possible, work the same on all platforms.
Provides for events fired by Swing components.
Provides user interface objects built according to the Basic look and feel.
Provides user interface objects built according to the Java look and feel
(once codenamed Metal), which is the default look and feel.
Synth is a skinnable look and feel in which all painting is delegated.
-
Uses of JInternalFrame in javax.swing
Modifier and TypeMethodDescriptionJOptionPane.createInternalFrame
(Component parentComponent, String title) Creates and returns an instance ofJInternalFrame
.JDesktopPane.getAllFrames()
Returns allJInternalFrames
currently displayed in the desktop.JDesktopPane.getAllFramesInLayer
(int layer) Returns allJInternalFrames
currently displayed in the specified layer of the desktop.JInternalFrame.JDesktopIcon.getInternalFrame()
Returns theJInternalFrame
that thisDesktopIcon
is associated with.JDesktopPane.getSelectedFrame()
Returns the currently activeJInternalFrame
in thisJDesktopPane
, ornull
if noJInternalFrame
is currently active.JDesktopPane.selectFrame
(boolean forward) Selects the nextJInternalFrame
in this desktop pane.Modifier and TypeMethodDescriptionvoid
DefaultDesktopManager.activateFrame
(JInternalFrame f) This will activate f moving it to the front.void
DesktopManager.activateFrame
(JInternalFrame f) Generally, indicate that this frame has focus.void
DefaultDesktopManager.closeFrame
(JInternalFrame f) Removes the frame, and, if necessary, thedesktopIcon
, from its parent.void
DesktopManager.closeFrame
(JInternalFrame f) Generally, this call should remove the frame from its parent.void
DefaultDesktopManager.deactivateFrame
(JInternalFrame f) void
DesktopManager.deactivateFrame
(JInternalFrame f) Generally, indicate that this frame has lost focus.void
DefaultDesktopManager.deiconifyFrame
(JInternalFrame f) Removes the desktopIcon from its parent and adds its frame to the parent.void
DesktopManager.deiconifyFrame
(JInternalFrame f) Generally, remove any iconic representation that is present and restore the frame to it's original size and location.protected Rectangle
DefaultDesktopManager.getBoundsForIconOf
(JInternalFrame f) TheiconifyFrame()
code calls this to determine the proper bounds for the desktopIcon.InternalFrameFocusTraversalPolicy.getInitialComponent
(JInternalFrame frame) Returns the Component that should receive the focus when a JInternalFrame is selected for the first time.protected Rectangle
DefaultDesktopManager.getPreviousBounds
(JInternalFrame f) Gets the normal bounds of the component prior to the component being maximized.void
DefaultDesktopManager.iconifyFrame
(JInternalFrame f) Removes the frame from its parent and adds itsdesktopIcon
to the parent.void
DesktopManager.iconifyFrame
(JInternalFrame f) Generally, remove this frame from its parent and add an iconic representation.void
DefaultDesktopManager.maximizeFrame
(JInternalFrame f) Resizes the frame to fill its parents bounds.void
DesktopManager.maximizeFrame
(JInternalFrame f) Generally, the frame should be resized to match its parents bounds.void
DefaultDesktopManager.minimizeFrame
(JInternalFrame f) Restores the frame back to its size and position prior to amaximizeFrame
call.void
DesktopManager.minimizeFrame
(JInternalFrame f) Generally, this indicates that the frame should be restored to its size and position prior to a maximizeFrame() call.void
DefaultDesktopManager.openFrame
(JInternalFrame f) Normally this method will not be called.void
DesktopManager.openFrame
(JInternalFrame f) If possible, display this frame in an appropriate location.protected void
DefaultDesktopManager.removeIconFor
(JInternalFrame f) Convenience method to remove the desktopIcon of f is necessary.void
JInternalFrame.JDesktopIcon.setInternalFrame
(JInternalFrame f) Sets theJInternalFrame
with which thisDesktopIcon
is associated.protected void
DefaultDesktopManager.setPreviousBounds
(JInternalFrame f, Rectangle r) Stores the bounds of the component just before a maximize call.void
JDesktopPane.setSelectedFrame
(JInternalFrame f) Sets the currently activeJInternalFrame
in thisJDesktopPane
.protected void
DefaultDesktopManager.setWasIcon
(JInternalFrame f, Boolean value) Sets that the component has been iconized and the bounds of thedesktopIcon
are valid.protected boolean
DefaultDesktopManager.wasIcon
(JInternalFrame f) Returnstrue
if the component has been iconized and the bounds of thedesktopIcon
are valid, otherwise returnsfalse
.ModifierConstructorDescriptionCreates an icon for an internal frame. -
Uses of JInternalFrame in javax.swing.event
Modifier and TypeMethodDescriptionInternalFrameEvent.getInternalFrame()
Returns the originator of the event.ModifierConstructorDescriptionInternalFrameEvent
(JInternalFrame source, int id) Constructs anInternalFrameEvent
object. -
Uses of JInternalFrame in javax.swing.plaf.basic
Modifier and TypeFieldDescriptionprotected JInternalFrame
BasicDesktopIconUI.frame
The instance ofJInternalFrame
.protected JInternalFrame
BasicInternalFrameTitlePane.frame
The instance ofJInternalFrame
.protected JInternalFrame
BasicInternalFrameUI.frame
frameModifier and TypeMethodDescriptionprotected void
BasicInternalFrameUI.activateFrame
(JInternalFrame f) This method is called when the frame becomes selected.protected void
BasicInternalFrameUI.closeFrame
(JInternalFrame f) This method is called when the user wants to close the frame.protected MouseInputAdapter
BasicInternalFrameUI.createBorderListener
(JInternalFrame w) Creates the border listener.protected JComponent
BasicInternalFrameUI.createEastPane
(JInternalFrame w) Creates the east pane.protected JComponent
BasicInternalFrameUI.createNorthPane
(JInternalFrame w) Creates the north pane.protected JComponent
BasicInternalFrameUI.createSouthPane
(JInternalFrame w) Creates the north pane.protected JComponent
BasicInternalFrameUI.createWestPane
(JInternalFrame w) Creates the west pane.protected void
BasicInternalFrameUI.deactivateFrame
(JInternalFrame f) This method is called when the frame is no longer selected.protected void
BasicInternalFrameUI.deiconifyFrame
(JInternalFrame f) This method is called when the user wants to deiconify the frame.protected void
BasicInternalFrameUI.iconifyFrame
(JInternalFrame f) This method is called when the user wants to iconify the frame.protected void
BasicInternalFrameUI.maximizeFrame
(JInternalFrame f) This method is called when the user wants to maximize the frame.protected void
BasicInternalFrameUI.minimizeFrame
(JInternalFrame f) This method is called when the user wants to minimize the frame.protected void
BasicInternalFrameTitlePane.postClosingEvent
(JInternalFrame frame) Post a WINDOW_CLOSING-like event to the frame, so that it can be treated like a regularFrame
.ModifierConstructorDescriptionConstructs a new instance ofBasicInternalFrameTitlePane
.Constructs aBasicInternalFrameUI
. -
Uses of JInternalFrame in javax.swing.plaf.metal
Modifier and TypeMethodDescriptionprotected MouseInputAdapter
MetalInternalFrameUI.createBorderListener
(JInternalFrame w) Returns theMouseInputAdapter
that will be installed on the TitlePane.ModifierConstructorDescriptionConstructs a new instance ofMetalInternalFrameTitlePane
Constructs a newMetalInternalFrameUI
instance. -
Uses of JInternalFrame in javax.swing.plaf.synth
ModifierConstructorDescriptionprotected
Constructs aSynthInternalFrameUI
.