ui/commandhandlers/commoncommandhandlers/src/glxcommandhandlersend.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Thu, 27 May 2010 12:51:42 +0300
changeset 33 1ee2af37811f
parent 29 2c833fc9e98f
child 36 6481344a6d67
permissions -rw-r--r--
Revision: 201019 Kit: 2010121

/*
* 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: 
*
*/

#include "glxcommandhandlersend.h"
#include <QModelIndex>
#include <shareui.h>
#include <glxmodelparm.h>
#include <glxmediamodel.h>
#include <QAbstractItemModel>

GlxCommandHandlerSend::GlxCommandHandlerSend()
    {
     mSendUiDialog = new ShareUi();      
    }


GlxCommandHandlerSend::~GlxCommandHandlerSend()
    {
     delete mSendUiDialog;
     mSendUiDialog =NULL;
    }

void GlxCommandHandlerSend::doHandleUserAction(GlxMediaModel* model,QList<QModelIndex> indexList) const
{
   QList <QVariant> fileList;
   QString imagePath ;
   //The Index list is NULL, when the item is selected to be sent from contect menu 
   // and fullscreen view,so that inturn is sending the focused item
    if(indexList.count() == 0)
        {
        imagePath = (model->data(model->index(model->data(model->index(0,0),GlxFocusIndexRole).value<int>(),0),GlxUriRole)).value<QString>();
        fileList.append(QVariant(imagePath));
        }
    else
    {
    for ( int i = 0; i < indexList.count(); i++)
        {        
        imagePath = (model->data(indexList[i],GlxUriRole)).value<QString>();
        fileList.append(QVariant(imagePath));        
        } 
    }                              
    mSendUiDialog->init(fileList,true);
}