locationsystemui/locationsysui/possettings/inc/possettingsview.h
changeset 25 73f6c2762ffe
child 32 b12ea03c50a3
equal deleted inserted replaced
22:4c4ed41530db 25:73f6c2762ffe
       
     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: This is the first view for Positioning Settings plugin  
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef POSSETTINGSVIEW_H
       
    19 #define POSSETTINGSVIEW_H
       
    20 
       
    21 #include "possettingsglobal.h"
       
    22 
       
    23 #include<qobject>
       
    24 #include <cpbasesettingview.h>
       
    25 
       
    26 // Forward declaration
       
    27 class PosSettingsEngine;
       
    28 class PosSettingsForm;
       
    29 class HbGroupBox;
       
    30 class QGraphicsLinearLayout;
       
    31 
       
    32 class POSSETTINGS_EXPORT PosSettingsView: public CpBaseSettingView
       
    33     {    
       
    34 public:
       
    35     /**
       
    36      * Constructor 
       
    37      */
       
    38      explicit PosSettingsView( QGraphicsItem *parent = 0 );
       
    39     
       
    40     /**
       
    41      * Destructor
       
    42      */ 
       
    43     ~PosSettingsView();
       
    44      
       
    45 private: // Data members
       
    46     /**
       
    47      * Pointer to settings engine object
       
    48      * Own
       
    49      */ 
       
    50     PosSettingsEngine* mSettingsEngine;
       
    51     
       
    52     /**
       
    53      * Pointer to settings form object.
       
    54      */
       
    55     PosSettingsForm* mSettingsForm;    
       
    56     };
       
    57 
       
    58 #endif // POSSETTINGSVIEW_H