:: 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.7 Office Development - OpenOffice.org Application Environment - Java Window Integration

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
[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
invalidates the whole window with the specified InvalidateStyle .
invalidateRect
[oneway] void
invalidateRect(
 
[in] Rectangle
[in] short
 
Rect,
Flags );

Description
invalidates a rectangular area of the window with the specified InvalidateStyle .
Top of Page