0

在对我的申请进行了一个月的工作后,我发现了一些奇怪的东西。我有一个 Viewer 模块,所有 TopComponents 都在其中,还有一个 MenuToolbar 模块,我在其中保存所有工具栏操作。这是我的补充:

package com.demo.toolbar;

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import org.openide.awt.ActionRegistration;
import org.openide.awt.ActionReference;
import org.openide.awt.ActionReferences;
import org.openide.awt.ActionID;
import org.openide.util.NbBundle.Messages;

@ActionID(category = "Edit",
id = "com.demo.toolbar.AddAction")
@ActionRegistration(iconBase = "com/demo/toolbar/icons/add.png",
displayName = "#CTL_AddAction")
@ActionReferences({
    @ActionReference(path = "Toolbars/AddEditDelete", position = 1),
    @ActionReference(path = "Shortcuts", name = "D-A")
})
@Messages("CTL_AddAction=Add")
public final class AddAction implements ActionListener {

    public void actionPerformed(ActionEvent e) {
        //code here
    }
}

该快捷方式通过 CTRL+A 激活,并将 TopComponent 置于添加模式。我还有一个使用 CTRL+D 命令激活的 DeleteAction。当此人按 CTRL+A 时,会发生以下情况:

List<Component> c = new ArrayList<Component>();
        c.addAll(Arrays.asList(ToolbarPool.getDefault().findToolbar("AddEditDelete").getComponents()));
if (mode.equals("add")) {
    for (Component component : c) {
        component.setEnabled(false);
        }
        c.get(13).setEnabled(true);
        c.get(14).setEnabled(true);
}

因此,基本上每当用户点击工具栏上的添加按钮时,它都会禁用所有其他按钮(包括删除),因此用户在添加模式下无法执行这些操作。

但是,他们仍然可以按 CTRL+D 删除。这是一个很大的禁忌...

我该如何解决这种行为?

4

1 回答 1

1

您不应直接启用/禁用操作。看看Actions APICookieAction可能是你想要的。这个想法是将 Cookie(某些上下文)发布到全局查找。您的 Cookie 感知操作会根据 Cookie 的存在而自动启用/禁用。

事实上,这就是 IDE 中的保存按钮的工作方式。每当编辑器将 a 放入SaveCookie全局上下文时,都会启用工具栏按钮和 Ctrl+S;如此处所述

您可以考虑使用状态机以干净的方式控制 cookie 的存在。

于 2012-06-24T18:31:09.973 回答