< prev index next >

functional/SceneGraphTests/src/test/scenegraph/lcd/LcdAPITestApp.java

Print this page

        

*** 24,36 **** package test.scenegraph.lcd; import javafx.geometry.Insets; import javafx.scene.Scene; import javafx.scene.layout.VBox; - import javafx.scene.layout.VBoxBuilder; import javafx.scene.text.FontSmoothingType; ! import javafx.scene.text.TextBuilder; import test.javaclient.shared.InteroperabilityApp; import test.javaclient.shared.Utils; /** * --- 24,35 ---- package test.scenegraph.lcd; import javafx.geometry.Insets; import javafx.scene.Scene; import javafx.scene.layout.VBox; import javafx.scene.text.FontSmoothingType; ! import javafx.scene.text.Text; import test.javaclient.shared.InteroperabilityApp; import test.javaclient.shared.Utils; /** *
*** 48,86 **** } @Override protected Scene getScene() { ! VBox root = VBoxBuilder.create() ! .padding(new Insets(10)) ! .spacing(10) ! .children( ! TextBuilder.create() ! .id("GrayGray") ! .text("Text") ! .fontSmoothingType(FontSmoothingType.GRAY) ! .style("-fx-font-size: 16;-fx-font-smoothing-type: gray; ") ! .build(), ! TextBuilder.create() ! .id("LCDGray") ! .text("Text") ! .fontSmoothingType(FontSmoothingType.LCD) ! .style("-fx-font-size: 16;-fx-font-smoothing-type: gray; ") ! .build(), ! TextBuilder.create() ! .id("GrayLCD") ! .text("Text") ! .fontSmoothingType(FontSmoothingType.GRAY) ! .style("-fx-font-size: 16;-fx-font-smoothing-type: lcd; ") ! .build(), ! TextBuilder.create() ! .id("LCDLCD") ! .text("Text") ! .fontSmoothingType(FontSmoothingType.LCD) ! .style("-fx-font-size: 16;-fx-font-smoothing-type: lcd;") ! .build() ! ) ! .build(); ! return new Scene(root, 200, 200); } } --- 47,74 ---- } @Override protected Scene getScene() { ! VBox root = new VBox(); ! root.setPadding(new Insets(10)); ! root.setSpacing(10); ! Text t1 = new Text("Text"); ! t1.setId("GrayGray"); ! t1.setFontSmoothingType(FontSmoothingType.GRAY); ! t1.setStyle("-fx-font-size: 16;-fx-font-smoothing-type: gray; "); ! Text t2 = new Text("Text"); ! t2.setId("LCDGray"); ! t2.setFontSmoothingType(FontSmoothingType.LCD); ! t2.setStyle("-fx-font-size: 16;-fx-font-smoothing-type: gray; "); ! Text t3 = new Text("Text"); ! t3.setId("GrayLCD"); ! t3.setFontSmoothingType(FontSmoothingType.GRAY); ! t3.setStyle("-fx-font-size: 16;-fx-font-smoothing-type: lcd; "); ! Text t4 = new Text("Text"); ! t4.setId("LCDLCD"); ! t4.setFontSmoothingType(FontSmoothingType.LCD); ! t4.setStyle("-fx-font-size: 16;-fx-font-smoothing-type: lcd;"); ! root.getChildren().addAll(t1, t2, t3, t4); return new Scene(root, 200, 200); } }
< prev index next >