messagingapp/msgui/unifiededitor/inc/msgattachmentcontainer.h
branchGCC_SURGE
changeset 47 5b14749788d7
parent 35 a32b19fb291e
parent 44 36f374c67aa8
--- a/messagingapp/msgui/unifiededitor/inc/msgattachmentcontainer.h	Thu Jun 17 09:57:06 2010 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,129 +0,0 @@
-/*
- * 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 MSGATTACHMENTCONTAINER_H
-#define MSGATTACHMENTCONTAINER_H
-
-#include <HbWidget>
-#include "msgunieditorattachment.h"
-
-class QGraphicsLinearLayout;
-class MmsConformanceCheck;
-
-class MsgAttachmentContainer : public HbWidget
-    {
-    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();
-
-signals:
-    /**
-     * emit when container content changes
-     */
-    void contentChanged();
-
-    /**
-     * emit to indicate view that container is now empty
-	 * View deletes the container if it becomes empty
-     */
-    void emptyAttachmentContainer();
-    
-private slots:
-    /**
-     * delete attachment from the container
-     */
-    void deleteAttachment(MsgUnifiedEditorAttachment* attachment);
-    
-private:
-    /**
-     * size of the msg
-     */
-    int messageSize();
-    
-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;
-    };
-
-#endif // MSGATTACHMENTCONTAINER_H