interface XWindowPeer in module com::sun::star::awt::

(Global Index)

Syntax

interface XWindowPeer : com::sun::star::lang::XComponent ;

Description

gives access to the actual window implementation on the device.

Method Summary

getToolkit returns the vcl which created this object.

setPointer sets the mouse pointer.

setBackground sets the background color.

invalidate invalidated the whole window using an InvalidateStyle .

invalidateRect invalidated a rectangular area of the window using an InvalidateStyle .

Method Details



getToolkit

Syntax

com::sun::star::awt::XToolkit getToolkit ();

Description

returns the vcl which created this object.


setPointer

Syntax

oneway void setPointer (
com::sun::star::awt::XPointer Pointer );

Description

sets the mouse pointer.


setBackground

Syntax

oneway void setBackground (
long Color );

Description

sets the background color.


invalidate

Syntax

oneway void invalidate (
short Flags );

Description

invalidated the whole window using an InvalidateStyle .


invalidateRect

Syntax

oneway void invalidateRect (
com::sun::star::awt::Rectangle Rect,
short Flags );

Description

invalidated a rectangular area of the window using an InvalidateStyle .

Top of Page