--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/radioapp/radioenginewrapper/inc/radiosettings.h Fri Jun 04 10:21:36 2010 +0100
@@ -0,0 +1,62 @@
+/*
+* 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_