phonesettings/cpphonesettingsplugins/cptelephonyutils/inc/cpplugincommon.h
branchRCL_3
changeset 61 41a7f70b3818
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/phonesettings/cpphonesettingsplugins/cptelephonyutils/inc/cpplugincommon.h	Tue Aug 31 15:14:29 2010 +0300
@@ -0,0 +1,143 @@
+/*
+ * 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 CPPLUGINCOMMON_H
+#define CPPLUGINCOMMON_H
+
+#include <qvariant.h>
+#include <qsysteminfo.h>
+#include "cptelephonyutilsdefs.h"
+
+class XQSettingsManager;
+
+using namespace CpTelephonyUtils;
+using namespace QtMobility;
+
+/*!
+    \class Tools
+    \brief The static functionality.
+ */
+class CPTELEPHONYUTILS_EXPORT Tools : public QObject
+{
+    Q_OBJECT
+
+public:
+    /*!
+      Is VoIP currently supported
+      */
+    static bool voipSupported();
+
+    /*!
+      Is video currently supported
+      */
+    static bool videoSupported();
+
+    /*!
+      Error code text conversion
+      */
+    static bool errorCodeTextMapping(const int errorcode, QString &errorText);
+
+};
+
+/*!
+    \class SettingsWrapper
+    \brief Wraps central repository and P&S dependency.
+ */
+class CPTELEPHONYUTILS_EXPORT CpSettingsWrapper : public QObject
+{
+    Q_OBJECT
+public:
+    CpSettingsWrapper(QObject *parent = NULL);
+    ~CpSettingsWrapper();
+public:
+    /*!
+      Show call duration setting
+      */
+    bool showCallDuration();
+    int setShowCallDuration(bool value);
+    
+    /*!
+      Own video in received call setting
+     */
+    int readVtVideoSending();
+    int writeVtVideoSending(int value);
+    
+    /*!
+      Soft reject text setting
+      */
+    void readSoftRejectText( QString &text, bool &userDefined );
+    int writeSoftRejectText(const QString &text, bool userDefined );
+
+    /*!
+      Number grouping support
+      */
+    bool numberGroupingSupported() const;
+    
+    /*!
+     Call waiting distiquish not provisioned support
+     */
+    bool isFeatureCallWaitingDistiquishNotProvisionedEnabled();
+    
+    /*!
+     Checks if phone is in offline mode or not.
+     Return true if phone is in offline mode.
+     Return false if phone is not in offline mode.
+     */
+    bool isPhoneOffline() const;
+
+    /*!
+     Checks if ongoing call exists.
+     Return true if ongoing call exists.
+     Return false if ongoing call does not exist.
+     */
+    bool isOngoingCall() const;
+	
+	/*!
+     Forbidden Icon support
+     */
+    bool forbiddenIconSupported() const;
+
+private:
+    /*!
+      Read cenrep value. 
+      */
+    QVariant readCenrepValue( const long int uid, const unsigned long int key) const;
+
+    /*!
+      Read pubsub value. 
+      */
+    QVariant readPubSubValue( const long int uid, const unsigned long int key) const;
+    
+    /*!
+      Read cenrep string. 
+      */
+    QString readCenrepString( const long int uid, const unsigned long int key) const;
+    
+    /*!
+      Write cenrep value or string. 
+      */
+    int writeCenrepValue( const long int uid, const unsigned long int key,
+        const QVariant &settingsKeyValue ) const;
+
+private: // Data
+    // Own
+    XQSettingsManager *m_settings;
+    
+    QSystemDeviceInfo *m_deviceInfo;
+};
+
+#endif // CPPLUGINCOMMON_H