FileDocCategorySizeDatePackage
CreationParams.javaAPI DocAndroid 1.5 API3680Wed May 06 22:41:54 BST 2009org.apache.harmony.awt.wtk

CreationParams

public class CreationParams extends Object
This class describes cross-platform NativeWindow creation params See also WindowFactory.createWindow

Fields Summary
public final long
MAXIMIZED_VERT
Initial state is maximized verticaly
public final long
MAXIMIZED_HORIZ
Initial state is maximized horizontaly
public final long
MAXIMIZED
Initial state is maximized both horizontaly and verticaly
public static final int
DECOR_TYPE_FRAME
The top-level window that has all possible decorations, has no owner and is displayed in taskbar
public static final int
DECOR_TYPE_DIALOG
The dialog window
public static final int
DECOR_TYPE_POPUP
The transient undecorated pop-up window
public static final int
DECOR_TYPE_UNDECOR
The undecoraded pop-up window
public static final int
DECOR_TYPE_NONE
Non-MDI child window
public int
x
Initial x.
public int
y
Initial y.
public int
w
Initial width.
public int
h
Initial height.
public int
decorType
The decoration type of the top-level window. The possible values are: DECOR_TYPE_FRAME, DECOR_TYPE_DIALOG, DECOR_TYPE_POPUP and DECOR_TYPE_UNDECOR
public boolean
child
Window is child of parent, otherwise it's toplevel(child of desktop) window owned by parent.
public boolean
resizable
Window is resizable
public boolean
undecorated
The window has no decorations
public boolean
visible
Initial visibility state.
public boolean
topmost
Window is ALWAYS topmost in Z order.
public boolean
disabled
Window is disabled.
public boolean
iconified
Window initially iconified.
public int
maximizedState
Bitwise OR of MAXIMIZED_* constants. Means if window is initially maximized.
public boolean
locationByPlatform
Tells that window position should be determined by native windowing system
public long
parentId
Id of parent or owner window, see child field For non-child window without owner equals 0.
public String
name
Name wich is displayed on titlebar, taskbar and visible for system requests.
Constructors Summary
Methods Summary