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

interface XWindowPeer
Base Interfaces
XWindowPeer
┗ ::com::sun::star::lang::XComponent

::com::sun::star::lang::XComponent
(referenced interface's summary:)

Methods' Summary
getToolkit returns the toolkit which created this object.  
setPointer sets the mouse pointer.  
setBackground sets the background color.  
invalidate invalidates the whole window with the specified InvalidateStyle.  
invalidateRect invalidates a rectangular area of the window with the specified InvalidateStyle.  
Methods' Details
getToolkit
XToolkit
getToolkit();

Description
returns the toolkit which created this object.
setPointer
void
setPointer( [in] XPointer  Pointer );

Description
sets the mouse pointer.
setBackground
void
setBackground( [in] ::com::sun::star::util::Color  Color );

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

Description
invalidates the whole window with the specified InvalidateStyle.
Parameter Flags
see com.sun.star.awt.InvalidateStyle
invalidateRect
void
invalidateRect( [in] Rectangle  Rect,
[in] short  Flags );

Description
invalidates a rectangular area of the window with the specified InvalidateStyle.
Parameter Rect
the area to invalidate.
Parameter Flags
see com.sun.star.awt.InvalidateStyle
Top of Page