os/graphics/fbs/fontandbitmapserver/inc/FBS.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) 1995-2010 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 __FBS_H__
sl@0
    17
#define __FBS_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
#include <e32std.h>
sl@0
    25
#include <gdi.h>
sl@0
    26
#include <fntstore.h>
sl@0
    27
#include <bitmap.h>
sl@0
    28
#include <graphics/fbsdefs.h>
sl@0
    29
sl@0
    30
/**
sl@0
    31
@publishedAll
sl@0
    32
@released
sl@0
    33
 */
sl@0
    34
const TUid KCFbsFontUid = { 268435518 };
sl@0
    35
sl@0
    36
/**
sl@0
    37
Indicates version of the font and bitmap server without heap locking.
sl@0
    38
@publishedAll
sl@0
    39
@released
sl@0
    40
*/
sl@0
    41
#define SYMBIAN_FBSERV_V2
sl@0
    42
sl@0
    43
/**
sl@0
    44
Indicates version of FBS that provides the CFbsFont extension 
sl@0
    45
interfaces RFbsGlyphDataIterator for using hardware glyphs, and
sl@0
    46
RFbsGlyphMetricsArray.
sl@0
    47
@publishedAll
sl@0
    48
@prototype
sl@0
    49
*/
sl@0
    50
//#define SYMBIAN_FBSERV_GLYPHDATA
sl@0
    51
sl@0
    52
/** 
sl@0
    53
Character width and adjustment information. 
sl@0
    54
@publishedAll
sl@0
    55
@released
sl@0
    56
*/
sl@0
    57
class SCharWidth
sl@0
    58
	{
sl@0
    59
public:
sl@0
    60
	/** The left adjust of the character. */
sl@0
    61
	TInt iLeftAdjust;
sl@0
    62
	/** The right adjust of the character. */
sl@0
    63
	TInt iRightAdjust;
sl@0
    64
	/** The total width of the character, defined as iLeftAdjust + iWidth + iRightAdjust. */
sl@0
    65
	TInt iMove;
sl@0
    66
	/** The width of the character. */
sl@0
    67
	TInt iWidth;
sl@0
    68
	};
sl@0
    69
sl@0
    70
class CFbsRalCache;
sl@0
    71
class CFbsSessionHelper;
sl@0
    72
class CFbsRasterizer;
sl@0
    73
class TGlyphCacheMetrics;
sl@0
    74
class TFbsOogmMessage;
sl@0
    75
sl@0
    76
/** 
sl@0
    77
A session with the font and bitmap server. 
sl@0
    78
@publishedAll 
sl@0
    79
@released
sl@0
    80
*/
sl@0
    81
class RFbsSession : protected RSessionBase
sl@0
    82
	{
sl@0
    83
	// Allow access to internals for test
sl@0
    84
	friend class RClean;
sl@0
    85
	friend class TestFbs;
sl@0
    86
	friend class CTBitmap;
sl@0
    87
	friend class CTClean;
sl@0
    88
	friend class CTFbs;
sl@0
    89
	
sl@0
    90
	friend class CFbsBitmap;
sl@0
    91
	friend class CFbsBitmapAsyncStreamer;
sl@0
    92
public:
sl@0
    93
	IMPORT_C RFbsSession();
sl@0
    94
	IMPORT_C static TInt Connect();
sl@0
    95
	IMPORT_C static TInt Connect(RFs& aFileServer);
sl@0
    96
	IMPORT_C static void Disconnect();
sl@0
    97
	IMPORT_C static RFbsSession* GetSession();
sl@0
    98
	IMPORT_C void CallBack();
sl@0
    99
	IMPORT_C void SetCallBack(TCallBack aCallBack);
sl@0
   100
	IMPORT_C void ResetCallBack();
sl@0
   101
	IMPORT_C TInt ResourceCount();
sl@0
   102
	IMPORT_C TInt SendCommand(TInt aMessage,TInt aInt0=0,TInt aInt1=0,TInt aInt2=0,TInt aInt3=0) const;
sl@0
   103
	TInt SendCommand(TInt aMessage, const TIpcArgs& aArgs) const;
sl@0
   104
	void SendCommand(TInt aMessage, const TIpcArgs& aArgs, TRequestStatus &aStatus) const;
sl@0
   105
	IMPORT_C TVersion Version();
sl@0
   106
	IMPORT_C TUint8* HeapBase() const;
sl@0
   107
	IMPORT_C TInt GetHeapSizes(TInt& aDefaultHeap, TInt& aSmallBmpHeap, TInt& aBigBmpChunk);
sl@0
   108
	TInt SessionHandle() const { return Handle(); }
sl@0
   109
	TInt AllocScanLineBuffer(TInt aSize);
sl@0
   110
	HBufC8* GetScanLineBuffer();
sl@0
   111
	void SetCallBackPtr(TInt* aBitmapHandle)const;
sl@0
   112
	HBufC8* GetDecompressionBuffer(TInt aSize);
sl@0
   113
	HBufC8* GetExtraBuffer(TInt aSize);
sl@0
   114
    TInt ServerSessionHandle() const;
sl@0
   115
    IMPORT_C TInt GetGlyphCacheMetrics(TGlyphCacheMetrics& aGlyphCacheMetrics);
sl@0
   116
    IMPORT_C TInt ConveyOogmMessage( TFbsOogmMessage& aOogmMessage );
sl@0
   117
sl@0
   118
public:
sl@0
   119
	/** WARNING: For internal use ONLY.  Compatibility is not guaranteed in future releases.	 
sl@0
   120
	Used for testing server side out of memory failures.	
sl@0
   121
	@test
sl@0
   122
	*/
sl@0
   123
	enum THeapFailType
sl@0
   124
		{
sl@0
   125
		EHeapFailTypeServerMemory,
sl@0
   126
		EHeapFailTypeHeapMemory,
sl@0
   127
		};
sl@0
   128
private:
sl@0
   129
	TBool LookupBitmapInROM(const TDesC& aFilename, TAny*& aAddr);
sl@0
   130
	RFs& FileServer() { return *((RFs*)iSpare); }
sl@0
   131
	static TInt DoAlloc(RFbsSession*& aNewSession);
sl@0
   132
	TInt DoConnect(RFs& aFileServer);
sl@0
   133
private:
sl@0
   134
	TInt iConnections;
sl@0
   135
	mutable TCallBack iCallBack;
sl@0
   136
	RChunk iSharedChunk;
sl@0
   137
	CFbsSessionHelper* iHelper;
sl@0
   138
	RChunk iLargeBitmapChunk;
sl@0
   139
	RFs iFileServer;
sl@0
   140
	CFbsRalCache* iRomFileAddrCache;
sl@0
   141
	HBufC8* iDecompressionBuffer;
sl@0
   142
	HBufC8* iScanLineBuffer;	
sl@0
   143
	TUint32* iSpare;
sl@0
   144
	};
