QuadCurve でマウス クリック イベントを検出したいのですが、「ストローク」部分でのみ検出します。画像の緑色の部分だけをクリアするために。
ここでは、赤の塗りつぶし値を使用していますが、私のアプリケーションでは透明な塗りつぶし値を使用しています。そのため、曲線の可視部分でクリックを検出することが重要です。
サンプルコード:
import javafx.application.Application;
import javafx.event.EventHandler;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.input.MouseEvent;
import javafx.scene.shape.QuadCurve;
import javafx.stage.Stage;
public class QuadCurveMouseHandling extends Application {
@Override
public void start(Stage stage) throws Exception {
QuadCurve curve = new QuadCurve();
curve.setStartX(10);
curve.setStartY(10);
curve.setControlX(50);
curve.setControlY(250);
curve.setEndX(300);
curve.setEndY(300);
curve.setStyle("-fx-stroke-width: 7;-fx-stroke: green;-fx-fill: red;");
curve.setOnMouseClicked(new EventHandler<MouseEvent>() {
@Override
public void handle(MouseEvent event) {
System.out.println("clicked");
}
});
stage.setScene(new Scene(new Group(curve), 320, 320));
stage.show();
}
public static void main(String[] args) {
launch();
}
}