JInternalFrame在保持当前位置的同时最小化

时间:2011-08-02 17:39:42

标签: java swing jinternalframe

我需要JInternalFrame的可图标/最小化功能来折叠框架(它确实如此),但也保持JInternalFrame在其父组件中的位置。目前,当我按下JInternalFrame的最小化按钮时,java会将组件放在其容器的底部。有没有办法保持位置,同时最小化?如果没有明显的解决方案,我如何观察可图标图标并删除默认监听器?谢谢。

2 个答案:

答案 0 :(得分:4)

要修改此行为,您需要创建javax.swing.DesktopManager的实现。为了获得大部分已经可用的默认行为,我建议继承javax.swing.DefaultDesktopManager

在DefaultDesktopManager中,方法iconifyFrame(JInternalFrame f)控制完整行为,但在内部使用方法protected Rectangle getBoundsForIconOf(JInternalFrame f)来确定最小化帧的图标的边界。在这里,您可以返回您要使用的内部框架图标的边界。问题是这些值是缓存的,因此如果您希望每次需要执行以下操作时移动它们。

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);
            }
        });
    }
}

答案 1 :(得分:0)

只是为了记录,如果您想要的只是更改图标位置或大小,其他方式来实现它是通过JInternalFrame的internalFrameIconified()事件:

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).    
}

这样,您可以为每个JInternalFrame(或JInternalFrame类型)单独设置规则,而无需扩展DefaultDesktopManager。但是,如果您想要的是通常会影响所有JInternalFrame,我强烈建议您遵循Joshua建议。