gssettingsuis/Gs/GSAutoKeyguardPlugin/Inc/GSAutoKeyguardPluginModel.h
changeset 68 13e71d907dc3
parent 0 8c5d936e5675
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gssettingsuis/Gs/GSAutoKeyguardPlugin/Inc/GSAutoKeyguardPluginModel.h	Thu Nov 04 13:38:47 2010 +0800
@@ -0,0 +1,100 @@
+/*
+* Copyright (c) 2005 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:  Model for Device & SIM security plug-in.
+*
+*/
+
+
+#ifndef GSAUTOKEYGUARDPLUGINMODEL_H
+#define GSAUTOKEYGUARDPLUGINMODEL_H
+
+// INCLUDES
+#include <e32base.h>
+#include <centralrepository.h>
+
+// CONSTANTS
+const TInt KGSBufSize128 = 128;
+
+// MACROS
+
+// DATA TYPES
+
+// FUNCTION PROTOTYPES
+
+// FORWARD DECLARATIONS
+
+// CLASS DEFINITION
+/**
+*  CGSAutoKeyguardPluginModel is the model class of device & sim security plugin.
+*  It provides functions to get and set setting values.
+*  @lib GSAutoKeyguardPlugin.lib
+*  @since Series 60_5.0
+
+*/
+class CGSAutoKeyguardPluginModel : public CBase
+    {
+    public:  // Constructor and destructor
+        /**
+        * Two-phased constructor
+        */
+        static CGSAutoKeyguardPluginModel* NewL();
+
+        /**
+        * Destructor
+        */
+        ~CGSAutoKeyguardPluginModel();
+        
+    public:
+        /**
+        * Returns the autokeyguard period time (minutes). 
+        *
+        * @return TInt: period
+        */
+        TInt AutoKeyguardPeriod();
+        /**
+        * Returns the autokeyguard maximum period time (minutes). 
+        *
+        * @return TInt: period
+        */
+        TInt AutoKeyguardMaxPeriod();
+        /**
+        * Sets the autokeyguard period. After this period the keyguard is activated.
+        * @param aNewPeriod TInt (minutes)
+        *
+        * @return ETrue: no errors
+        *         EFalse: an error has occurred
+        */
+        TBool SetAutoKeyguardPeriod(const TInt newPeriod);
+
+    private: // Private constructors
+        /**
+        * Default C++ contructor
+        */
+        CGSAutoKeyguardPluginModel();
+
+        /**
+        * Symbian OS default constructor
+        * @return void
+        */
+        void ConstructL();
+        
+    private: // data
+        CRepository* iSecurityRepository;
+    
+    };
+
+
+#endif //GSAUTOKEYGUARDPLUGINMODEL_H
+
+// End of File