Symbian
Symbian Developer Library

SYMBIAN OS V9.4

Feedback

[Index] [Previous] [Next]


Bitmap devices and contexts

The Bitmaps API provides extensions for bitmap devices of the abstract drawing device and context interfaces defined in the Graphics API. The key interfaces defined by it, used for drawing on the screen, are in fact abstract: the window server provides concrete classes for on-screen drawing which derive from these interfaces. The concrete device and context classes that the API does provide are normally only used by applications to draw to in-memory bitmaps.

[Top]


Bitmap graphics context

CBitmapContext specialises a graphics context (CGraphicsContext) for bitmaps graphics. It provides extra functionality for:

The Window Server Client-Side API provides one implementation, CWindowGc, used for screen drawing. Another implementation, CFbsBitGc, is used for drawing to in-memory bitmaps.


[Top]


Bitmap graphics device

CBitmapDevice specialises a graphics device (CGraphicsDevice) for bitmaps graphics.

The Window Server Client-Side API provides one implementation, CWsScreenDevice, for screen drawing. Another implementation, CFbsBitmapDevice, is used for drawing to in-memory bitmaps. A third, CFbsScreenDevice, is used (rarely) to access the screen directly, without the mediation of the window server.



Screen Driver Information

The screen width and height must be a multiple of 4. In certain cases where the screen mode would result in a scanline (the scanline runs in the current horizontal direction of the screen) not being divisible by a whole word (32 bits) the screen width must also be a multiple of 16. This restriction will also apply to the height if there is a screen-size mode with a rotation of 90 or 270 (or both)

For example, the screen mode EGray4 is 2 bits per pixel, therefore one word would be 16 pixels, so in order for the scanline to be a whole number of words the width must be a multiple of 16.

The vertical height is unrestricted unless there is at least one screen-size mode with a rotation of 90 or 270 (or both).