2

我的问题似乎与用户切换浏览器选项卡时如何从 JApplet 中隐藏 JDialog非常相关?但它没有提供有效的解决方案。

我开发了一个使用 JWS/JNLP 部署的小程序。它从显示“新游戏”对话框开始。

private class NewGameDialog extends CustomDialog implements ActionListener {
    ...
    public NewGameDialog () {
       super(topContainer, "NEW GAME", modalityType);

       System.out.println(topContainer + " " + modalityType);
       //prints JApplet and DOCUMENT_MODAL
    ...

CustomDialog只是扩展JDialog

public class CustomDialog extends JDialog implements WindowListener {

    public CustomDialog(Container cont, String title, ModalityType modalityType) {
        super(windowForComponent(cont), title, modalityType);
    }

    public static Window windowForComponent(Component c) {
        if (c instanceof Window) return (Window) c;
        return SwingUtilities.windowForComponent(c);
    }

    ...

这是JDialog从 GUI 类调用的方式:

public void requestNewGame () {
    SwingUtilities.invokeLater(new Runnable() {
        @Override
        public void run() {
            NewGameDialog dialog = new NewGameDialog();
            dialog.setVisible(true);
        }
    });
}

在此处输入图像描述

我使用了如何在对话框中使用模态中描述的不同类型的模态。JDialog目标是在用户切换到浏览器中的另一个选项卡时隐藏。但似乎没有一个选项不起作用。该对话框保持浮动在所有选项卡之上。

请告诉我如何在用户移动到另一个选项卡时隐藏对话框并在用户返回我的小程序选项卡后再次显示?

4

1 回答 1

4

这可以在标签更改时在屏幕上更改位置的假设。例如

JDialog.getParent().getLocationOnScreen()

经测试并适用于:

  • 火狐19.0
  • Chrome 版本 25.0.1364.97 m

失败:

  • Internet Explorer 8.0.7601.17514

使用除拒绝访问浏览器选项卡或导致安全异常之外 的其他Dialog.ModalityType值。MODELESS

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class DialogApplet extends JApplet {

    @Override
    public void init() {
        Runnable r = new Runnable() {
            @Override
            public void run() {
                initGUI();
            }
        };
        SwingUtilities.invokeLater(r);
    }

    public void initGUI() {
        JButton b = new JButton("Show Dialog");
        ActionListener listener = new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent ae) {
                showDialog();
            }
        };
        b.addActionListener(listener);
        add(b);
    }

    private JDialog d;
    JTextArea output;
    int currentX = -1;
    Timer timer;

    public void showDialog() {
        if (d==null) {
            output = new JTextArea(5,20);
            Window w = SwingUtilities.windowForComponent(this);
            d = new JDialog(w, "Dialog", Dialog.ModalityType.MODELESS);
            //Dialog.ModalityType.TOOLKIT_MODAL);  //security
            //Dialog.ModalityType.DOCUMENT_MODAL);
            //Dialog.ModalityType.APPLICATION_MODAL);
            d.add(output, BorderLayout.CENTER);
            ActionListener al = new ActionListener() {
                @Override
                public void actionPerformed(ActionEvent ae) {
                    StringBuilder sb = new StringBuilder();


                    sb.append("parent location: \t" +
                        d.getParent().getLocation() + "\n");
                    sb.append("parent location - screen: \t" +
                        d.getParent().getLocationOnScreen() + "\n");

                    System.out.print(sb.toString());

                    output.setText(sb.toString());
                    if (currentX>-1 && 
                        currentX!=d.getParent().getLocationOnScreen().getX() 
                        ) {
                        System.out.println( "Goodbye world!" );
                        d.setVisible(false);
                        timer.stop();
                    }
                }
            };
            timer = new Timer(1000, al);
            d.pack();
            d.setLocationRelativeTo(d.getParent());
        }
        currentX = (int)d.getParent().getLocationOnScreen().getX();
        timer.start();
        d.setVisible(true);
    }
}

Java 脚本

也许相反,请为此寻找 JS。诀窍似乎在于检测 HTML 窗口焦点/模糊事件。EG 详细回答如下:

显然,当 JS 检测选项卡更改时,我们会让它调用小程序中的一个方法,例如tabVisible()tabHidden()对对话框执行适当的操作。

于 2013-03-03T07:15:03.910 回答