diff -r bab96b7ed1a4 -r f39ed5e045e0 phoneplugins/infowidgetplugin/infowidgetprovider/infowidget/inc/infowidgetpreferences.h --- a/phoneplugins/infowidgetplugin/infowidgetprovider/infowidget/inc/infowidgetpreferences.h Tue Jun 15 14:14:38 2010 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,77 +0,0 @@ -/* - * 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 INFOWIDGETPREFERENCES_H -#define INFOWIDGETPREFERENCES_H - -#include -#include -#include - -// Preference string values -const char DISPLAY_SETTING_ON[] = "On"; -const char DISPLAY_SETTING_OFF[] = "Off"; - -class InfoWidgetPreferences : public QObject -{ - Q_OBJECT - -public: - enum DisplaySetting { - DisplayOff = 0, - DisplayOn - }; - - enum Option { - DisplayHomeZone = 0x1, - DisplayMcn = 0x2, - DisplayActiveLine = 0x4, - DisplaySatText = 0x8, - DisplaySpn = 0x10 - }; - Q_DECLARE_FLAGS(Options, Option) - -public: - InfoWidgetPreferences(QObject *parent = NULL); - ~InfoWidgetPreferences(); - - bool storePreferences(); - void restorePreferences(); - QStringList preferenceNames(); - - bool isPreferenceSet(Option preferenceId) const; - QString preference(Option preferenceId) const; - InfoWidgetPreferences::Options preferences() const; - void setPreference(Option preferenceId, const QString &preferenceString); - - bool validate(); - int visibleItemCount(); - -signals: - void prefChanged(int option,int displaySetting); - -private: - Q_DISABLE_COPY(InfoWidgetPreferences) - - InfoWidgetPreferences::Options m_options; - InfoWidgetPreferences::Options m_validatedOptions; -}; - -Q_DECLARE_OPERATORS_FOR_FLAGS(InfoWidgetPreferences::Options) - -#endif // INFOWIDGETPREFERENCES_H -