uifw/EikStd/coctlsrc/smileyiconrecord.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Mon, 21 Jun 2010 15:57:43 +0300
branchRCL_3
changeset 38 c52421ed5f07
parent 0 2f259fa3e83a
child 55 aecbbf00d063
permissions -rw-r--r--
Revision: 201023 Kit: 2010125

/*
* Copyright (c) 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:  smiely engine class
*
*/

#include "smileymanager.h"
#include "smileyiconrecord.h"
#include "smileyimagedata.h"

// ======== MEMBER FUNCTIONS ========
// ---------------------------------------------------------------------------
// CSmileyIcon::CSmileyIcon
// ---------------------------------------------------------------------------
//
CSmileyIcon::CSmileyIcon( TText aCode ) : iCode( aCode )
    {
    }

// ---------------------------------------------------------------------------
// CSmileyIcon::~CSmileyIcon
// ---------------------------------------------------------------------------
//
CSmileyIcon::~CSmileyIcon()
    {
    if ( iImage )
        {
        iImage->RemoveFromRefArray( this );
        }
    }

// ---------------------------------------------------------------------------
// CSmileyIcon::SetSmileyString
// ---------------------------------------------------------------------------
//
void CSmileyIcon::SetSmileyString( const TDesC& aString )
    { 
    TInt strLength( aString.Length() );
    if ( strLength > CSmileyManager::KMaxLength )
        {
        strLength = CSmileyManager::KMaxLength;
        }
    iStr.Copy( aString.Mid( 0, strLength ) ); 
    };

// ======== MEMBER FUNCTIONS ========
// ---------------------------------------------------------------------------
// CSmileyIconRecord::CSmileyIconRecord
// ---------------------------------------------------------------------------
//
CSmileyIconRecord::CSmileyIconRecord()
    {
    }

// ---------------------------------------------------------------------------
// CSmileyIconRecord::~CSmileyIconRecord
// ---------------------------------------------------------------------------
//
CSmileyIconRecord::~CSmileyIconRecord()
    {
    iIconArray.ResetAndDestroy();
    iIconArray.Close();
    }

// ---------------------------------------------------------------------------
// CSmileyIconRecord::InsertIcon
// ---------------------------------------------------------------------------
//
void CSmileyIconRecord::InsertIconL( CSmileyIcon* aIcon )
    {
    if ( !aIcon )
        {
        return;
        }
    TInt index( 0 );
    TInt count( iIconArray.Count() );
    for ( ; index < count; index++ )
        {
        if ( iIconArray[index]->DocPos() >= aIcon->DocPos() )
            {
            break;
            }
        }
    InsertIconAtL( aIcon, index );
    }

// ---------------------------------------------------------------------------
// CSmileyIconRecord::HandleTextDelete
// ---------------------------------------------------------------------------
//
void CSmileyIconRecord::HandleTextDelete( TInt aStart, TInt aLength )
    {
    DeleteIconsIn( aStart, aLength );
    TInt index( FirstIndexAfter( aStart ) );
    TInt count( iIconArray.Count() );
    for ( ; index != KErrNotFound && index < count; index++ )
        {
        TInt newPos( iIconArray[index]->DocPos() - aLength );
        iIconArray[index]->SetDocPos( newPos );
        }
    }

// ---------------------------------------------------------------------------
// CSmileyIconRecord::HandleTextDelete
// ---------------------------------------------------------------------------
//
void CSmileyIconRecord::HandleTextInsert( TInt aStart, TInt aLength )
    {
    TInt index( FirstIndexAfter( aStart ) );
    TInt count( iIconArray.Count() );
    for ( ; index != KErrNotFound && index < count; index++ )
        {
        TInt newPos( iIconArray[index]->DocPos() + aLength );
        iIconArray[index]->SetDocPos( newPos );
        }
    }

// ---------------------------------------------------------------------------
// CSmileyIconRecord::SmileyRange
// ---------------------------------------------------------------------------
//
CSmileyIcon* CSmileyIconRecord::SmileyIconAtPos( TInt aDocPos )
    {
    TInt count( iIconArray.Count() );
    for ( TInt i( 0 ); i < count; i++ )
        {
        CSmileyIcon* icon( iIconArray[i] );
        if ( icon->DocPos() <= aDocPos && 
             icon->DocPos() + icon->SmileyLength() > aDocPos )
            {
            return iIconArray[i];
            }
        }
    return NULL;
    }

