messagingapp/msgui/unifiededitor/inc/msgunieditorbody.h
author hgs
Tue, 19 Oct 2010 11:30:16 +0530
changeset 76 60a8a215b0ec
parent 67 fc91263aee62
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:message body. to enter text and show media inserted.
 *
 */

#ifndef MSG_UNIFIED_EDITOR_BODY_H
#define MSG_UNIFIED_EDITOR_BODY_H

#include <msgunieditorbasewidget.h>
#include <f32file.h>
#include "msgunieditorprocessimageoperation.h"

class CMsgMediaResolver;
class CMsgImageInfo;
class MmsConformanceCheck;
class MsgUnifiedEditorPixmapWidget;
class MsgUniFiedEditorAudioWidget;


class MsgUnifiedEditorBody : public MsgUnifiedEditorBaseWidget,
                             public MUniEditorProcessImageOperationObserver
{
    Q_OBJECT

    Q_PROPERTY(bool hasImage READ hasImage WRITE setImage)
    Q_PROPERTY(bool hasAudio READ hasAudio WRITE setAudio)
public:

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

    /**
     * Destructor
     */
    ~MsgUnifiedEditorBody();

    /**
     * Seeker method to return back data to editor's view
     */
    const QStringList mediaContent();
    
    /**
     * get size of body content for MMS size calculations
     * @return size of body content
     */
    int bodySize();
    
     /**
      * Get to find body already contains an image
      * @return bool
      */
     bool hasImage();

     /**
      * Get to find body already contains an audio
      * @return bool
      */
     bool hasAudio();
     
    /**
     * from MUniEditorProcessImageOperationObserver  
     * @see MUniEditorProcessImageOperationObserver
     */ 
    void EditorOperationEvent( TUniEditorProcessImageOperationEvent aEvent,
                               TFileName& aFileName );

    /**
     * remove media content.called when file is not avaialable
     * @param fileName file name
     */
    void removeMediaContent(QString fileName);
    
public slots:
    /**
     * Called to insert image content in editor.
     * @param medialist list of absolute paths of media.
     * @param draftMessage specifies draft message
     */
    void setImage(const QString& imagefile, bool draftMessage = false);

    /**
     * Called to insert audio content in editor.
     * @param medialist list of absolute paths of media.
     */
    void setAudio(const QString& audiofile);


protected: // from HbWidget
    
    /**
     * Reimplemented from base class to give proper size.
     * @see HbWidget
     */
    QSizeF sizeHint(Qt::SizeHint which, const QSizeF &constraint) const;

signals:
    //emitted to enable or disable menu options.
    void enableMenuAction(int action, bool enable);
    
private slots:

    /**
     * called from the media object's item specific menu
     */
    void removeMedia();
    
private:

    /**
     * Get to find body already contains an image
     * @return bool
     */
    void setImage(bool image = false);

    /**
     * Set that body now contains an audio
     */
	void setAudio(bool audio = false);
    
    /**
     * Handler for set image function 
     */
    void handleSetImage();    

    /**
     * Starts the resize animation 
     */
    void startResizeAnimation();

    /**
     * Stops the resize animation 
     */
    void stopResizeAnimation();

private:
    /**
     * Info if message body has image.
     * true if message body has image else false.
     */
    bool mHasImage;

    /**
     * Info if message body has audio.
     * true if message body has audio else false.
     */
    bool mHasAudio;

    /**
     * icon item to preview images.
     */
    MsgUnifiedEditorPixmapWidget* mPixmapItem;

    /**
     * inline audio item
     */
    MsgUniFiedEditorAudioWidget* mAudioItem;

	/**
	 * Image file contained inside body
	 */
    QString mImageFile;

    /**
     * Saves the original file which has to be used if resize fails
     */
    QString mSavedImageFile;

	/**
	 * Audio file contained inside body
	 */
    QString mAudioFile;

	/**
	 * Video file contained inside body
	 */
    QString mVideoFile;
	
    /**
     * MMs conformance check utility class
     */
    MmsConformanceCheck* mMmsConformanceCheck;
	
    /**
     * Size of image in body 
     */
    int mImageSize;
    
    /**
     * Size of audio in body
     */
    int mAudioSize;

    /**
     * CUniEditorProcessImageOperation object
     */
    CUniEditorProcessImageOperation *mProcessImageOperation;

    /**
     * CMsgMediaResolver object
     */
    CMsgMediaResolver* mMediaResolver;
    
    /**
     * CMsgImageInfo object
     */
    CMsgImageInfo *mImageInfo;    
    
    /**
     * Content widget for processing animation.
     */
    HbWidget* mProcessingWidget;

    /**
     * boolean specifying a draft message
     */
    bool mDraftMessage ;
    
#ifdef UNIEDITOR_UNIT_TEST
    friend class TestMsgUnifiedEditorBody;
#endif
    
   
};

#endif //MSG_UNIFIED_EDITOR_BODY_H