messagingapp/msgui/msgaudiofetcher/src/msgaudiofetcherview.cpp
changeset 70 a15d9966050f
parent 61 8ba0afbb4637
child 72 6f657153cbc5
--- a/messagingapp/msgui/msgaudiofetcher/src/msgaudiofetcherview.cpp	Thu Sep 02 20:23:03 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,124 +0,0 @@
-/*
- * Copyright (c) 2010 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:
- *     The source file for messaging's audio fetcher view.
- *
- */
-
-// SYSTEM INCLUDES
-#include <hbaction.h>
-#include <hbtoolbar.h>
-
-// USER INCLUDES
-#include "msgaudiofetcherview.h"
-#include "msgaudiofetcherwidget.h"
-#include "convergedmessage.h"
-
-#define LOC_SELECT_SOUND hbTrId("txt_messaging_title_select_a_sound")
-
-MsgAudioFetcherView::MsgAudioFetcherView(const QVariantList& data) :
-message(NULL)
-{
-    message = new ConvergedMessage;
-    if(data.length() > 0)
-    {
-        QByteArray dataArray = data.at(0).toByteArray();
-        QDataStream stream(&dataArray, QIODevice::ReadOnly);
-        message->deserialize(stream);
-    }
-    initToolBar();
-    initMainWidget();
-    QMetaObject::connectSlotsByName(this);
-}
-
-MsgAudioFetcherView::~MsgAudioFetcherView()
-{
-    if(message != NULL)
-    {
-        delete message;
-        message = NULL;
-    }
-    removeToolBarAction();
-}
-
-void MsgAudioFetcherView::initMainWidget()
-{
-    mWidget = new MsgAudioFetcherWidget();
-    Q_ASSERT(mWidget);
-    setWidget(mWidget);
-    connect(mWidget, SIGNAL(triggerToolBar(bool)), this, SLOT(enableToolBar(bool)));
-}
-
-void MsgAudioFetcherView::initToolBar()
-{
-    mToolBarLeftAction = new HbAction(this);
-    mToolBarLeftAction->setObjectName("leftAction");
-    //TODO: need localized string
-    mToolBarLeftAction->setText(hbTrId("Play/Pause"));
-    toolBar()->addAction(mToolBarLeftAction);
-    mToolBarLeftAction->setEnabled(false);
-
-    mToolBarRightAction = new HbAction(this);
-    mToolBarRightAction->setObjectName("rightAction");
-    //TODO: need localized string
-    mToolBarRightAction->setText(LOC_SELECT_SOUND);
-    mToolBarRightAction->setEnabled(false);
-    toolBar()->addAction(mToolBarRightAction);
-
-    toolBar()->setOrientation(Qt::Horizontal);
-    toolBar()->setEnabled(false);
-}
-
-void MsgAudioFetcherView::removeToolBarAction()
-{
-    toolBar()->removeAction(mToolBarRightAction);
-    toolBar()->removeAction(mToolBarLeftAction);
-}
-
-void MsgAudioFetcherView::on_leftAction_triggered()
-{
-    mWidget->playOrPause();
-}
-
-void MsgAudioFetcherView::on_rightAction_triggered()
-{    
-    // param list for switching to editor view
-    QVariantList params;
-    QByteArray dataArray;
-    QDataStream messageStream
-    (&dataArray, QIODevice::WriteOnly | QIODevice::Append);
-
-    QString filepath(mWidget->getCurrentItemPath());
-    ConvergedMessageAttachment* attachment =
-            new ConvergedMessageAttachment(filepath);
-    ConvergedMessageAttachmentList attachmentList;
-    attachmentList.append(attachment);
-    message->addAttachments(attachmentList);
-    
-    message->serialize(messageStream);
-    params << MsgBaseView::UNIEDITOR;
-    params << MsgBaseView::AUDIOFETCHER;
-    params << dataArray;
-    params << MsgBaseView::ADD_AUDIO;
-    emit switchView(params);
-}
-
-void MsgAudioFetcherView::enableToolBar(bool enable)
-{
-    mToolBarRightAction->setEnabled(enable);
-    mToolBarLeftAction->setEnabled(enable);
-    toolBar()->setEnabled(enable);
-}
-
-//End of File