diff -r 000000000000 -r 8466d47a6819 emailuis/uicomponents/inc/fsrichtextfields.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/emailuis/uicomponents/inc/fsrichtextfields.h Thu Dec 17 08:39:21 2009 +0200 @@ -0,0 +1,145 @@ +/* +* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: This file defines classes CNewLineField, CPictureField, CSmileyField +* +*/ +#ifndef C_FSRICHTEXTFIELDS_H +#define C_FSRICHTEXTFIELDS_H + +#include + +const TUid KFsRichTextPictureFieldUid = {268435540}; +const TUid KFsRichTextSmileyFieldUid = {268435539}; +const TUid KFsRichTextNewLineFieldUid = {268435538}; + + +class CNewLineField : public CTextField + { +public: + /** + * CNewLineField() + * + * + */ + CNewLineField(); + + /** + * Value(TPtr& aValueText); + * + * @param aValueText + */ + TInt Value(TPtr& aValueText); + + /** + * InternalizeL(RReadStream& aStream); + * + * @param aStream + */ + void InternalizeL(RReadStream& aStream); + + /** + * Type()const; + * + * + */ + TUid Type()const; + }; + + +class CPictureField : public CTextField + { +public: + /** + * CPictureField(TSize aSize); + * + * @param aSize + */ + CPictureField(TSize aSize); + + /** + * Value(TPtr& aValueText); + * + * @param aValueText + */ + TInt Value(TPtr& aValueText); + + /** + * InternalizeL(RReadStream& aStream); + * + * @param aStream + */ + void InternalizeL(RReadStream& aStream); + + /** + * Type()const; + * + * + */ + TUid Type()const; + + /** + * GetSize(TSize& aSize); + * + * @param aSize + */ + void GetSize(TSize& aSize); + +protected: + TSize iSize; + }; + + +class CSmileyField : public CTextField + { +public: + /** + * CSmileyField(TInt aSmileyIndex); + * + * @param aSmileyIndex + */ + CSmileyField(TInt aSmileyIndex); + + /** + * Value(TPtr& aValueText); + * + * @param aValueText + */ + TInt Value(TPtr& aValueText); + + /** + * InternalizeL(RReadStream& aStream); + * + * @param aStream + */ + void InternalizeL(RReadStream& aStream); + + /** + * Type()const; + * + * + */ + TUid Type()const; + + /** + * GetSmileyIndex(); + * + * + */ + TInt GetSmileyIndex(); + +protected: + TInt iSmileyIndex; + }; + +#endif //FSRICHTEXTFIELDS_H \ No newline at end of file