radiohswidget/stub/xqrequestinfo.h
branchRCL_3
changeset 19 cce62ebc198e
equal deleted inserted replaced
18:1a6714c53019 19:cce62ebc198e
       
     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:  Stub for FM Radio home screen widget unit testing.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef XQREQUESTINFO_H
       
    19 #define XQREQUESTINFO_H
       
    20 
       
    21 // System includes
       
    22 #include <QObject>
       
    23 #include <QVariant>
       
    24 
       
    25 class XQRequestInfo : public QObject
       
    26 {
       
    27     Q_OBJECT
       
    28 
       
    29 public:
       
    30     XQRequestInfo();
       
    31     ~XQRequestInfo();
       
    32     
       
    33     void setForeground(bool on);
       
    34     void setBackground(bool on);
       
    35     void setInfo(const QString &key, const QVariant &value);
       
    36 
       
    37 public slots:
       
    38 
       
    39 signals:
       
    40 
       
    41 };
       
    42 
       
    43 #endif // XQREQUESTINFO_H