os/textandloc/textrendering/texthandling/sfields/FLDBASE.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description: 
sl@0
    15
*
sl@0
    16
*/
sl@0
    17
sl@0
    18
sl@0
    19
#include "FLDBASE.H"
sl@0
    20
#include "FLDSTD.H"
sl@0
    21
sl@0
    22
sl@0
    23
///////////////////////////////////////
sl@0
    24
// CTextField
sl@0
    25
///////////////////////////////////////
sl@0
    26
sl@0
    27
 
sl@0
    28
EXPORT_C TStreamId CTextField::StoreL(CStreamStore& aStore) const
sl@0
    29
// Assumes everything goes into the head stream.
sl@0
    30
// (Must be replaced by concrete pictures that have components)
sl@0
    31
/** Stores the field data to a stream store. Concrete field types with no persistent 
sl@0
    32
data should override this function to return KNullStreamId.
sl@0
    33
sl@0
    34
@param aStore Stream store to which the field data is written. 
sl@0
    35
@return The ID of the stream store. */
sl@0
    36
	{
sl@0
    37
	RStoreWriteStream stream;
sl@0
    38
	TStreamId id=stream.CreateLC(aStore);
sl@0
    39
    stream<< *this;  // provided by the concrete field
sl@0
    40
    stream.CommitL();
sl@0
    41
	CleanupStack::PopAndDestroy();
sl@0
    42
	return id;
sl@0
    43
	}
sl@0
    44
sl@0
    45
 
sl@0
    46
EXPORT_C void CTextField::RestoreL(const CStreamStore& aStore,TStreamId aStreamId)
sl@0
    47
// Creates a read-stream over aStore, and opens it over the specified stream ID.
sl@0
    48
//
sl@0
    49
	/** Restores the field data from a stream store. Concrete field types with no persistent 
sl@0
    50
	data should override this function to do nothing.
sl@0
    51
	
sl@0
    52
	@param aStore Stream store containing the field data to restore. 
sl@0
    53
	@param aId The ID of the stream store in which the field data was previously 
sl@0
    54
	stored. */
sl@0
    55
	{
sl@0
    56
	RStoreReadStream stream;
sl@0
    57
	stream.OpenLC(aStore,aStreamId);
sl@0
    58
	stream>> *this;
sl@0
    59
	CleanupStack::PopAndDestroy();
sl@0
    60
	}
sl@0
    61
sl@0
    62
sl@0
    63
sl@0
    64
EXPORT_C void CTextField::ExternalizeL(RWriteStream& /*aStream*/)const
sl@0
    65
//
sl@0
    66
	/** Externalises the field data. Called by StoreL().
sl@0
    67
	
sl@0
    68
	Calling this default implementation raises a panic. Concrete field classes 
sl@0
    69
	with persistent data must provide their own implementation of this function. 
sl@0
    70
	Concrete field classes with no persistent data must provide a StoreL() implementation 
sl@0
    71
	that just returns KNullStreamId.
sl@0
    72
	
sl@0
    73
	@param aStream Not used. */
sl@0
    74
	{Panic(EDefaultFieldExternalizeCalled);}
sl@0
    75