Update contrib.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // FONT related classes and font cache
33 class CAnimFbsFont : public CFbsBitGcFont
37 static CAnimFbsFont* NewL(TInt aHandle,TInt& aError);
40 inline TInt Duplicate(TInt aHandle);
50 class CWsFbsFont : public CFbsBitGcFont
55 inline TInt Duplicate(TInt aHandle);
56 inline TInt Handle() const;
63 class CWsFontCache : public CBase
65 enum {EFontCacheSize=128};
67 static void CreateInstanceL();
68 static void DestroyInstance();
69 static CWsFontCache * Instance() { return iSelf; }
70 TBool UseFont(CWsFbsFont *&aFont, TInt aHandle);
71 void ReleaseFont(CWsFbsFont *&aFont);
72 static TDblQue<CWsFbsFont>& List();
77 static CWsFontCache * iSelf;
78 static TDblQue<CWsFbsFont> * iList;
79 CWsFbsFont iFont[EFontCacheSize];
82 inline TInt CWsFbsFont::Duplicate(TInt aHandle)
83 {return(CFbsBitGcFont::Duplicate(aHandle));}
84 inline TInt CWsFbsFont::Handle() const
85 {return(CFbsBitGcFont::Handle());}
86 inline void CWsFbsFont::Reset()
87 {CFbsBitGcFont::Reset();}
89 inline TInt CAnimFbsFont::Duplicate(TInt aHandle)
90 {return(CFbsFont::Duplicate(aHandle));}