sl@0
   145
sl@0
   146
/** forward declaration of some private classes. */
sl@0
   147
class TGetFontTableParam;
sl@0
   148
class TReleaseGlyphOutlineParam;
sl@0
   149
class TGetGlyphOutlineParam;
sl@0
   150
sl@0
   151
sl@0
   152
/** 
sl@0
   153
Font managed by the font and bitmap server.
sl@0
   154
CFbsFont objects are used for screen and off-screen bitmap fonts. They are 
sl@0
   155
usually obtained by calls to the CBitmapDevice::GetNearestFontInPixels() and 
sl@0
   156
MGraphicsDeviceMap::GetNearestFontInTwips() functions.
sl@0
   157
The class implements a number of functions inherited from CFont.
sl@0
   158
@see CBitmapDevice::GetNearestFontInPixels()
sl@0
   159
@see MGraphicsDeviceMap::GetNearestFontInTwips() 
sl@0
   160
@publishedAll 
sl@0
   161
@released
sl@0
   162
*/
sl@0
   163
class CFbsFont: public CFont
sl@0
   164
	{
sl@0
   165
	friend class CFbsTypefaceStore;
sl@0
   166
	friend class RFbsGlyphDataIterator;
sl@0
   167
	friend class RFbsGlyphMetricsArray;
sl@0
   168
sl@0
   169
private:
sl@0
   170
	// From CFont
sl@0
   171
	/** Gets the font's UID. 
sl@0
   172
	All CFbsFont objects have the constant UID KCFbsFontUid. It is safe to cast 
sl@0
   173
	from CFont* to CFbsFont* if CFont::TypeUid() returns KCFbsFontUid.
sl@0
   174
	@return The font's UID. This should be KCFbsFontUid. 
sl@0
   175
	@see CFont::TypeUid() */
sl@0
   176
	virtual TUid DoTypeUid() const { return KCFbsFontUid; }
sl@0
   177
	IMPORT_C virtual TInt DoHeightInPixels() const;
sl@0
   178
	IMPORT_C virtual TInt DoAscentInPixels() const;
sl@0
   179
	IMPORT_C virtual TInt DoCharWidthInPixels(TChar aChar) const;
sl@0
   180
	IMPORT_C virtual TInt DoTextWidthInPixels(const TDesC& aText) const;
sl@0
   181
	IMPORT_C virtual TInt DoBaselineOffsetInPixels() const;
sl@0
   182
	IMPORT_C virtual TInt DoTextCount(const TDesC& aText,TInt aWidthInPixels) const;
sl@0
   183
	IMPORT_C virtual TInt DoTextCount(const TDesC& aText,TInt aWidthInPixels,TInt& aExcessWidthInPixels) const;
sl@0
   184
	IMPORT_C virtual TInt DoMaxCharWidthInPixels() const;
sl@0
   185
	IMPORT_C virtual TInt DoMaxNormalCharWidthInPixels() const;
sl@0
   186
	IMPORT_C virtual TFontSpec DoFontSpecInTwips() const;
sl@0
   187
	IMPORT_C virtual CFont::TCharacterDataAvailability DoGetCharacterData(TUint aCode, TOpenFontCharMetrics& aMetrics,
sl@0
   188
		const TUint8*& aBitmap, TSize& aBitmapSize) const;
sl@0
   189
	IMPORT_C virtual TInt DoExtendedFunction(TUid aFunctionId, TAny* aParam = NULL) const;
sl@0
   190
sl@0
   191
public:
sl@0
   192
	// New functions
sl@0
   193
	IMPORT_C TBool GetFontMetrics(TOpenFontMetrics& aMetrics) const;
sl@0
   194
	IMPORT_C TInt TextWidthInPixels(const TDesC& aText) const;
sl@0
   195
	IMPORT_C void TextWidthInPixels(const TDesC& aText,SCharWidth& aCharWidth) const;
sl@0
   196
	IMPORT_C TInt Handle() const;
sl@0
   197
	IMPORT_C TCharacterMetrics CharacterMetrics(TInt aCode,const TUint8*& aBytes) const;
sl@0
   198
	IMPORT_C TInt RawTextWidthInPixels(const TDesC& aText) const;
sl@0
   199
	IMPORT_C TBool GetFaceAttrib(TOpenFontFaceAttrib& aAttrib) const;
sl@0
   200
	IMPORT_C TBool IsOpenFont() const;
sl@0
   201
	IMPORT_C TBool HasCharacter(TInt aCode) const;
sl@0
   202
	IMPORT_C TInt TextWidthInPixels(const TDesC& aText,const TMeasureTextInput* aParam) const;
sl@0
   203
	IMPORT_C void TextWidthInPixels(const TDesC& aText,const TMeasureTextInput* aParam,SCharWidth& aCharWidth) const;
sl@0
   204
sl@0
   205
sl@0
   206
protected:
sl@0
   207
	IMPORT_C CFbsFont();
sl@0
   208
	IMPORT_C ~CFbsFont();
sl@0
   209
	IMPORT_C CFbsFont(const CFbsFont& aFont);
sl@0
   210
	IMPORT_C CBitmapFont* Address() const;
sl@0
   211
	IMPORT_C TInt Duplicate(TInt aHandle);
sl@0
   212
	IMPORT_C void Reset();
sl@0
   213
	
sl@0
   214
private:
sl@0
   215
	TInt DoFontGetShaping(TFontShapeFunctionParameters* aParam) const;
sl@0
   216
	TInt DoFontDeleteShaping(TFontShapeDeleteFunctionParameters* aParam) const;
sl@0
   217
	TInt DoTextWidthInPixels(const TDesC& aText,const TMeasureTextInput* aParam) const;
sl@0
   218
	TInt DoGetFontTable(TGetFontTableParam * aParam) const;
sl@0
   219
	TInt DoGetGlyphOutline(TGetGlyphOutlineParam *aParam) const;
sl@0
   220
	TInt DoReleaseGlyphOutline(TReleaseGlyphOutlineParam *aParam) const;
sl@0
   221
	TInt DoReleaseFontTable(TUint32 *aParam) const;
sl@0
   222
sl@0
   223
protected:
sl@0
   224
	RFbsSession* iFbs;
sl@0
   225
	CBitmapFont* iAddressPointer;
sl@0
   226
	TInt iHandle;
sl@0
   227
    TInt iServerHandle;
sl@0
   228
	};
