All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.gsi.chart.ui.SidesPaneSample Maven / Gradle / Ivy

Go to download

This charting library ${project.artifactId}- is an extension in the spirit of Oracle's XYChart and performance/time-proven JDataViewer charting functionalities. Emphasis was put on plotting performance for both large number of data points and real-time displays, as well as scientific accuracies leading to error bar/surface plots, and other scientific plotting features (parameter measurements, fitting, multiple axes, zoom, ...).

There is a newer version: 11.2.7
Show newest version
package de.gsi.chart.ui;

import de.gsi.chart.ui.geometry.Side;
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.layout.HBox;
import javafx.scene.layout.Pane;
import javafx.stage.Stage;

/**
 * @author rstein
 */
public class SidesPaneSample extends Application {
    protected static final int SHUTDOWN_PERIOD = 5000; // [ms]
    protected static final int UPDATE_PERIOD = 100; // [ms]

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

    @Override
    public void start(final Stage stage) {
        stage.setTitle("TitledPane");

        final Label label = new Label("top content\ntop content");
        final Pane topContent = new Pane(label);
        topContent.setStyle("-fx-background-color: rgba(0,255,0,0.2)");

        final Pane leftContent = new Pane(new Label("left content"));
        leftContent.setStyle("-fx-background-color: rgba(255,0,0,0.2)");

        final Button button1 = new Button("press me to shrink");
        button1.setOnAction(evt -> topContent.setPrefHeight(50));
        final Button button2 = new Button("press me to enlarge");
        button2.setOnAction(evt -> topContent.setPrefHeight(100));

        final Pane mainContent = new Pane(new HBox(new Label("main content"), button1, button2));

        final SidesPane pane = new SidesPane();
        pane.setTriggerDistance(50);
        final Scene scene = new Scene(pane, 800, 600);
        pane.setTop(topContent);
        pane.setLeft(leftContent);
        pane.setContent(mainContent);

        topContent.setOnMouseClicked(mevt -> {
            final boolean isPinned = !pane.isPinned(Side.TOP);
            pane.setPinned(Side.TOP, isPinned);
            label.textProperty().set(String.format("top content(%b)%ntop content(%b)", isPinned, isPinned));
        });

        stage.setScene(scene);
        stage.show();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy