Written in spirit of anko, it aims to make JavaFX app development less painful with the help of Kotlin technologies.
- Full of helpers for common JavaFX operations.
- Write dynamic layout with Kotlin DSL.
- Use coroutines directly from JavaFX API.
repositories {
mavenCentral()
}
dependencies {
// all the main artifacts combined
compile "com.hanggrian.ktfx:ktfx:$version"
// or download separately
compile "com.hanggrian.ktfx:ktfx-commons:$version"
compile "com.hanggrian.ktfx:ktfx-layouts:$version"
compile "com.hanggrian.ktfx:ktfx-coroutines:$version"
// third-party artifacts, also available individually
compile "com.hanggrian.ktfx:ktfx-controlsfx:$version"
compile "com.hanggrian.ktfx:ktfx-jfoenix:$version"
}
Full of extensions for JavaFX, packaged accordingly. The main goal of core library is not to add any new feature to the existing JavaFX APIs. Below are preview of some packages.
// create unmodifiable observable collection
val emptyUnmodifiableList = emptyObservableList()
val unmodifiableList = observableListOf(1)
// create modifiable observable collection
val emptyModifiableList = mutableObservableListOf()
val modifiableList = mutableObservableListOf(1, 2, 3)
// convert existing
val list = myList.toObservableList() // or toMutableObservableList() for modifiable version
// infix conditional binding
button.disableProperty().bind(firstName.textProperty().isEmpty or lastName.textProperty().isEmpty)
// operator binding for number properties
totalProperty.bind(qtyProperty * priceProperty)
// infix binding for number properties
loginButton.disableProperty().bind(passwordField.textProperty.length() less 4)
// custom binding
label.graphicProperty().bind(stringBindingOf(listView.selectionModel.selectedIndexProperty()) {
"${listView.selectionModel.selectedIndex} selected"
})
imageView.imageProperty().bind(bindingOf(urlField.textProperty()) {
Image(urlField.text)
})
// show an alert
alert("Here's an alert").show()
// show a confirmation alert and wait for input
confirmAlert("Are you sure?").showAndWait()
// custom init a text input dialog
inputDialog("Question #1") {
contentText = "Why does the chicken cross the road?"
editor.promptText = "Hint"
}.showAndWait()
// a choice dialog
choiceDialog("Pick an item", ImageView("/my/image.png"), items)
.showAndWait()
// show a custom dialog
dialog<String>("Who's a little piggy?") {
content = ...
yesButton()
noButton()
customButton("What's a piggy?") {
// explain what a piggy is
}
resultConverter {
if(it == button1) "Me" else null
}
}.showAndWait()
Generate JavaFX layouts, controls, shapes, and charts with Kotlin DSL. It's a direct replacement of FXML files.
gridPane {
gaps = 8
label("First name") row 0 col 0
val firstName = textField() row 0 col 1
label("Last name") row 1 col 0
val lastName = textField() row 1 col 1
button("Say hello") {
onAction {
infoAlert("Hello, ${firstName.text} ${lastName.text}!")
}
} row 2 col 1 hpos HPos.RIGHT
}
Based on the kotlinx.coroutines
library, it allows invoking JavaFX EventHandler
the coroutine way.
button.setOnAction {
doSomethingInBackground()// might freeze UI
celebrateCompletion()
}
button.onAction(CommonPool) {
doSomethingInBackground() // non-blocking in common pool
launch(FX) {
celebrateCompletion()
}
}
Work in progress.