Hello again!

Just released a new library. The library’s name is FXComponents and it is a Java library that contains a collection of new controls to be used in JavaFX applications.

As of the time of writing, FXComponents is being built using Java 17 (the latest LTS Java release) and JavaFX 20.

Head on over to the documentation page for more detailed information about this library and how to start using it.

Controls

List Builder

A control with 2 lists. A source list and a target list.

The target list will contain all the elements the user chose from the source list.

The user can drag and drop items from the source list onto the target list or use the buttons available to accomplish that.

Reordering of the lists is also possible through drag and drop.

Reordable ListView

A ListView that the user can reorder by drag and dropping each cell.

Blocking Progress Bar

A blocking dialog (blocks user input) that shows a progress bar while a background operation is in progress.

The ProgressBar can be of indeterminate progress or not.

The developer passes a Runnable to the showAndWait method. That Runnable will be executed in a background task, progress can be updated through convenience methods in the Task class API.

Indeterminate

Determinate

Leave a Reply

Your email address will not be published. Required fields are marked *