Show a JavaFX confirmation alert with the given title and text . - Java JavaFX

Java examples for JavaFX:Alert

Description

Show a JavaFX confirmation alert with the given title and text .

Demo Code

/*//from w  ww  .  j  av  a 2 s  .c om
     * Copyright 2015 Thierry Wasylczenko
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *   http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
import javafx.scene.Node;
import javafx.scene.control.Alert;
import javafx.scene.control.ButtonType;
import javafx.scene.control.Dialog;
import javafx.stage.Stage;
import java.util.Optional;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.FutureTask;
import java.util.logging.Level;
import java.util.logging.Logger;

public class Main{
    private static final Logger LOGGER = Logger
                .getLogger(DialogHelper.class.getName());
    /**
         * Show a confirmation alert with the given {@code title} and {@code text}. The method returns the answer of the
         * user. The answer can either be {@link javafx.scene.control.ButtonType#NO} or {@link javafx.scene.control.ButtonType#YES}.
         *
         * @param title The title of the alert.
         * @param text The text of the alert.
         * @return The answer of the user or {@code null} if no answer has been made.
         */
        public static ButtonType showConfirmationAlert(final String title,
                final String text) {
            return displayDialog(buildAlert(Alert.AlertType.CONFIRMATION,
                    title, text, ButtonType.NO, ButtonType.YES));
        }
    /**
         * Show and wait for the response of the given {@code dialog}. This method ensures the dialog is displayed in the
         * JavaFX application thread.
         * @param dialog The dialog to show.
         * @return The answer of the user or {@code null} if no answer has been made.
         */
        private static ButtonType displayDialog(Dialog<ButtonType> dialog) {
    Optional<ButtonType> response = null;

    if(dialog != null) {
        final FutureTask<Optional<ButtonType>> future = new FutureTask<>(() -> dialog.showAndWait());
        PlatformHelper.run(future);
        try {
            response = future.get();
        } catch (InterruptedException e) {
            e.printStackTrace();
        } catch (ExecutionException e) {
            e.printStackTrace();
        }
    }

    return response != null && response.isPresent() ? response.get() : null;
}
    /**
         * Build an {@link javafx.scene.control.Alert Alert} object. This method ensures the alert is created in a JavaFX
         * application thread. If the alert can not be created then {@code null} is returned.
         * @param type The type of alert to create.
         * @param title The title of the alert.
         * @param text The text of this alert.
         * @param buttons The buttons the alert will contain.
         * @return A well created Alert or {@code null} if an error occurred during the creation of the alert.
         */
        private static Alert buildAlert(final Alert.AlertType type, final String title, final String text, final ButtonType ... buttons) {
    final FutureTask<Alert> future = new FutureTask<>(() -> {
        final Alert alert = new Alert(type, text, buttons);
        alert.setGraphic(null);
        alert.setHeaderText(null);
        alert.setTitle(title);
        alert.getDialogPane().getStylesheets().add("/com/twasyl/slideshowfx/css/Default.css");
        return alert;
    });

    PlatformHelper.run(future);

    Alert alert = null;
    try {
        alert = future.get();
    } catch (InterruptedException | ExecutionException e) {
        LOGGER.log(Level.SEVERE, "Can not build an alert", e);
    }

    return alert;
}
}

Related Tutorials