filemanager/src/filemanager/src/backuprestore/fmdeletebackupview.h
changeset 14 1957042d8c7e
child 21 15299bc55001
child 25 b7bfdea70ca2
equal deleted inserted replaced
1:d1daf54a55b5 14:1957042d8c7e
       
     1 /*
       
     2  * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3  * All rights reserved.
       
     4  * This component and the accompanying materials are made available
       
     5  * under the terms of "Eclipse Public License v1.0"
       
     6  * which accompanies this distribution, and is available
       
     7  * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8  *
       
     9  * Initial Contributors:
       
    10  * Nokia Corporation - initial contribution.
       
    11  * 
       
    12  * Contributors:
       
    13  *     
       
    14  * 
       
    15  * Description:
       
    16  *     The header file of the delete backup view of file manager
       
    17  */
       
    18 
       
    19 #ifndef FMDELETEBACKUPVIEW_H
       
    20 #define FMDELETEBACKUPVIEW_H
       
    21 
       
    22 #include "fmoperationservice.h"
       
    23 #include "fmviewbase.h"
       
    24 
       
    25 class FmDeleteBackupWidget;
       
    26 class FmOperationService;
       
    27 class HbAction;
       
    28 
       
    29 
       
    30 class FmDeleteBackupView : public FmViewBase
       
    31 {
       
    32 	Q_OBJECT
       
    33 
       
    34 public:
       
    35 	FmDeleteBackupView();
       
    36 	~FmDeleteBackupView();
       
    37 
       
    38 private slots:
       
    39     void on_leftAction_triggered();
       
    40 	void on_deleteAction_triggered();
       
    41 #ifdef FM_CHANGE_ORIENT_ENABLE
       
    42     void on_rotateAction_triggered();
       
    43 #endif
       
    44 
       
    45 private:
       
    46     void initMenu();
       
    47     void initMainWidget();
       
    48     void initToolBar();
       
    49     void adjustActions();
       
    50     
       
    51     void removeToolBarAction();
       
    52 
       
    53 private:
       
    54 
       
    55 	FmDeleteBackupWidget *mDeleteBackupWidget;
       
    56 	FmOperationService *mOperationService;
       
    57 
       
    58     HbAction *mDeleteAction;
       
    59     HbAction *mLeftAction;
       
    60 };
       
    61 
       
    62 #endif
       
    63