Top   Module   Use   Manual   Index 
 EXPORTING SERVICES | METHODS' SUMMARY | METHODS' DETAILS 

com :: sun :: star :: awt ::

interface XWindowPeer

Base Interface
com::sun::star::lang::XComponent

Description
gives access to the actual window implementation on the device.


Methods' 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 .

Methods' Details

getToolkit
 
com::sun::star::awt::XToolkit
getToolkit();
Description
returns the vcl which created this object.
setPointer
 
[ oneway ] void
setPointer(
[ in ] com::sun::star::awt::XPointer Pointer );

Description
sets the mouse pointer.
setBackground
 
[ oneway ] void
setBackground(
[ in ] long Color );

Description
sets the background color.
invalidate
 
[ oneway ] void
invalidate(
[ in ] short Flags );

Description
invalidated the whole window using an InvalidateStyle .
invalidateRect
 
[ oneway ] void
invalidateRect(
[ in ] com::sun::star::awt::Rectangle Rect,
[ in ] short Flags );

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

Top of Page