os/graphics/graphicstools/bitmapfonttools/inc/FNTRECRD.H
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description: 
sl@0
    15
* Header FNTRECRD.H
sl@0
    16
*
sl@0
    17
*/
sl@0
    18
sl@0
    19
sl@0
    20
#ifndef __FNTRECRD_H__
sl@0
    21
#define __FNTRECRD_H__
sl@0
    22
sl@0
    23
#include "LEXICAL.H"
sl@0
    24
#include "LST.H"
sl@0
    25
#include "RECORD.H"
sl@0
    26
#include "STRNG.H"
sl@0
    27
#include "UID.H"
sl@0
    28
/**
sl@0
    29
@internalComponent
sl@0
    30
*/
sl@0
    31
const boolean PostureUpright = 0;
sl@0
    32
const boolean PostureItalic = 1;
sl@0
    33
/**
sl@0
    34
@internalComponent
sl@0
    35
*/
sl@0
    36
const boolean StrokeWeightNormal = 0;
sl@0
    37
const boolean StrokeWeightBold = 1;
sl@0
    38
sl@0
    39
class BitmapOffset
sl@0
    40
/**
sl@0
    41
@internalComponent
sl@0
    42
*/
sl@0
    43
	{
sl@0
    44
public:
sl@0
    45
	BitmapOffset(uint16 aBitmapOffset);
sl@0
    46
	void Externalize(ostream& out);
sl@0
    47
public:
sl@0
    48
	uint16 iBitmapOffset;	// restricts bitmap to 64k
sl@0
    49
	};
sl@0
    50
sl@0
    51
class CharacterMetrics
sl@0
    52
/**
sl@0
    53
@internalComponent
sl@0
    54
*/
sl@0
    55
	{
sl@0
    56
public:
sl@0
    57
	CharacterMetrics();
sl@0
    58
	void Externalize(ostream& out);
sl@0
    59
public:
sl@0
    60
	chardim iAscentInPixels;
sl@0
    61
	chardim iHeightInPixels;
sl@0
    62
	chardim iLeftAdjustInPixels;
sl@0
    63
	chardim iMoveInPixels;
sl@0
    64
	chardim iRightAdjustInPixels;
sl@0
    65
	};
sl@0
    66
sl@0
    67
sl@0
    68
class MetricDistributionMember
sl@0
    69
/**
sl@0
    70
Class which wraps up a given metric with the number of characters that use it
sl@0
    71
@internalComponent
sl@0
    72
*/
sl@0
    73
	{
sl@0
    74
public:
sl@0
    75
	~MetricDistributionMember();
sl@0
    76
	MetricDistributionMember();
sl@0
    77
public:
sl@0
    78
	CharacterMetrics* Metric() const;
sl@0
    79
	int Frequency() const;
sl@0
    80
	void IncrementFrequency(int aIncrementBy = 1);
sl@0
    81
	void SetMetric(CharacterMetrics* aMetric);
sl@0
    82
	void SetFrequency(int aFrequency);
sl@0
    83
	void Externalize(ostream& out);
sl@0
    84
private:
sl@0
    85
	int iFrequency;
sl@0
    86
	CharacterMetrics* iMetric;
sl@0
    87
	};
sl@0
    88
sl@0
    89
class MetricDistribution
sl@0
    90
/**
sl@0
    91
Class which maintains a list of metrics and the number of characters using each,
sl@0
    92
along with the ability to sort them into most popular first order.
sl@0
    93
@internalComponent
sl@0
    94
*/
sl@0
    95
	{
sl@0
    96
public:
sl@0
    97
	~MetricDistribution();
sl@0
    98
	static MetricDistribution* New();
sl@0
    99
public:
sl@0
   100
	void SortMetricsByFrequency();
sl@0
   101
	void SetIndex(const CharacterMetrics& aMetrics, int aIndex);
sl@0
   102
	int Index(const CharacterMetrics& aMetrics);
sl@0
   103
	void Externalize(ostream& out);
sl@0
   104
	void ExternalizeComponents(ostream& out);
sl@0
   105
	void AddOrIncrementMetric(const CharacterMetrics& aMetrics, int aFrequency = 1);
sl@0
   106
	const CharacterMetrics& MostPopular(int aStartIndex);
sl@0
   107
private:
sl@0
   108
	MetricDistribution();
sl@0
   109
public:
sl@0
   110
	ObjectList<MetricDistributionMember*> iCharacterMetricsList;
sl@0
   111
	streampos iStreamId;
sl@0
   112
	};
sl@0
   113
sl@0
   114
class Characters
sl@0
   115
/**
sl@0
   116
@internalComponent
sl@0
   117
*/
sl@0
   118
	{
sl@0
   119
public:
sl@0
   120
	void Externalize(ostream& out);
sl@0
   121
	ObjectList<BitmapOffset*> iBitmapOffsetList;
sl@0
   122
	~Characters();
sl@0
   123
public:
sl@0
   124
	streampos iStreamId;
sl@0
   125
	};
sl@0
   126
sl@0
   127
class ByteList
sl@0
   128
/**
sl@0
   129
@internalComponent
sl@0
   130
*/
sl@0
   131
	{
sl@0
   132
public:
sl@0
   133
	ByteList();
sl@0
   134
	void AddBit(char aBit);
sl@0
   135
	void NewByte();
sl@0
   136
	int Length() const;
sl@0
   137
	void Externalize(ostream& out);
sl@0
   138
private:
sl@0
   139
	String iString;
sl@0
   140
	char iOffset;
sl@0
   141
	};
