1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/nonnga/CLIENT/RCLICK.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,192 @@
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 +// Client side interface to the plugin
1.18 +//
1.19 +//
1.20 +
1.21 +#include <e32std.h>
1.22 +#include "../SERVER/w32cmd.h"
1.23 +#include "CLIENT.H"
1.24 +
1.25 +EXPORT_C RSoundPlugIn::RSoundPlugIn()
1.26 +/** Default constructor. */
1.27 + {}
1.28 +
1.29 +EXPORT_C RSoundPlugIn::RSoundPlugIn(RWsSession& aWs) : MWsClientClass(aWs.iBuffer)
1.30 +/** C++ constructor.
1.31 +
1.32 +After calling this function, Construct() must be called to complete construction.
1.33 +
1.34 +@param aWs Connected session with the window server. */
1.35 + {}
1.36 +
1.37 +EXPORT_C TInt RSoundPlugIn::Construct(TUid aUid)
1.38 +/** Second phase constructor.
1.39 +
1.40 +Creates the server side resource and initialises the client's handle to it.
1.41 +
1.42 +This function always causes a flush of the window server buffer.
1.43 +
1.44 +@param aUid Optional UID. This can be ignored unless you intend to use the CommandReply()
1.45 +function. If you do intend to use CommandReply(), this should be the plug-in DLL's third
1.46 +UID. CommandReply() will return the value ESoundWrongPlugIn if the plug-in DLL identified
1.47 +by this UID is not loaded.
1.48 +@return KErrNone if the function was successful, otherwise one of the system wide error
1.49 +codes.
1.50 +@panic TW32Panic 17 in debug builds if called on an already constructed object.*/
1.51 + {
1.52 + __ASSERT_DEBUG(iWsHandle == KNullHandle, Panic(EW32PanicGraphicDoubleConstruction));
1.53 + TInt ret;
1.54 + if ((ret=iBuffer->WriteReplyWs(&aUid,sizeof(aUid),EWsClOpCreateClick))>=0)
1.55 + {
1.56 + iWsHandle=ret;
1.57 + ret=KErrNone;
1.58 + }
1.59 + return(ret);
1.60 + }
1.61 +
1.62 +EXPORT_C void RSoundPlugIn::Close()
1.63 +/** Sets the handle to zero and frees the resource owned by the server. */
1.64 + {
1.65 + if (iBuffer && iWsHandle)
1.66 + Write(EWsClickOpFree);
1.67 + iWsHandle=NULL;
1.68 + }
1.69 +
1.70 +EXPORT_C void RSoundPlugIn::Destroy()
1.71 +/** Closes (by calling Close()) and deletes the object. */
1.72 + {
1.73 + Close();
1.74 + delete this;
1.75 + }
1.76 +
1.77 +EXPORT_C TBool RSoundPlugIn::IsLoaded(TBool& aIsChangeAble) const
1.78 +/** Tests whether a key or pointer click plug-in DLL is currently loaded.
1.79 +
1.80 +If one is currently loaded, aIsChangeAble returns whether or not
1.81 +it can be unloaded.
1.82 +
1.83 +This function always causes a flush of the window server buffer.
1.84 +
1.85 +@param aIsChangeAble If a plug-in is currently loaded, this returns ETrue if it
1.86 +can be unloaded and EFalse if it cannot. This depends on whether the
1.87 +KEYCLICKPLUGINFIXED keyword is specified in wsini.ini for the plug-in.
1.88 +@return ETrue if a plug-in is currently loaded, EFalse if not. */
1.89 + {
1.90 + TUint reply=WriteReply(EWsClickOpIsLoaded);
1.91 + aIsChangeAble=reply&EClickLoadable;
1.92 + return reply&EClickLoaded;
1.93 + }
1.94 +
1.95 +EXPORT_C TInt RSoundPlugIn::Unload()
1.96 +/** Unloads the plug-in if one is currently loaded and if it can be unloaded.
1.97 +
1.98 +This function always causes a flush of the window server buffer.
1.99 +
1.100 +@return KErrNone if the function was successful, KErrNotSupported if it could
1.101 +not be unloaded.
1.102 +@capability WriteDeviceData */
1.103 + {
1.104 + return WriteReply(EWsClickOpUnLoad);
1.105 + }
1.106 +
1.107 +EXPORT_C TInt RSoundPlugIn::Load(const TDesC& aFileName)
1.108 +/** Loads a new plug-in, replacing the existing one, if any.
1.109 +
1.110 +This function always causes a flush of the window server buffer.
1.111 +
1.112 +@param aFileName The filename of the plug-in DLL to load.
1.113 +@return KErrNone if the function was successful. KErrNotSupported if the currently
1.114 +loaded plug-in could not be unloaded.
1.115 +@capability WriteDeviceData */
1.116 + {
1.117 + TInt length=aFileName.Length();
1.118 + return WriteReply(&length,sizeof(length),aFileName.Ptr(),aFileName.Size(),EWsClickOpLoad);
1.119 + }
1.120 +
1.121 +EXPORT_C void RSoundPlugIn::SetPenClick(TBool aEnabled)
1.122 +/**
1.123 +@publishedPartner
1.124 +@released
1.125 +
1.126 +Sets whether pointer clicks should be enabled or disabled.
1.127 +
1.128 +By default, pointer clicks are enabled.
1.129 +
1.130 +@param aEnabled ETrue to enable pointer clicks, EFalse to disable them.
1.131 +@capability WriteDeviceData */
1.132 + {
1.133 + WriteInt(aEnabled,EWsClickOpSetPenClick);
1.134 + }
1.135 +
1.136 +EXPORT_C void RSoundPlugIn::SetKeyClick(TBool aEnabled)
1.137 +/**
1.138 +@publishedPartner
1.139 +@released
1.140 +
1.141 +Sets whether key clicks should be enabled or disabled.
1.142 +
1.143 +By default, key clicks are enabled.
1.144 +
1.145 +@param aEnabled ETrue to enable key clicks, EFalse to disable them.
1.146 +@capability WriteDeviceData */
1.147 + {
1.148 + WriteInt(aEnabled,EWsClickOpSetKeyClick);
1.149 + }
1.150 +
1.151 +EXPORT_C TBool RSoundPlugIn::PenClickEnabled() const
1.152 +/** Tests whether pointer clicks are enabled, as set by SetPenClick().
1.153 +
1.154 +This function always causes a flush of the window server buffer.
1.155 +
1.156 +@return ETrue if pointer clicks are enabled, EFalse if they are disabled. */
1.157 + {
1.158 + return WriteReply(EWsClickOpPenClickEnabled);
1.159 + }
1.160 +
1.161 +EXPORT_C TBool RSoundPlugIn::KeyClickEnabled() const
1.162 +/** Tests whether key clicks are enabled, as set by SetKeyClick().
1.163 +
1.164 +This function always causes a flush of the window server buffer.
1.165 +
1.166 +@return ETrue if key clicks are enabled, EFalse if they are disabled. */
1.167 + {
1.168 + return WriteReply(EWsClickOpKeyClickEnabled);
1.169 + }
1.170 +
1.171 +EXPORT_C TInt RSoundPlugIn::CommandReply(TInt aOpcode, const TPtrC8& aArgs)
1.172 +/** Sends a command to the plug-in DLL and may receive a response.
1.173 +
1.174 +If the correct plug-in is loaded, its implementation of CommandReplyL()
1.175 +is called and its return code is returned by this function.
1.176 +
1.177 +Specify an opcode of zero if you just want the identity of the plug-in DLL
1.178 +being used.
1.179 +
1.180 +This function always causes a flush of the window server buffer.
1.181 +
1.182 +@param aOpcode Opcode understood by both the window server client and the
1.183 +plug-in DLL. If an opcode of zero is specified, this is intercepted by the
1.184 +window server, and the third UID of the plug-in is returned. This allows
1.185 +the caller to identify the plug-in DLL being used.
1.186 +@param aArgs Packaged arguments which are passed to the plug-in via the window
1.187 +server.
1.188 +@return KErrNone or another of the system error codes, as returned by the
1.189 +plug-in's CommandReplyL() implementation. ESoundWrongPlugIn is returned if no
1.190 +plug-in is loaded, or if the plug-in identified by the aUid parameter in Construct()
1.191 +is not loaded. */
1.192 + {
1.193 + return WriteReply(&aOpcode,sizeof(aOpcode),aArgs.Ptr(),aArgs.Length(),EWsClickOpCommandReply);
1.194 + }
1.195 +