1 package net.suberic.pooka.gui; 2 import net.suberic.pooka.*; 3 4 public interface MessageUI extends UserProfileContainer, ErrorHandler, ActionContainer { 5 6 public void openMessageUI(); 7 8 public void closeMessageUI(); 9 10 public MessageProxy getMessageProxy(); 11 12 public String showInputDialog(String inputMessage, String title); 13 14 public String showInputDialog(Object [] inputPanels, String title); 15 16 public int showConfirmDialog(String message, String title, int optionType, int messageType); 17 18 public void showMessageDialog(String message, String title); 19 20 public net.suberic.util.swing.ProgressDialog createProgressDialog(int min, int max, int initialValue, String title, String content); 21 22 public void setBusy(boolean newValue); 23 24 public void setEnabled(boolean newValue); 25 26 public void refreshDisplay() throws javax.mail.MessagingException ; 27 28 31 public net.suberic.pooka.gui.crypto.CryptoStatusDisplay getCryptoStatusDisplay(); 32 33 34 } 35 | Popular Tags |