os/graphics/graphicsdeviceinterface/gdi/inc/gdiplatapi.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) 1998-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 __GDIPLATAPI_H__
sl@0
    17
#define __GDIPLATAPI_H__
sl@0
    18
sl@0
    19
#include <e32base.h>
sl@0
    20
sl@0
    21
/*
sl@0
    22
 * Please note that RFontTable API is officially supported from SymTB10.1.
sl@0
    23
 * It is not guaranteed to work in SymTB9.2 or earlier.
sl@0
    24
 * 
sl@0
    25
 * The class keeps the parameter 'aFont', and will use it in Close(). 
sl@0
    26
 * Destructing the CFont object before calling Close() can result in Panic.
sl@0
    27
 * 
sl@0
    28
 * @publishedPartner
sl@0
    29
 */
sl@0
    30
class RFontTable 
sl@0
    31
    {
sl@0
    32
public:
sl@0
    33
    IMPORT_C RFontTable();
sl@0
    34
    IMPORT_C TInt Open(CFont& aFont, TUint32 aTag);
sl@0
    35
    IMPORT_C TInt TableLength() const;
sl@0
    36
    IMPORT_C const TUint8* TableContent() const;
sl@0
    37
    IMPORT_C void Close();
sl@0
    38
private:
sl@0
    39
    TAny* iTableContent;
sl@0
    40
    TInt iLength;
sl@0
    41
    
sl@0
    42
    // need to remember font and table name, to be used in releasing the table
sl@0
    43
    const CFont* iFont;
sl@0
    44
    TUint32 iTag;
sl@0
    45
    };
sl@0
    46
sl@0
    47
sl@0
    48
/*
sl@0
    49
 * Please note that RGlyphOutlineIterator API is officially supported 
sl@0
    50
 * from SymTB10.1. It is not guaranteed to work in SymTB9.2 or earlier.
sl@0
    51
 * 
sl@0
    52
 * The class keeps the parameter 'aFont', and will use it in Close(). 
sl@0
    53
 * Destructing the CFont object before calling Close() can result in Panic.
sl@0
    54
 * 
sl@0
    55
 * @publishedPartner
sl@0
    56
 */
sl@0
    57
class RGlyphOutlineIterator 
sl@0
    58
    {
sl@0
    59
public:
sl@0
    60
    IMPORT_C RGlyphOutlineIterator();
sl@0
    61
    IMPORT_C TInt Open(CFont& aFont, const TUint* aCodes, TInt aCount, TBool aHinted = EFalse);
sl@0
    62
    IMPORT_C TInt Next();
sl@0
    63
    IMPORT_C const TUint8 *Outline() const;
sl@0
    64
    IMPORT_C TInt OutlineLength() const;
sl@0
    65
    IMPORT_C void Close();
sl@0
    66
private:
sl@0
    67
    TAny** iOutlines;
sl@0
    68
    TInt* iLengths;
sl@0
    69
    TInt iCursor;
sl@0
    70
    TInt iCount;
sl@0
    71
    
sl@0
    72
    // these information is needed in Close().
sl@0
    73
    const CFont* iFont;
sl@0
    74
    TUint* iCodes;
sl@0
    75
    TBool iHinted;
sl@0
    76
    };
sl@0
    77
sl@0
    78
sl@0
    79
#endif __GDIPLATAPI_H__