Examples of showAlert()


Examples of com.lightcrafts.platform.AlertDialog.showAlert()

     * Shows an alert to the user indicating that a new version is available.
     * This method is used by the synchronous check mechamism.
     */
    private static void showDownloadNowOrCancelAlert() {
        final AlertDialog alert = Platform.getPlatform().getAlertDialog();
        final int button = alert.showAlert(
            null, getUpdateIsAvailableMessage(),
            null, AlertDialog.WARNING_ALERT,
            LOCALE.get( "DownloadNowButton" ),
            LOCALE.get( "DownloadCancelButton" )
        );
View Full Code Here

Examples of com.lightcrafts.platform.AlertDialog.showAlert()

     * Shows an alert to the user indicating that a new version is available.
     * This method is used by the asynchronous check mechanism.
     */
    private static void showDownloadNowOrLaterAlert() {
        final AlertDialog alert = Platform.getPlatform().getAlertDialog();
        final int button = alert.showAlert(
            null, getUpdateIsAvailableMessage(),
            null, AlertDialog.WARNING_ALERT,
            LOCALE.get( "DownloadNowButton" ),
            LOCALE.get( "RemindMeLaterButton" ),
            LOCALE.get( "DontRemindMeButton" )
View Full Code Here

Examples of com.lightcrafts.platform.AlertDialog.showAlert()

    /**
     * Shows an alert to the user indicating that no update is available.
     */
    private static void showNoUpdateIsAvailableAlert() {
        final AlertDialog alert = Platform.getPlatform().getAlertDialog();
        alert.showAlert(
            null,
            LOCALE.get( "NoUpdateIsAvailableMessage" ), null,
            AlertDialog.WARNING_ALERT,
            LOCALE.get( "CheckForUpdateOKButton" )
        );
View Full Code Here

Examples of com.lightcrafts.platform.AlertDialog.showAlert()

                    );
                    if (check.isSelected()) {
                        prefs.putBoolean("AutoSave", true);
                        AlertDialog alert =
                            Platform.getPlatform().getAlertDialog();
                        alert.showAlert(
                            this,
                            LOCALE.get("AutoSaveOnMessageMajor"),
                            LOCALE.get("AutoSaveOnMessageMinor"),
                            AlertDialog.WARNING_ALERT,
                            LOCALE.get("AutoSaveOnButton")
View Full Code Here

Examples of com.lightcrafts.platform.AlertDialog.showAlert()

        file = chooser.openFile(
            "Display Color Profile", file, null, null
        );
        if (file != null) {
            if (! file.isFile()) {
                alert.showAlert(
                    null,
                    '\"' + file.getName() + "\" is not a file.",
                    "A color profile is a file, " +
                    "usually ending with \".icc\" or \".icm\".",
                    AlertDialog.WARNING_ALERT,
View Full Code Here

Examples of com.lightcrafts.platform.AlertDialog.showAlert()

            }
            try {
                ICC_Profile.getInstance(file.getAbsolutePath());
            }
            catch (IOException e) {
                alert.showAlert(
                    null,
                    '\"' + file.getName() + "\" could not be read.",
                    e.getClass().getName() + ": " + e.getMessage(),
                    AlertDialog.WARNING_ALERT,
                    "OK"
View Full Code Here

Examples of com.lightcrafts.platform.AlertDialog.showAlert()

                    "OK"
                );
                return;
            }
            catch (IllegalArgumentException e) {
                alert.showAlert(
                    null,
                    '\"' + file.getName() + "\" is not a valid color profile.",
                    e.getClass().getName() + ": " + e.getMessage(),
                    AlertDialog.WARNING_ALERT,
                    "OK"
View Full Code Here

Examples of com.lightcrafts.platform.AlertDialog.showAlert()

                return;
            }
            path = file.getAbsolutePath();
            text.setText(path);
            text.setEnabled(true);
            alert.showAlert(
                null,
                "Display color profile \"" + file.getName() + "\" accepted.",
                "You must now restart LightZone for your new display " +
                "profile to take effect.",
                AlertDialog.WARNING_ALERT,
View Full Code Here

Examples of com.lightcrafts.platform.AlertDialog.showAlert()

        public void actionPerformed(ActionEvent event) {
            Frame parent = (Frame) SwingUtilities.getAncestorOfClass(
                Frame.class, this
            );
            AlertDialog alert = Platform.getPlatform().getAlertDialog();
            int option = alert.showAlert(
                parent,
                LOCALE.get("BrowserCacheItemClearWarningMajor"),
                LOCALE.get("BrowserCacheItemClearWarningMinor"),
                AlertDialog.WARNING_ALERT,
                LOCALE.get( "BrowserCacheItemClearOption" ),
View Full Code Here

Examples of com.lightcrafts.platform.AlertDialog.showAlert()

                else {
                    throw new IOException("Global cache does not exist");
                }
            }
            catch (IOException e) {
                alert.showAlert(
                    parent,
                    LOCALE.get("BrowserCacheItemError"),
                    e.getMessage(),
                    AlertDialog.ERROR_ALERT,
                    new String[] { LOCALE.get("BrowserCacheItemErrorButton") }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.