sl@0: /* sl@0: * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * Header RECORD.H sl@0: * sl@0: */ sl@0: sl@0: sl@0: #ifndef __RECORD_H__ sl@0: #define __RECORD_H__ sl@0: sl@0: #include "LEXICAL.H" sl@0: #include "LST.H" sl@0: #include "STRNG.H" sl@0: sl@0: /** sl@0: @file sl@0: @publishedAll sl@0: */ sl@0: sl@0: const boolean Proportional = 1; /**< WARNING: Constant for internal use ONLY. Compatibility is not guaranteed in future releases. */ sl@0: const boolean Serif = 2; /**< WARNING: Constant for internal use ONLY. Compatibility is not guaranteed in future releases. */ sl@0: const boolean Symbol = 4; /**< WARNING: Constant for internal use ONLY. Compatibility is not guaranteed in future releases. */ sl@0: sl@0: /** sl@0: @publishedAll sl@0: WARNING: Function for internal use ONLY. Compatibility is not guaranteed in future releases. sl@0: */ sl@0: inline void ExternalizeStreamOff(ostream& out, streamoff aOffset) sl@0: { sl@0: // This will limit the file to 4gig. sl@0: // Need to change this if all compilers support file size greater than 4gig. sl@0: uint32 offset = static_cast(aOffset); sl@0: out.write(reinterpret_cast(&offset), sizeof(offset)); sl@0: } sl@0: sl@0: class Record sl@0: /** sl@0: @publishedAll sl@0: WARNING: Class for internal use ONLY. Compatibility is not guaranteed in future releases. sl@0: */ sl@0: { sl@0: public: sl@0: IMPORT_C Record(); sl@0: virtual void Externalize(ostream& out) = 0; sl@0: virtual void ExternalizeComponents(ostream&){}; sl@0: public: sl@0: String iLabel; sl@0: streampos iStreamId; sl@0: }; sl@0: sl@0: class RecordList : public ObjectList sl@0: /** sl@0: @publishedAll sl@0: WARNING: Class for internal use ONLY. Compatibility is not guaranteed in future releases. sl@0: */ sl@0: { sl@0: public: sl@0: void ExternalizeIds(ostream& out); sl@0: void Externalize(ostream& out); sl@0: void ExternalizeComponents(ostream& out); sl@0: IMPORT_C void Add(Record* aRecord); sl@0: IMPORT_C Record *LabelToRecord(const String& aLabel); sl@0: IMPORT_C void Destroy(); sl@0: IMPORT_C ~RecordList(); sl@0: }; sl@0: sl@0: class Typeface sl@0: /** sl@0: @publishedAll sl@0: WARNING: Class for internal use ONLY. Compatibility is not guaranteed in future releases. sl@0: */ sl@0: { sl@0: public: sl@0: IMPORT_C Typeface(); sl@0: void Externalize(ostream& out); sl@0: public: sl@0: String iName; sl@0: boolean iFlags; sl@0: }; sl@0: sl@0: class Point sl@0: /** sl@0: @publishedAll sl@0: WARNING: Class for internal use ONLY. Compatibility is not guaranteed in future releases. sl@0: */ sl@0: { sl@0: public: sl@0: void Externalize(ostream& out); sl@0: public: sl@0: int32 iX; sl@0: int32 iY; sl@0: }; sl@0: sl@0: #endif sl@0: