1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/nga/SERVER/KEYCLICK.H Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,68 @@
1.4 +// Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// Definition of the class that manages the keyclick plugin
1.18 +//
1.19 +//
1.20 +
1.21 +#ifndef __KEYCLICK_H__
1.22 +#define __KEYCLICK_H__
1.23 +
1.24 +#ifndef __E32STD_H__
1.25 +#include <e32std.h>
1.26 +#endif
1.27 +#ifndef __E32BASE_H__
1.28 +#include <e32base.h>
1.29 +#endif
1.30 +#ifndef __OBJECT_H__
1.31 +#include "OBJECT.H"
1.32 +#endif
1.33 +
1.34 +class CClickMaker;
1.35 +
1.36 +
1.37 +#define THIRD_UID_INDEX 2
1.38 +
1.39 +class CClick : public CWsObject
1.40 + {
1.41 +public: //Static Part
1.42 + static void InitStaticsL();
1.43 + static void DeleteStatics();
1.44 + static void KeyEvent(TEventCode aType,const TKeyEvent& aEvent);
1.45 + static void PointerEvent(const TPoint& aScreenPos,const TAdvancedPointerEvent& aEvent);
1.46 + static void OtherEvent(TInt aType,TAny* aParam=NULL);
1.47 + inline static TBool IsHandler() {return iHandler!=NULL;}
1.48 + inline static void SetKeyClickOveride(TBool aOn) {iKeyClickOveride=aOn;}
1.49 + static void LoadNewLibraryL(const TDesC &aDllName);
1.50 +public: //Object Part
1.51 + inline CClick(CWsClient* aOwner) : CWsObject(aOwner,WS_HANDLE_CLICK) {}
1.52 + //~CClick();
1.53 + void ConstructL(const TUid& aUid);
1.54 + //Pure Virtual function from CWsObject
1.55 + void CommandL(TInt aOpcode, const TAny *aCmdData);
1.56 +private:
1.57 + static inline void Unload() {DeleteStatics();}
1.58 + static inline TUid ThirdUid() {return iPlugIn.Type()[THIRD_UID_INDEX];}
1.59 +private:
1.60 + TUid iThirdUid;
1.61 +private:
1.62 + static CClickMaker* iHandler;
1.63 + static TBool iIsChangeable;
1.64 + static TBool iKeyClickOveride;
1.65 + static TBool iKeyClickEnabled;
1.66 + static TBool iPenClickEnabled;
1.67 + static RLibrary iPlugIn;
1.68 + static TBool iIsLoaded;
1.69 + };
1.70 +
1.71 +#endif