::

interface XGraphicDevice

Methods' Summary
getBufferController Query the controller for multi buffering functionality on this graphic device. If there is no such functionality available, the NULL reference is returned.
getDeviceColorSpace Query the color space interface for this graphic device. This is to be used when interpreting or setting device color values.
getPhysicalResolution Query the physical resolution of the device in pixel per millimeter.
getSize Query the physical dimensions of the device in millimeter
createCompatibleBitmap Create a bitmap whose memory layout and sample model is compatible to the graphic device.
createVolatileBitmap Create a volatile bitmap that is usable with this graphic device.
hasFullScreenMode Tells whether this graphic device has a full screen mode, i.e. whether a window can cover the whole screen exclusively.
enterFullScreenMode Enter or leave the fullscreen mode, if possible. The return value denotes the success of the operation.
Methods' Details
getBufferController
XBufferController
getBufferController();
 
 

Description
Query the controller for multi buffering functionality on this graphic device. If there is no such functionality available, the NULL reference is returned.
getDeviceColorSpace
XColorSpace
getDeviceColorSpace();
 
 

Description
Query the color space interface for this graphic device. This is to be used when interpreting or setting device color values.
getPhysicalResolution
Size2D
getPhysicalResolution();
 
 

Description
Query the physical resolution of the device in pixel per millimeter.
getSize
Size2D
getSize();
 
 

Description
Query the physical dimensions of the device in millimeter
createCompatibleBitmap
XBitmap
createCompatibleBitmap();
 
 

Description
Create a bitmap whose memory layout and sample model is compatible to the graphic device.
createVolatileBitmap
XVolatileBitmap
createVolatileBitmap();
 
 

Description
Create a volatile bitmap that is usable with this graphic device.
hasFullScreenMode
boolean
hasFullScreenMode();
 
 

Description
Tells whether this graphic device has a full screen mode, i.e. whether a window can cover the whole screen exclusively.
enterFullScreenMode
boolean
enterFullScreenMode(
 
[in] boolean
 
bEnter );

Description
Enter or leave the fullscreen mode, if possible. The return value denotes the success of the operation.
Top of Page