1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/textandloc/fontservices/fontstore/src/linkedfontsprivate.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,72 @@
1.4 +/*
1.5 +* Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description:
1.18 +*
1.19 +*/
1.20 +
1.21 +
1.22 +#ifndef LINKEDFONTSPRIVATE_H__
1.23 +#define LINKEDFONTSPRIVATE_H__
1.24 +#include <linkedfonts.h>
1.25 +#include "FNTSTD.H"
1.26 +
1.27 +class CFontStore;
1.28 +class COpenFontLinkedTypefaceElementSpec;
1.29 +
1.30 +/**
1.31 +* A type for a single element in a linked typeface description -
1.32 +* Internal technology - this is used for client server calls -
1.33 +* class basically the same as CLinkedTypefaceElement, but a T class.
1.34 +*/
1.35 +
1.36 +typedef TBufC<KMaxTypefaceNameLength> TTypefaceName;
1.37 +
1.38 +/* Internal technology - data body for CLinkedTypefaceSpecification */
1.39 +class CLinkedTypefaceSpecificationBody : public CBase
1.40 + {
1.41 +friend class CLinkedTypefaceSpecification;
1.42 +friend class CFont;
1.43 +friend class CFontStore;
1.44 +private:
1.45 + CLinkedTypefaceSpecificationBody();
1.46 + ~CLinkedTypefaceSpecificationBody();
1.47 +private:
1.48 + RPointerArray <CLinkedTypefaceElementSpec> iTypefaces;
1.49 + RPointerArray <CLinkedTypefaceGroup> iGroups;
1.50 + HBufC* iLinkedTypefaceName;
1.51 + };
1.52 +
1.53 +/* Internal technology - data body for COpenFontLinkedTypefaceSpecification */
1.54 +class COpenFontLinkedTypefaceSpecificationBody : public CBase
1.55 + {
1.56 +friend class COpenFontLinkedTypefaceSpecification;
1.57 +friend class CFont;
1.58 +friend class CFontStore;
1.59 +private:
1.60 + COpenFontLinkedTypefaceSpecificationBody();
1.61 + ~COpenFontLinkedTypefaceSpecificationBody();
1.62 +private:
1.63 + RPointerArray <COpenFontLinkedTypefaceElementSpec> iTypefaces;
1.64 + HBufC* iLinkedTypefaceName;
1.65 + TInt iId;
1.66 + TInt iSession; //Not owned
1.67 + TInt iUsageCounter; //
1.68 +
1.69 +
1.70 + const COpenFontGlyph* GlyphLinked(TInt aCode,TInt*& aNode);
1.71 + void RasterizeL(TInt aCode,TOpenFontGlyphData* aGlyphData);
1.72 + };
1.73 +
1.74 +#endif //LINKEDFONTSPRIVATE_H__
1.75 +