// ---------------------------------------------------------------------------
// CSmileyIconRecord::DeleteIconAtPos
// ---------------------------------------------------------------------------
//
void CSmileyIconRecord::DeleteIconAtPos( TInt aDocPos )
    {
    TInt count( iIconArray.Count() );
    for ( TInt i( 0 ); i < count; i++ )
        {
        CSmileyIcon* icon( iIconArray[i] );
        if ( icon->DocPos() <= aDocPos && 
             icon->DocPos() + icon->SmileyLength() > aDocPos )
            {
            iIconArray.Remove( i );
            delete icon;            
            break;
            }
        }
    }

// ---------------------------------------------------------------------------
// CSmileyIconRecord::SmileyRange
// ---------------------------------------------------------------------------
//
void CSmileyIconRecord::CancelSelection()
    {
    TInt count( iIconArray.Count() );
    for ( TInt i( 0 ); i < count; i++ )
        {
        iIconArray[i]->EnableHighlight( EFalse );
        }
    }

// ---------------------------------------------------------------------------
// CSmileyIconRecord::SmileyRange
// ---------------------------------------------------------------------------
//
void CSmileyIconRecord::SetSelection( TInt aStart, TInt aLength )
    {
    TInt firstIndex( FirstIndexIn( aStart, aLength ) );
    TInt lastIndex( LastIndexIn( aStart, aLength, firstIndex ) );
    for ( TInt i( firstIndex ); i != KErrNotFound && i <= lastIndex; i++ )
        {
        iIconArray[i]->EnableHighlight( ETrue );
        }
    }

// ---------------------------------------------------------------------------
// CSmileyIconRecord::HasSmileyIcon
// ---------------------------------------------------------------------------
//
TBool CSmileyIconRecord::HasSmileyIcon()
    {
    return ( iIconArray.Count() > 0 );
    }

//-------------------Private member function----------------------------------
// ---------------------------------------------------------------------------
// CSmileyIconRecord::InsertIconAtL
// ---------------------------------------------------------------------------
//
void CSmileyIconRecord::InsertIconAtL( CSmileyIcon* aIcon, TInt aIndex )
    {
    TInt index( aIndex < 0 ? 0 : aIndex );
    if ( index >= iIconArray.Count() )
        {
        iIconArray.AppendL( aIcon );
        }
    else
        {
        iIconArray.InsertL( aIcon, index );
        }
    }

// ---------------------------------------------------------------------------
// CSmileyIconRecord::DeleteIconsIn
// ---------------------------------------------------------------------------
//
void CSmileyIconRecord::DeleteIconsIn( TInt aStart, TInt aLength )
    {
    TInt startIndex( FirstIndexIn( aStart, aLength ) );
    TInt endIndex( LastIndexIn( aStart, aLength, startIndex ) );
    TInt count( endIndex - startIndex );
    for ( TInt i( 0 ); startIndex != KErrNotFound && i <= count; i++ )
        {
        CSmileyIcon* icon( iIconArray[startIndex] );
        iIconArray.Remove( startIndex );
        delete icon;
        }
    }

// ---------------------------------------------------------------------------
// CSmileyIconRecord::InsertIconAtL
// ---------------------------------------------------------------------------
//
TInt CSmileyIconRecord::FirstIndexAfter( TInt aDocPos, TInt aSearchStart )
    {
    TInt i = ( aSearchStart < 0 || aSearchStart >= iIconArray.Count() ? 0 : 
        aSearchStart );
    TInt count( iIconArray.Count() );
    for ( ; i < count; i++ )
        {
        if ( iIconArray[i]->DocPos() >= aDocPos )
            {
            return i;            
            }
        }
    return KErrNotFound;
    }

// ---------------------------------------------------------------------------
// CSmileyIconRecord::InsertIconAtL
// ---------------------------------------------------------------------------
//
TInt CSmileyIconRecord::FirstIndexIn( TInt aStart, TInt aLength )
    {
    TInt count( iIconArray.Count() );
    for ( TInt i( 0 ); i < count; i++ )
        {
        if ( iIconArray[i]->DocPos() < aStart + aLength && 
            iIconArray[i]->EndPos() > aStart )
            {
            return i;
            }
        }
    return KErrNotFound;
    }

// ---------------------------------------------------------------------------
// CSmileyIconRecord::InsertIconAtL
// ---------------------------------------------------------------------------
//
TInt CSmileyIconRecord::LastIndexIn( TInt aStart, TInt aLength, 
    TInt aFirstIndex )
    {
    TInt index( FirstIndexAfter( aStart + aLength, aFirstIndex ) );
    if ( index == KErrNotFound )
        {
        return iIconArray.Count() > 0 ? iIconArray.Count() - 1 : index;
        }
    if ( index > 0 )
        {
        return index - 1;
        }
    return aFirstIndex;
    }