MessageBox with Information Icon : MessageBox « SWT « Java Tutorial






MessageBox with Information Icon
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.MessageBox;
import org.eclipse.swt.widgets.Shell;

public class MessageBoxInformationIcon {
  public static void main(String[] args) {
    Display display = new Display();
    Shell shell = new Shell(display);

    int style = SWT.ICON_INFORMATION;
    
   
    MessageBox messageBox = new MessageBox(shell, style);
    messageBox.setMessage("Message");
    int rc = messageBox.open();

    switch (rc) {
    case SWT.OK:
      System.out.println("SWT.OK");
      break;
    case SWT.CANCEL:
      System.out.println("SWT.CANCEL");
      break;
    case SWT.YES:
      System.out.println("SWT.YES");
      break;
    case SWT.NO:
      System.out.println("SWT.NO");
      break;
    case SWT.RETRY:
      System.out.println("SWT.RETRY");
      break;
    case SWT.ABORT:
      System.out.println("SWT.ABORT");
      break;
    case SWT.IGNORE:
      System.out.println("SWT.IGNORE");
      break;
    }

    display.dispose();
  }
}








17.40.MessageBox
17.40.1.Displaying Messages
17.40.2.Displaying a Message Box
17.40.3.The Icon Styles for MessageBox
17.40.4.The Button Styles for MessageBox
17.40.5.A message box with the question icon, Yes/No button, and a simple questionA message box with the question icon, Yes/No button, and a simple question
17.40.6.MessageBox with Error IconMessageBox with Error Icon
17.40.7.MessageBox with Information Icon and OK Cancel ButtonMessageBox with Information Icon and OK Cancel Button
17.40.8.MessageBox with Information IconMessageBox with Information Icon
17.40.9.MessageBox with Question Icon and Yes No ButtonMessageBox with Question Icon and Yes No Button
17.40.10.MessageBox with Warning Icon and Yes No Cancel ButtonMessageBox with Warning Icon and Yes No Cancel Button
17.40.11.MessageBox with Working Icon and Abort Retry and Ignore ButtonMessageBox with Working Icon and Abort Retry and Ignore Button