sl@0
   229
sl@0
   230
/**
sl@0
   231
An interface for initialization of extended bitmaps. By implementing this interface, 
sl@0
   232
creators of extended bitmaps can set the contents of an extended bitmap without 
sl@0
   233
allocating a temporary buffer and avoid unnecessary memory copying during calls to 
sl@0
   234
CFbsBitmap::CreateExtendedBitmap().
sl@0
   235
sl@0
   236
WARNING: Class for internal and partner use ONLY.  Compatibility is not guaranteed in future releases.
sl@0
   237
sl@0
   238
@publishedAll
sl@0
   239
@see CFbsBitmap::CreateExtendedBitmap()
sl@0
   240
*/
sl@0
   241
class MFbsExtendedBitmapInitializer
sl@0
   242
	{
sl@0
   243
public:
sl@0
   244
	/**
sl@0
   245
	Initializes the raw data of an extended bitmap.
sl@0
   246
	@param aData A pointer to the raw data to be initialized.
sl@0
   247
	@param aDataSize The size in bytes of the raw data to be initialized.
sl@0
   248
	@return KErrNone if successful, otherwise another of the system-wide error codes.
sl@0
   249
	*/
sl@0
   250
	virtual TInt InitExtendedBitmap(TAny* aData, TInt aDataSize) = 0;
sl@0
   251
	};
