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

interface XWindowPeer
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-::com::sun::star::lang::XComponent
    |
    +-XWindowPeer
Description
gives access to the actual window implementation on the device.
Developers Guide
16.2.2 Office Bean - Overview of the OfficeBean API - OfficeWindow Interface
6.1.1 Office Development - OpenOffice.org Application Environment - Overview - Framework API - Windows
6.1.3 Office Development - OpenOffice.org Application Environment - Using the Component Framework - Window Interfaces
6.1.8 Office Development - OpenOffice.org Application Environment - Java Window Integration

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
XToolkit
getToolkit();
 
 

Description
returns the vcl which created this object.
setPointer
[oneway] void
setPointer(
 
[in] 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] Rectangle
[in] short
 
Rect,
Flags );

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