改变现有JDialog的模式



我正在集成一个小程序,我需要破解其中一个对话框并更改其模式。

我的问题是我不知道摇摆,我的尝试在实践中没有影响。

当前实现:

dialog.setModalExclusionType(ModalExclusionType.TOOLKIT_EXCLUDE);
dialog.repaint();

也尝试了

dialog.setModal(false);

所以有我的问题。我如何动态地更改现有JDialog的模态?

不知道您尝试做什么...但是也许您可以从这里得到一些东西

   public class Mainz extends JFrame implements ActionListener{
                JButton showDialog = new JButton("show dialog");
                public Mainz() {
                    setLayout(new FlowLayout());
                    showDialog.addActionListener(this);
                    add(showDialog);
                    setSize(200, 300);
                    setVisible(true);   
                }
                @Override
                public void actionPerformed(ActionEvent e) {
                    new Dialogz(this, false);
                    setEnabled(false);
                }
                public static void main(String[]args){
                    new Mainz();
            }
            }
            class Dialogz extends JDialog{
                JButton close = new JButton("close");

                public Dialogz(JFrame owner,boolean modal) {
                    super(owner, modal);
                    setSize(100, 200);
                    add(close);
                    setLocationRelativeTo(owner);
                    setVisible(true);
                    close.addActionListener(new ActionListener() {
                        public void actionPerformed(ActionEvent ae){
                            closez();
                        }
                    });
                } 
                void closez(){
                    setModalExclusionType(ModalExclusionType.APPLICATION_EXCLUDE);
                    System.out.println("modal exclusion befor = "+getModalExclusionType());
                    setModalExclusionType(ModalExclusionType.NO_EXCLUDE);
                    System.out.println("modal exclusion after = "+getModalExclusionType());
                    System.out.println("modality before ="+getModalityType());
                    setModal(true);
                    System.out.println("modality  after ="+getModalityType());
                    getOwner().setEnabled(true);
                    Dialogz.this.dispose();
                }
            }

hack的黑客:

您可以通过调用私人方法来更改现有对话框的模式:

java.awt.Dialog.hideAndDisposePreHandler();

呼叫此私人方法 - 例如:

private void executeMethod(final Class<?> clazz, final String methodName, final Object instance)
{
    final Method method =
        Iterables.getOnlyElement(Iterables.filter(
            Arrays.asList(clazz.getDeclaredMethods()), new Predicate<Method>()
            {
                public boolean apply(final Method method)
                {
                    return method.getName().equals(methodName);
                }
            }));
    method.setAccessible(true);
    try
    {
        method.invoke(instance);
    }
    catch (IllegalAccessException | IllegalArgumentException | InvocationTargetException e)
    {
        throw Throwables.propagate(e);
    }
}

(此代码需要Guava)

最后称呼它:

final Dialog myDialog = ...;
executeMethod(Dialog.class, "hideAndDisposePreHandler", myDialog);

要更改对话框是模态还是无模式,请使用setModalityType方法。

  • 当您调用setModal(true)时,模态类型与调用setModalityType(Dialog.DEFAULT_MODALITY_TYPE)相同。默认值是ModalityType.APPLICATION_MODAL
  • 当您致电setModal(false)时,将模态类型设置为ModalityType.MODELESS

当您更改其模态时,对话框不应看到。否则,在对话框被隐藏然后再次显示之前,它将不会生效。

此外,对话框本身必须编程以支持不同的模式。

  • 使用模态对话框时,与所有者窗口(可能与其他应用程序窗口)进行交互。因此,您显示对话框,dialog.setVisible(true),此方法直到对话框关闭后才返回。然后,您使用对话框中的数据。
    一个典型的模态对话框是打开文件:该应用程序在知道要加载哪个文件之前无法执行。
  • 如果进行模型对话框,则方法dialog.setVisible(true)立即返回(在屏幕上显示对话框之后)。对话框中的按钮通常会对其他窗口和对话框产生一些影响。您可以在显示对话框时与应用程序的其他窗口进行交互。
    例如,一个典型的查找对话框在主窗口中选择搜索字符串。您可以返回主窗口,然后更改文本,然后单击"再次查找"等等。

如果您需要更多的帮助,我可以向您展示一个工作示例,该示例具有两个模式下可用的对话框。

我想您尚未获得applet的AWTPermission.toolkitModality许可。

另一个问题可能是您的平台上不支持排除类型 - 您可以使用Toolkit.isModalExclusionTypeSupported(java.awt.Dialog.ModalExclusionType)进行检查。

相关内容

  • 没有找到相关文章

最新更新