diff -r 1a6714c53019 -r cce62ebc198e radioapp/radioenginewrapper/inc/radiosettings.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/radioapp/radioenginewrapper/inc/radiosettings.h Tue Aug 31 15:15:02 2010 +0300 @@ -0,0 +1,64 @@ +/* +* 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 +#include + +// User includes +#include "radiosettingsif.h" + +// Forward declarations +class RadioSettingsPrivate; + +// Class declaration +class RadioSettings : public RadioSettingsIf + { + Q_DECLARE_PRIVATE_D( d_ptr.data(), RadioSettings ) + Q_DISABLE_COPY( RadioSettings ) + + friend class RadioEngineWrapperPrivate; + +public: + + virtual ~RadioSettings(); + +private: + + RadioSettings(); + +// from base class RadioSettingsIf + + bool isFirstTimeStart(); + void setFirstTimeStartPerformed( bool firstTimeStartPerformed ); + bool showFavorites() const; + void setShowFavorites( bool showFavorites ); + bool toggleShowFavorites(); + +private: // data + + /** + * Unmodifiable pointer to the private implementation + */ + const QScopedPointer d_ptr; + + }; + +#endif // RADIOSETTINGS_H_