diff -r 2b7283837edb -r 3104fc151679 imstutils/imconversationview/imcvuiapp/inc/cimcvappsmileyinformation.h --- a/imstutils/imconversationview/imcvuiapp/inc/cimcvappsmileyinformation.h Thu Aug 19 09:41:53 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,146 +0,0 @@ -/* -* Copyright (c) 2007-2008 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: Storage to save smiley information -* -*/ - - -#ifndef CIMCVAPPSMILEYINFORMATION_H -#define CIMCVAPPSMILEYINFORMATION_H - -// INCLUDES -#include - - -/** - * Smiley storage for saving information of one smiley and it's - * position inside a text. - * - * @lib imcvuiapp.exe - */ -class CIMCVAppSmileyInformation : public CBase - { - -public: - - /** - * Symbian constructor - */ - static CIMCVAppSmileyInformation* NewL(); - - /** - * Destructor - */ - virtual ~CIMCVAppSmileyInformation(); - - /** - * Get position of smiley inside a text - * - * @since S60 v3.0 - * @return position of smiley - */ - TInt Position() const; - - /** - * Set position of smiley inside a text - * - * @since S60 v3.0 - * @param aPosition Position of smiley - */ - void SetPosition( TInt aPosition ); - - /** - * Get the icon index of this smiley. - * - * @since S60 v3.0 - * @return Index to a correct icon. - */ - TInt Index() const; - - /** - * Set icon index of this smiley, - * - * @since S60 v3.0 - * @param aIndex index to an icon - */ - void SetIndex( TInt aIndex ); - - /** - * Get smiley string - * - * @since S60 v3.0 - * @return smiley string - */ - const TDesC& SmileyString() const; - - /** - * Set smiley string. - * - * @since S60 v3.0 - * @param aSmiley smiley string - */ - void SetSmileyStringL( const TDesC& aSmiley ); - - /** - * Flag which tells that this smiley is either in icon format (ETrue) or in - * text format (EFalse) - * - * @since S60 v3.0 - * @return Smiley is icon(ETrue) or text(EFalse) - */ - TBool IsIcon() const; - - /** - * Set format for this smiley. - * - * @since S60 v3.0 - * @param aIsIcon ETrue if this is icon, EFalse if this is text - */ - void SetIcon( TBool aIsIcon ); - - -private: - - /** - * C++ constructor - */ - CIMCVAppSmileyInformation(); - - -private: // data - - /** - * Position of this smiley in text. - */ - TInt iPosition; - - /** - * Index of smiley in icon array - */ - TInt iIndex; - - /** - * Text that contains one smiley e.g. ":-)" - * Own - */ - HBufC* iSmileyString; - - /** - * Is smiley in icon(ETrue) or string(EFalse) format. - */ - TBool iIsIcon; - - }; - -#endif // CIMCVAPPSMILEYINFORMATION_H