-
Enhancement
-
Resolution: Unresolved
-
P4
-
None
-
1.2.0, 1.3.1, 5.0, 6
-
Fix Understood
-
generic, x86
-
generic, windows_2000
Name: rk38400 Date: 04/15/98
If one put a JDesktopPane inside a JScrollPane,
and create JInternalFrames larger than the desktop,
the scrollbars don't appear. The code below
demonstrates the problem:
// some class, main method
{
JDesktopPane desktop = new JDesktopPane();
JScrollPane scroll = new JScrollPane( desktop );
JInternalFrame frame = new JInternalFrame( "frame" );
desktop.add( frame );
desktop.setPreferredSize( new Dimension( 200, 300 ) ); // small desktop
frame.setBounds( 10, 10, 400, 500 ); // with a big internal frame inside
JFrame f = new JFrame();
f.getContentPane().add( scroll );
f.pack();
f.show();
}
The scrollpane uses the *preferred size* of the desktop
to decide whether it has to show the scrollbars or not.
It should use the *contents* (the internal frames and
desktop icons) to do it.
I think JDesktopPane should implement the Scrollable
interface, managing its contents to produce the desired
result.
THIS A VERY SERIOUS BUG!!! EVERYONE WHO USES
INTERNAL FRAMES CAN SEE IT!!!
(Review ID: 27469)
======================================================================
Name: rmT116609 Date: 11/17/2001
Add scrollability to JDesktopPane similarily to JTextArea. When a JDesktopPane
is placed on a JScrollPane, allow the JDesktopPane to change its preferred size
according to placement of all the JInternalFrame components on it, so that when
some of them are outside the viewed area the JScrollPane can show scrollbars.
Please see:
http://www.jguru.com/faq/view.jsp?EID=44651
(Review ID: 135857)
======================================================================
If one put a JDesktopPane inside a JScrollPane,
and create JInternalFrames larger than the desktop,
the scrollbars don't appear. The code below
demonstrates the problem:
// some class, main method
{
JDesktopPane desktop = new JDesktopPane();
JScrollPane scroll = new JScrollPane( desktop );
JInternalFrame frame = new JInternalFrame( "frame" );
desktop.add( frame );
desktop.setPreferredSize( new Dimension( 200, 300 ) ); // small desktop
frame.setBounds( 10, 10, 400, 500 ); // with a big internal frame inside
JFrame f = new JFrame();
f.getContentPane().add( scroll );
f.pack();
f.show();
}
The scrollpane uses the *preferred size* of the desktop
to decide whether it has to show the scrollbars or not.
It should use the *contents* (the internal frames and
desktop icons) to do it.
I think JDesktopPane should implement the Scrollable
interface, managing its contents to produce the desired
result.
THIS A VERY SERIOUS BUG!!! EVERYONE WHO USES
INTERNAL FRAMES CAN SEE IT!!!
(Review ID: 27469)
======================================================================
Name: rmT116609 Date: 11/17/2001
Add scrollability to JDesktopPane similarily to JTextArea. When a JDesktopPane
is placed on a JScrollPane, allow the JDesktopPane to change its preferred size
according to placement of all the JInternalFrame components on it, so that when
some of them are outside the viewed area the JScrollPane can show scrollbars.
Please see:
http://www.jguru.com/faq/view.jsp?EID=44651
(Review ID: 135857)
======================================================================
- duplicates
-
JDK-4985286 Win L&F: Desktop Icon placement is not proper when JInternalFrame is minimized
-
- Closed
-