At least JDK 11 is required.
A specialized subclass of ImageView that can be used to display different graphics for different payment options. Graphics provided by Gregoire Segretain (https://www.sketchappsources.com/contributor/gregoiresgt)
An on-screen keyboard, especially useful for touch applications (mobile, tablet).
A custom control that allows an application to display PDF files. The control utilizes Apache's PDFBox project.
The view has excellent built-in search capabilities.
A stackpane with an optional node that can be shown inside a drawer. The drawer is animated and can slide in and out. When the drawer is showing a semi-transparent glass pane will cover the background. In addition the last height of the drawer can be persisted via the preferences API so that next time the drawer will show itself like in the last user session.
A control for filtering the content of an obserable list. Works in combination with TableView, ListView, or any control that is based on observable lists.
A read-only text area that is capable of displaying nicely formatted text. The control comes with a rich model and a fluent API that will allow you to quickly compose rich text.
RichTextArea area = new RichTextArea();
area.setDocument(
RTDocument.create(
RTHeading.create("Heading 1"),
RTParagraph.create(
RTText.create("This is the first paragraph. "),
RTText.create("Some text comes here before the link that "),
RTLink.create("points to the website ", "https://www.dlsc.com"),
RTText.create("of DLSC Software & Consulting.")
),
RTParagraph.create(
RTText.create("Here comes the second paragraph.")
),
RTParagraph.create(),
RTHeading.create("Heading 2"),
RTParagraph.create(
RTText.create("Some text for the first paragraph after heading 2."),
RTList.create(
RTListItem.create("List item 1"),
RTListItem.create("List item 2"),
RTListItem.create("List item 3",
RTList.create(
RTListItem.create("Sub item A"),
RTListItem.create("Sub item B"),
RTListItem.create("Sub item C"),
RTListItem.create("Sub item D")
)
),
RTListItem.create("List item 4")
)
)
)
);You can run the demos using Maven by typing any of the following lines into your terminal:
mvn javafx:run -f gemsfx-demo/pom.xml -Dmain.class=com.dlsc.gemsfx.demo.EnhancedLabelApp
mvn javafx:run -f gemsfx-demo/pom.xml -Dmain.class=com.dlsc.gemsfx.demo.KeyboardApp
mvn javafx:run -f gemsfx-demo/pom.xml -Dmain.class=com.dlsc.gemsfx.demo.KeyboardDarkApp
mvn javafx:run -f gemsfx-demo/pom.xml -Dmain.class=com.dlsc.gemsfx.demo.KeyboardPaneDemoApp
mvn javafx:run -f gemsfx-demo/pom.xml -Dmain.class=com.dlsc.gemsfx.demo.KeyboardPaneWithArrowKeysApp
mvn javafx:run -f gemsfx-demo/pom.xml -Dmain.class=com.dlsc.gemsfx.demo.PDFViewApp
mvn javafx:run -f gemsfx-demo/pom.xml -Dmain.class=com.dlsc.gemsfx.demo.DrawerApp
mvn javafx:run -f gemsfx-demo/pom.xml -Dmain.class=com.dlsc.gemsfx.demo.FilterViewApp
mvn javafx:run -f gemsfx-demo/pom.xml -Dmain.class=com.dlsc.gemsfx.demo.RichTextAreaApp
mvn javafx:run -f gemsfx-demo/pom.xml -Dmain.class=com.dlsc.gemsfx.demo.EmailFieldApp
mvn javafx:run -f gemsfx-demo/pom.xml -Dmain.class=com.dlsc.gemsfx.demo.PaymentOptionApp
mvn javafx:run -f gemsfx-demo/pom.xml -Dmain.class=com.dlsc.gemsfx.demo.PaymentOptionTilesApp