os/textandloc/textrendering/texthandling/inc/FLDBASE.H
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
#ifndef __FLDBASE_H__
sl@0
    20
#define __FLDBASE_H__
sl@0
    21
sl@0
    22
#include <e32std.h>
sl@0
    23
#include <e32base.h>
sl@0
    24
#include <s32stor.h>
sl@0
    25
sl@0
    26
// Classes defined:
sl@0
    27
class CTextField;
sl@0
    28
class MTextFieldFactory;
sl@0
    29
sl@0
    30
sl@0
    31
sl@0
    32
sl@0
    33
class CTextField : public CBase
sl@0
    34
/** 
sl@0
    35
Abstract class: derive from this to instantiate a particular type of field (eg date etc)
sl@0
    36
Abstract base class for all field types.
sl@0
    37
sl@0
    38
A field contains information which relates to a text object and can be automatically 
sl@0
    39
updated, e.g. page number or current date and time. Fields must implement 
sl@0
    40
the pure virtual functions defined in this class, including Value() which 
sl@0
    41
should calculate and return the field's new value, and Type() which returns 
sl@0
    42
the field's type UID. The type UID identifies the field type to the field 
sl@0
    43
factory (see class MTextFieldFactory). 
sl@0
    44
@publishedAll
sl@0
    45
@released
sl@0
    46
*/
sl@0
    47
	{
sl@0
    48
public:
sl@0
    49
	IMPORT_C virtual TStreamId StoreL(CStreamStore& aStore)const; // calls ExternalizeL()
sl@0
    50
	IMPORT_C virtual void RestoreL(const CStreamStore& aStore,TStreamId aId); // calls InternalizeL()
sl@0
    51
	//
sl@0
    52
	// Should be replaced by concrete derived classes.
sl@0
    53
	IMPORT_C virtual void ExternalizeL(RWriteStream& aStream)const; // Externalize state info for the field
sl@0
    54
    /** Internalises the field data. Called by RestoreL().
sl@0
    55
	
sl@0
    56
	@param aStream Stream from which the field data should be internalised. */
sl@0
    57
	virtual void InternalizeL(RReadStream& aStream)=0;
sl@0
    58
	//
sl@0
    59
	/** Sets aValueText to the current field value if the buffer is large enough. If 
sl@0
    60
	not, aValueText is not changed, and the function returns the length which 
sl@0
    61
	is required to hold the field's value.
sl@0
    62
	
sl@0
    63
	@param aValueText Descriptor which on return contains the field's updated 
sl@0
    64
	value. 
sl@0
    65
	@return Zero on success, otherwise, the length of the buffer which is required 
sl@0
    66
	to hold the field's updated value. */
sl@0
    67
	virtual TInt Value(TPtr& aValueText)=0; 
sl@0
    68
	//	
sl@0
    69
	/** Returns the field's type UID.
sl@0
    70
	
sl@0
    71
	@return The field's type UID. */
sl@0
    72
	virtual TUid Type()const=0;
sl@0
    73
	};
sl@0
    74
sl@0
    75
sl@0
    76
 
sl@0
    77
sl@0
    78
class MTextFieldFactory
sl@0
    79
/** 
sl@0
    80
Abstract class that should be derived from by any application that wishes to support fields
sl@0
    81
Abstract base class for field factories.
sl@0
    82
sl@0
    83
To use fields in editable text,
sl@0
    84
sl@0
    85
1) Define a field factory class (derived from MTextFieldFactory) that implements 
sl@0
    86
NewFieldL().
sl@0
    87
sl@0
    88
2) Create an instance of the field factory and set this to be the editable 
sl@0
    89
text object's field factory (see CPlainText::SetFieldFactory(), or you can 
sl@0
    90
specify a field factory in the text object 's NewL()).
sl@0
    91
sl@0
    92
3) Create a new field (CPlainText::NewTextFieldL()), specifying the field 
sl@0
    93
type UID (the built in field type UID values are defined in flddef.h). This 
sl@0
    94
calls the factory's NewFieldL() function.
sl@0
    95
sl@0
    96
4) Insert the field into the text object (CPlainText::InsertFieldL()).
sl@0
    97
sl@0
    98
5) Evaluate the field (CPlainText::UpdateFieldL()) and then re-evaluate when 
sl@0
    99
required. 
sl@0
   100
@publishedAll
sl@0
   101
@released
sl@0
   102
*/
sl@0
   103
	{
sl@0
   104
public:
sl@0
   105
	
sl@0
   106
	/** Implementations of this function should create a field of the type specified, 
sl@0
   107
	returning NULL if the field type is not recognised or supported.
sl@0
   108
	
sl@0
   109
	@param aFieldType The field's type UID. 
sl@0
   110
	@return Pointer to the new text field, or NULL if the factory does not recognise 
sl@0
   111
	or support the field type. */
sl@0
   112
	virtual CTextField* NewFieldL(TUid aFieldType)=0; 
sl@0
   113
	// Creates a field of the type specified
sl@0
   114
	// Returns NULL if it does not recognise/support the field type
sl@0
   115
	};
sl@0
   116
sl@0
   117
sl@0
   118
#endif