os/graphics/printingservices/printerdriversupport/inc/PDRSTORE.H
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#ifndef PDRSTORE_H
sl@0
    17
#define PDRSTORE_H
sl@0
    18
sl@0
    19
/** 
sl@0
    20
@file 
sl@0
    21
@publishedAll
sl@0
    22
@released
sl@0
    23
*/
sl@0
    24
sl@0
    25
#include <s32mem.h>
sl@0
    26
#include <gdi.h>
sl@0
    27
#include <fbs.h>
sl@0
    28
sl@0
    29
class CPdrControl;
sl@0
    30
class CStreamStore;
sl@0
    31
class CBandedDevice;
sl@0
    32
sl@0
    33
/** 
sl@0
    34
Codes used by printer drivers. 
sl@0
    35
*/
sl@0
    36
enum TFbsEncoding
sl@0
    37
	{
sl@0
    38
	/** No code. */
sl@0
    39
	EFbsNone = 0,
sl@0
    40
	/** Run length. */
sl@0
    41
	EFbsRunLength = 1,
sl@0
    42
	/** TIFF. */
sl@0
    43
	EFbsTIFF = 2,
sl@0
    44
	/** Delta row. */
sl@0
    45
	EFbsDeltaRow = 3,
sl@0
    46
	/** Reserved. */
sl@0
    47
	EFbsReserved = 4,
sl@0
    48
	/** Adaptive. */
sl@0
    49
	EFbsAdaptive = 5
sl@0
    50
	};
sl@0
    51
sl@0
    52
/**
sl@0
    53
Determines the raster mode used by printer drivers. 
sl@0
    54
*/
sl@0
    55
enum TFbsRasterGraphicsMode
sl@0
    56
	{
sl@0
    57
	/** Logical page orientation. */
sl@0
    58
	EFbsLogicalPageOrientation = 0,
sl@0
    59
	/** Physcial page orientation. */
sl@0
    60
	EFbsPhysicalPageOrientation = 3
sl@0
    61
	};
sl@0
    62
sl@0
    63
/**
sl@0
    64
Enumerates resources used by printer drivers. 
sl@0
    65
*/
sl@0
    66
enum TPdrResourceId  // Corresponds to IdentResource in PDRREADR.H
sl@0
    67
	{
sl@0
    68
	/** Reset. */
sl@0
    69
	EPdrReset,
sl@0
    70
	/** Set page size. */
sl@0
    71
	EPdrSetPageSize,
sl@0
    72
	/** Preamble. */
sl@0
    73
	EPdrPreAmble,
sl@0
    74
	/** Postamble. */
sl@0
    75
	EPdrPostAmble,
sl@0
    76
	/** Set text colour. */
sl@0
    77
	EPdrSetTextColor,
sl@0
    78
	/** Bold text. */
sl@0
    79
	EPdrBoldOn,
sl@0
    80
	/** Normal text weighting. */
sl@0
    81
	EPdrBoldOff,
sl@0
    82
	/** Italic text. */
sl@0
    83
	EPdrItalicOn,
sl@0
    84
	/** Normal text slant. */
sl@0
    85
	EPdrItalicOff,
sl@0
    86
	/** Underline text. */
sl@0
    87
	EPdrUnderlineOn,
sl@0
    88
	/** No text underline. */
sl@0
    89
	EPdrUnderlineOff,
sl@0
    90
	/** Strike through text. */
sl@0
    91
	EPdrStrikethroughOn,
sl@0
    92
	/** No text strike through. */
sl@0
    93
	EPdrStrikethroughOff,
sl@0
    94
	/** New page. */
sl@0
    95
	EPdrNewPage,
sl@0
    96
	/** Portrait view. */
sl@0
    97
	EPdrPortrait,
sl@0
    98
	/** Landscape view. */
sl@0
    99
	EPdrLandscape,
sl@0
   100
	/** Set the x-position of the printer head. */
sl@0
   101
	EPdrSetXPos,
sl@0
   102
	/** Set the y-position of the printer head. */
sl@0
   103
	EPdrSetYPos,
sl@0
   104
	/** Increment the x-position. */
sl@0
   105
	EPdrIncrementXPos,
sl@0
   106
	/** Increment the y-position. */
sl@0
   107
	EPdrIncrementYPos,
sl@0
   108
	/** Carriage return. */
sl@0
   109
	EPdrCarriageReturn,
sl@0
   110
	/** Set the graphics colour. */
sl@0
   111
	EPdrSetGraphicsColor,
sl@0
   112
	/** Starting position of bitmap. */
sl@0
   113
	EPdrBitmapStart,
sl@0
   114
	/** End position of bitmap. */
sl@0
   115
	EPdrBitmapEnd,
sl@0
   116
	/** Scan line. */
sl@0
   117
	EPdrScanLine,
sl@0
   118
	/** End of scan line. */
sl@0
   119
	EPdrEndScanLine, 
sl@0
   120
	/** Extra resource holder. */
sl@0
   121
	EPdrResource1,
sl@0
   122
	/** Extra resource holder. */
sl@0
   123
	EPdrResource2,
sl@0
   124
	/** Extra resource holder. */
sl@0
   125
	EPdrResource3,
sl@0
   126
	/** Extra resource holder. */
sl@0
   127
	EPdrResource4,
sl@0
   128
	/** Extra resource holder. */
sl@0
   129
	EPdrResource5,
sl@0
   130
	/** Extra resource holder. */
sl@0
   131
	EPdrResource6,
sl@0
   132
	/** Extra resource holder. */
sl@0
   133
	EPdrResource7,
sl@0
   134
	/** Extra resource holder. */
sl@0
   135
	EPdrResource8
sl@0
   136
	};
