Package javafx.scene

Examples of javafx.scene.Scene.heightProperty()


        private Scene createJfxScene() {
            Group jfxComponentGroup = new Group();
            Scene scene = new Scene(jfxComponentGroup);
            webView.prefWidthProperty().bind(scene.widthProperty());
            webView.prefHeightProperty().bind(scene.heightProperty());
            jfxComponentGroup.getChildren().add(webView);
            return scene;
        }

        private void createPopupHandler() {
View Full Code Here


    classMemberList = new ClassMemberList(this, getConfig());

    spMethodInfo.getItems().add(classMemberList);
    spMethodInfo.getItems().add(attributeTableView);

    classMemberList.prefHeightProperty().bind(scene.heightProperty());
    attributeTableView.prefHeightProperty().bind(scene.heightProperty());

    classTree = new ClassTree(this, getConfig());
    classTree.prefWidthProperty().bind(scene.widthProperty());
View Full Code Here

    spMethodInfo.getItems().add(classMemberList);
    spMethodInfo.getItems().add(attributeTableView);

    classMemberList.prefHeightProperty().bind(scene.heightProperty());
    attributeTableView.prefHeightProperty().bind(scene.heightProperty());

    classTree = new ClassTree(this, getConfig());
    classTree.prefWidthProperty().bind(scene.widthProperty());

    SplitPane spMain = new SplitPane();
View Full Code Here

 
    tableView = TableUtil.buildTableStats(obList);
   
    vbox.getChildren().add(tableView);
   
    tableView.prefHeightProperty().bind(scene.heightProperty());

    setTitle("JITWatch Method Statistics");
   
    setScene(scene);
   
View Full Code Here

    buildTableView(topListWrapper);

    vbox.getChildren().add(comboBox);
    vbox.getChildren().add(tableView);

    tableView.prefHeightProperty().bind(scene.heightProperty());

    setScene(scene);
    show();
  }
View Full Code Here

        vbox.getChildren().add(canvas);

        Scene scene = new Scene(vbox, width, height);

        canvas.widthProperty().bind(scene.widthProperty());
        canvas.heightProperty().bind(scene.heightProperty().subtract(30));

        setTitle("JITWatch Histogram");
       
        histo = histoVisitable.buildHistogram();
View Full Code Here

    tableView = VCallTableBuilder.buildTable(parent, optimizedVirtualCalls);

    vbox.getChildren().add(tableView);

    tableView.prefHeightProperty().bind(scene.heightProperty());

    setScene(scene);
    show();
  }
View Full Code Here

   
    filter.prefWidthProperty().bind(scene.widthProperty());

    vbox.getChildren().add(tableView);

    tableView.prefHeightProperty().bind(scene.heightProperty());

    setTitle("JITWatch Code Suggestions");

    setScene(scene);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.