sl@0: // Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // Definition of the class that manages the keyclick plugin sl@0: // sl@0: // sl@0: sl@0: #ifndef __KEYCLICK_H__ sl@0: #define __KEYCLICK_H__ sl@0: sl@0: #ifndef __E32STD_H__ sl@0: #include sl@0: #endif sl@0: #ifndef __E32BASE_H__ sl@0: #include sl@0: #endif sl@0: #ifndef __OBJECT_H__ sl@0: #include "OBJECT.H" sl@0: #endif sl@0: sl@0: class CClickMaker; sl@0: sl@0: sl@0: #define THIRD_UID_INDEX 2 sl@0: sl@0: class CClick : public CWsObject sl@0: { sl@0: public: //Static Part sl@0: static void InitStaticsL(); sl@0: static void DeleteStatics(); sl@0: static void KeyEvent(TEventCode aType,const TKeyEvent& aEvent); sl@0: static void PointerEvent(const TPoint& aScreenPos,const TAdvancedPointerEvent& aEvent); sl@0: static void OtherEvent(TInt aType,TAny* aParam=NULL); sl@0: inline static TBool IsHandler() {return iHandler!=NULL;} sl@0: inline static void SetKeyClickOveride(TBool aOn) {iKeyClickOveride=aOn;} sl@0: static void LoadNewLibraryL(const TDesC &aDllName); sl@0: public: //Object Part sl@0: inline CClick(CWsClient* aOwner) : CWsObject(aOwner,WS_HANDLE_CLICK) {} sl@0: //~CClick(); sl@0: void ConstructL(const TUid& aUid); sl@0: //Pure Virtual function from CWsObject sl@0: void CommandL(TInt aOpcode, const TAny *aCmdData); sl@0: private: sl@0: static inline void Unload() {DeleteStatics();} sl@0: static inline TUid ThirdUid() {return iPlugIn.Type()[THIRD_UID_INDEX];} sl@0: private: sl@0: TUid iThirdUid; sl@0: private: sl@0: static CClickMaker* iHandler; sl@0: static TBool iIsChangeable; sl@0: static TBool iKeyClickOveride; sl@0: static TBool iKeyClickEnabled; sl@0: static TBool iPenClickEnabled; sl@0: static RLibrary iPlugIn; sl@0: static TBool iIsLoaded; sl@0: }; sl@0: sl@0: #endif