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 RECORD.H
|
sl@0
|
16 |
*
|
sl@0
|
17 |
*/
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
#ifndef __RECORD_H__
|
sl@0
|
21 |
#define __RECORD_H__
|
sl@0
|
22 |
|
sl@0
|
23 |
#include "LEXICAL.H"
|
sl@0
|
24 |
#include "LST.H"
|
sl@0
|
25 |
#include "STRNG.H"
|
sl@0
|
26 |
|
sl@0
|
27 |
/**
|
sl@0
|
28 |
@file
|
sl@0
|
29 |
@publishedAll
|
sl@0
|
30 |
*/
|
sl@0
|
31 |
|
sl@0
|
32 |
const boolean Proportional = 1; /**< WARNING: Constant for internal use ONLY. Compatibility is not guaranteed in future releases. */
|
sl@0
|
33 |
const boolean Serif = 2; /**< WARNING: Constant for internal use ONLY. Compatibility is not guaranteed in future releases. */
|
sl@0
|
34 |
const boolean Symbol = 4; /**< WARNING: Constant for internal use ONLY. Compatibility is not guaranteed in future releases. */
|
sl@0
|
35 |
|
sl@0
|
36 |
/**
|
sl@0
|
37 |
@publishedAll
|
sl@0
|
38 |
WARNING: Function for internal use ONLY. Compatibility is not guaranteed in future releases.
|
sl@0
|
39 |
*/
|
sl@0
|
40 |
inline void ExternalizeStreamOff(ostream& out, streamoff aOffset)
|
sl@0
|
41 |
{
|
sl@0
|
42 |
// This will limit the file to 4gig.
|
sl@0
|
43 |
// Need to change this if all compilers support file size greater than 4gig.
|
sl@0
|
44 |
uint32 offset = static_cast<uint32>(aOffset);
|
sl@0
|
45 |
out.write(reinterpret_cast<char*>(&offset), sizeof(offset));
|
sl@0
|
46 |
}
|
sl@0
|
47 |
|
sl@0
|
48 |
class Record
|
sl@0
|
49 |
/**
|
sl@0
|
50 |
@publishedAll
|
sl@0
|
51 |
WARNING: Class for internal use ONLY. Compatibility is not guaranteed in future releases.
|
sl@0
|
52 |
*/
|
sl@0
|
53 |
{
|
sl@0
|
54 |
public:
|
sl@0
|
55 |
IMPORT_C Record();
|
sl@0
|
56 |
virtual void Externalize(ostream& out) = 0;
|
sl@0
|
57 |
virtual void ExternalizeComponents(ostream&){};
|
sl@0
|
58 |
public:
|
sl@0
|
59 |
String iLabel;
|
sl@0
|
60 |
streampos iStreamId;
|
sl@0
|
61 |
};
|
sl@0
|
62 |
|
sl@0
|
63 |
class RecordList : public ObjectList<Record*>
|
sl@0
|
64 |
/**
|
sl@0
|
65 |
@publishedAll
|
sl@0
|
66 |
WARNING: Class for internal use ONLY. Compatibility is not guaranteed in future releases.
|
sl@0
|
67 |
*/
|
sl@0
|
68 |
{
|
sl@0
|
69 |
public:
|
sl@0
|
70 |
void ExternalizeIds(ostream& out);
|
sl@0
|
71 |
void Externalize(ostream& out);
|
sl@0
|
72 |
void ExternalizeComponents(ostream& out);
|
sl@0
|
73 |
IMPORT_C void Add(Record* aRecord);
|
sl@0
|
74 |
IMPORT_C Record *LabelToRecord(const String& aLabel);
|
sl@0
|
75 |
IMPORT_C void Destroy();
|
sl@0
|
76 |
IMPORT_C ~RecordList();
|
sl@0
|
77 |
};
|
sl@0
|
78 |
|
sl@0
|
79 |
class Typeface
|
sl@0
|
80 |
/**
|
sl@0
|
81 |
@publishedAll
|
sl@0
|
82 |
WARNING: Class for internal use ONLY. Compatibility is not guaranteed in future releases.
|
sl@0
|
83 |
*/
|
sl@0
|
84 |
{
|
sl@0
|
85 |
public:
|
sl@0
|
86 |
IMPORT_C Typeface();
|
sl@0
|
87 |
void Externalize(ostream& out);
|
sl@0
|
88 |
public:
|
sl@0
|
89 |
String iName;
|
sl@0
|
90 |
boolean iFlags;
|
sl@0
|
91 |
};
|
sl@0
|
92 |
|
sl@0
|
93 |
class Point
|
sl@0
|
94 |
/**
|
sl@0
|
95 |
@publishedAll
|
sl@0
|
96 |
WARNING: Class for internal use ONLY. Compatibility is not guaranteed in future releases.
|
sl@0
|
97 |
*/
|
sl@0
|
98 |
{
|
sl@0
|
99 |
public:
|
sl@0
|
100 |
void Externalize(ostream& out);
|
sl@0
|
101 |
public:
|
sl@0
|
102 |
int32 iX;
|
sl@0
|
103 |
int32 iY;
|
sl@0
|
104 |
};
|
sl@0
|
105 |
|
sl@0
|
106 |
#endif
|
sl@0
|
107 |
|