JInternalFrame minimize while maintaining current location

寵の児 提交于 2020-01-04 06:06:01

问题


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.


回答1:


To modify this behavior you would want to create an implementation of javax.swing.DesktopManager. To get the majority of the default behavior already available I'd suggest subclassing javax.swing.DefaultDesktopManager.

In DefaultDesktopManager the method iconifyFrame(JInternalFrame f) controls the complete behavior but internally uses the method protected Rectangle getBoundsForIconOf(JInternalFrame f) to determine the bounds for the icon of the frame being minimized. Here you can return the bounds for the icon of the internal frame that you'd like to use. The problem is those values are cached so if you want it to move every time you would need to do something like the following.

import javax.swing.DefaultDesktopManager;
import javax.swing.DesktopManager;
import javax.swing.JDesktopPane;
import javax.swing.JFrame;
import javax.swing.JInternalFrame;
import javax.swing.SwingUtilities;
import java.awt.BorderLayout;
import java.awt.Dimension;

public class CustomDesktopManager extends DefaultDesktopManager {
    @Override
    public void iconifyFrame(JInternalFrame f) {
        super.iconifyFrame(f);

        JInternalFrame.JDesktopIcon icon = f.getDesktopIcon();
        Dimension prefSize = icon.getPreferredSize();
        icon.setBounds(f.getX(), f.getY(), prefSize.width, prefSize.height);
    }

    public static void main(String args[]) {
        SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                JFrame frame = new JFrame();
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

                JDesktopPane desktopPane = new JDesktopPane();
                DesktopManager dm = new CustomDesktopManager();
                desktopPane.setDesktopManager(dm);
                JInternalFrame internalFrame = new JInternalFrame("Test Internal Frame", true, false, true, true);
                internalFrame.setSize(200, 150);
                internalFrame.setVisible(true);
                desktopPane.add(internalFrame);

                frame.add(desktopPane, BorderLayout.CENTER);
                frame.setSize(800, 600);
                frame.setVisible(true);
            }
        });
    }
}



回答2:


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:

public void internalFrameIconified(javax.swing.event.InternalFrameEvent evt) {
    JInternalFrame.JDesktopIcon icon = myInternalFrame.getDesktopIcon();
    icon.setSize(new Dimension(200,icon.getSize().height)); //Change icon width to 200
    icon.setLocation(x,y); //You can calculate its position as you wish (not implemented here).    
}

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.



来源:https://stackoverflow.com/questions/6916163/jinternalframe-minimize-while-maintaining-current-location

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!