我在JavaFX中有一个应用程序有点大,我希望保持代码可读。
我有一个LineChart,我希望内置缩放功能,这在鼠标点击时发生。我知道我需要在图表中注册一个鼠标监听器。我无法从Oracle示例中弄清楚,即如下所示:
http://docs.oracle.com/javafx/2/events/handlers.htm
是如何不将我的处理程序内联定义到注册。换句话说,我希望处理程序的主体(这是很多行代码)在另一个类中。我能这样做吗?如果是这样,我如何在我的主Javafx控制器代码中将处理程序注册到我的图表?
答案 0 :(得分:3)
将处理程序放在一个实现Mouse EventHandler的新类中,并通过节点的setOnClicked方法向目标节点注册类的实例。
import javafx.application.Application;
import javafx.event.EventHandler;
import javafx.scene.*;
import javafx.scene.image.ImageView;
import javafx.scene.input.MouseEvent;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;
/**
* JavaFX sample for registering a click handler defined in a separate class.
* http://stackoverflow.com/questions/12326180/registering-mouse-handler-but-handler-not-inline-in-javafx
*/
public class ClickHandlerSample extends Application {
public static void main(String[] args) { launch(args); }
@Override public void start(final Stage stage) throws Exception {
stage.setTitle("Left click to zoom in, right click to zoom out");
ImageView imageView = new ImageView("http://upload.wikimedia.org/wikipedia/commons/b/b7/Idylls_of_the_King_3.jpg");
imageView.setPreserveRatio(true);
imageView.setFitWidth(150);
imageView.setOnMouseClicked(new ClickToZoomHandler());
final StackPane layout = new StackPane();
layout.getChildren().addAll(imageView);
layout.setStyle("-fx-background-color: cornsilk;");
stage.setScene(new Scene(layout, 400, 500));
stage.show();
}
private static class ClickToZoomHandler implements EventHandler<MouseEvent> {
@Override public void handle(final MouseEvent event) {
if (event.getSource() instanceof Node) {
final Node n = (Node) event.getSource();
switch (event.getButton()) {
case PRIMARY:
n.setScaleX(n.getScaleX()*1.1);
n.setScaleY(n.getScaleY()*1.1);
break;
case SECONDARY:
n.setScaleX(n.getScaleX()/1.1);
n.setScaleY(n.getScaleY()/1.1);
break;
}
}
}
}
}