sl@0
   137
sl@0
   138
/**
sl@0
   139
Maximum length of a printer command string. 
sl@0
   140
*/
sl@0
   141
const TInt KMaxCommandStringLength = 0x40;
sl@0
   142
/**
sl@0
   143
Defines a command string used by printer drivers. 
sl@0
   144
*/
sl@0
   145
typedef TBuf8<KMaxCommandStringLength> TCommandString;
sl@0
   146
sl@0
   147
// Forward declarations
sl@0
   148
class CFontInfo;
sl@0
   149
class CPdrTranslates;
sl@0
   150
class CPdrDevice;
sl@0
   151
sl@0
   152
/** WARNING: Class for internal use ONLY.  Compatibility is not guaranteed in future releases.
sl@0
   153
 */
sl@0
   154
class CInfoFont : public CFont
sl@0
   155
	{
sl@0
   156
	friend class CPdrTypefaceStore;
sl@0
   157
public:
sl@0
   158
	// New functions
sl@0
   159
	IMPORT_C HBufC8* TranslateStringL(const TDesC& aString) const;
sl@0
   160
	IMPORT_C TPtrC8 CommandString() const;
sl@0
   161
	IMPORT_C TBool RepertoireContains(TChar aChar) const;
sl@0
   162
	IMPORT_C TBool AllCharsInFontRepertoire(const TDesC& aString, TInt& aFirstCharNotInRepertoire, TInt& aLength) const;
sl@0
   163
	inline CFontInfo* FontInfo() const {return iFontInfo;}
sl@0
   164
	CFont* RealFont() const;
sl@0
   165
private:
sl@0
   166
	CInfoFont(TInt aBaselineOffsetInPixels, const TFontSpec& aFontSpecInTwips, TInt aFontInfoHeightInTwips, TInt aHeightInPixels, CPdrTranslates* aTranslates, const TDesC8& aCommandString, CPdrDevice* aPdrDevice);
sl@0
   167
	~CInfoFont();
sl@0
   168
	TInt Width(TInt aNum) const;
sl@0
   169
	TInt Height(TInt aNum) const;
sl@0
   170
	void CreateBandedFontIfRequired();
sl@0
   171
	// From CFont
sl@0
   172
	IMPORT_C virtual TUid DoTypeUid() const;
sl@0
   173
	IMPORT_C virtual TInt DoHeightInPixels() const;
sl@0
   174
	IMPORT_C virtual TInt DoAscentInPixels() const;
sl@0
   175
	IMPORT_C virtual TInt DoCharWidthInPixels(TChar aChar) const;
sl@0
   176
	IMPORT_C virtual TInt DoTextWidthInPixels(const TDesC &aText) const;
sl@0
   177
	IMPORT_C virtual TInt DoBaselineOffsetInPixels() const;
sl@0
   178
	IMPORT_C virtual TInt DoTextCount(const TDesC &aText, TInt aWidthInPixels) const;
sl@0
   179
	IMPORT_C virtual TInt DoTextCount(const TDesC &aText, TInt aWidthInPixels, TInt &aExcessWidthInPixels) const;
sl@0
   180
	IMPORT_C virtual TInt DoMaxCharWidthInPixels() const;
sl@0
   181
	IMPORT_C virtual TInt DoMaxNormalCharWidthInPixels() const;
sl@0
   182
	IMPORT_C virtual TFontSpec DoFontSpecInTwips() const;
sl@0
   183
private:
sl@0
   184
    TCommandString iCommandString;
sl@0
   185
	TInt iBaselineOffsetInPixels;
sl@0
   186
	TFontSpec iFontSpecInTwips;
sl@0
   187
	TInt iFontInfoHeightInTwips;
sl@0
   188
	TInt iHeightInPixels;
sl@0
   189
	CFontInfo* iFontInfo;
sl@0
   190
	CPdrTranslates* iTranslates;
sl@0
   191
	CPdrDevice* iPdrDevice;
sl@0
   192
	CFont* iRealFont;
sl@0
   193
	};
