epoc32/include/eikvcurs.h
author William Roberts <williamr@symbian.org>
Tue, 16 Mar 2010 16:12:26 +0000
branchSymbian2
changeset 2 2fe1408b6811
parent 0 061f57f2323e
permissions -rw-r--r--
Final list of Symbian^2 public API header files

// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
// which accompanies this distribution, and is available
// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
// class TEikVirtualCursor
// 
//

#ifndef __EIKVCURS_H__
#define __EIKVCURS_H__

#include <e32std.h>
#include <coemain.h>


/** Provides support for the virtual cursor's state within an application.

There is one instance of this object per CEikonEnv. 

@publishedAll
@released */
class TEikVirtualCursor
	{
public:
	/** Specifies the virtual cursor's state. 

	The state may be on, off or suspended. The suspended state is for use by applications 
	that wish to temporarily disable the cursor, but do not want to switch it 
	off completely. For example, an editor control which when focused needs to 
	capture arrow keys would disable the virtual cursor when it gains focus, 
	and enable it when unfocused. */
	enum TState
		{
		/** Sets the virtual cursor off. */
		EOff=0,
		/** Sets the virtual cursor on. */
		EOn,
		/** Sets the virtual cursor as suspended. */
		ESuspended
		};
public:
	TEikVirtualCursor();
private: //prevent passing by value
	inline TEikVirtualCursor(const TEikVirtualCursor&);
public:
	IMPORT_C void SetCursorStateL(TState aState, CCoeEnv& aEnv);
	IMPORT_C TState CursorState(CCoeEnv& aEnv);
public: // but not exported
	void HandleAppToForeground(CCoeEnv& aEnv);
private:
	void SwitchOffEmulationAndBitmap(CCoeEnv& aEnv);
	void SwitchOnEmulationAndBitmap(CCoeEnv& aEnv);
private:
	TState iState;
	};


// inlines

/** Constructor.

Sets the cursor's state to ESuspended so that the call to switch off the virtual 
cursor will succeed when the application starts. Required due to the efficient 
implementation of SetCursorState(). */
inline TEikVirtualCursor::TEikVirtualCursor(const TEikVirtualCursor&)
	{}

#endif