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

interface XToolkit
Base Interfaces
::com::sun::star::uno::XInterface
  |  
  +--XToolkit
::com::sun::star::uno::XInterface
(referenced interface's summary:)
base interface of all UNO interfaces
Description
specifies a factory interface for the window toolkit.

This is similar to the abstract window toolkit (AWT) in Java.

Developers Guide
6.1.7 Office Development - OpenOffice.org Application Environment - Java Window Integration

Methods' Summary
getDesktopWindow returns the desktop window.  
getWorkArea returns the complete work area for this toolkit.  
createWindow creates a new window using the given descriptor.  
createWindows returns a sequence of windows which are newly created using the given descriptors.  
createScreenCompatibleDevice creates a virtual device that is compatible with the screen.  
createRegion creates a region.  
Methods' Details
getDesktopWindow
::com::sun::star::awt::XWindowPeer
getDesktopWindow();

Description
returns the desktop window.
getWorkArea
::com::sun::star::awt::Rectangle
getWorkArea();

Description
returns the complete work area for this toolkit.
createWindow
::com::sun::star::awt::XWindowPeer
createWindow( [in] ::com::sun::star::awt::WindowDescriptor  Descriptor )
raises( ::com::sun::star::lang::IllegalArgumentException );

Description
creates a new window using the given descriptor.
createWindows
sequence< ::com::sun::star::awt::XWindowPeer >
createWindows( [in] sequence< ::com::sun::star::awt::WindowDescriptor >  Descriptors )
raises( ::com::sun::star::lang::IllegalArgumentException );

Description
returns a sequence of windows which are newly created using the given descriptors.
createScreenCompatibleDevice
::com::sun::star::awt::XDevice
createScreenCompatibleDevice( [in] long  Width,
[in] long  Height );

Description
creates a virtual device that is compatible with the screen.
createRegion
::com::sun::star::awt::XRegion
createRegion();

Description
creates a region.
Top of Page