sl@0
   194
sl@0
   195
sl@0
   196
class CPageBuffer : public CActive
sl@0
   197
	{
sl@0
   198
public:
sl@0
   199
	IMPORT_C static CPageBuffer* NewL(CPrinterPort* aPrinterPort);
sl@0
   200
	IMPORT_C static CPageBuffer* NewL(CPrinterPort* aPrinterPort, TInt aGranularity);
sl@0
   201
	IMPORT_C void StartFlush(TRequestStatus& aRequestStatus);
sl@0
   202
	IMPORT_C void AddBytesL(const TDesC8& aDes);
sl@0
   203
	IMPORT_C RWriteStream& CreateWriteStreamL();
sl@0
   204
	IMPORT_C void CloseWriteStream();
sl@0
   205
	IMPORT_C ~CPageBuffer();
sl@0
   206
	void DoCancel();
sl@0
   207
	void RunL();
sl@0
   208
private:
sl@0
   209
	void ConstructL();
sl@0
   210
	CPageBuffer(CPrinterPort* aPrinterPort, TInt aGranularity);
sl@0
   211
	void Queue();
sl@0
   212
private:
sl@0
   213
	
sl@0
   214
	TRequestStatus* iRequestStatus;
sl@0
   215
	
sl@0
   216
	TInt iWritePos;
sl@0
   217
	
sl@0
   218
	TInt iGranularity;
sl@0
   219
	
sl@0
   220
	CBufSeg* iBuffer;
sl@0
   221
	
sl@0
   222
	TPtr8 iPtr;
sl@0
   223
	
sl@0
   224
	CPrinterPort* iPrinterPort;
sl@0
   225
	
sl@0
   226
	RBufWriteStream iWriteStream;
sl@0
   227
	
sl@0
   228
	CBufSeg* iWriteStreamBuffer;
sl@0
   229
	};
sl@0
   230
sl@0
   231
sl@0
   232
/** WARNING: Class for internal use ONLY.  Compatibility is not guaranteed in future releases.
sl@0
   233
 */
sl@0
   234
class TTextFormat	
sl@0
   235
	{
sl@0
   236
public:
sl@0
   237
	IMPORT_C TTextFormat();
sl@0
   238
	IMPORT_C TTextFormat(const TFontUnderline anUnderlineStyle, const TFontStrikethrough aStrikethroughStyle, const TRgb& aColor, const TDesC8& aFontString, const TFontStyle& aFontStyle);
sl@0
   239
	IMPORT_C TBool operator == (const TTextFormat& aFormat) const;
sl@0
   240
public:
sl@0
   241
	
sl@0
   242
	TFontUnderline iUnderlineStyle;
sl@0
   243
	
sl@0
   244
	TFontStrikethrough iStrikethroughStyle;
sl@0
   245
	
sl@0
   246
	TRgb iColor;
sl@0
   247
	
sl@0
   248
	TCommandString iFontString;
sl@0
   249
	
sl@0
   250
	TFontStyle iFontStyle;
sl@0
   251
	};
