I need the iconable/minimize feature of JInternalFrame to collapse the frame (which it does), but also maintain the JInternalFrame's position within its parent component. Currently, when I press the minimize button of a JInternalFrame, java places the component at the bottom of its container. Is there a way to maintain the location whilst minimizing? If there is no obvious solution, how might I observe the iconable icon and remove the default listener? Thank you.
|
feedback
|
|
To modify this behavior you would want to create an implementation of In DefaultDesktopManager the method
| ||||
|
feedback
|
|
Just for the record, if what you want is simply change the icon Location or Size, other way to achieve it is through the internalFrameIconified() event of your JInternalFrame:
This way, you can set rules independently for each JInternalFrame (or JInternalFrame type) without having to extend DefaultDesktopManager. However I will highly recommend to follow Joshua recommendation if what you want is to generally affect all JInternalFrames. | |||
|
feedback
|