/*
 * Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.  Oracle designates this
 * particular file as subject to the "Classpath" exception as provided
 * by Oracle in the LICENSE file that accompanied this code.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */

import javafx.application.Application;
import javafx.scene.layout.Pane;
import javafx.scene.control.Label;
import javafx.scene.Scene;
import javafx.stage.Stage;

public class NewStageInvalidDimensions extends Application {

    @Override public void start(final Stage stage) {
        // Stage provided in start() - setup
        // This one works as intended
        stage.setTitle("Stage should have 400x400 dimensions");

        Pane root = new Pane();
        Scene scene = new Scene(root, 400, 400);
        stage.setScene(scene);

        Label dims = new Label("dimensions");
        root.getChildren().add(dims);

        stage.setOnShown(e -> {
            double w = stage.getWidth();
            double h = stage.getHeight();
            dims.setText("w: " + w + " h: " + h);
        });

        stage.setX(0.0);
        stage.setY(0.0);
        stage.show();


        // New stage created during startup
        // This one does NOT have 400x400 dimensions
        Stage newStage = new Stage();
        Pane newRoot = new Pane();
        Scene newScene = new Scene(newRoot, 400, 400);
        newStage.setScene(newScene);

        Label newDims = new Label("dimensions");
        newRoot.getChildren().add(newDims);

        newStage.setOnShown(e -> {
            double w = newStage.getWidth();
            double h = newStage.getHeight();
            newDims.setText("w: " + w + " h: " + h);
        });

        newStage.setX(0.0);
        newStage.setY(0.0);
        newStage.show();
    }

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        Application.launch(args);
    }
}
