Uses of Class
com.dlsc.gemsfx.DialogPane.Dialog
Packages that use DialogPane.Dialog
-
Uses of DialogPane.Dialog in com.dlsc.gemsfx
Methods in com.dlsc.gemsfx that return DialogPane.DialogModifier and TypeMethodDescriptionfinal DialogPane.Dialog<T> Sets a consumer that will be invoked when the dialog is being closed.final DialogPane.Dialog<Void> DialogPane.showBusyIndicator()Creates and shows a dialog that shows a busy indicator / busy animation.final DialogPane.Dialog<javafx.scene.control.ButtonType> DialogPane.showConfirmation(String title, String message) Creates and shows a confirmation dialog.final DialogPane.Dialog<javafx.scene.control.ButtonType> DialogPane.showConfirmation(String title, String message, List<javafx.scene.control.ButtonType> buttonTypes) Creates and shows a confirmation dialog.final DialogPane.Dialog<Void> Creates and shows an error message dialog.final DialogPane.Dialog<Void> Creates and shows an error message dialog.final DialogPane.Dialog<Void> Creates and shows an error message dialog.final DialogPane.Dialog<Void> Creates and shows an error message dialog.final DialogPane.Dialog<Void> Creates and shows an error message dialog.final DialogPane.Dialog<javafx.scene.control.ButtonType> DialogPane.showInformation(String title, String message) Creates and shows an information dialog.final DialogPane.Dialog<javafx.scene.control.ButtonType> DialogPane.showInformation(String title, String message, List<javafx.scene.control.ButtonType> buttons) Creates and shows an information dialog.final <T> DialogPane.Dialog<T> DialogPane.showNode(DialogPane.Type type, String title, javafx.scene.Node node) Shows an arbitrary node in a dialog.final <T> DialogPane.Dialog<T> DialogPane.showNode(DialogPane.Type type, String title, javafx.scene.Node node, boolean maximize) Shows an arbitrary node in a dialog.final <T> DialogPane.Dialog<T> DialogPane.showNode(DialogPane.Type type, String title, javafx.scene.Node node, boolean maximize, List<javafx.scene.control.ButtonType> buttons) Shows an arbitrary node in a dialog.final <T> DialogPane.Dialog<T> DialogPane.showNode(DialogPane.Type type, String title, javafx.scene.Node node, boolean maximize, List<javafx.scene.control.ButtonType> buttons, boolean sameWidthButtons) Shows an arbitrary node in a dialog.final <T> DialogPane.Dialog<T> DialogPane.showNode(DialogPane.Type type, String title, javafx.scene.Node node, boolean maximize, List<javafx.scene.control.ButtonType> buttons, boolean sameWidthButtons, javafx.beans.property.BooleanProperty validProperty) Shows an arbitrary node in a dialog.final <T> DialogPane.Dialog<T> DialogPane.showNode(DialogPane.Type type, String title, javafx.scene.Node node, List<javafx.scene.control.ButtonType> buttons) Shows an arbitrary node in a dialog.final DialogPane.Dialog<String> DialogPane.showTextInput(String title, String text) Creates and shows a text input dialog.final DialogPane.Dialog<String> DialogPane.showTextInput(String title, String text, boolean multiline) Creates and shows a text input dialog.final DialogPane.Dialog<String> DialogPane.showTextInput(String title, String message, String text, boolean multiline) Creates and shows a text input dialog.final DialogPane.Dialog<String> DialogPane.showTextInput(String title, String message, String prompt, String text, boolean multiline) Creates and shows a text input dialog.final DialogPane.Dialog<String> DialogPane.showTextInput(String title, String message, String prompt, String text, boolean multiline, List<javafx.scene.control.ButtonType> buttonTypes) Creates and shows a text input dialog.final DialogPane.Dialog<javafx.scene.control.ButtonType> DialogPane.showWarning(String title, String message) Creates and shows a warning dialog.final DialogPane.Dialog<javafx.scene.control.ButtonType> DialogPane.showWarning(String title, String message, List<javafx.scene.control.ButtonType> buttonTypes) Creates and shows a warning dialog.Methods in com.dlsc.gemsfx that return types with arguments of type DialogPane.DialogModifier and TypeMethodDescriptionfinal javafx.beans.property.ListProperty<DialogPane.Dialog<?>> DialogPane.dialogsProperty()Stores the list of currently active dialogs.final javafx.beans.property.ObjectProperty<javafx.util.Callback<DialogPane.Dialog<?>, javafx.scene.Node>> DialogPane.footerFactoryProperty()A callback used as a factory for creating the footer for each dialog.final javafx.collections.ObservableList<DialogPane.Dialog<?>> DialogPane.getDialogs()The list of currently active / showing dialogs.final javafx.util.Callback<DialogPane.Dialog<?>, javafx.scene.Node> DialogPane.getFooterFactory()Gets the value of thefooterFactoryproperty.final javafx.util.Callback<DialogPane.Dialog<?>, javafx.scene.Node> DialogPane.getHeaderFactory()Gets the value of theheaderFactoryproperty.final javafx.beans.property.ObjectProperty<javafx.util.Callback<DialogPane.Dialog<?>, javafx.scene.Node>> DialogPane.headerFactoryProperty()A callback used as a factory for creating the header for each dialog.Methods in com.dlsc.gemsfx with parameters of type DialogPane.DialogModifier and TypeMethodDescriptionvoidDialogPane.hideDialog(DialogPane.Dialog<?> dialog) Hides the given dialog.voidDialogPane.showDialog(DialogPane.Dialog<?> dialog) Makes the given dialog visible in the pane.Method parameters in com.dlsc.gemsfx with type arguments of type DialogPane.DialogModifier and TypeMethodDescriptionfinal voidDialogPane.setDialogs(javafx.collections.ObservableList<DialogPane.Dialog<?>> dialogs) Sets the value of thedialogsproperty.final voidDialogPane.setFooterFactory(javafx.util.Callback<DialogPane.Dialog<?>, javafx.scene.Node> footerFactory) Sets the value of thefooterFactoryproperty.final voidDialogPane.setHeaderFactory(javafx.util.Callback<DialogPane.Dialog<?>, javafx.scene.Node> headerFactory) Sets the value of theheaderFactoryproperty.Constructors in com.dlsc.gemsfx with parameters of type DialogPane.DialogModifierConstructorDescriptionDefaultResizeHandler(DialogPane.Dialog<?> dialog) DialogButtonBar(DialogPane.Dialog<?> dialog) Constructs a new footer / button bar for the given dialog.DialogHeader(DialogPane.Dialog<?> dialog) Constructs a new header for the given dialog.