如何允许将MouseEvents分派给禁用的节点?

时间:2014-06-12 11:05:04

标签: java swing mouseevent javafx-8

在fx中,不会将mouseEvents分派给已禁用的节点,最后是一个演示该行为的快速示例。

对于像我这样的Swinger,这有点令人惊讶:在我的土地上,事件被传递,目标(ui-delegate)的任务是决定是否应该处理事件。实际上最近有人指出这一点 - 完全有效的IMO - use-case of showing a tooltip over a disabled component

从技术上讲,调度似乎是在Node的一个impl方法中被切断的:

/**
 * Finds a top-most child node that intersects the given ray.
 *
 * The result argument is used for storing the picking result.
 */
@Deprecated
public final void impl_pickNode(PickRay pickRay, PickResultChooser result) {

    // In some conditions we can omit picking this node or subgraph
    if (!isVisible() || isDisable() || isMouseTransparent()) {
        return;
    }

似乎在命中检测过程中被调用。如果是这样的话,那么在没有太大机会进行调整的情况下,它会在内心深处。

问题:

  • 我的代码有任何问题(可能很容易错过一些明显的东西; - )
  • 上面真的是根本原因吗?
  • 是否有任何可配置的选项来强制发送?如果是这样,怎么做?
  • 行为的规格在哪里?查看教程/ api文档,但找不到任何内容。

代码示例:

package fx.control;

import javafx.application.Application;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.scene.control.CheckBox;
import javafx.scene.input.MouseEvent;
import javafx.scene.layout.Pane;
import javafx.scene.shape.Rectangle;
import javafx.stage.Stage;

/**
 * @author Jeanette Winzenburg, Berlin
 */
public class MouseEventDisabled extends Application {

    private Parent getContent() {

        Pane parent = new Pane();
        Rectangle r = new Rectangle(100, 100, 200, 200);
        r.addEventHandler(MouseEvent.ANY, event -> System.out.println(event));        
        CheckBox button = new CheckBox("rectangle disabled");
        r.disableProperty().bind(button.selectedProperty());
        parent.getChildren().addAll(r, button);
        return parent;
    }

    @Override
    public void start(Stage primaryStage) throws Exception {
        Parent root = getContent();
        Scene scene = new Scene(root);
        primaryStage.setScene(scene);
        primaryStage.show();
    }

    public static void main(String[] args) {
        launch();
    }
}

1 个答案:

答案 0 :(得分:4)

public final ReadOnlyBooleanProperty disabledProperty

指示是否禁用此节点。如果在场景图中的自身或其祖先之一上将disable设置为true,则节点将被禁用。 禁用的节点应以不同方式呈现自身,以向用户指示其禁用状态。这种禁用的渲染取决于节点的实现。默认情况下,javafx.scene.shape中包含的形状类不实现此类呈现,因此使用形状处理输入的应用程序必须自己实现适当的禁用呈现。但是,javafx.scene.control中定义的用户界面控件将实现禁用敏感的渲染。

  

A disabled Node does not receive mouse or key events.

默认值: 假 也可以看看: isDisabled(),setDisabled(boolean)