sl@0
   252
sl@0
   253
sl@0
   254
// Forward declarations
sl@0
   255
class CPdrModelInfo;
sl@0
   256
class CPdrTypefaceStore;
sl@0
   257
sl@0
   258
/**
sl@0
   259
@see CFbsDrvDevice
sl@0
   260
*/
sl@0
   261
class CPdrDevice : public CPrinterDevice
sl@0
   262
	{
sl@0
   263
protected:
sl@0
   264
	IMPORT_C CPdrDevice();
sl@0
   265
public:
sl@0
   266
	IMPORT_C virtual ~CPdrDevice();
sl@0
   267
	IMPORT_C void SelectPageSpecInTwips(const TPageSpec& aPageSpec);
sl@0
   268
	IMPORT_C TDisplayMode DisplayMode() const;
sl@0
   269
	IMPORT_C TSize SizeInPixels() const;
sl@0
   270
	IMPORT_C TSize SizeInTwips() const;
sl@0
   271
	IMPORT_C TRect PrintablePageInPixels() const;
sl@0
   272
	IMPORT_C TInt HorizontalTwipsToPixels(TInt aTwips) const;
sl@0
   273
	IMPORT_C TInt VerticalTwipsToPixels(TInt aTwips) const;
sl@0
   274
	IMPORT_C TInt HorizontalPixelsToTwips(TInt aPixels) const;
sl@0
   275
	IMPORT_C TInt VerticalPixelsToTwips(TInt aPixels) const;
sl@0
   276
	IMPORT_C TInt GetNearestFontInTwips(CFont*& aFont, const TFontSpec& aFontSpec);
sl@0
   277
	IMPORT_C TInt GetNearestFontToDesignHeightInTwips(CFont *&aFont, const TFontSpec &aFontSpec);
sl@0
   278
	IMPORT_C TInt GetNearestFontToMaxHeightInTwips(CFont *&aFont, const TFontSpec &aFontSpec, TInt aMaxHeight);
sl@0
   279
	IMPORT_C TInt NumTypefaces() const;
sl@0
   280
	IMPORT_C void TypefaceSupport(TTypefaceSupport& aTypefaceSupport, TInt aTypefaceIndex) const;
sl@0
   281
	IMPORT_C TInt FontHeightInTwips(TInt aTypefaceIndex, TInt aHeightIndex) const;
sl@0
   282
	IMPORT_C void PaletteAttributes(TBool& aModifiable, TInt& aNumEntries) const;
sl@0
   283
	IMPORT_C void SetPalette(CPalette* aPalette);
sl@0
   284
	IMPORT_C TInt GetPalette(CPalette*& aPalette) const;
sl@0
   285
	IMPORT_C TPrinterModelEntry Model() const;
sl@0
   286
	IMPORT_C TInt Flags() const;
sl@0
   287
	IMPORT_C TInt SetModel(const TPrinterModelHeader& aModel, CStreamStore& aStore);
sl@0
   288
	IMPORT_C void ReleaseFont(CFont* aFont);
sl@0
   289
	IMPORT_C TPoint OffsetInPixels();
sl@0
   290
sl@0
   291
protected:
sl@0
   292
	IMPORT_C virtual TSize KPixelSizeInTwips() const;
sl@0
   293
private:
sl@0
   294
	void DoSetModelL();
sl@0
   295
protected:
sl@0
   296
	
sl@0
   297
	CStreamStore* iStore;
sl@0
   298
	
sl@0
   299
	TPrinterModelHeader iModel;
sl@0
   300
	
sl@0
   301
	CPdrModelInfo* iModelInfo;
sl@0
   302
	
sl@0
   303
	CPdrTypefaceStore* iTypefaceStore;
sl@0
   304
	}; 
sl@0
   305
sl@0
   306
sl@0
   307
//Forward declarations
sl@0
   308
class CPdrResources;
sl@0
   309
class CPageText;
sl@0
   310
sl@0
   311
