|
Eclipse Rich Ajax Platform | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.eclipse.swt.widgets.Dialog
public abstract class Dialog
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.
Note: The modality styles supported by this class
are 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.
Note: Only one of the styles APPLICATION_MODAL, PRIMARY_MODAL, and SYSTEM_MODAL may be specified.
Shell
Field Summary | |
---|---|
protected int |
returnCode
|
protected Shell |
shell
|
Constructor Summary | |
---|---|
Dialog(Shell parent)
Constructs a new instance of this class given only its parent. |
|
Dialog(Shell parent,
int style)
Constructs a new instance of this class given its parent and a style value describing its behavior and appearance. |
Method Summary | ||
---|---|---|
protected void |
checkOperationMode()
|
|
protected void |
checkSubclass()
|
|
|
getAdapter(java.lang.Class<T> adapter)
Implementation of the Adaptable interface. |
|
Shell |
getParent()
Returns the receiver's parent, which must be a Shell
or null. |
|
int |
getStyle()
Returns the receiver's style information. |
|
java.lang.String |
getText()
Returns the receiver's text, which is the string that the window manager will typically display as the receiver's title. |
|
protected void |
prepareOpen()
|
|
protected void |
runEventLoop(Shell shell)
|
|
void |
setText(java.lang.String string)
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 |
---|
protected Shell shell
protected int returnCode
Constructor Detail |
---|
public Dialog(Shell parent)
parent
- a shell which will be the parent of the new instance
java.lang.IllegalArgumentException
- SWTException
- public Dialog(Shell parent, int style)
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.
parent
- a shell which will be the parent of the new instancestyle
- the style of dialog to construct
java.lang.IllegalArgumentException
- SWTException
-
Method Detail |
---|
public Shell getParent()
Shell
or null.
SWTException
- public int getStyle()
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.
SWTException
- public java.lang.String getText()
SWTException
- public void setText(java.lang.String string)
string
- the new text
java.lang.IllegalArgumentException
- SWTException
- public <T> T getAdapter(java.lang.Class<T> adapter)
Adaptable
interface.
IMPORTANT: This method is not part of the RWT public API. It is marked public only so that it can be shared within the packages provided by RWT. It should never be accessed from application code.
getAdapter
in interface Adaptable
adapter
- the lookup class
null
if
there is no adapter associated with the given class.protected void prepareOpen()
protected void checkSubclass()
protected void checkOperationMode()
protected void runEventLoop(Shell shell)
|
Eclipse Rich Ajax Platform | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Copyright (c) EclipseSource and others 2002, 2012. All rights reserved.