homescreenapp/stateplugins/hshomescreenstateplugin/src/hsselectbackgroundstate.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 16 Apr 2010 14:54:01 +0300
changeset 36 cdae8c6c3876
parent 35 f9ce957a272c
child 39 4e8ebe173323
permissions -rw-r--r--
Revision: 201011 Kit: 201015

/*
* 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 <QDir>
#include <QFileInfo>

#include <HbMainWindow>
#include <HbView>

#include "hsselectbackgroundstate.h"
#include "hsscene.h"
#include "hsdomainmodeldatastructures.h"
#include "hswallpaper.h"
#include "hsdatabase.h"
#include "hshomescreenstatecommon.h"

#include "xqaiwgetimageclient.h"
#include "xqaiwcommon.h"

/*! 
    \class HsSelectBackgroundState
    \ingroup group_hshomescreenstateprovider
    \brief Implements imagefetcher event listening and handles those events.

    \sa StateMachine
*/

/*!
    Constructor.         
    \a parent Owner.
*/
HsSelectBackgroundState::HsSelectBackgroundState(QState *parent):
    QState(parent),
    mImageFetcher(0),
    mSourceView(0)
{
    mImageFetcher = new XQAIWGetImageClient;
    connect(this, SIGNAL(entered()), SLOT(action_selectWallpaper()));
    connect(this, SIGNAL(exited()), SLOT(action_disconnectImageFetcher()));
}

/*!
    Destructor.
    
*/
HsSelectBackgroundState::~HsSelectBackgroundState()
{
    delete mImageFetcher;
}

/*!
    \internal
    Scales and crops (if needed) \a image for given \a orientation
    and saves it to \a path. Return true on successful.
*/
bool HsSelectBackgroundState::saveImage(QImage &image, const QString &path, Qt::Orientation orientation) 
{
    QRect rect;
    if (orientation == Qt::Vertical) {
        rect.setRect(0, 0, (2* 360) + HSBOUNDARYEFFECT, 640);
    } else {
        rect.setRect(0, 0, (2 * 640) + HSBOUNDARYEFFECT, 360);
    }

    if (image.rect().contains(rect)) {        
        rect.moveCenter(image.rect().center());
        return image.copy(rect).save(path);
    } else {
        QImage scaledImage = image.scaledToWidth(rect.width());        
        rect.moveCenter(scaledImage.rect().center());
        return scaledImage.copy(rect).save(path);
    }
}

/*!
    \internal
    Connects to image fetcher and launches "remote" ui from photos
    from which user can select background image
 */
void HsSelectBackgroundState::action_selectWallpaper()
{
    mSourceView = HsScene::mainWindow()->currentView();

    connect(mImageFetcher, SIGNAL(fetchComplete(QStringList)),
            SLOT(onFetchComplete(QStringList)));
    connect(mImageFetcher, SIGNAL(fetchFailed(int)),
            SLOT(onFetchFailed(int)));
    
    mImageFetcher->fetch(QVariantMap(), SelectionSingle);
}

/*!
    \internal
    disconnects photos image fetcher services slots.
*/

void HsSelectBackgroundState::action_disconnectImageFetcher()
{
    HsScene::mainWindow()->setCurrentView(mSourceView);
    mImageFetcher->disconnect(this);
}

/*!
    \internal
    Called when user has selected an image    
*/
void HsSelectBackgroundState::onFetchComplete(QStringList imageStringList)
{
    HsScene *scene = HsScene::instance();
        
    HsDatabase *db = HsDatabase::instance();
    Q_ASSERT(db);

    HsSceneData sceneData;
    if (!db->scene(sceneData)) {
        emit event_waitInput();
        return;
    }
   
    QFileInfo fileInfo(imageStringList.first());
    QString fileExtension("");
    if (!fileInfo.suffix().isEmpty()) {
        fileExtension = fileInfo.suffix();
    }

    QFile::remove(sceneData.portraitWallpaper);
    QFile::remove(sceneData.landscapeWallpaper); 

    QString wallpaperDir = HsWallpaper::wallpaperDirectory();            
    QDir dir(wallpaperDir);
    if (!dir.exists()) {
        dir.mkpath(wallpaperDir);
    }

    QString portraitPath = HsWallpaper::wallpaperPath(
        Qt::Vertical, QString(), fileExtension);
    QString landscapePath = HsWallpaper::wallpaperPath(
        Qt::Horizontal, QString(), fileExtension);
    
    QImage image(imageStringList.first());
    
    if (saveImage(image, portraitPath, Qt::Vertical) && 
        saveImage(image, landscapePath, Qt::Horizontal)) {
        sceneData.portraitWallpaper = portraitPath;
        sceneData.landscapeWallpaper = landscapePath;
        if (db->updateScene(sceneData)) {
            scene->wallpaper()->setImagesById(QString(), fileInfo.suffix());
        }
    }
   
    emit event_waitInput();
}

/*!
    \internal
    Called when selection of background image fails  
*/
void HsSelectBackgroundState::onFetchFailed(int error)
{
    Q_UNUSED(error)
    emit event_waitInput();
}