class CPdrControl : public CPrinterControl
sl@0
   312
	{
sl@0
   313
public:
sl@0
   314
	IMPORT_C ~CPdrControl();
sl@0
   315
	IMPORT_C TInt CreateContext(CGraphicsContext*& aGC);
sl@0
   316
	IMPORT_C TInt BandsPerPage();
sl@0
   317
	IMPORT_C TMoreOnPage QueueGetBand(TRequestStatus& aStatus, TBandAttributes& aBand); // returns affirmative if more to print on current page
sl@0
   318
	IMPORT_C void QueueEndPrint(TRequestStatus& aStatus); // Called at finish to flush buffer, tidy up printer etc.
sl@0
   319
	IMPORT_C void AbortPrint(); // tidy up synchronously in a short time
sl@0
   320
	IMPORT_C virtual void DrawTextL(const TPoint& aPoint, const TFontUnderline aUnderlineStyle, const TFontStrikethrough aStrikethroughStyle, const TRgb& aColor, const CInfoFont* aFont, const TDesC& aString); 
sl@0
   321
	IMPORT_C TBool IsGraphicsBand() const;
sl@0
   322
	inline CBandedDevice* BandedDevice() const {return iBandedDevice;}
sl@0
   323
protected:
sl@0
   324
	IMPORT_C CPdrControl(CPdrDevice* aPdrDevice, CPrinterPort* aPrinterPort);
sl@0
   325
	IMPORT_C virtual void DoQueueGetBandL();
sl@0
   326
	IMPORT_C virtual void DoQueueEndPrintL();
sl@0
   327
	IMPORT_C void ConstructL(CStreamStore& aStore, TStreamId aStreamId);
sl@0
   328
sl@0
   329
	virtual void OutputBandL() = 0;
sl@0
   330
sl@0
   331
	IMPORT_C virtual void MoveToL(const TPoint& aPoint); 
sl@0
   332
	IMPORT_C virtual void MoveByL(const TPoint& aVector); 
sl@0
   333
	IMPORT_C virtual void OutputTextL(const TPoint& aPoint, TInt aWidthInPixels, const TTextFormat& aTextFormat, const TDesC8& aString); 
sl@0
   334
sl@0
   335
	IMPORT_C virtual void SetPageSizeL(); 
sl@0
   336
	IMPORT_C virtual void SetPageOrientationL();
sl@0
   337
	IMPORT_C virtual void SetFontPostureL(const TFontPosture aPosture);
sl@0
   338
	IMPORT_C virtual void SetFontStrokeWeightL(const TFontStrokeWeight aStrokeWeight);
sl@0
   339
	IMPORT_C virtual void SetTextColorL(const TRgb& aColor);
sl@0
   340
	IMPORT_C virtual void CommandL(const TInt anId);
sl@0
   341
sl@0
   342
	IMPORT_C TBool TransformBuffer(); // These two functions are not implemented anywhere
sl@0
   343
	IMPORT_C TBool CompressBuffer();  // for this class. Nor do I believe they are defined
sl@0
   344
									  // for a reason. But since they are part of the 
sl@0
   345
									  // existing interface of a DLL in a ROM I need to
sl@0
   346
									  // patch. They get to stay there for the moment. CJC
sl@0
   347
sl@0
   348
protected:
sl@0
   349
	
sl@0
   350
	CPdrDevice* iPdrDevice;
sl@0
   351
	
sl@0
   352
	CPageBuffer* iPageBuffer;
sl@0
   353
	
sl@0
   354
	CPdrResources* iResources;
sl@0
   355
	
sl@0
   356
	CBandedDevice* iBandedDevice;
sl@0
   357
	
sl@0
   358
	CPageText* iPageText;
sl@0
   359
	
sl@0
   360
	TInt iBandIndex;
sl@0
   361
	
sl@0
   362
	TInt iEntryIndex;
sl@0
   363
	
sl@0
   364
	TPoint iPosition;
sl@0
   365
	
sl@0
   366
	TTextFormat iTextFormat;
sl@0
   367
	};
sl@0
   368
sl@0
   369
sl@0
   370