sl@0
   142
sl@0
   143
class CharactersBitmap : public Record
sl@0
   144
/**
sl@0
   145
@internalComponent
sl@0
   146
*/
sl@0
   147
	{
sl@0
   148
public:
sl@0
   149
	void AddIndex(int aIndex);
sl@0
   150
	void Externalize(ostream& out);
sl@0
   151
public:
sl@0
   152
	ByteList iByteList;
sl@0
   153
	streampos iStreamId;
sl@0
   154
	};
sl@0
   155
sl@0
   156
class BitmapCodeSection
sl@0
   157
/**
sl@0
   158
@internalComponent
sl@0
   159
*/
sl@0
   160
	{
sl@0
   161
public:
sl@0
   162
	void Externalize(ostream& out);
sl@0
   163
	void ExternalizeComponents(ostream& out);
sl@0
   164
public:
sl@0
   165
	uint16 iStart;
sl@0
   166
	uint16 iEnd;
sl@0
   167
	Characters iCharacters;
sl@0
   168
	CharactersBitmap iCharactersBitmap;
sl@0
   169
	};	
sl@0
   170
sl@0
   171
class FontBitmap : public Record
sl@0
   172
/**
sl@0
   173
@internalComponent
sl@0
   174
*/
sl@0
   175
	{
sl@0
   176
public:
sl@0
   177
	FontBitmap();
sl@0
   178
	void Externalize(ostream& out);
sl@0
   179
	void ExternalizeComponents(ostream& out);
sl@0
   180
	~FontBitmap();
sl@0
   181
public:
sl@0
   182
	uid iUid;
sl@0
   183
	boolean iPosture;
sl@0
   184
	boolean iStrokeWeight;
sl@0
   185
	boolean iIsProportional;
sl@0
   186
	chardim iCellHeightInPixels;
sl@0
   187
	chardim iAscentInPixels;
sl@0
   188
	chardim iMaxCharWidthInPixels;
sl@0
   189
	chardim iMaxNormalCharWidthInPixels;
sl@0
   190
	int32 iBitmapEncoding;
sl@0
   191
	ObjectList<BitmapCodeSection*> iCodeSectionList;
sl@0
   192
	MetricDistribution* iCharacterMetrics;
sl@0
   193
	};
sl@0
   194
 
sl@0
   195
class TypefaceFontBitmap
sl@0
   196
/**
sl@0
   197
@internalComponent
sl@0
   198
*/
sl@0
   199
	{
sl@0
   200
public:
sl@0
   201
	TypefaceFontBitmap(FontBitmap* aFontBitmap);
sl@0
   202
	TypefaceFontBitmap(uid aFontBitmapUid);
sl@0
   203
	void Externalize(ostream& out);	
sl@0
   204
public:
sl@0
   205
	FontBitmap* iFontBitmap;
sl@0
   206
	uid iFontBitmapUid;
sl@0
   207
	char iWidthFactor;
sl@0
   208
	char iHeightFactor;
sl@0
   209
	};
sl@0
   210
sl@0
   211
class FntTypeface : public Record, public Typeface
sl@0
   212
/**
sl@0
   213
@internalComponent
sl@0
   214
*/
sl@0
   215
	{
sl@0
   216
public:
sl@0
   217
	void Externalize(ostream& out);
sl@0
   218
public:
sl@0
   219
	ObjectList<TypefaceFontBitmap*> iTypefaceFontBitmapList;
sl@0
   220
	};
sl@0
   221
sl@0
   222
class FontStoreFile : public Record
sl@0
   223
/**
sl@0
   224
@internalComponent
sl@0
   225
*/
sl@0
   226
	{
sl@0
   227
public:
sl@0
   228
	FontStoreFile();
sl@0
   229
	void AddTypeface(FntTypeface* aTypeface);
sl@0
   230
	void AddFontBitmap(FontBitmap* aFontBitmap);
sl@0
   231
	void Externalize(ostream& out);
sl@0
   232
private:
sl@0
   233
	void ExternalizeHeader(ostream& out);
sl@0
   234
	void ExternalizeComponents(ostream& out);
sl@0
   235
public:
sl@0
   236
	uid iCollectionUid;
sl@0
   237
	int32 iKPixelAspectRatio;
sl@0
   238
	ObjectList<String*> iCopyrightInfo;
sl@0
   239
private:
sl@0
   240
	streampos iDataStreamId;
sl@0
   241
	RecordList iFontBitmapList;
sl@0
   242
	RecordList iTypefaceList;
sl@0
   243
	};
sl@0
   244
sl@0
   245
class FontStore
sl@0
   246
/**
sl@0
   247
@internalComponent
sl@0
   248
*/
sl@0
   249
	{
sl@0
   250
public:
sl@0
   251
	boolean Store(const String& aFilename);
sl@0
   252
	void AddFontStoreFile(FontStoreFile* aFontStoreFile);
sl@0
   253
	void AddFontBitmap(FontBitmap* aFontBitmap);
sl@0
   254
	Record* FindFontBitmap(String& aLabel);
sl@0
   255
	void AddTypeface(FntTypeface* aTypeface);
sl@0
   256
	Record* FindTypeface(String& aLabel);
sl@0
   257
	FontStore();
sl@0
   258
	~FontStore();
sl@0
   259
private:
sl@0
   260
	FontStoreFile* iFontStoreFile;
sl@0
   261
	RecordList iFontBitmapList;
sl@0
   262
	RecordList iTypefaceList;
sl@0
   263
	};
sl@0
   264
sl@0
   265
#endif