// EIKKWIN.H
//
// Copyright (c) 1997-1999 Symbian Ltd.  All rights reserved.
//

#if !defined(__EIKKWIN_H__)
#define __EIKKWIN_H__

#if !defined(__COECNTRL_H__)
#include <coecntrl.h>
#endif

class CEikKeyWindow : public CCoeControl
	{
public:
	enum TType
		{
		EHorizontal,
		EVertical
		};
	IMPORT_C CEikKeyWindow();
	IMPORT_C ~CEikKeyWindow();
	IMPORT_C void ConstructL(const TPoint& aPoint,const TSize& aSize,TInt aDeadSpaceAtStart, TInt aDeadSpaceAtEnd, TInt aScanCode,TInt numButtons,TType aType,RWindowGroup* aParent=NULL);
	};

#endif