class CFbsDrvDevice : public CPdrDevice
sl@0
   371
	{
sl@0
   372
public:
sl@0
   373
	IMPORT_C CFbsDrvDevice();
sl@0
   374
	IMPORT_C ~CFbsDrvDevice();
sl@0
   375
sl@0
   376
	IMPORT_C TInt GetNearestFontInTwips(CFont*& aFont, const TFontSpec& aFontSpec);
sl@0
   377
	IMPORT_C TInt GetNearestFontToDesignHeightInTwips(CFont *&aFont, const TFontSpec &aFontSpec);
sl@0
   378
	IMPORT_C void ReleaseFont(CFont* aFont);
sl@0
   379
	IMPORT_C TInt NumTypefaces() const;
sl@0
   380
	IMPORT_C void TypefaceSupport(TTypefaceSupport& aTypefaceSupport, TInt aTypefaceIndex) const;
sl@0
   381
	IMPORT_C TInt FontHeightInTwips(TInt aTypefaceIndex, TInt aHeightIndex) const;
sl@0
   382
sl@0
   383
	IMPORT_C TInt CreateContext(CGraphicsContext*& aGc);
sl@0
   384
	IMPORT_C void CreateControlL(CPrinterPort* aPrinterPort);
sl@0
   385
	IMPORT_C TInt SetModel(const TPrinterModelHeader& aModel, CStreamStore& aStore);
sl@0
   386
	IMPORT_C void LoadTypeFaceList();
sl@0
   387
	IMPORT_C TSize KPixelSizeInTwips() const;
sl@0
   388
	IMPORT_C void LoadTypeFaceListL();
sl@0
   389
	IMPORT_C TInt SetModelL(const TPrinterModelHeader& aModel, CStreamStore& aStore);
sl@0
   390
private:
sl@0
   391
// reserved virtual function space
sl@0
   392
	IMPORT_C virtual void Reserved_1();
sl@0
   393
sl@0
   394
protected:
sl@0
   395
	
sl@0
   396
	CFbsTypefaceStore* iFbsTypefaceStore;
sl@0
   397
	
sl@0
   398
	CArrayFixFlat<TInt>* iGenTypefaceFontsList;
sl@0
   399
	
sl@0
   400
	CArrayFixFlat<TInt>* iGenTypefaceFontsType;
sl@0
   401
	
sl@0
   402
	TInt iFbsTypefaceCount;
sl@0
   403
	
sl@0
   404
	TInt iPdrTypefaceCount;
sl@0
   405
sl@0
   406
private:
sl@0
   407
	
sl@0
   408
	TAny* iReserved;
sl@0
   409
	};
sl@0
   410
sl@0
   411
sl@0
   412
class CFbsDrvControl : public CPdrControl
sl@0
   413
	{
sl@0
   414
public:
sl@0
   415
	IMPORT_C static CFbsDrvControl* NewL(CPdrDevice* aPdrDevice, CPrinterPort* aPrinterPort, CStreamStore& aStore, TStreamId aResourcesStreamId);
sl@0
   416
	IMPORT_C ~CFbsDrvControl();
sl@0
   417
sl@0
   418
protected:
sl@0
   419
	IMPORT_C virtual void OutputBandL();
sl@0
   420
sl@0
   421
	IMPORT_C CFbsDrvControl(CPdrDevice* aPdrDevice, CPrinterPort* aPrinterPort);
sl@0
   422
	IMPORT_C void ConstructL(CStreamStore& aStore, TStreamId aResourcesStreamId);
sl@0
   423
	IMPORT_C void SetPageSizeL();
sl@0
   424
sl@0
   425
	IMPORT_C TBool TransformBuffer();
sl@0
   426
	IMPORT_C TBool CompressBuffer();
sl@0
   427
sl@0
   428
private:
sl@0
   429
// reserved virtual function space
sl@0
   430
	IMPORT_C virtual void Reserved_1();
sl@0
   431
		
sl@0
   432
protected:
sl@0
   433
	
sl@0
   434
	HBufC8* iScanLine;
sl@0
   435
	
sl@0
   436
	HBufC8* iCompressedScanLine;
sl@0
   437
sl@0
   438
private:
sl@0
   439
	
sl@0
   440
	TAny* iReserved;
sl@0
   441
	};
sl@0
   442
sl@0
   443
#endif