Next: Installation and deployment, Up: (dir) [Contents][Index]
This is the documentation to ClojureFX, version 0.5.1.
• Installation and deployment: | adding ClojureFX and probably tools.jar to your build tool. | |
• Getting started: | the little ceremony necessary to get a window “up and running”. | |
• Coding a scenegraph: | for everyone who wants to write an UI the old-school way. | |
• FXML and controllers: | loading FXML files and generating a controller. | |
• Event handling: | a short chapter about handling events. | |
• Roadmap: | what’s up next?. | |
• Index: | . |
Next: Getting started, Previous: Top, Up: Top [Contents][Index]
The first, straightforward part of this is to add the dependency to your project.clj or build.boot, which consists simply of adding [clojurefx "0.5.1"]
.
For the users of OpenJDK 7 and 8, OpenJFX, the opensource implementation of JavaFX, is not included. Luckily, many Linux distributions ship a separate OpenJFX package by now, but for those that don’t, the OpenJDK wiki has an article “Building OpenJFX”. Starting with OpenJDK 9, JavaFX is available as a library. Alternatively, you can of course install the Oracle JDK manually.
Next: Coding a scenegraph, Previous: Installation and deployment, Up: Top [Contents][Index]
(require '[clojurefx.clojurefx :as fx])
To get the JavaFX environment up and running, you can’t just initialize some classes and fire up a window, as is the case with Swing; you first have to initialise the environment. For this, you have two choices: either use a “nasty hack” Oracle themselves show, or go down the Java road and subclass ‘javafx.application.Application
’.
For the “nasty hack”, you have to add a defonce
before you import JavaFX classes (so, best suited for a core.clj ns). You can then manually create a Stage
and add a Scene
to it.
(defonce force-toolkit-init (javafx.embed.swing.JFXPanel.))
Alternatively, and preferredly, you can use start-app
:
(ns example.core (:require [clojurefx.clojurefx :as fx]) (:gen-class)) (defn init [] nil) (defn start [^javafx.stage.Stage stage] (.show stage)) (defn stop [] nil) (defn -main [& args] (fx/start-app init start stop))
• Core API: |
Up: Getting started [Contents][Index]
This macro runs the code given on the JavaFX thread and blocks the current thread until the execution has finished.
This macro runs the code given on the JavaFX thread and immediately returns. Prefixing the s-exp with an @ has the same effect as using run-now
.
This macro is used to use a Clojure function as a functional interface. The interface name is needed: (fx/fi javafx.event.Event [event] eventhandling-code)
This macro is used to use a Clojure function as a functional interface. The function must be written in kebab case: (fx/connect btn set-on-action [event] (do-something-with event))
With this function, you can find an element / elements in a scenegraph by one of its CSS classes.
Analogous to find-child-by-class, but to find an element by fx:id.
Next: FXML and controllers, Previous: Getting started, Up: Top [Contents][Index]
You can write a scenegraph in-code using the compile
function. It is straightforward, alternating between the class name and the element’s properties. Make sure though to either use start-app
function or first initialize the toolkit:
(defonce force-toolkit-init (javafx.embed.swing.JFXPanel.))
There are no further dependencies for this, since the calls are made using Clojure’s reflection API. Let’s look at an example:
(require '[clojurefx.clojure :refer [compile]]) (compile [Scene {:root [VBox {:id "TopLevelVBox" :children [Label {:text "Hi!"} Label {:text "I'm ClojureFX!"} HBox {:id "HorizontalBox" :children [Button {:text "Alright."}]}]}]}])
• Scenegraph API: |
Up: Coding a scenegraph [Contents][Index]
Turns the Hiccup-like tree into a JavaFX-Node.
Next: Event handling, Previous: Coding a scenegraph, Up: Top [Contents][Index]
(require '[clojurefx.fxml :as fxml])
FXML is an XML format describing a JavaFX user interface. It also allows defining action handlers and, similar to HTML, inline scripting via script tags. You can find an introduction on this site.
ClojureFX provides an idiomatic interface to load FXML files, and in this new version can even generate a controller class for you at runtime.
• Loading FXML files: | ||
• Generating controller classes: | ||
• FXML scripting: | ||
• FXML API: |
Next: Generating controller classes, Up: FXML and controllers [Contents][Index]
So you created an FXML file, probably with the SceneBuilder, and obviously now want to use it in your application. Doing so looks tedious in the JavaFX docs, but it is actually straightforward. All you need is some place to add the loaded Node - this could be the Scene object, or simply any JavaFX Parent element. The loader function returns a pure javafx.scene.Node-based object.
(require '[clojurefx.fxml :as fxml]) (def mainwindow (fxml/load-fxml "resources/fxml/mainwindow.fxml")) ;; => javafx.scene.Node (.setContent my-scroll-pane mainwindow)
You’re already good to go!
Next: FXML scripting, Previous: Loading FXML files, Up: FXML and controllers [Contents][Index]
When creating an FXML file, you have built-in features to bind properties and call functions in an associated controller class. Before actually writing any Clojure, let’s see how you can prepare your FXML file to get the most out of it.
First, at your outermost element in the file, you have to tell it the class name of its JVM sibling it is going to call. For that, open it, and add the fx:controller attribute: fx:controller="ch.lyrion.MyController"
. It is not very important how you name the class, as long as it has a package and doesn’t exist anywhere else.
To bind any element to your new controller (in the form of a Property
), you need the fx:id attribute. Let’s try it with that label: <Label fx:id="MyLabel" />
. That way, you’ll always have access to it as long as you have the controller instance with you. Note that the CamelCase will be automatically converted to kebab-case when using the designated accessors from ClojureFX!
Next, you can define action handlers. Note that “Special Handlers” (as defined here) are not yet fully supported; I’m working on them! You simply provide the attribute, e.g. an onAction attribute, with the method name prefixed with a pound sign; note that the method name CamelCase will be automatically converted to kebab-case. E.g. <Button onAction="#buttonClicked" />
will call (button-clicked controller-instance event)
in the namespace you provided (see below).
Now, finally, it is time to weld the parts together. But wait! Your FXML file doesn’t have any companion, no controller class, let alone the ch.lyrion.MyController
we told it to look for!
No worries, we got you covered. load-fxml-with-controller has your and your file’s back. It doesn’t just load the FXML and returns a Node
, it also parses the source and generates your file’s companion on the fly. For that, it needs a couple more infos than load-fxml
though: first, of course, the file path, but also the fully qualified clojure function in String
form that will be called when the class gets initialized by JavaFX. Note that all action handlers defined above also have to be in the namespace of that function.
Next: FXML API, Previous: Generating controller classes, Up: FXML and controllers [Contents][Index]
Unfortunately, FXML scripting is currently broken (outdated JSR-223 implementation). Stay tuned!
Previous: FXML scripting, Up: FXML and controllers [Contents][Index]
With this command, ClojureFX loads an FXML file and returns it as a javafx.scene.Node. Note that the filename will be parsed by clojure.io/resource
before loading.
Generates a controller using the fx:id
definitions in the given filename.
Like load-fxml, but also generates and loads an accompanying controller class using generate-controller.
Next: Roadmap, Previous: FXML and controllers, Up: Top [Contents][Index]
Coming soon.
Next: Index, Previous: Event handling, Up: Top [Contents][Index]
Jump to: | C F G L R |
---|
Index Entry | Section | ||
---|---|---|---|
| |||
C | |||
compile : | Scenegraph API | ||
connect : | Core API | ||
| |||
F | |||
fi : | Core API | ||
find-child-by-class : | Core API | ||
find-child-by-id : | Core API | ||
| |||
G | |||
generate-controller : | FXML API | ||
| |||
L | |||
load-fxml : | FXML API | ||
load-fxml-with-controller : | FXML API | ||
| |||
R | |||
run-later : | Core API | ||
run-now : | Core API | ||
|
Jump to: | C F G L R |
---|