de.gsi.chart.viewer.DataViewPane Maven / Gradle / Ivy
/**
* Copyright (c) 2017 European Organisation for Nuclear Research (CERN), All Rights Reserved.
*/
package de.gsi.chart.viewer;
import de.gsi.chart.XYChart;
import de.gsi.chart.axes.spi.DefaultNumericAxis;
import de.gsi.chart.plugins.EditAxis;
import de.gsi.chart.plugins.Panner;
import de.gsi.chart.plugins.ParameterMeasurements;
import de.gsi.chart.plugins.Zoomer;
import de.gsi.chart.utils.ScientificNotationStringConverter;
import de.gsi.dataset.utils.ProcessingProfiler;
import javafx.beans.property.ObjectProperty;
import javafx.beans.property.SimpleObjectProperty;
import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.StringProperty;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.geometry.Bounds;
import javafx.geometry.Point2D;
import javafx.geometry.Rectangle2D;
import javafx.scene.Node;
import javafx.scene.Scene;
import javafx.scene.input.MouseEvent;
import javafx.scene.layout.BorderPane;
import javafx.stage.Screen;
import javafx.stage.Stage;
import jfxtras.labs.scene.control.window.RotateIcon;
import jfxtras.labs.scene.control.window.Window;
import jfxtras.labs.scene.control.window.WindowIcon;
public class DataViewPane extends Window {
private final WindowIcon minimizeButton = new WindowIcon();
private final WindowIcon maximizeRestoreButton = new WindowIcon();
private final WindowIcon closeButton = new WindowIcon();
private final WindowIcon detachButton = new WindowIcon();
private final MyDialog dialog = new MyDialog();
private double xOffset = 0;
private double yOffset = 0;
private XYChart chart;
public DataViewPane(final String name, final XYChart chart) {
super(name);
setName(name);
this.chart = chart;
getStyleClass().add("data-view-pane");
final String css = DataViewPane.class.getResource("window.css").toExternalForm();
getStylesheets().clear();
getStylesheets().add(css);
getLeftIcons().add(new RotateIcon(this));
minimizeButton.getStyleClass().setAll("window-minimize-icon2");
maximizeRestoreButton.getStyleClass().setAll("window-maximize-icon");
closeButton.getStyleClass().setAll("window-close-icon");
getRightIcons().addAll(minimizeButton);
getRightIcons().addAll(maximizeRestoreButton);
getRightIcons().addAll(closeButton);
// set actions
minimizeButton.setOnAction(minimizeButtonAction);
maximizeRestoreButton.setOnAction(maximizeButtonAction);
closeButton.setOnAction(closeButtonAction);
detachButton.getStyleClass().setAll("window-detach-icon");
detachButton.setOnAction(evt -> dialog.show(null));
getLeftIcons().add(detachButton);
setOnMouseReleased(mevt -> {
final boolean isInMinimized = dataView.get().getMinimizedChildren().contains(DataViewPane.this);
if (isMinimized() || isInMinimized) {
return;
}
final Point2D mouseLoc = new Point2D(mevt.getScreenX(), mevt.getScreenY());
final Bounds screenBounds = localToScreen(getBoundsInLocal());
if (!screenBounds.contains(mouseLoc)) {
// mouse move outside window detected -- launch dialog
// dropped outside of node window
if (!dialog.isShowing()) {
dialog.show(mevt);
return;
}
dialog.setX(mevt.getScreenX() - xOffset);
dialog.setY(mevt.getScreenY() - yOffset);
return;
}
if (dialog.isShowing()) {
dialog.setX(mevt.getScreenX() - xOffset);
dialog.setY(mevt.getScreenY() - yOffset);
}
});
setOnMousePressed(event -> {
xOffset = event.getSceneX();
yOffset = event.getSceneY();
});
setOnMouseDragged(event -> {
// launch dragging dialogue
dialog.setX(event.getScreenX() - xOffset);
dialog.setY(event.getScreenY() - yOffset);
});
chart.getPlugins().add(new ParameterMeasurements());
chart.getPlugins().add(new Zoomer());
chart.getPlugins().add(new Panner());
// chartPane.getPlugins().add((ChartPlugin) new CrosshairIndicator());
chart.getPlugins().add(new EditAxis());
chart.legendVisibleProperty().set(true);
// TODO: axis label alignment right
if (chart.getXAxis() instanceof DefaultNumericAxis) {
((DefaultNumericAxis) chart.getXAxis()).setTickLabelFormatter(new ScientificNotationStringConverter(3));
}
if (chart.getYAxis() instanceof DefaultNumericAxis) {
((DefaultNumericAxis) chart.getYAxis()).setTickLabelFormatter(new ScientificNotationStringConverter(2));
}
// TODO: check if we can reposition the chart legend to be more efficiently located
// for (Node n : chartPane.getChart().lookupAll(".chart-legend")) {
// n.setTranslateY(-50);
// }
setMaxSize(Double.MAX_VALUE, Double.MAX_VALUE);
getContentPane().getChildren().add(chart);
setPrefSize(300, 200);
widthProperty().addListener((ch, o, n) -> chart.requestLayout());
heightProperty().addListener((ch, o, n) -> chart.requestLayout());
// Detect maximise event
}
// TODO: The two methods should be private and be called when we change the
// view type in the toolbar
public void switchToTableView() {
// final SeriesTableView