sl@0
   252
sl@0
   253
class CDirectFileStore;
sl@0
   254
sl@0
   255
/** 
sl@0
   256
Note that this class is not intended for user derivation.
sl@0
   257
A bitmap managed by the font and bitmap server.
sl@0
   258
The class also defines some palette functionality which is not yet 
sl@0
   259
implemented, since none of the modes currently supported by screen 
sl@0
   260
or bitmaps require variable palettes.
sl@0
   261
Note that the CFbsBitmap format is internal to Symbian, but the 
sl@0
   262
Image Converter API can be used to convert such bitmaps to standard formats. 
sl@0
   263
CFbsBitmap instances cannot be shared between different threads. They use some shared
sl@0
   264
thread local storage data. If you want to share a bitmap between threads, use Duplicate().
sl@0
   265
@publishedAll 
sl@0
   266
@released
sl@0
   267
@see CFbsBitmap::Duplicate()
sl@0
   268
*/
sl@0
   269
class CFbsBitmap : public CBase
sl@0
   270
	{
sl@0
   271
	friend class TBitmapUtil;
sl@0
   272
	friend class CBitwiseBitmap;
sl@0
   273
	friend class CFbsBitmapAsyncStreamer;
sl@0
   274
	friend class CFbsSessionHelper;
sl@0
   275
public:
sl@0
   276
	IMPORT_C CFbsBitmap();
sl@0
   277
	IMPORT_C ~CFbsBitmap();
sl@0
   278
	IMPORT_C void Reset();
sl@0
   279
	IMPORT_C static TInt ScanLineLength(TInt aLength,TDisplayMode aDispMode);
sl@0
   280
	IMPORT_C TDisplayMode DisplayMode() const;
sl@0
   281
	IMPORT_C TDisplayMode InitialDisplayMode() const;
sl@0
   282
	IMPORT_C TInt SetDisplayMode(TDisplayMode aDisplayMode);
sl@0
   283
	IMPORT_C TInt Create(const TSize& aSizeInPixels,TDisplayMode aDispMode);
sl@0
   284
	IMPORT_C TInt Duplicate(TInt aHandle);
sl@0
   285
	IMPORT_C TBool IsRomBitmap() const;
sl@0
   286
	IMPORT_C void SetRomBitmapL(CBitwiseBitmap* aRomBitmapPointer,TInt& aBitmapSizeInBytes);
sl@0
   287
	IMPORT_C TInt Load(const TDesC& aFileName,TInt32 aId=0,TBool aShareIfLoaded=ETrue);
sl@0
   288
	IMPORT_C TInt Load(const TDesC& aFileName,TInt32 aId,TBool aShareIfLoaded,TUint aFileOffset);
sl@0
   289
	IMPORT_C TInt LoadAndCompress(const TDesC& aFileName,TInt32 aId=0,TBool aShareIfLoaded=ETrue);
sl@0
   290
	IMPORT_C TInt LoadAndCompress(const TDesC& aFileName,TInt32 aId,TBool aShareIfLoaded,TUint aFileOffset);
sl@0
   291
	IMPORT_C TInt Load(RFile& aFile,TInt32 aId=0,TBool aShareIfLoaded=ETrue);
sl@0
   292
	IMPORT_C TInt Load(RFile& aFile,TInt32 aId,TBool aShareIfLoaded,TUint aFileOffset);		
sl@0
   293
	IMPORT_C TInt LoadAndCompress(RFile& aFile,TInt32 aId=0,TBool aShareIfLoaded=ETrue);	
sl@0
   294
	IMPORT_C TInt LoadAndCompress(RFile& aFile,TInt32 aId,TBool aShareIfLoaded,TUint aFileOffset);	
sl@0
   295
	IMPORT_C TInt Save(const TDesC& aFilename);
sl@0
   296
	IMPORT_C TInt Save(RFile& aFile);
sl@0
   297
	IMPORT_C static void StoreL(const TDesC& aFilename,TInt aNumSources,const TDesC* aSources[],TInt32 aSourceIds[]);
sl@0
   298
	IMPORT_C static void StoreL(RFile& aFile,TInt aNumSources,const TDesC* aSources[],TInt32 aSourceIds[]);
sl@0
   299
    IMPORT_C void GetScanLine(TDes8& aBuf,const TPoint& aPixel,TInt aLength,TDisplayMode aDispMode) const;
sl@0
   300
    IMPORT_C void SetScanLine(TDes8& aBuf,TInt aY) const;
sl@0
   301
	IMPORT_C void GetVerticalScanLine(TDes8& aBuf,TInt aX,TDisplayMode aDispMode) const;
sl@0
   302
	IMPORT_C void GetVerticalScanLine(TDes8& aBuf,TInt aX,const TPoint& aDitherOffset,TDisplayMode aDispMode) const;
sl@0
   303
	IMPORT_C TInt Handle() const;
sl@0
   304
	IMPORT_C SEpocBitmapHeader Header() const;
sl@0
   305
	IMPORT_C TInt HorizontalPixelsToTwips(TInt aPixels) const;
sl@0
   306
	IMPORT_C TInt HorizontalTwipsToPixels(TInt aTwips) const;
sl@0
   307
	IMPORT_C void GetPixel(TRgb& aColor,const TPoint& aPixel) const;
sl@0
   308
	IMPORT_C TInt Resize(const TSize& aSizeInPixels);
sl@0
   309
	IMPORT_C TSize SizeInPixels() const;
sl@0
   310
	IMPORT_C TSize SizeInTwips() const;
sl@0
   311
	IMPORT_C void SetSizeInTwips(const MGraphicsDeviceMap* aMap);
sl@0
   312
	IMPORT_C void SetSizeInTwips(const TSize& aSizeInTwips);
sl@0
   313
	IMPORT_C void ExternalizeL(RWriteStream& aStream) const;
sl@0
   314
	IMPORT_C void ExternalizeRectangleL(RWriteStream& aStream,const TRect& aRect) const;
sl@0
   315
	IMPORT_C void InternalizeL(RReadStream& aStream);
sl@0
   316
	IMPORT_C TInt Compress();
sl@0
   317
	IMPORT_C TInt Compress(TBitmapfileCompressionScheme aScheme);
sl@0
   318
	IMPORT_C void CompressInBackground(TRequestStatus& aRequestStatus);
sl@0
   319
	IMPORT_C TInt CompressInBackground();
sl@0
   320
	IMPORT_C void CompressInBackground(TRequestStatus& aRequestStatus, TBitmapfileCompressionScheme aScheme);
sl@0
   321
	IMPORT_C TInt CompressInBackground(TBitmapfileCompressionScheme aScheme);
sl@0
   322
	IMPORT_C TInt VerticalPixelsToTwips(TInt aPixels) const;
sl@0
   323
	IMPORT_C TInt VerticalTwipsToPixels(TInt aTwips) const;
sl@0
   324
	IMPORT_C static TBool IsFileInRom(const TDesC& aFilename,TUint32*& aWord);
sl@0
   325
	IMPORT_C static TBool IsFileInRom(RFile& aFile,TUint32*& aWord);
sl@0
   326
	IMPORT_C TBool IsMonochrome() const;
sl@0
   327
	IMPORT_C TBool IsLargeBitmap() const;
sl@0
   328
	IMPORT_C void PaletteAttributes(TBool& aModifiable,TInt& aNumEntries) const;
sl@0
   329
	IMPORT_C void SetPalette(CPalette* aPalette);
sl@0
   330
	IMPORT_C TInt GetPalette(CPalette*& aPalette) const;
sl@0
   331
	IMPORT_C TUint32* DataAddress() const;
sl@0
   332
	IMPORT_C TInt DataStride() const;
sl@0
   333
	IMPORT_C TInt CreateHardwareBitmap(const TSize& aSizeInPixels,TDisplayMode aDispMode,TUid aCreatorUid);
sl@0
   334
	IMPORT_C TInt HardwareBitmapHandle() const;
sl@0
   335
	IMPORT_C void BeginDataAccess() const;
sl@0
   336
	IMPORT_C void EndDataAccess(TBool aReadOnly=EFalse) const;
sl@0
   337
	IMPORT_C void LockHeap(TBool aAlways=EFalse) const;
sl@0
   338
	IMPORT_C void UnlockHeap(TBool aAlways=EFalse) const;
sl@0
   339
	IMPORT_C void LockHeapLC(TBool aAlways=EFalse) const;
sl@0
   340
	IMPORT_C static void UnlockHeap(TAny* aFbsBitmap);
sl@0
   341
	IMPORT_C TBool IsVolatile() const;
sl@0
   342
	IMPORT_C TInt TouchCount() const;
sl@0
   343
	IMPORT_C TInt64 SerialNumber() const;
sl@0
   344
	IMPORT_C TBool IsCompressedInRAM() const;
sl@0
   345
	IMPORT_C TInt SwapWidthAndHeight();
sl@0
   346
	IMPORT_C TInt CreateExtendedBitmap(const TSize& aSizeInPixels, TDisplayMode aDispMode, TUid aType, const TAny* aData, TInt aDataSize);
sl@0
   347
	IMPORT_C TInt CreateExtendedBitmap(const TSize& aSizeInPixels, TDisplayMode aDispMode, TUid aType, TInt aDataSize, MFbsExtendedBitmapInitializer& aInitializer);
sl@0
   348
	IMPORT_C TUid ExtendedBitmapType() const;
sl@0
   349
	IMPORT_C TInt DataSize() const;
sl@0
   350
	IMPORT_C static HBufC8* GetDecompressionBuffer(TInt aSize);
sl@0
   351
	IMPORT_C static CFbsRasterizer* Rasterizer();
sl@0
   352
	IMPORT_C TInt GetAllBitmapHandles(RArray<TInt>& aBitmapIdArray) const;
sl@0
   353
	IMPORT_C static HBufC8* GetExtraBuffer(TInt aSize);
sl@0
   354
protected:
sl@0
   355
    IMPORT_C void GetScanLine(TDes8& aBuf,const TPoint& aPixel,TInt aLength,const TPoint& aDitherOffset,TDisplayMode aDispMode) const;
sl@0
   356
	CBitwiseBitmap* Address() const;
sl@0
   357
	IMPORT_C CBitwiseBitmap* CleanAddress() const;
sl@0
   358
	inline CBitwiseBitmap* BeginDataAccessAndGetCleanAddress(TUint32*& aDataAddress) const;
sl@0
   359
	void DoSaveL(RFile& aFile);
sl@0
   360
	TInt DoCreate(const TSize& aSizeInPixels, TDisplayMode aDispMode, TUid aUid, TInt aDataSize = 0);
sl@0
   361
private:
sl@0
   362
	TInt DoLoad(RFile& aFile,TInt32 aId,TBool aShareIfLoaded,TUint aFileOffset);
sl@0
   363
	TInt DoLoad(const TDesC& aFileName,TInt32 aId,TBool aShareIfLoaded,TUint aFileOffset);
sl@0
   364
	TInt DoLoadFromRom(TUint32* aRomPointer, TInt32 aId, TUint aFileOffset, TBool& aRomPointerValid);
sl@0
   365
	TBool LoadShiftedRomBmpL(const TDesC& aFileName,TInt32 aId,TUint aFileOffset);
sl@0
   366
	static void DoStoreL(CDirectFileStore* aFileStore,CFbsBitmap* aBitmap,TInt aNumSources,const TDesC* aSources[],TInt32 aSourceIds[]);
sl@0
   367
	TInt DuplicateInRom(TInt aBitmapHandle);
sl@0
   368
	TInt DuplicateInRam(TInt aBitmapHandle);
sl@0
   369
protected:
sl@0
   370
	/** WARNING: For internal use ONLY.  Compatibility is not guaranteed in future releases.
sl@0
   371
	 */
sl@0
   372
	enum // Flags
sl@0
   373
		{
sl@0
   374
		EIsRomBitmap = 0x0001,
sl@0
   375
		EIsExtendedBitmap = 0x0002,
sl@0
   376
		EIsReadOnlyBitmapMask = EIsRomBitmap | EIsExtendedBitmap
sl@0
   377
		};
sl@0
   378
protected:		
sl@0
   379
	RFbsSession* iFbs;	/**< WARNING: Member variable for internal use ONLY. Compatibility is not guaranteed in future releases. Please access using the provided get/set APIs only. */	
sl@0
   380
	CBitwiseBitmap* iAddressPointer; /**< WARNING: Member variable for internal use ONLY. Compatibility is not guaranteed in future releases. Please access using the provided get/set APIs only. */	
sl@0
   381
	TUint16 iFlags; /**< WARNING: Member variable for internal use ONLY. Compatibility is not guaranteed in future releases. Please access using the provided get/set APIs only. */
sl@0
   382
	TInt16 iUseCount; /**< WARNING: Member variable for internal use ONLY. Compatibility is not guaranteed in future releases. Please access using the provided get/set APIs only. */
sl@0
   383
	TInt iHandle; /**< WARNING: Member variable for internal use ONLY. Compatibility is not guaranteed in future releases. Please access using the provided get/set APIs only. */
sl@0
   384
	TInt iServerHandle; /**< WARNING: Member variable for internal use ONLY. Compatibility is not guaranteed in future releases. Please access using the provided get/set APIs only. */
sl@0
   385
	};
