os/graphics/graphicstools/bitmapfonttools/src/RECORD.CPP
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/graphicstools/bitmapfonttools/src/RECORD.CPP	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,94 @@
     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.CPP
    1.19 +*
    1.20 +*/
    1.21 +
    1.22 +
    1.23 +#include "RECORD.H"
    1.24 +
    1.25 +EXPORT_C Record::Record()
    1.26 + :	iLabel(), iStreamId(0)
    1.27 +	{
    1.28 +	}
    1.29 +
    1.30 +void RecordList::ExternalizeIds(ostream& out)
    1.31 +	{
    1.32 +	int32 i;
    1.33 +	int32 size = Size();
    1.34 +	out.write((char*) &size, sizeof(size));
    1.35 +	for (i = 0; i < size; i++)
    1.36 +		{
    1.37 +		::ExternalizeStreamOff(out, (*this)[i]->iStreamId);
    1.38 +		}
    1.39 +	}
    1.40 +
    1.41 +void RecordList::Externalize(ostream& out)
    1.42 +	{
    1.43 +	int32 size = Size();
    1.44 +	out.write ((char*) &size, sizeof(size));
    1.45 +	for (int i = 0; i < size; i++)
    1.46 +		(*this)[i]->Externalize(out);
    1.47 +	}
    1.48 +
    1.49 +void RecordList::ExternalizeComponents(ostream& out)
    1.50 +	{
    1.51 +	int32 size = Size();
    1.52 +	for (int i = 0; i < size; i++)
    1.53 +		(*this)[i]->ExternalizeComponents(out);
    1.54 +	}
    1.55 +
    1.56 +EXPORT_C void RecordList::Add(Record* aRecord)
    1.57 +	{
    1.58 +	if (!LabelToRecord(aRecord->iLabel))
    1.59 +		List<Record*>::Add(aRecord);
    1.60 +	}
    1.61 +
    1.62 +EXPORT_C Record *RecordList::LabelToRecord(const String& aLabel)
    1.63 +	{
    1.64 +	int32 size = Size();
    1.65 +	Record *record=NULL;
    1.66 +	if (aLabel.Length())
    1.67 +		for (int i = 0; i < size; i++)
    1.68 +			if ((*this)[i]->iLabel == aLabel)
    1.69 +				record = (*this)[i];
    1.70 +	return record;
    1.71 +	}
    1.72 +
    1.73 +EXPORT_C void RecordList::Destroy()
    1.74 +	{
    1.75 +	List<Record*>::Destroy();
    1.76 +	}
    1.77 +
    1.78 +EXPORT_C RecordList::~RecordList()
    1.79 +	{
    1.80 +	}
    1.81 +
    1.82 +EXPORT_C Typeface::Typeface()
    1.83 + :	iName(), iFlags(0)
    1.84 +	{
    1.85 +	}
    1.86 +
    1.87 +void Typeface::Externalize(ostream& out)
    1.88 +	{
    1.89 +	iName.Externalize(out);
    1.90 +	out.put((char) iFlags);
    1.91 +	}
    1.92 +
    1.93 +void Point::Externalize(ostream& out)
    1.94 +	{
    1.95 +	out.write((char*) &iX, sizeof(iX));
    1.96 +	out.write((char*) &iY, sizeof(iY));
    1.97 +	}