Examples of heightProperty()


Examples of com.eagerlogic.cubee.client.components.Panel.heightProperty()

            root.addEmptyCell(2);
           
            Panel pnlSep = new Panel();
            pnlSep.widthProperty().bind(clientWidthProperty());
            // TODO set styleable
            pnlSep.heightProperty().set(1);
            // TODO set styleable
            pnlSep.backgroundProperty().set(new ColorBackground(Color.BLACK));
            root.getChildren().add(pnlSep);
           
            root.addEmptyCell(2);
View Full Code Here

Examples of com.eagerlogic.cubee.client.components.ScrollPanel.heightProperty()

        this.widthProperty().set(250);
        this.heightProperty().set(300);
       
        ScrollPanel sp = new ScrollPanel();
        sp.widthProperty().bind(this.clientWidthProperty());
        sp.heightProperty().bind(this.clientHeightProperty());
        this.getChildren().add(sp);
       
        VBox root = new VBox();
        sp.setContent(root);
       
View Full Code Here

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

Examples of javafx.scene.Scene.heightProperty()

    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

Examples of javafx.scene.Scene.heightProperty()

    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

Examples of javafx.scene.Scene.heightProperty()

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

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

Examples of javafx.scene.Scene.heightProperty()

    buildTableView(topListWrapper);

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

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

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

Examples of javafx.scene.Scene.heightProperty()

        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

Examples of javafx.scene.Scene.heightProperty()

    tableView = VCallTableBuilder.buildTable(parent, optimizedVirtualCalls);

    vbox.getChildren().add(tableView);

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

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

Examples of javafx.scene.Scene.heightProperty()

   
    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.