os/textandloc/textrendering/texthandling/inc/FLDBASE.H
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/textandloc/textrendering/texthandling/inc/FLDBASE.H	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,118 @@
     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 +#ifndef __FLDBASE_H__
    1.23 +#define __FLDBASE_H__
    1.24 +
    1.25 +#include <e32std.h>
    1.26 +#include <e32base.h>
    1.27 +#include <s32stor.h>
    1.28 +
    1.29 +// Classes defined:
    1.30 +class CTextField;
    1.31 +class MTextFieldFactory;
    1.32 +
    1.33 +
    1.34 +
    1.35 +
    1.36 +class CTextField : public CBase
    1.37 +/** 
    1.38 +Abstract class: derive from this to instantiate a particular type of field (eg date etc)
    1.39 +Abstract base class for all field types.
    1.40 +
    1.41 +A field contains information which relates to a text object and can be automatically 
    1.42 +updated, e.g. page number or current date and time. Fields must implement 
    1.43 +the pure virtual functions defined in this class, including Value() which 
    1.44 +should calculate and return the field's new value, and Type() which returns 
    1.45 +the field's type UID. The type UID identifies the field type to the field 
    1.46 +factory (see class MTextFieldFactory). 
    1.47 +@publishedAll
    1.48 +@released
    1.49 +*/
    1.50 +	{
    1.51 +public:
    1.52 +	IMPORT_C virtual TStreamId StoreL(CStreamStore& aStore)const; // calls ExternalizeL()
    1.53 +	IMPORT_C virtual void RestoreL(const CStreamStore& aStore,TStreamId aId); // calls InternalizeL()
    1.54 +	//
    1.55 +	// Should be replaced by concrete derived classes.
    1.56 +	IMPORT_C virtual void ExternalizeL(RWriteStream& aStream)const; // Externalize state info for the field
    1.57 +    /** Internalises the field data. Called by RestoreL().
    1.58 +	
    1.59 +	@param aStream Stream from which the field data should be internalised. */
    1.60 +	virtual void InternalizeL(RReadStream& aStream)=0;
    1.61 +	//
    1.62 +	/** Sets aValueText to the current field value if the buffer is large enough. If 
    1.63 +	not, aValueText is not changed, and the function returns the length which 
    1.64 +	is required to hold the field's value.
    1.65 +	
    1.66 +	@param aValueText Descriptor which on return contains the field's updated 
    1.67 +	value. 
    1.68 +	@return Zero on success, otherwise, the length of the buffer which is required 
    1.69 +	to hold the field's updated value. */
    1.70 +	virtual TInt Value(TPtr& aValueText)=0; 
    1.71 +	//	
    1.72 +	/** Returns the field's type UID.
    1.73 +	
    1.74 +	@return The field's type UID. */
    1.75 +	virtual TUid Type()const=0;
    1.76 +	};
    1.77 +
    1.78 +
    1.79 + 
    1.80 +
    1.81 +class MTextFieldFactory
    1.82 +/** 
    1.83 +Abstract class that should be derived from by any application that wishes to support fields
    1.84 +Abstract base class for field factories.
    1.85 +
    1.86 +To use fields in editable text,
    1.87 +
    1.88 +1) Define a field factory class (derived from MTextFieldFactory) that implements 
    1.89 +NewFieldL().
    1.90 +
    1.91 +2) Create an instance of the field factory and set this to be the editable 
    1.92 +text object's field factory (see CPlainText::SetFieldFactory(), or you can 
    1.93 +specify a field factory in the text object 's NewL()).
    1.94 +
    1.95 +3) Create a new field (CPlainText::NewTextFieldL()), specifying the field 
    1.96 +type UID (the built in field type UID values are defined in flddef.h). This 
    1.97 +calls the factory's NewFieldL() function.
    1.98 +
    1.99 +4) Insert the field into the text object (CPlainText::InsertFieldL()).
   1.100 +
   1.101 +5) Evaluate the field (CPlainText::UpdateFieldL()) and then re-evaluate when 
   1.102 +required. 
   1.103 +@publishedAll
   1.104 +@released
   1.105 +*/
   1.106 +	{
   1.107 +public:
   1.108 +	
   1.109 +	/** Implementations of this function should create a field of the type specified, 
   1.110 +	returning NULL if the field type is not recognised or supported.
   1.111 +	
   1.112 +	@param aFieldType The field's type UID. 
   1.113 +	@return Pointer to the new text field, or NULL if the factory does not recognise 
   1.114 +	or support the field type. */
   1.115 +	virtual CTextField* NewFieldL(TUid aFieldType)=0; 
   1.116 +	// Creates a field of the type specified
   1.117 +	// Returns NULL if it does not recognise/support the field type
   1.118 +	};
   1.119 +
   1.120 +
   1.121 +#endif