框架总是在我的程序之上



我试图在未修饰的alwaysOnTop框架中创建一种工具栏。因此,我希望我的框架位于主框架之上,而不是位于其他程序的框架之上。我试过这个代码:

public class Test {
    private static JFrame mainFrame;
    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            @Override
            public void run() {
                mainFrame = new JFrame("test");
                mainFrame.setSize(800,600);
                mainFrame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
                mainFrame.setVisible(true);
                A a = new A();
            }
        });
    }
    public static class A extends JDialog {
        public A() {
            super(mainFrame);
            setAlwaysOnTop(true);
            setFocusable(false);
            setSize(80,60);
            setVisible(true);
        }
    }
}

但是,尽管使用了JDialog和精确的所有者,框架仍然在其他应用程序之上(至少在Ubuntu中是这样)。可能结果与其他操作系统不同?)

编辑:好的,我为我的对话框尝试了以下代码:

public static class A extends JDialog {
    public A(String name) {
        super(mainFrame, name);
        setAlwaysOnTop(true);
        setFocusable(false);
        setSize(80, 60);
        setVisible(true);
        mainFrame.addWindowListener(new WindowAdapter() {
            @Override
            public void windowActivated(WindowEvent e) {
                A.this.setAlwaysOnTop(true);
            }
            @Override
            public void windowDeactivated(WindowEvent e) {
                // A.this.setAlwaysOnTop(false);
                A.this.toBack();
            }
        });
    }
}

现在的问题是,当主窗口失去焦点,对话框窃取焦点回来,我不明白为什么。例如,我运行我的应用程序,我尝试切换到Firefox, Firefox出现并覆盖了主机,但A对话框获得焦点并留在屏幕上。现在,如果我再次选择Firefox,对话框将最终正确地消失。你能解释一下为什么这个对话是重点吗?

谢谢

您应该使您的窗口始终在顶部只有当父窗口被激活。像这样:

public class Test {
    private static JFrame mainFrame;
    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            @Override
            public void run() {
                mainFrame = new JFrame("test");
                mainFrame.setSize(800,600);
                mainFrame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
                mainFrame.setVisible(true);
                final A a = new A();
                mainFrame.addWindowListener(new WindowAdapter() {
                    /**
                     * {@inheritDoc}
                     */
                    @Override
                    public void windowDeactivated(WindowEvent e) {
                        a.setAlwaysOnTop(false);
                    }
                    /**
                     * {@inheritDoc}
                     */
                    @Override
                    public void windowActivated(WindowEvent e) {
                        a.setAlwaysOnTop(true);
                    }
                });
            }
        });
    }
    public static class A extends JDialog {
        public A() {
            super(mainFrame);
            setAlwaysOnTop(true);
            setFocusable(false);
            setSize(80,60);
            setVisible(true);
        }
    }
}

好的,我找到了一个解决方案(不知道它是否是解决方案,但它正在工作,所以…)

我发现setFocusableWindowState(),这是完美的工具栏。顺便说一下,我不知道我之前的setFocusable(false)是否有任何效果。

下一个问题是,焦点得到非常奇怪的行为与这段代码:如果我从MyApp切换到Firefox,下面是发生的事情:

focus : MyApp -> Firefox
execution of MyDialog.toFront()
focus : Firefox -> MyDialog
MyDialog not focusable !
focus : MyDialog -> MyApp !!!

result: nothing changed !

所以我终于得到了窍门:就在MyDialog.toFront()之后,你把焦点还给以前的所有者。我发现这样做没有错误的唯一方法是:mainFrame.toBack()

最终代码:

public class Test {
    private static JFrame mainFrame;
    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            @Override
            public void run() {
                mainFrame = new JFrame("test");
                mainFrame.setSize(800,600);
                mainFrame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
                mainFrame.setVisible(true);
                A a = new A();
            }
        });
    }
    public static class A extends JDialog {
        public A() {
            super(mainFrame);
            setAlwaysOnTop(true);
            setFocusableWindowState(false);
            setSize(80,60);
            setVisible(true);
            mainFrame.addWindowListener(new WindowAdapter() {
                @Override
                public void windowActivated(WindowEvent e) {
                    A.this.setAlwaysOnTop(true);
                    A.this.toFront();
                }
                @Override
                public void windowDeactivated(WindowEvent e) {
                    A.this.setAlwaysOnTop(false);
                }
            });
        }
    }
}

相关内容

  • 没有找到相关文章

最新更新