homescreenapp/hsdomainmodel/inc/hsbackuprestoreobserver_p.h
changeset 51 4785f57bf3d4
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/homescreenapp/hsdomainmodel/inc/hsbackuprestoreobserver_p.h	Thu May 27 12:46:08 2010 +0300
@@ -0,0 +1,79 @@
+/*
+* 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:  Active object for Backup/Restore observer.
+*
+*/
+
+#ifndef HSBACKUPRESTOREOBSERVER_P_H
+#define HSBACKUPRESTOREOBSERVER_P_H
+
+#include <connect/abclient.h>
+#include <XQSettingsKey>
+#include <QObject>
+
+class CHsBURActiveCallback;
+class HsBackupRestoreObserver;
+
+using namespace conn;
+
+class HsBackupRestoreObserverPrivate : public QObject
+{
+    Q_OBJECT
+
+public:
+
+    /**
+     * Creates an instance of CCPServerBURListener implementation.
+     * @param aCallBack Pointer to observer interface.
+     */
+    HsBackupRestoreObserverPrivate (HsBackupRestoreObserver* observer,
+                                    QObject *parent = 0);
+
+    /**
+     * Destructor.
+     */
+    virtual ~HsBackupRestoreObserverPrivate();
+    
+    void readyForBUR();
+
+public slots:    
+     void handleKeyChange(XQSettingsKey key, const QVariant &value);
+
+private:
+	/**
+     * mQ pointer to HsBackupRestoreObserver
+     * Owned by HsBackupRestoreObserver object, instantiated in
+     * constructor.
+     */
+    HsBackupRestoreObserver *mQ;
+
+    /**
+     * Callback interface for widget's active data owner.
+     * Own.
+     */
+    CHsBURActiveCallback *mCallBack;
+
+    /**
+     * Active backup client.
+     * Own.
+     */
+	conn::CActiveBackupClient *mActiveBackupClient;
+    
+    /**
+     * Last state of BUR: either backup or restore or normal or unset
+     */
+    conn::TBURPartType mLastType;
+};
+
+#endif //HSBACKUPRESTOREOBSERVER_P_H