radioapp/radioenginewrapper/inc/radiosettings.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 14 May 2010 15:52:32 +0300
changeset 19 afea38384506
parent 16 f54ebcfc1b80
child 37 451b2e1545b2
permissions -rw-r--r--
Revision: 201017 Kit: 201019

/*
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:
*
*/

#ifndef RADIOSETTINGS_H_
#define RADIOSETTINGS_H_

// System includes
#include <QtGlobal>

// User includes
#include "radiosettingsif.h"

// Forward declarations
class RadioSettingsPrivate;

// Class declaration
class RadioSettings : public RadioSettingsIf
    {
    Q_DECLARE_PRIVATE_D( d_ptr, RadioSettings )
    Q_DISABLE_COPY( RadioSettings )

    friend class RadioEngineWrapperPrivate;

public:

    virtual ~RadioSettings();

private:

    RadioSettings();

// from base class RadioSettingsIf

    bool isFirstTimeStart();
    bool showFavorites() const;
    void setShowFavorites( bool showFavorites );
    bool toggleShowFavorites();

private: // data

    /**
     * Unmodifiable pointer to the private implementation
     */
    RadioSettingsPrivate* const d_ptr;

    };

#endif // RADIOSETTINGS_H_