filemanager/src/filemanager/src/backuprestore/fmrestoreview.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Mon, 03 May 2010 12:24:39 +0300
changeset 16 ada7962b4308
parent 14 1957042d8c7e
child 21 15299bc55001
child 25 b7bfdea70ca2
child 37 15bc28c9dd51
permissions -rw-r--r--
Revision: 201015 Kit: 201018

/*
 * 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:
 *     Zhiqiang Yang <zhiqiang.yang@nokia.com>
 * 
 * Description:
 *     The source file of the restore view of file manager
 */

#include "fmrestoreview.h"
#include "fmrestorewidget.h"
#include "fmviewmanager.h"
#include "fmoperationbase.h"

#include <QApplication>

#include <hbaction.h>
#include <hbtoolbar.h>
#include <hbmenu.h>
#include <hbmainwindow.h>
#include <hbmessagebox.h>



FmRestoreView::FmRestoreView(): FmViewBase( ERestoreView )
{
	setTitle( hbTrId( "Restore" ) );

	initMainWidget();
	initToolBar();
	initMenu();
    adjustActions();
	mOperationService = FmViewManager::viewManager()->operationService();

	QMetaObject::connectSlotsByName( this );
}

FmRestoreView::~FmRestoreView()
{
    removeToolBarAction();
}

void FmRestoreView::initMenu()
{
#ifdef FM_CHANGE_ORIENT_ENABLE
    HbAction *action = 0;
	action = new HbAction( this );
    action->setObjectName( "rotateAction" );
    action->setText( hbTrId( "Change orientation" ) );
    menu()->addAction( action );
#endif

	mRestoreAction = new HbAction( this );
    mRestoreAction->setObjectName( "restoreAction" );
    mRestoreAction->setText( hbTrId( "Restore data" ) );
    menu()->addAction( mRestoreAction );
}

void FmRestoreView::initMainWidget()
{
	mRestoreWigdet = new FmRestoreWigdet( this );

    setWidget( mRestoreWigdet );

}

void FmRestoreView::initToolBar()
{
	mLeftAction = new HbAction( this );
    mLeftAction->setObjectName( "leftAction" );
    mLeftAction->setText( hbTrId( "Restore" ) );
    toolBar()->addAction( mLeftAction );
    
    toolBar()->setOrientation( Qt::Horizontal );
}

void FmRestoreView::on_leftAction_triggered()
{
    QList<int > items = mRestoreWigdet->selectionIndexes();
    quint64 selection( 0 );
    for ( int i( 0 ); i < items.count(); ++i )
       {
       selection |= ( ( quint64 ) 1 ) << ( items[ i ] );
       }
                   
    int ret = mOperationService->asyncRestore( selection );
    switch( ret )
    {
    case FmErrNone:
        break;
    case FmErrWrongParam:
        HbMessageBox::information( QString( hbTrId("Operation canceled with wrong param!") ) );
        break;
    case FmErrAlreadyStarted:
        HbMessageBox::information( QString( hbTrId("Operation canceled because already started!") ) );
        break;
    default:
        HbMessageBox::information(tr("restore failed"));
        break;
    }
}

#ifdef FM_CHANGE_ORIENT_ENABLE
void FmRestoreView::on_rotateAction_triggered()
{
	if ( mainWindow()->orientation() == Qt::Vertical ) {
		mainWindow()->setOrientation( Qt::Horizontal );
	}
	else {
		mainWindow()->setOrientation( Qt::Vertical );
	}
}
#endif

void FmRestoreView::on_restoreAction_triggered()
{
    on_leftAction_triggered();
}

void FmRestoreView::adjustActions()
{
    if( mRestoreWigdet->backupDataCount() > 0 ) {
        mRestoreAction->setDisabled( false );
        mLeftAction->setDisabled( false );
    } else {
        mRestoreAction->setDisabled( true );
        mLeftAction->setDisabled( true );
    }
}

void FmRestoreView::removeToolBarAction()
{
    toolBar()->removeAction( mLeftAction );
}