coreapplicationuis/powersaveutilities/pluginlauncher/src/mainview.h
branchRCL_3
changeset 19 924385140d98
equal deleted inserted replaced
18:0818dd463d41 19:924385140d98
       
     1 /*
       
     2 * Copyright (c) 2010 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 * Description:  
       
    15 *
       
    16 */
       
    17 #ifndef MAINVIEW_H
       
    18 #define MAINVIEW_H
       
    19 
       
    20 #include <hbview.h>
       
    21 
       
    22 class MainView : public HbView
       
    23 {
       
    24 	Q_OBJECT
       
    25 public:
       
    26     explicit MainView(QGraphicsItem *parent = 0);
       
    27     virtual ~MainView();
       
    28 private:
       
    29 	void init();
       
    30 private slots:
       
    31     void launchInProcessProfileView();
       
    32 private:
       
    33     Q_DISABLE_COPY(MainView)
       
    34 };
       
    35 
       
    36 #endif