securitydialogs/SecUi/Inc/SecUiRemoteLockSettingPage.h
author Pat Downey <patd@symbian.org>
Wed, 01 Sep 2010 12:19:59 +0100
branchRCL_3
changeset 50 03674e5abf46
parent 49 09b1ac925e3f
permissions -rw-r--r--
Revert incorrect RCL_3 drop: Revision: 201033 Kit: 201035

/*
* Copyright (c) 2002 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:  RemoteLock pass phrase setting page
*
*
*/


#ifndef __SECUIREMOTELOCKSETTINGPAGE_H__
#define __SECUIREMOTELOCKSETTINGPAGE_H__

#include <aknradiobuttonsettingpage.h>
#include <eikmobs.h>



// LOCAL CONSTANTS
const TInt KRemoteLockSettingItemOn  = 0;
const TInt KRemoteLockSettingItemOff = 1;



// CLASS DECLARATIONS

/** 
* CRemoteLockSettingPage
*/
NONSHARABLE_CLASS(CRemoteLockSettingPage) : public CAknRadioButtonSettingPage
	{
	public:
		/**
		* C++ default constructor.
		*/
		CRemoteLockSettingPage( TInt aResourceId, TInt& aCurrentSelectionItem, CDesCArrayFlat* aItemArray );

		/**
		* Symbian OS constructor.
		*/
		void ConstructL();

	protected:
		/**
		* Destructor.
		*/
		~CRemoteLockSettingPage();

		/**
		* Process ui commands
		* from CAknRadioButtonSettingPage
		* @param aCommandId TInt 
		*/
		void ProcessCommandL( TInt aCommandId );
			/**
    	* From CAknRadioButtonSettingPage 
    	* Handles AutoLockSettingPage's PointerEvent 
    	*    
    	* @param aPointerEvent PointerEvent to be handled
    	*/     
    	void HandlePointerEventL(const TPointerEvent& aPointerEvent);

	private: // data

        /** Remote lock status */
		TInt& iRemoteLockStatus;
		TInt iPrevSelectionItem;
	};



#endif 



// End of file