filemanager/src/filemanager/src/backuprestore/fmrestoreview.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 16 Apr 2010 14:53:38 +0300
changeset 14 1957042d8c7e
child 21 15299bc55001
child 25 b7bfdea70ca2
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:
 *     The header file of the restore view of file manager
 */

#ifndef FMRESTOREVIEW_H
#define FMRESTOREVIEW_H

#include "fmoperationservice.h"
#include "fmviewbase.h"

class FmRestoreWigdet;
class FmOperationService;


class FmRestoreView : public FmViewBase
{
	Q_OBJECT

public:
	FmRestoreView();
	~FmRestoreView();

private slots:
    void on_leftAction_triggered();
	void on_restoreAction_triggered();
#ifdef FM_CHANGE_ORIENT_ENABLE
    void on_rotateAction_triggered();
#endif

private:
    void initMenu();
    void initMainWidget();
    void initToolBar();
    void adjustActions();
    
    void removeToolBarAction();
    
private:

	FmRestoreWigdet *mRestoreWigdet;
	FmOperationService *mOperationService;
    HbAction *mRestoreAction;
    HbAction *mLeftAction;
};

#endif