如何将JCheckBoxMenuItem链接到由复选框控制的JInternalFrames

问题描述 投票:0回答:1

我有一个JFrame,它创建一个JInternalFrame,然后在其内部创建JInternalFrames。 “外部”JIF有一个“添加框架”按钮和一个复选框菜单,因此每个“内部”JIF类型只能创建一次。最多可能有6个'内部'JIF(代码示例限制为2,FRAME A和B)。

创建内部JIF工作正常,但当用户取消选中复选框时,如何找到正确的内部JIF关闭?如果用户关闭内部JIF,我该如何将其链接到取消选中右侧复选框?

方法我已经尝试最终关闭所有内部JIF,或者如果我尝试搜索打开的JIF列表并将其标题与复选框字段匹配,编译器说这些信息目前不可用。

外部和内部JIF创建的简化代码如图所示。不要告诉我我需要一个布局管理器 - JIF必须是用户可移动的并且可以不受限制地调整大小。

    class OUTJIF extends JInternalFrame {
OUTJIF() {
    JInternalFrame outerJIF = new JInternalFrame("Outer JInternalFrame", true, true, true, true);
    outerJIF.setBounds(50, 50, 600, 400);  
    outerJIF.getContentPane().setLayout(null);

    JButton btnAddFrames = new JButton("Add Frames");
    btnAddFrames.setBounds(10, 11, 125, 23);
    outerJIF.getContentPane().add(btnAddFrames);

    JPopupMenu popMenu = new JPopupMenu();
    JCheckBoxMenuItem boxFrameA = new JCheckBoxMenuItem("Frame A");
    JCheckBoxMenuItem boxFrameB = new JCheckBoxMenuItem("Frame B");
    popMenu.add(boxFrameA);
    popMenu.add(boxFrameB);
    btnAddFrames.addMouseListener(new MouseAdapter() {
        public void mousePressed(MouseEvent e) {
               popMenu.show(e.getComponent(), e.getX(), e.getY());
            }
    });
    Demo.mainPane.add(outerJIF);  // add to invoking JFrame
    outerJIF.setVisible(true); 

   // Class for internal JIF 
class intJIF extends JInternalFrame {
intJIF(String intType, int x, int y, int h, int w) {
    JInternalFrame innerJIF = new JInternalFrame(intType, true, true, true, true) ;
    innerJIF.setBounds(new Rectangle(x, y, h, w));
    outerJIF.getContentPane().add(innerJIF);
    innerJIF.setVisible(true);  
    // ISSUE #2 - IF USER CLOSES ONE OF THESE, HOW TO CHANGE CHECKBOX MENU?
    }       
};

    // LISTENERS FOR outerJIF MENU ITEMS 
    ActionListener listFrameA = new ActionListener() {
        public void actionPerformed(ActionEvent event) {
            AbstractButton boxFrameA = (AbstractButton) event.getSource();
            boolean selected = boxFrameA.getModel().isSelected();
            if (selected) { new intJIF("Inner Frame A", 0, 100, 250, 250); }
            else {      // ISSUE #1 - HOW TO FIND THE RIGHT INTERNAL JIF TO CLOSE?
                }
            }   };
    boxFrameA.addActionListener(listFrameA);

    ActionListener listFrameB = new ActionListener() {
        public void actionPerformed(ActionEvent event) {
            AbstractButton boxFrameB = (AbstractButton) event.getSource();
            boolean selected = boxFrameB.getModel().isSelected();
            if (selected) { new intJIF("Inner Frame B", 50, 50, 250, 250); }
            else {      // ISSUE #1 - HOW TO FIND THE RIGHT INTERNAL JIF TO CLOSE?
                }
            }   };
    boxFrameB.addActionListener(listFrameB);
    }
}
java swing jcheckbox jinternalframe
1个回答
0
投票

当我需要向它们添加侦听器时,我将GUI组件定义为类成员。因此,如果我制作JInternalFrameJCheckBox类成员,那么在ActionListenerJCheckBox我可以关闭JInternalFrame。同样地,我可以在InternalFrameListener中添加JInternalFrame并在JCheckBox方法中更新internalFrameClosing()。从您发布的代码中可以看出,您对InternalFrameListener不熟悉。如果是这种情况,那么我建议阅读How to Write an Internal Frame Listener。如果您需要更具体的帮助,那么对我来说,您需要发布更多代码,以便我可以下载并运行它。

© www.soinside.com 2019 - 2024. All rights reserved.