#include <gdi.h>
Link against: gdi.lib
class TPageSpec |
Public Attributes | |
---|---|
TPageOrientation | iOrientation |
TSize | iPortraitPageSize |
Public Member Enumerations | |
---|---|
enum | TPageOrientation { EPortrait, ELandscape } |
Public Member Functions | |
---|---|
TPageSpec() | |
TPageSpec(TPageOrientation, const TSize &) | |
IMPORT_C void | ExternalizeL(RWriteStream &) |
IMPORT_C void | InternalizeL(RReadStream &) |
IMPORT_C TSize | OrientedPageSize() |
IMPORT_C TBool | operator!=(const TPageSpec &) |
IMPORT_C TBool | operator==(const TPageSpec &) |
Page specification for a print operation.
TSize | iPortraitPageSize |
The width and height of the page in portrait orientation in twips or pixels.
Note that OrientedPageSize() returns the width and height in reverse order for a landscape portrait.
The available page orientations.
Enumerator | Value | Description |
---|---|---|
EPortrait |
Portrait page orientation | |
ELandscape |
Landscape page orientation |
IMPORT_C | TPageSpec | ( | ) |
Default constructor.
Initialises the page orientation to portrait and the page height and width to zero.
IMPORT_C | TPageSpec | ( | TPageOrientation | aOrientation, |
const TSize & | aSize | |||
) |
Constructor with page orientation and size.
Parameters | |
---|---|
aOrientation | Specifies the page orientation. |
aSize | Specifies the page size. |
IMPORT_C void | ExternalizeL | ( | RWriteStream & | aStream | ) | const |
Externalises the page specification object to a write stream.
The presence of this function means that the standard templated stream operator<<(), defined in s32strm.h, is available to externalise objects of this class.
Parameters | |
---|---|
aStream | The write stream. |
IMPORT_C void | InternalizeL | ( | RReadStream & | aStream | ) |
Internalises a page specification object from a read stream.
The presence of this function means that the standard templated stream operator>>(), defined in s32strm.h, is available to internalise objects of this class.
Parameters | |
---|---|
aStream | The read stream. |
IMPORT_C TSize | OrientedPageSize | ( | ) | const |
Gets the oriented page size.
The oriented page size is the absolute width and height of the page, respecting the page orientation.
Inequality operator.
This operator compares two page specifications for inequality. Two page specifications are unequal if one or both of their orientations and portrait page sizes differ.
Parameters | |
---|---|
aPageSpec | Page specification to be compared. |
Equality operator.
This operator compares page specifications for equality. Two page specifications are equal if both their orientations and portrait page sizes are equal.
Parameters | |
---|---|
aPageSpec | Page specification to be compared. |