45
|
1 |
// Copyright (c) 2003-2010 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".
|
|
7 |
//
|
|
8 |
// Initial Contributors:
|
|
9 |
// Nokia Corporation - initial contribution.
|
|
10 |
//
|
|
11 |
// Contributors:
|
|
12 |
//
|
|
13 |
// Description:
|
|
14 |
//
|
|
15 |
|
|
16 |
#ifndef __FONTARABIC_H__
|
|
17 |
#define __FONTARABIC_H__
|
|
18 |
|
|
19 |
|
|
20 |
#include <e32std.h>
|
|
21 |
#include "GlyphSel.h"
|
|
22 |
|
|
23 |
|
|
24 |
//
|
|
25 |
//
|
|
26 |
// GlyphSelector_Arabic Class declaration
|
|
27 |
//
|
|
28 |
//
|
|
29 |
|
|
30 |
|
|
31 |
class GlyphSelector_Arabic
|
|
32 |
/**
|
|
33 |
This is the default glyph selector class for Arabic characters in the range
|
|
34 |
0x0600..0x06FF. It is able to process Arabic base characters and combining
|
|
35 |
marks to construct the necessary output glyph cluster.
|
|
36 |
@internalComponent
|
|
37 |
*/
|
|
38 |
{
|
|
39 |
public:
|
|
40 |
|
|
41 |
static TBool Process(TGlyphSelectionState& aGss, RShapeInfo&) ;
|
|
42 |
|
|
43 |
static TBool CharactersJoin(TInt aLeftCharacter, TInt aRightCharacter);
|
|
44 |
|
|
45 |
};
|
|
46 |
|
|
47 |
|
|
48 |
|
|
49 |
#endif // __FONTARABIC_H__
|