Hallvard Trætteberg
Hallvard Trætteberg
The UML2 model is not the same as Ecore, although they have many similarities and can share code.
I'm not planning to create the Node structure statically, but generate a class that is instantiated at runtime with a method that does the actual building of the JavaFX gui....
I will not use FXMLLoader directly (due to its use of reflection), but must ensure that the behavior of the parser and generated class is the same. So far I...
https://github.com/hallvard/fxml-template-processor/tree/main/fxml-to-source-translator
I've now pushed some more code to the translator repository: - the FXML translator now supports more FXML features, in particular event handlers and controller initialization (fx:include is not supported,...
I tried to find examples of generating source code in a quarkus extension, but my impression is that they go directly to byte code (either explicitly, or using recording). The...
The fxml-template-processor repo mentioned above has been extended with such a generator, maven plugin and sample project. Please take a look at the sample. I would love suggestions and help...
You mean use Font.loadFont(URL urlStr, double size), set this as the font on a Text and fill it with some characters? I can try and report back.
``` private Tab createFontTestTab() { VBox pane = new VBox(); String fontResource = "/META-INF/resources/materialdesignicons2/5.8.55/fonts/materialdesignicons-webfont.ttf"; String fastForward = new String(Character.toChars(Integer.parseInt("F0211", 16))); try { Text textIcons = new Text(); Label labelIcons =...
Suddenly get `Error downloading zips: java.io.IOException: Error downloading link from https://github.com/gluonhq/vmone/releases/download/gvm-24-2.1/vmone-android-linux-aarch64.zip. Unexpected status code: 404` during build, so not able to try on Android at the moment.