First public contribution.
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 functions and the font cache
20 CWsFontCache * CWsFontCache::iSelf = NULL;
21 TDblQue<CWsFbsFont> * CWsFontCache::iList = NULL;
23 CWsFontCache::CWsFontCache()
27 CWsFontCache::~CWsFontCache()
31 void CWsFontCache::CreateInstanceL()
33 // The list MUST exist before creation of the cache since the cache
34 // contains an array of fonts. When the array is created the fonts add themselves
36 // The list is ordered from newest to oldest font used.
37 iList = new (ELeave) TDblQue<CWsFbsFont>(_FOFF(CWsFbsFont,iLink));
38 CleanupStack::PushL(iList);
39 iSelf = new (ELeave) CWsFontCache;
40 CleanupStack::Pop(iList);
43 void CWsFontCache::DestroyInstance()
45 // The cache has to be destroyed first since the fonts are
46 // destroyed when the cache's array if destroyed. The fonts
47 // remove themselves from the list
55 void CWsFontCache::ReleaseFont(CWsFbsFont *&aFont)
59 WS_ASSERT_DEBUG(aFont->iCount>0, EWsPanicFontCacheCount);
60 // decrease usage count
62 // when the font reaches zero then the font entry can be reused later
67 TBool CWsFontCache::UseFont(CWsFbsFont *&aFont, TInt aHandle)
70 CWsFbsFont *font = NULL;
72 // The list is ordered from newest to oldest font used.
73 TDblQueIter<CWsFbsFont> iter(*iList);
76 // Search for the font from newest to oldest font
77 while ((font = iter++) != NULL)
79 // if the font handle already exists use existing font
80 if (font->Handle() == aHandle)
86 // Font not found in cache so find an unused entry
89 // Starting search from oldest to newest font unsed
91 while((font = iter--) != NULL)
93 // if you find an unused font then use that font entry
94 if (font->iCount == 0)
99 // if an unused font is not found then all fonts are being used and
100 // the font can not be created
103 return(ETrue); // No room in cache
105 // release and reuse the font entry to create a new font
107 if (font->Duplicate(aHandle) != KErrNone)
109 return(EFalse); // Bad handle, (indicated by aFont=NULL)
112 // put font at the font of the list as the font is the newest font
114 iList->AddFirst(*font);
115 // increase usage count
121 TDblQue<CWsFbsFont>& CWsFontCache::List()
123 return *Instance()->iList;
126 CWsFbsFont::CWsFbsFont()
128 // add itself to the font cache
129 CWsFontCache::List().AddLast(*this);
132 CWsFbsFont::~CWsFbsFont()
134 // remove itself from the font cache
136 WS_ASSERT_DEBUG(iCount==0, EWsPanicFontCacheCount);