sl@0
   386
sl@0
   387
sl@0
   388
/** 
sl@0
   389
Provides fast read/write access to the pixel data of a bitmap. 
sl@0
   390
sl@0
   391
Functionality includes getting and setting the individual pixels of a bitmap. 
sl@0
   392
Common to this is the concept of the current pixel position. This is held 
sl@0
   393
as member data and is changed by using various efficient functions. For example, 
sl@0
   394
incrementing the position's x- or y co-ordinate is much quicker than setting 
sl@0
   395
a completely new position. This efficiency issue is important as these functions 
sl@0
   396
are used as part of the frequently used blitting DDA used for creating 
sl@0
   397
stretched or compressed versions of bitmaps.
sl@0
   398
sl@0
   399
Calls to Begin() and End() must surround any calls to the other member functions.
sl@0
   400
Note that you should always ensure each Begin() is matched by an End() call 
sl@0
   401
when using this class.
sl@0
   402
sl@0
   403
Note also that all display modes including EColor16M are supported, but the 
sl@0
   404
TDisplayMode values ERgb and ENone are not considered to be display modes. 
sl@0
   405
@publishedAll 
sl@0
   406
@released
sl@0
   407
*/
sl@0
   408
class TBitmapUtil
sl@0
   409
	{
sl@0
   410
public:
sl@0
   411
	IMPORT_C void Begin(const TPoint& aPosition);
sl@0
   412
	IMPORT_C void Begin(const TPoint& aPosition,const TBitmapUtil& aUtil);
sl@0
   413
	IMPORT_C void End();
sl@0
   414
	IMPORT_C TBitmapUtil(CFbsBitmap* aBitmap);
sl@0
   415
	IMPORT_C TUint32 GetPixel() const;
sl@0
   416
	IMPORT_C void SetPixel(TUint32 aValue);
sl@0
   417
	IMPORT_C void SetPixel(const TBitmapUtil& aSource);
sl@0
   418
	IMPORT_C void SetPos(const TPoint& aPosition);
sl@0
   419
	IMPORT_C void DecXPos();
sl@0
   420
	IMPORT_C void DecYPos();
sl@0
   421
	IMPORT_C void IncXPos();
sl@0
   422
	IMPORT_C void IncYPos();
sl@0
   423
private:
sl@0
   424
	CFbsBitmap* iFbsBitmap;
sl@0
   425
	TUint32* iWordPos;
sl@0
   426
	TUint32* iMinWordPos;
sl@0
   427
	TUint32* iMaxWordPos;
sl@0
   428
	TInt iBpp;
sl@0
   429
	TInt iPixelShift;
sl@0
   430
	TInt iBitShift;
sl@0
   431
	TUint32 iMask;
sl@0
   432
	TInt iScanlineWordLength;
sl@0
   433
	TBool iWritten;
sl@0
   434
	};
