org.eclipse.swt.widgets
Class Dialog

java.lang.Object
  |
  +--org.eclipse.swt.widgets.Dialog
Direct Known Subclasses:
ColorDialog, DirectoryDialog, FileDialog, FontDialog, MessageBox

public abstract class Dialog
extends Object

Unsafe: This class is the abstract superclass of the classes that represent the built in platform dialogs. A Dialog typically contains other widgets that are not accessible. A Dialog is not a Widget.

This class can also be used as the abstract superclass for user-designed dialogs. Such dialogs usually consist of a Shell with child widgets. The basic template for a user-defined dialog typically looks something like this:


 public class MyDialog extends Dialog {
	Object result;
		
	public MyDialog (Shell parent, int style) {
		super (parent, style);
	}
	public MyDialog (Shell parent) {
		this (parent, 0); // your default style bits go here (not the Shell's style bits)
	}
	public Object open () {
		Shell parent = getParent();
		Shell shell = new Shell(parent, SWT.DIALOG_TRIM | SWT.APPLICATION_MODAL);
		shell.setText(getText());
		// Your code goes here (widget creation, set result, etc).
		shell.open();
		Display display = parent.getDisplay();
		while (!shell.isDisposed()) {
			if (!display.readAndDispatch()) display.sleep();
		}
		return result;
	}
 }
 

Note: The modality styles supported by this class must be treated as HINTs, because not all are supported by every subclass on every platform. If a modality style is not supported, it is "upgraded" to a more restrictive modality style that is supported. For example, if PRIMARY_MODAL is not supported by a particular dialog, it would be upgraded to APPLICATION_MODAL. In addition, as is the case for shells, the window manager for the desktop on which the instance is visible has ultimate control over the appearance and behavior of the instance, including its modality.

Styles:
APPLICATION_MODAL, MODELESS, PRIMARY_MODAL, SYSTEM_MODAL
Events:
(none)

See Also:
Shell

Field Summary
(package private)  Shell parent
           
(package private)  int style
           
(package private)  String title
           
 
Constructor Summary
Dialog(Shell parent)
          Enabled: Constructs a new instance of this class given only its parent.
Dialog(Shell parent, int style)
          Enabled: Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.
 
Method Summary
(package private)  void checkParent(Shell parent)
          Throws an exception if the specified widget can not be used as a parent for the receiver.
protected  void checkSubclass()
          Checks that this class can be subclassed.
(package private)  void error(int code)
          Does whatever dialog specific cleanup is required, and then uses the code in SWTError.error to handle the error.
 Shell getParent()
          Suppressed: Returns the receiver's parent, which must be a Shell or null.
 int getStyle()
          Enabled: Returns the receiver's style information.
 String getText()
          Enabled: Returns the receiver's text, which is the string that the window manager will typically display as the receiver's title.
 void setText(String string)
          Enabled: Sets the receiver's text, which is the string that the window manager will typically display as the receiver's title, to the argument, which must not be null.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

style

int style

parent

Shell parent

title

String title
Constructor Detail

Dialog

public Dialog(Shell parent)
Enabled: Constructs a new instance of this class given only its parent.

Note: Currently, null can be passed in for the parent. This has the effect of creating the dialog on the currently active display if there is one. If there is no current display, the dialog is created on a "default" display. Passing in null as the parent is not considered to be good coding style, and may not be supported in a future release of SWT.

Parameters:
parent - a shell which will be the parent of the new instance

Dialog

public Dialog(Shell parent,
              int style)
Enabled: Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.

The style value is either one of the style constants defined in class SWT which is applicable to instances of this class, or must be built by bitwise OR'ing together (that is, using the int "|" operator) two or more of those SWT style constants. The class description lists the style constants that are applicable to the class. Style bits are also inherited from superclasses.

Note: Currently, null can be passed in for the parent. This has the effect of creating the dialog on the currently active display if there is one. If there is no current display, the dialog is created on a "default" display. Passing in null as the parent is not considered to be good coding style, and may not be supported in a future release of SWT.

Parameters:
parent - a shell which will be the parent of the new instance
Method Detail

checkSubclass

protected void checkSubclass()
Checks that this class can be subclassed.

IMPORTANT: See the comment in Widget.checkSubclass().

See Also:
Widget.checkSubclass()

checkParent

void checkParent(Shell parent)
Throws an exception if the specified widget can not be used as a parent for the receiver.


error

void error(int code)
Does whatever dialog specific cleanup is required, and then uses the code in SWTError.error to handle the error.

Parameters:
code - the descriptive error code
See Also:
SWTError#error

getParent

public Shell getParent()
Suppressed: Returns the receiver's parent, which must be a Shell or null.

Returns:
the receiver's parent

getStyle

public int getStyle()
Enabled: Returns the receiver's style information.

Note that, the value which is returned by this method may not match the value which was provided to the constructor when the receiver was created.

Returns:
the style bits

getText

public String getText()
Enabled: Returns the receiver's text, which is the string that the window manager will typically display as the receiver's title. If the text has not previously been set, returns an empty string.

Returns:
the text

setText

public void setText(String string)
Enabled: Sets the receiver's text, which is the string that the window manager will typically display as the receiver's title, to the argument, which must not be null.



comments?