os/graphics/graphicstools/bitmapfonttools/inc/RECORD.H
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/graphicstools/bitmapfonttools/inc/RECORD.H	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,107 @@
     1.4 +/*
     1.5 +* Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description: 
    1.18 +* Header RECORD.H
    1.19 +*
    1.20 +*/
    1.21 +
    1.22 +
    1.23 +#ifndef __RECORD_H__
    1.24 +#define __RECORD_H__
    1.25 +
    1.26 +#include "LEXICAL.H"
    1.27 +#include "LST.H"
    1.28 +#include "STRNG.H"
    1.29 +
    1.30 +/**
    1.31 +@file
    1.32 +@publishedAll
    1.33 +*/
    1.34 +
    1.35 +const boolean Proportional = 1; /**< WARNING: Constant for internal use ONLY.  Compatibility is not guaranteed in future releases. */
    1.36 +const boolean Serif = 2; /**< WARNING: Constant for internal use ONLY.  Compatibility is not guaranteed in future releases. */
    1.37 +const boolean Symbol = 4; /**< WARNING: Constant for internal use ONLY.  Compatibility is not guaranteed in future releases. */
    1.38 +
    1.39 +/**
    1.40 +@publishedAll
    1.41 +WARNING: Function for internal use ONLY.  Compatibility is not guaranteed in future releases.
    1.42 +*/
    1.43 +inline void ExternalizeStreamOff(ostream& out, streamoff aOffset)
    1.44 +	{
    1.45 +	// This will limit the file to 4gig.
    1.46 +	// Need to change this if all compilers support file size greater than 4gig.
    1.47 +	uint32 offset = static_cast<uint32>(aOffset);
    1.48 +	out.write(reinterpret_cast<char*>(&offset), sizeof(offset));
    1.49 +	}
    1.50 +
    1.51 +class Record
    1.52 +/**
    1.53 +@publishedAll
    1.54 +WARNING: Class for internal use ONLY.  Compatibility is not guaranteed in future releases.
    1.55 +*/
    1.56 +	{
    1.57 +public:
    1.58 +	IMPORT_C Record();
    1.59 +	virtual void Externalize(ostream& out) = 0;
    1.60 +	virtual void ExternalizeComponents(ostream&){};
    1.61 +public:
    1.62 +	String iLabel;
    1.63 +	streampos iStreamId;
    1.64 +	};
    1.65 +
    1.66 +class RecordList : public ObjectList<Record*>
    1.67 +/**
    1.68 +@publishedAll
    1.69 +WARNING: Class for internal use ONLY.  Compatibility is not guaranteed in future releases.
    1.70 +*/
    1.71 +	{
    1.72 +public:
    1.73 +	void ExternalizeIds(ostream& out);
    1.74 +	void Externalize(ostream& out);
    1.75 +	void ExternalizeComponents(ostream& out);
    1.76 +	IMPORT_C void Add(Record* aRecord);
    1.77 +	IMPORT_C Record *LabelToRecord(const String& aLabel);
    1.78 +	IMPORT_C void Destroy();
    1.79 +	IMPORT_C ~RecordList();
    1.80 +	};
    1.81 +
    1.82 +class Typeface
    1.83 +/**
    1.84 +@publishedAll
    1.85 +WARNING: Class for internal use ONLY.  Compatibility is not guaranteed in future releases.
    1.86 +*/
    1.87 +	{
    1.88 +public:
    1.89 +	IMPORT_C Typeface();
    1.90 +	void Externalize(ostream& out);
    1.91 +public:
    1.92 +	String iName;
    1.93 +	boolean iFlags;
    1.94 +	};
    1.95 +
    1.96 +class Point
    1.97 +/**
    1.98 +@publishedAll
    1.99 +WARNING: Class for internal use ONLY.  Compatibility is not guaranteed in future releases.
   1.100 +*/
   1.101 +	{
   1.102 +public:
   1.103 +	void Externalize(ostream& out);
   1.104 +public:
   1.105 +	int32 iX;
   1.106 +	int32 iY;
   1.107 +	};
   1.108 +
   1.109 +#endif
   1.110 +