sl@0
   435
sl@0
   436
class TFontInfo;
sl@0
   437
sl@0
   438
/** 
sl@0
   439
Font and bitmap server typeface store. 
sl@0
   440
@publishedAll 
sl@0
   441
@released
sl@0
   442
*/
sl@0
   443
class CFbsTypefaceStore : public CTypefaceStore
sl@0
   444
	{
sl@0
   445
	friend class CWsScreenDevice;
sl@0
   446
public:
sl@0
   447
	IMPORT_C static CFbsTypefaceStore* NewL(CGraphicsDevice* aDevice);
sl@0
   448
	IMPORT_C ~CFbsTypefaceStore();
sl@0
   449
	IMPORT_C TInt AddFile(const TDesC& aName,TInt& aId);
sl@0
   450
	IMPORT_C TInt InstallFile(const TDesC& aName,TInt& aId);
sl@0
   451
	IMPORT_C void RemoveFile(TInt aId=0);
sl@0
   452
	IMPORT_C virtual TInt GetNearestFontInTwips(CFont*& aFont, const TFontSpec& aFontSpec);
sl@0
   453
	IMPORT_C TInt GetNearestFontInPixels(CFont*& aFont, const TFontSpec& aFontSpec);
sl@0
   454
	IMPORT_C virtual TInt GetNearestFontToDesignHeightInTwips(CFont*& aFont, const TFontSpec& aFontSpec);
sl@0
   455
	IMPORT_C TInt GetNearestFontToDesignHeightInPixels(CFont*& aFont, const TFontSpec& aFontSpec);
sl@0
   456
	IMPORT_C virtual TInt GetNearestFontToMaxHeightInTwips(CFont*& aFont, const TFontSpec& aFontSpec, TInt aMaxHeight);
sl@0
   457
	IMPORT_C TInt GetNearestFontToMaxHeightInPixels(CFont*& aFont, const TFontSpec& aFontSpec, TInt aMaxHeight);
sl@0
   458
	IMPORT_C TInt GetFontById(CFont *&aFont,TUid aUid,const TAlgStyle& aAlgStyle);
sl@0
   459
	IMPORT_C virtual TInt NumTypefaces() const;
sl@0
   460
	IMPORT_C virtual void TypefaceSupport(TTypefaceSupport& aTypefaceSupport,TInt aTypefaceIndex) const;
sl@0
   461
	IMPORT_C virtual TInt FontHeightInTwips(TInt aTypefaceIndex,TInt aHeightIndex) const;
sl@0
   462
	IMPORT_C TInt FontHeightInPixels(TInt aTypefaceIndex,TInt aHeightIndex) const;
sl@0
   463
	IMPORT_C TGlyphBitmapType DefaultBitmapType() const;
sl@0
   464
	IMPORT_C void SetDefaultBitmapType(TGlyphBitmapType aType) const;
sl@0
   465
	IMPORT_C void SetFontNameAliasL(const TDesC& aFontAlias,const TDesC& aFontName) const;
sl@0
   466
	IMPORT_C void SetDefaultLanguageForMetrics(TLanguage aLanguage) const;
sl@0
   467
	IMPORT_C static void RemoveFontFileLocksL();
sl@0
   468
	IMPORT_C static void RemoveFontFileLocksL(const TDesC& aDrive, TBool aAllFonts);
sl@0
   469
	IMPORT_C static void RemoveFontFileLocksL(const TDesC& aFileName);
sl@0
   470
	IMPORT_C void ReleaseTwipsCache();
sl@0
   471
	IMPORT_C void SetSystemDefaultTypefaceNameL(const TDesC& aFontTypefaceName);
sl@0
   472
	IMPORT_C TInt RegisterLinkedTypeface(const CLinkedTypefaceSpecification& aLinkedTypefaceSpec, TInt& aId);
sl@0
   473
	IMPORT_C void GetLinkedTypefaceL(CLinkedTypefaceSpecification& aLinkedTypefaceSpec);
sl@0
   474
	IMPORT_C TInt RegisterLinkedTypeface(const CLinkedTypefaceSpecification& aLinkedTypefaceSpec);
sl@0
   475
	IMPORT_C TInt UpdateLinkedTypeface(const CLinkedTypefaceSpecification& aLinkedTypefaceSpec);
sl@0
   476
private:
sl@0
   477
	CFbsTypefaceStore(CGraphicsDevice* aDevice);
sl@0
   478
	void ConstructL();
sl@0
   479
	TInt CreateFont(CFont*& aFont,const TFontInfo& aFontInfo);
sl@0
   480
	TBool IsFontLoaded(CFont*& aFont, const TFontInfo& aFontInfo) const;
sl@0
   481
	TInt FontHeight(TInt aTypefaceIndex,TInt aHeightIndex,TInt aMessage) const;
sl@0
   482
	TInt GetNearestFontInTwipsAndCreateFont(CFont*& aFont, TInt aFbsMessage, const TFontSpec& aFontSpec, TInt aMaxHeight = 0);
sl@0
   483
	TInt SendGetNearestFontCommandNCreateFont(
sl@0
   484
		CFont*& aFont, TInt aFbsMessage, const TFontSpec& aFontSpec, TInt aMaxHeight = 0);
sl@0
   485
	void GetPixelSizeInTwips(TSize& aSize) const;
sl@0
   486
sl@0
   487
private:
sl@0
   488
	RFbsSession* iFbs;
sl@0
   489
	CGraphicsDevice* iDevice;
sl@0
   490
	CFontCache* iTwipsCache;
sl@0
   491
	};
