Package org.rssowl.ui.internal.dialogs

Examples of org.rssowl.ui.internal.dialogs.CleanUpReminderDialog


            JobRunner.runSyncedInUIThread(shell, new Runnable() {
              public void run() {
                if (monitor.isCanceled() || Controller.getDefault().isShuttingDown())
                  return;

                CleanUpReminderDialog visibleInstance = CleanUpReminderDialog.getVisibleInstance();

                /* Shell is Minimized to Tray, reschedule shortly later */
                if (visibleInstance == null && !shell.isVisible())
                  needShortReschedule.set(true);

                /* Open Cleanup Reminder Dialog */
                else if (visibleInstance == null && new CleanUpReminderDialog(shell).open() == IDialogConstants.OK_ID) {
                  OwlUI.restoreWindow(shell);
                  new CleanUpAction().openWizard(shell);
                }
              }
            });
View Full Code Here

TOP

Related Classes of org.rssowl.ui.internal.dialogs.CleanUpReminderDialog

Copyright © 2018 www.massapicom. 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.