os/textandloc/textrendering/texthandling/sfields/FLDARRAY.H
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     5 * under the terms of "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description: 
    15 *
    16 */
    17 
    18 
    19 
    20 #ifndef __FLDARRAY_H__
    21 #define __FLDARRAY_H__
    22 
    23 #include <e32std.h>
    24 #include <e32base.h>
    25 #include <s32stor.h>
    26 #include <fldbase.h>
    27 
    28 class TTextFieldHeader
    29 /**
    30 Encodes a field type and the stream ID of the picture body.
    31 The stream ID can be replaced by a pointer.
    32 @internalComponent
    33 */
    34 	{
    35 public:
    36 	TTextFieldHeader();
    37 	IMPORT_C void InternalizeL(RReadStream& aStream); // internalizes the header info only
    38 	IMPORT_C void ExternalizeL(RWriteStream& aStream)const; // externalizes the header info only
    39 public:
    40 	TSwizzle<CTextField> iField;
    41 	TUid iFieldType;
    42 	};
    43 
    44 
    45 class TTextFieldEntry
    46 /**
    47 Container for a TTextField - placed in the field array
    48 @internalComponent
    49 */
    50 	{
    51 public:
    52 	IMPORT_C void InternalizeL(RReadStream& aStream);
    53 	IMPORT_C void ExternalizeL(RWriteStream& aStream)const;
    54 public:
    55 	TInt iPreFieldLen; // the gap before the field in characters
    56 	TInt iFieldValueLen; // length of field in characters
    57 	TTextFieldHeader iFieldHeader; // contains the field itself
    58 	};
    59 
    60 
    61 class TRollbackInfo
    62 /**
    63 @internalComponent
    64 */
    65 	{
    66 public:
    67 	TInt iTotalEntries;
    68 	TInt iEntryNum;
    69 	TInt iPreFieldLen;
    70 	TInt iFieldValueLen;
    71 	};
    72 
    73 
    74 #endif