Update contrib.
1 // Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Definition of the class that manages the keyclick plugin
24 #include "advancedpointereventhelper.h"
26 CClickMaker* CClick::iHandler=NULL;
27 TBool CClick::iIsChangeable=ETrue;
28 TBool CClick::iKeyClickOveride=EFalse;
29 TBool CClick::iKeyClickEnabled=ETrue;
30 TBool CClick::iPenClickEnabled=ETrue;
31 RLibrary CClick::iPlugIn;
32 TBool CClick::iIsLoaded=EFalse;
34 const TUid KClickPlugInDllUid={0x10004F63};
35 static _LIT_SECURITY_POLICY_C1(KSecurityPolicy_WriteDeviceData,ECapabilityWriteDeviceData);
40 void CClick::InitStaticsL()
42 _LIT(KClickPlugin,"KEYCLICKPLUGIN");
44 if (WsIniFile->FindVar(KClickPlugin,plugInName))
45 LoadNewLibraryL(plugInName);
46 _LIT(KClickFixed,"KEYCLICKPLUGINFIXED");
47 iIsChangeable=!WsIniFile->FindVar(KClickFixed);
50 void CClick::DeleteStatics()
60 void CClick::KeyEvent(TEventCode aType,const TKeyEvent& aEvent)
62 WS_ASSERT_DEBUG(iHandler, EWsPanicClickPluginNotLoaded);
63 if (iKeyClickEnabled && !iKeyClickOveride)
65 TRAP_IGNORE(iHandler->KeyEvent(aType,aEvent)); // TRAP leaves in case the plugin is badly behaved
69 void CClick::PointerEvent(const TPoint& aScreenPos,const TAdvancedPointerEvent& aEvent)
71 WS_ASSERT_DEBUG(iHandler, EWsPanicClickPluginNotLoaded);
74 TAdvancedPointerEvent event;
75 TAdvancedPointerEventHelper::Copy(aEvent,event);
76 event.iParentPosition=aScreenPos;
77 TRAP_IGNORE(iHandler->PointerEvent(event)); // TRAP leaves in case the plugin is badly behaved
81 void CClick::OtherEvent(TInt aType,TAny* aParam)
83 WS_ASSERT_DEBUG(iHandler, EWsPanicClickPluginNotLoaded);
84 if (aType!=EEventPointer || iPenClickEnabled)
85 TRAP_IGNORE(iHandler->OtherEvent(aType,aParam)); // TRAP leaves in case the plugin is badly behaved
88 void CClick::LoadNewLibraryL(const TDesC &aDllName)
90 WS_ASSERT_DEBUG(iIsChangeable, EWsPanicChangeClickPlugin);
91 const TUidType uidType(KDllUid,KClickPlugInDllUid);
93 User::LeaveIfError(plugIn.Load(aDllName,uidType));
94 CleanupClosePushL(plugIn);
95 CreateCClickHandler function;
97 function=(CreateCClickHandler)User::LeaveIfNull((TAny*)plugIn.Lookup(1)); //Can only cast function pointer with C-style casts
98 handler=(*function)();
102 CleanupStack::Pop(&plugIn);
108 CleanupStack::PopAndDestroy(&plugIn);
113 void CClick::ConstructL(const TUid& aUid)
119 void CClick::CommandL(TInt aOpcode,const TAny* aCmdData)
121 TWsClickCmdUnion pData;
128 case EWsClickOpIsLoaded:
134 reply|=EClickLoadable;
138 case EWsClickOpUnLoad:
140 if(!KSecurityPolicy_WriteDeviceData().CheckPolicy(iWsOwner->ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RSoundPlugIn::UnLoad API")))
142 User::Leave(KErrPermissionDenied);
147 SetReply(KErrNotSupported);
152 if(!KSecurityPolicy_WriteDeviceData().CheckPolicy(iWsOwner->ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RSoundPlugIn::Load API")))
154 User::Leave(KErrPermissionDenied);
157 LoadNewLibraryL(iWsOwner->BufferTPtr((TText*)(pData.Int+1),*pData.Int));
159 SetReply(KErrNotSupported);
162 case EWsClickOpSetKeyClick:
164 if(KSecurityPolicy_WriteDeviceData().CheckPolicy(iWsOwner->ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RSoundPlugIn::SetKeyClick API")))
166 iKeyClickEnabled=*pData.Bool;
170 case EWsClickOpSetPenClick:
172 if(KSecurityPolicy_WriteDeviceData().CheckPolicy(iWsOwner->ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RSoundPlugIn::SetPenClick API")))
174 iPenClickEnabled=*pData.Bool;
178 case EWsClickOpKeyClickEnabled:
179 SetReply(iKeyClickEnabled);
181 case EWsClickOpPenClickEnabled:
182 SetReply(iPenClickEnabled);
184 case EWsClickOpCommandReply:
186 TInt reply=RSoundPlugIn::ESoundWrongPlugIn;
187 if (iHandler && iThirdUid==ThirdUid() && iThirdUid!=TUid::Null())
188 TRAP(reply, reply = iHandler->CommandReplyL(*pData.Int,(TAny*)(pData.Int+1)));
193 OwnerPanic(EWservPanicOpcode);