terminalsecurity/SCP/SCPServer/inc/SCPLockNotificationEventHandler.h
changeset 0 b497e44ab2fc
child 12 9e9792ae22e3
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/terminalsecurity/SCP/SCPServer/inc/SCPLockNotificationEventHandler.h	Thu Dec 17 09:07:52 2009 +0200
@@ -0,0 +1,101 @@
+/*
+* Copyright (c) 2000 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: Implementation of terminalsecurity components
+*
+*/
+
+#ifndef SCPLOCKNOTIFICATIONEVENTHANDLER_H
+#define SCPLOCKNOTIFICATIONEVENTHANDLER_H
+
+//  INCLUDES
+#include <bldvariant.hrh>
+#include "SCPLockEventHandler.h"
+
+// CLASS DECLARATION
+
+/**
+*  A class, which handles the notification and verification event in phone locking
+*/
+class CSCPLockNotificationEventHandler : public CSCPLockEventHandler
+	{		
+	public:  // Methods
+
+        // Constructors and destructor                
+
+        /**
+        * Static constructor.
+        */
+   	    static CSCPLockNotificationEventHandler* NewL( CSCPServer* aServer );
+        
+        /**
+        * Static constructor, that leaves the pointer to the cleanup stack.
+        */
+        static CSCPLockNotificationEventHandler* NewLC( CSCPServer* aServer );
+
+        /**
+        * Destructor.
+        */
+        virtual ~CSCPLockNotificationEventHandler();
+       
+    protected:  // Methods   
+        
+        // Methods from base classes
+        
+        /**
+        * Registration method for reveiving notifications        
+        * @return TInt: A generic status code
+        */
+        TInt RegisterListener();
+        
+        /**
+        * From CActive The active object working method.
+        */
+        void RunL();
+        
+        /**
+        * From CActive The active object request cancellation method.
+        */
+        void DoCancel();
+
+    private: //Methods
+    
+        /**
+        * C++ default constructor.
+        */
+        CSCPLockNotificationEventHandler( CSCPServer* aServer );    
+
+        /**
+        * By default Symbian 2nd phase constructor is private.
+        */
+        void ConstructL();          
+
+    private:   // Data    
+        
+        // Possible processing states
+        enum TSCPLNQueryState
+            {
+            ESCPLNQueryStateNotification,
+            ESCPLNQueryStateVerification
+            };
+                        
+        /** The current processing state. */
+        TSCPLNQueryState                        iQueryState;                 
+        /** A placeholder for the event received from the TSY */
+        RMobilePhone::TMobilePhoneSecurityEvent iEvent;        
+    };
+
+#endif      // SCPLOCKNOTIFICATIONEVENTHANDLER_H   
+            
+// End of File
+