sl@0
   492
sl@0
   493
class CDitherColor256;
sl@0
   494
sl@0
   495
/** 
sl@0
   496
Copies a bitmap in any display mode of at least 256 colours into a 256 
sl@0
   497
colour bitmap, optionally using a user-defined palette. 
sl@0
   498
@publishedAll 
sl@0
   499
@released
sl@0
   500
*/
sl@0
   501
class CFbsColor256BitmapUtil : public CBase
sl@0
   502
	{
sl@0
   503
public:
sl@0
   504
	/** Indicates whether or not to use dithering. */
sl@0
   505
	enum TDither
sl@0
   506
		{
sl@0
   507
		/** No dithering. */
sl@0
   508
		ENoDither,
sl@0
   509
		/** Use the Floyd-Steinberg dithering algorithm. */
sl@0
   510
		EFloydSteinberg
sl@0
   511
		};
sl@0
   512
public:
sl@0
   513
sl@0
   514
	IMPORT_C static CFbsColor256BitmapUtil* NewL(const CPalette* aPalette);
sl@0
   515
sl@0
   516
	IMPORT_C TInt CopyBitmap(CFbsBitmap* aColor256Destination,CFbsBitmap* aSource,TDither aDither=ENoDither);
sl@0
   517
sl@0
   518
	~CFbsColor256BitmapUtil();
sl@0
   519
private:
sl@0
   520
	CFbsColor256BitmapUtil();
sl@0
   521
private:
sl@0
   522
	TColor256Util* iColor256Util;
sl@0
   523
	CDitherColor256* iDither;
sl@0
   524
	};
sl@0
   525
sl@0
   526
sl@0
   527
/**
sl@0
   528
 A class encapsulating the current state of the glyph cache.
sl@0
   529
sl@0
   530
 @publishedAll
sl@0
   531
 @released
sl@0
   532
*/
sl@0
   533
class TGlyphCacheMetrics
sl@0
   534
    {
sl@0
   535
public:
sl@0
   536
    TInt iMaxCacheSizeInBytes;
sl@0
   537
    TInt iMaxCacheSizeHigh;
sl@0
   538
    TInt iMaxCacheSizeLow;
sl@0
   539
    TInt iCacheSizeInBytes;
sl@0
   540
    TBool iGpuCacheSizeLimitIsMax;
sl@0
   541
    };
sl@0
   542
sl@0
   543
#endif // __FBS_H__
sl@0
   544