messagingapp/msgui/unifiededitor/src/msgattachmentcontainer.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Mon, 03 May 2010 12:29:07 +0300
changeset 25 84d9eb65b26f
parent 23 238255e8b033
child 27 e4592d119491
permissions -rw-r--r--
Revision: 201015 Kit: 201018

/*
 * 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: attachment container class
 *
 */


// INCLUDES
#include <QGraphicsLinearLayout>
#include <QFileInfo>
#include <HbFrameItem>
#include <HbFrameDrawer>

// USER INCLUDES
#include "msgattachmentcontainer.h"
#include "unieditorgenutils.h"
#include "msgmonitor.h"
#include "mmsconformancecheck.h"

// Constants

//---------------------------------------------------------------
// MsgAttachmentContainer::MsgAttachmentContainer
// @see header file
//---------------------------------------------------------------
MsgAttachmentContainer::MsgAttachmentContainer( const QString& pluginPath, QGraphicsItem *parent ) :
HbWidget(parent),
mPluginPath(pluginPath),
mIsMMContent(false)
{
    mLayout = new QGraphicsLinearLayout(Qt::Vertical, this);
    mLayout->setContentsMargins(0,0,0,0);
    mLayout->setSpacing(0);
    mMmsConformanceCheck = new MmsConformanceCheck;
}

//---------------------------------------------------------------
// MsgAttachmentContainer::~MsgAttachmentContainer
// @see header file
//---------------------------------------------------------------
MsgAttachmentContainer::~MsgAttachmentContainer()
{
    delete mMmsConformanceCheck;
}

//---------------------------------------------------------------
// MsgAttachmentContainer::addAttachment
// @see header file
//---------------------------------------------------------------
MsgAttachmentContainer::AddAttachmentStatus 
    MsgAttachmentContainer::addAttachment(const QString& filepath)
{
    //check for insert conformance
    if(EInsertSuccess != mMmsConformanceCheck->checkModeForInsert(filepath))
        return EAddNotSupported;

    int msgSize = messageSize();
    QFileInfo fileinfo(filepath);
    int fileSize = fileinfo.size() + KEstimatedMimeHeaderSize;
    
    if( (fileSize + msgSize) <= MsgMonitor::maxMmsSize())
    {
        MsgUnifiedEditorAttachment* att = new MsgUnifiedEditorAttachment(
            mPluginPath, filepath, fileSize, this);
        if( ((mAttachmentList.count() == 0) && att->isMultimediaContent()) ||
                ((mAttachmentList.count() == 1) && !mIsMMContent) )
        {
            mIsMMContent = true;
        }
        mAttachmentList << att;
        int index = mLayout->count();
        mLayout->insertItem(index,att);
        connect(att, SIGNAL(deleteMe(MsgUnifiedEditorAttachment*)),
            this, SLOT(deleteAttachment(MsgUnifiedEditorAttachment*)));

        // emit to signal that container content & size changed
        emit contentChanged();
    }
    else
    {
        return EAddSizeExceed;
    }
    return EAddSuccess;
}

//---------------------------------------------------------------
// MsgAttachmentContainer::deleteAttachment
// @see header file
//---------------------------------------------------------------
void MsgAttachmentContainer::deleteAttachment(MsgUnifiedEditorAttachment* attachment)
{
    mAttachmentList.removeOne(attachment);
    mLayout->removeItem(attachment);
    attachment->setParent(NULL);
    delete attachment;

    if( ((mAttachmentList.count() == 1) && !mAttachmentList.first()->isMultimediaContent()) ||
        ((mAttachmentList.count() == 0) && mIsMMContent) )
    {
        mIsMMContent = false;
    }

    // emit to indicate change in container content & size
    emit contentChanged();
    if(mAttachmentList.count() == 0)
    {
        emit emptyAttachmentContainer();
    }
}

//---------------------------------------------------------------
// MsgAttachmentContainer::count
// @see header file
//---------------------------------------------------------------
int MsgAttachmentContainer::count()
{
    return mAttachmentList.count();
}

//---------------------------------------------------------------
// MsgAttachmentContainer::attachmentList
// @see header file
//---------------------------------------------------------------
MsgUnifiedEditorAttachmentList MsgAttachmentContainer::attachmentList()
{
    return mAttachmentList;
}

//---------------------------------------------------------------
// MsgAttachmentContainer::containerSize
// @see header file
//---------------------------------------------------------------
int MsgAttachmentContainer::containerSize()
{
    int attCount = count();
    int containerSize = 0;
    
    for(int i=0; i<attCount; i++)
    {
        containerSize += mAttachmentList.at(i)->size();
    }
    return containerSize;
}

//---------------------------------------------------------------
// MsgAttachmentContainer::messageSize
// @see header file
//---------------------------------------------------------------
int MsgAttachmentContainer::messageSize()
{
    return containerSize() + MsgMonitor::bodySize() + MsgMonitor::subjectSize();
}

//---------------------------------------------------------------
// MsgAttachmentContainer::hasMMContent
// @see header file
//---------------------------------------------------------------
bool MsgAttachmentContainer::hasMMContent()
{
    return mIsMMContent;
}

//EOF