messagingapp/msgui/unifiededitor/inc/msgunieditorattachmentcontainer.h
author hgs
Tue, 19 Oct 2010 11:30:16 +0530
changeset 76 60a8a215b0ec
parent 56 f42d9a78f435
permissions -rw-r--r--
201041

/*
 * 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: Container class for msg attachments
 *
 */
#ifndef MSG_UNIFIED_EDITOR_ATTACHMENT_CONTAINER_H
#define MSG_UNIFIED_EDITOR_ATTACHMENT_CONTAINER_H

#include <msgunieditorbasewidget.h>
#include "msgunieditorattachment.h"

class QGraphicsLinearLayout;
class MmsConformanceCheck;

class MsgAttachmentContainer : public MsgUnifiedEditorBaseWidget
    {
    Q_OBJECT

public:
    /**
     * Add Attachment success/failure states
     */
    enum AddAttachmentStatus
    {
        EAddSuccess = 0, EAddNotSupported, EAddSizeExceed
    };

    /**
     * Constructor
     */
    MsgAttachmentContainer( QGraphicsItem *parent = 0);

    /**
     * Destructor
     */
    ~MsgAttachmentContainer();

    /**
     * add attachment to the container
	 * @param filepath of the attachment
	 * @return add operation status
     */
    MsgAttachmentContainer::AddAttachmentStatus addAttachment(
            const QString& filepath);

    /**
     * count of attachments in the container
	 * @return count
     */
    int count();
    
    /**
     * List of attachments in the container
     * @return attachments list
     */
    MsgUnifiedEditorAttachmentList attachmentList();
    
    /**
     * Check if the container hold multimedia content
     * @return true, if multimedia content is present
     *         false, otherwise.
     */
    bool hasMMContent();
    
    /**
     * Size of the attachment container
     * @return size
     */
    int containerSize();
    
    /**
     * check if given file name is in use or not.
     * @param fileName, file name under queation
     * @return true/false if in use/not use.
     */
    bool fileNameInUse(const QString& fileName);

signals:

    /**
     * emit to indicate view that container is now empty
	 * View deletes the container if it becomes empty
     */
    void emptyAttachmentContainer();
    
public slots:
    /**
     * delete attachment from the container
     */
    void deleteAttachment(MsgUnifiedEditorAttachment* attachment);
    
private:
    
    /**
     * container's layout
     */
    QGraphicsLinearLayout* mLayout;
    
    /**
     * MMS conformance check utility class
     */
    MmsConformanceCheck* mMmsConformanceCheck;

    /**
     * attachment list
     */
    MsgUnifiedEditorAttachmentList mAttachmentList;

    /**
     * flag to tell, if container is holding MM content
     */
    bool mIsMMContent;
    
#ifdef UNIEDITOR_UNIT_TEST
    friend class TestMsgAttachmentContainer;
#endif
    };

#endif // MSG_UNIFIED_EDITOR_ATTACHMENT_CONTAINER_H