The GDI component provides abstract base classes that represent the graphics device and the context through which graphics and text can be drawn to it. The context maintains 'settings', such as the pen and brush colors and styles in use, and provides a rich API of drawing commands for creating graphical and textual output. The component also provides abstract device-independent APIs for a variety of graphics-related functions, such as for handling fonts, pictures and printers.
The API's embedding functionality provides a concept of a picture object, independent of whether it is a bitmap or drawing, and support for storing and restoring pictures. In device families that support document embedding, as defined in the Application Architecture Framework API, a picture is used to draw a representation of the embedded document's content (called a glass door). Rich text, as defined in the Text And Text Attributes API, can also contain pictures.
The API also provides printing to printer devices. Printing is treated as drawing to a graphics context, with the printer represented by a specialized graphics device. An application that supports printing should store its view data in (device-independent) twips, only converting into pixels when drawing to either the screen or a printer. Symbian can print to a range of printers, and has a framework for providing printer drivers. This API allows the installed drivers to be listed, and the appropriate one selected. UI variants may provide stock printing dialogs for users to initiate and control print jobs. It is normal for applications that provide printing to supply print job setup (from the Print Framework API) and their printing implementation (the band printing interface described below) to these dialogs, which can then use them as appropriate.
The Font and Bitmaps Server provides bitmap storage and bitmap fonts. The Window Server Client Side API extends the API's classes in turn for drawing in windows (the normal case). For some applications, this polymorphism can be important, as it allows shared code for screen drawing and printing.
Most drawing takes place within a control, as defined in the UI Control Framework. That API provides support functions for using graphics contexts.
Graphics device
A graphics device represents the medium being drawn to. It is the provider of graphics contexts through which drawing is done.
The base class for graphics devices
is CGraphicsDevice
. Concrete devices implement
derived classes.
Bitmap graphics device
This specializes a graphics
device (CGraphicsDevice
) for bitmaps graphics.
The abstract interface is defined by CBitmapDevice
. The Window
Server Client-Side API provides one implementation, CWsScreenDevice
, for screen drawing. The BitGDI component provides the CFbsBitmapDevice
implementation
for drawing to in-memory bitmaps and the CFbsScreenDevice
implementation, which is used (rarely) to access the screen directly,
without the mediation of the Window Server.
Graphics context
A graphics context provides a large number of drawing operations, with some state settings defining how the drawing is performed. The settings are:
a pen, for drawing shape outlines and text, with color, line size and style settings
a brush, for filling areas, with color, style and origin settings
for text, a current font and justification mode
a drawing mode, which controls how colors drawn interact with the screen color
a co-ordinate origin, typically the top left corner of the screen
an internal drawing position, for relative drawing operations
Operations include drawing shapes (points, lines, polylines, arcs, rectangles, polygons, ellipses, rounded rectangles and pie slices), text, and bitmaps.
The base class for graphics contexts is CGraphicsContext
. Concrete devices provide derived classes
that can provide additional operations suitable to the device.
Bitmap graphics context
This specializes a graphics
context (CGraphicsContext
) for bitmaps graphics.
It provides additional operations for clearing and copying rectangular
areas, and bitmap block transfer.
The abstract interface is
defined by CBitmapContext
. The Window Server Client-Side
API provides one implementation, CWindowGc
, used for screen drawing. The BitGDI component provides another implementation, CFbsBitGc
for
drawing to in-memory bitmaps.
Basic geometry classes
Point: a pair of (x,y) co-ordinates.
It is provided by TPoint
.
Size: a width
and height. It is provided by TSize
.
Rectangle:
described by the co-ordinates of its top-left and bottom-right corners,
or by its top-left hand corner and its size. It is provided by TRect
.
Region: defines an area made up of a collection
of rectangles. They are handled by a family of classes derived from TRegion
.
Color
A color is specified by a 24-bit color value.
The system then maps these values into device-level values. The color
class is TRgb
.
Units conversion and zooming
Graphics code can be
written in a device-independent way by handling lengths/positions
using twips (1/1440th inch), and only converting into pixels when
actually drawing. Graphic devices implement a twips/pixels mapping
interface for this conversion. The interface is defined by MGraphicsDeviceMap
.
You might want drawing code
to draw at different possible levels of magnification (zoom). In that
case, the mapping is performed by a TZoomFactor
, which also implements MGraphicsDeviceMap
.
Font specification
A font specification is used to specify a desired font in device-independent terms. This can include the typeface, font style (posture, weight, and position), and height.
It is provided by TFontSpec
. The font style
is provided by TFontStyle
.
Device-independent font interface
Applications obtain font objects from a graphics device by providing a font specification. The interface is device-independent, and is implemented by providers of fonts for particular devices.
The interface is CFont
. Obtained fonts can be cached for quick retrieval
through CFontCache
.
Typeface
A typeface is a group of related fonts of various sizes that share the same typeface name and typeface attributes (e.g. proportional/non-proportional, serif/sans-serif).
Typeface
information is encapsulated in a TTypefaceSupport
, including a TTypeface
class member.
Typeface store
A typeface store allows you to discover the typefaces provided by a graphics device.
A device-independent
interface is defined by CTypefaceStore
. The Font and Bitmap Server
component provides bitmap fonts and implements this interface
for bitmap devices.
Font tables and glyph outlines
An OpenType or TrueType font stores the font data in a list of
tables called font tables, such as the glyf
table
and head
table.
RFontTable and RGlyphOutlineIterator are client-side APIs to retrieve tables and glyph outlines respectively. The font tables and glyph outlines are cached in the shared heap of the Font and Bitmap Server for later access. Client applications (such as Qt) can use the retrieved information to detect the language support of a font, rasterize fonts or do contextual shaping for some scripts.
Picture
The picture interface defines a drawable item that can be stored and restored, and possibly cropped and scaled. Derived classes implement the interface for particular types of picture.
The interface is provided by CPicture
. The
capabilities class, TPictureCapability
, encapsulates
whether the picture supports cropping and scaling.
Picture header
When a picture is stored, a picture header must be as well. The header identifies (through a UID) which concrete picture class should be used to restore the picture's data, and how to access the picture's data (through a swizzle).
The picture header is provided by TPictureHeader
.
Picture factory
The picture factory is an abstract
interface for instantiating and restoring new CPicture
-derived objects. A concrete derived class creates pictures of one
or more specific types. Supplied with information from a picture header,
a picture factory creates an instance of the appropriate picture class,
and tells the instance to InternalizeL the picture data from the store.
The interface is provided by MPictureFactory
.
Printer model list
The printer model list gives the possible printers, obtained from the installed printer drivers. To create a printer device, a particular model must be chosen.
The printer model list is provided by CPrinterModelList
. An entry in the list is a TPrinterModelEntry
.
Printer device
This encapsulates the printer being used as a graphics device. Applications draw to this device to print their output. It has:
a page specification,
giving the page orientation and the size (TPageSpec
)
a printer control,
which controls the progress and termination of the print job (CPrinterControl
)
possibly, associated
custom print setup dialogs (base class CPrinterDriverUI
)
It is provided by CPrinterDevice
.
Printer port
Some printer models require a port to
be specified (e.g. file, serial, parallel). The base class for ports
is CPrinterPort
.
Band printing interface
Pages are printed in regions
of a page, called bands. An application implements the band printing
interface to draw the requested region to the printer device. The
class is MPageRegionPrinter
. The attributes of
the band to be printed are passed in a TBandAttributes
object.