Package org.controlsfx.dialog


package org.controlsfx.dialog
A package containing a powerful (yet easy to use) dialogs API for showing modal dialogs in JavaFX-based applications.
  • Class
    Description
    Dialog containing command links.
    Command link type buttons to be used in CommandLinksDialogs.
    Dialog with exception details.
    Usage: Simply pass a Throwable and the dialog will display:
    The exception message The full exception stack trace in an expandable TextArea.
    Dialog for selecting and previewing fonts.
    The list of fonts will contain all the font families installed on the user's system, as per JavaFX Font.getFamilies().
    User login Dialog with a username and a password field.
    The input fields are clearable by default (can be emptied with a button).
    Progress Dialog to report on the progress of any background Worker.
    After the given Worker finishes, the Progress Dialog automatically closes.
    The API for creating multi-page Wizards, based on JavaFX Dialog API.
    Wizard can be setup in following few steps:
    Represents the page flow of the wizard.
    LinearFlow is an implementation of the Wizard.Flow interface, designed to support the most common type of wizard flow - namely, a linear wizard page flow (i.e. through all pages in the order that they are specified).
    WizardPane is the base class for all wizard pages.