uiacceltk/hitchcock/backgroundanim/inc/fgapppropertylistener.h
changeset 21 6ce30188c5bf
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/uiacceltk/hitchcock/backgroundanim/inc/fgapppropertylistener.h	Fri May 14 16:46:13 2010 +0300
@@ -0,0 +1,44 @@
+/*
+* 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 __FGAPPPROPERTYLISTENER_H__
+#define __FGAPPPROPERTYLISTENER_H__
+
+#include <e32std.h>
+#include <e32base.h>
+#include <e32property.h>
+
+class CFGAppPropertyListener : public CActive
+    {
+    public:
+        static CFGAppPropertyListener* NewL(TCallBack aCallback);
+        virtual ~CFGAppPropertyListener();
+        void RunL();
+        void DoCancel();
+        void IssueRequest();
+        TInt GetHSFGStatus();
+    protected:
+        void ConstructL();
+    private:
+        CFGAppPropertyListener(TCallBack aCallback);
+    
+        RProperty iHSFGProperty;
+        TCallBack iCallback;
+        TInt iHSFGStatus;
+    };
+    
+#endif