os/textandloc/textrendering/texthandling/sfields/FLDARRAY.H
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/textandloc/textrendering/texthandling/sfields/FLDARRAY.H	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,74 @@
     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 +*
    1.19 +*/
    1.20 +
    1.21 +
    1.22 +
    1.23 +#ifndef __FLDARRAY_H__
    1.24 +#define __FLDARRAY_H__
    1.25 +
    1.26 +#include <e32std.h>
    1.27 +#include <e32base.h>
    1.28 +#include <s32stor.h>
    1.29 +#include <fldbase.h>
    1.30 +
    1.31 +class TTextFieldHeader
    1.32 +/**
    1.33 +Encodes a field type and the stream ID of the picture body.
    1.34 +The stream ID can be replaced by a pointer.
    1.35 +@internalComponent
    1.36 +*/
    1.37 +	{
    1.38 +public:
    1.39 +	TTextFieldHeader();
    1.40 +	IMPORT_C void InternalizeL(RReadStream& aStream); // internalizes the header info only
    1.41 +	IMPORT_C void ExternalizeL(RWriteStream& aStream)const; // externalizes the header info only
    1.42 +public:
    1.43 +	TSwizzle<CTextField> iField;
    1.44 +	TUid iFieldType;
    1.45 +	};
    1.46 +
    1.47 +
    1.48 +class TTextFieldEntry
    1.49 +/**
    1.50 +Container for a TTextField - placed in the field array
    1.51 +@internalComponent
    1.52 +*/
    1.53 +	{
    1.54 +public:
    1.55 +	IMPORT_C void InternalizeL(RReadStream& aStream);
    1.56 +	IMPORT_C void ExternalizeL(RWriteStream& aStream)const;
    1.57 +public:
    1.58 +	TInt iPreFieldLen; // the gap before the field in characters
    1.59 +	TInt iFieldValueLen; // length of field in characters
    1.60 +	TTextFieldHeader iFieldHeader; // contains the field itself
    1.61 +	};
    1.62 +
    1.63 +
    1.64 +class TRollbackInfo
    1.65 +/**
    1.66 +@internalComponent
    1.67 +*/
    1.68 +	{
    1.69 +public:
    1.70 +	TInt iTotalEntries;
    1.71 +	TInt iEntryNum;
    1.72 +	TInt iPreFieldLen;
    1.73 +	TInt iFieldValueLen;
    1.74 +	};
    1.75 +
    1.76 +
    1.77 +#endif