mpviewplugins/mpplaybackviewplugin/tsrc/unittest_mpplaybackview/stub/inc/mpsettingsmanager.h
changeset 48 af3740e3753f
equal deleted inserted replaced
42:79c49924ae23 48:af3740e3753f
       
     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 * Description: MpSettingsManager stub for testing MpMtpInfoLink.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef MPSETTINGSMANAGER_H
       
    19 #define MPSETTINGSMANAGER_H
       
    20 
       
    21 #include<QObject>
       
    22 #include <QtGlobal>
       
    23 
       
    24 class  MpSettingsManager: public QObject
       
    25 {
       
    26     
       
    27 Q_OBJECT
       
    28 
       
    29 private:
       
    30     explicit MpSettingsManager();
       
    31 
       
    32 public:
       
    33     virtual ~MpSettingsManager();
       
    34     static MpSettingsManager *instance();
       
    35     static bool shuffle();
       
    36     static bool repeat();
       
    37 
       
    38 public slots:
       
    39     static void setShuffle(bool shuffle);
       
    40     static void setRepeat(bool repeat);    
       
    41         
       
    42 signals:
       
    43     void shuffleChanged(bool shuffle);
       
    44     void repeatChanged(bool repeat);
       
    45 
       
    46 public:
       
    47     bool mShuffle;
       
    48     bool mRepeat;
       
    49 
       
    50 private:
       
    51     Q_DISABLE_COPY(MpSettingsManager)
       
    52 };
       
    53 
       
    54 #endif    // MPSETTINGSMANAGER_H