locationsystemui/locationsysui/possettings/possuplsettingsplugin/inc/possettingssignalmapper.h
branchRCL_3
changeset 44 2b4ea9893b66
equal deleted inserted replaced
42:02ba3f1733c6 44:2b4ea9893b66
       
     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: Declaration of the Positioning Settings signal mapper 
       
    15  *              used to map the signals of each check box item to the index
       
    16  *
       
    17  */
       
    18 
       
    19 #ifndef POSSETTINGSSIGNALMAPPER_H
       
    20 #define POSSETTINGSSIGNALMAPPER_H
       
    21 
       
    22 #include <QObject>
       
    23 
       
    24 class PosSettingsSignalMapper : public QObject
       
    25     {
       
    26     Q_OBJECT
       
    27 public:
       
    28     /*
       
    29      * constructor
       
    30      */
       
    31     PosSettingsSignalMapper();
       
    32     /**
       
    33      * destructor
       
    34      */
       
    35     ~PosSettingsSignalMapper();
       
    36 public:
       
    37 signals:
       
    38     /**
       
    39      * signal emitted by the slot of this class
       
    40      */
       
    41     void signalmapped();
       
    42 public slots:
       
    43     /**
       
    44      * slot to be called on a change in state of checkbox.
       
    45      * this in turn calls the signal signalmapped()
       
    46      */
       
    47     void signalmap();
       
    48     };
       
    49 
       
    50 #endif //POSSETTINGSSIGNALMAPPER_H