struct WindowDescriptor in module com::sun::star::awt::

(Global Index)

Syntax

struct WindowDescriptor;

Description

describes a window.

Field Summary

Type specifies the type of window.

WindowServiceName specifies the name of the component service ("ListBox", "PushButton").

Parent specifies the parent of the component.

ParentIndex specifies the index of the parent window, if available.

Bounds specifies the position and size of the window.

WindowAttributes contains some of the WA_ * attributes.

Field Details



Type

Syntax

com::sun::star::awt::WindowClass Type;

Description

specifies the type of window.


WindowServiceName

Syntax

string WindowServiceName;

Description

specifies the name of the component service ("ListBox", "PushButton").

A zero length name means that the vcl creates a blank top, a container, or a simple window.


Parent

Syntax

com::sun::star::awt::XWindowPeer Parent;

Description

specifies the parent of the component.

If the Parent == 0 && ParentIndex == -1 , then the window is on the desktop.


ParentIndex

Syntax

short ParentIndex;

Description

specifies the index of the parent window, if available.

If Parent == 0 and this struct is a member of an array, then this is the offset from the beginning of the array to the parent. A value of -1 means desktop.


Bounds

Syntax

com::sun::star::awt::Rectangle Bounds;

Description

specifies the position and size of the window.

This member is ignored if the window attribute is WA_FULLSIZE.


WindowAttributes

Syntax

long WindowAttributes;

Description

contains some of the WA_ * attributes.

Top of Page