constants group WindowAttribute in module com::sun::star::awt::

(Global Index)

Syntax

constants group WindowAttribute;

Description

These values are used to specify the decorations of a window.

Constants Summary

SHOW specifies that the window is initially visible.

FULLSIZE specifies that the window fills the complete desktop area.

OPTIMUMSIZE specifies that the window is optimum size.

MINSIZE specifies that the window is minimum size.

BORDER specifies that the window has visible borders.

SIZEABLE specifies that the size of the window can be changed by the user.

MOVEABLE specifies that the window can be moved by the user.

CLOSEABLE specifies that the window can be closed by the user.

SYSTEMDEPENDENT specifies that the window should support the XSystemDependentWindowPeer interface.

Field Details



SHOW

Syntax

const long  SHOW = 1;

Description

specifies that the window is initially visible.


FULLSIZE

Syntax

const long  FULLSIZE = 2;

Description

specifies that the window fills the complete desktop area.

This applies only to top windows.


OPTIMUMSIZE

Syntax

const long  OPTIMUMSIZE = 4;

Description

specifies that the window is optimum size.

This applies only to top windows.


MINSIZE

Syntax

const long  MINSIZE = 8;

Description

specifies that the window is minimum size.

This applies only to top windows.


BORDER

Syntax

const long  BORDER = 16;

Description

specifies that the window has visible borders.

This applies only to top windows.


SIZEABLE

Syntax

const long  SIZEABLE = 32;

Description

specifies that the size of the window can be changed by the user.

This applies only to top windows.


MOVEABLE

Syntax

const long  MOVEABLE = 64;

Description

specifies that the window can be moved by the user.

This applies only to top windows.


CLOSEABLE

Syntax

const long  CLOSEABLE = 128;

Description

specifies that the window can be closed by the user.

This applies only to top windows.


SYSTEMDEPENDENT

Syntax

const long  SYSTEMDEPENDENT = 256;

Description

specifies that the window should support the XSystemDependentWindowPeer interface.

This flag may be ignored, but in this case no system-dependent extension works.

See also

XSystemDependentWindowPeer

See also

SystemDependent
Top of Page