sl@0
|
1 |
// Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// Client side interface to the plugin
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include <e32std.h>
|
sl@0
|
19 |
#include "../SERVER/w32cmd.h"
|
sl@0
|
20 |
#include "CLIENT.H"
|
sl@0
|
21 |
|
sl@0
|
22 |
EXPORT_C RSoundPlugIn::RSoundPlugIn()
|
sl@0
|
23 |
/** Default constructor. */
|
sl@0
|
24 |
{}
|
sl@0
|
25 |
|
sl@0
|
26 |
EXPORT_C RSoundPlugIn::RSoundPlugIn(RWsSession& aWs) : MWsClientClass(aWs.iBuffer)
|
sl@0
|
27 |
/** C++ constructor.
|
sl@0
|
28 |
|
sl@0
|
29 |
After calling this function, Construct() must be called to complete construction.
|
sl@0
|
30 |
|
sl@0
|
31 |
@param aWs Connected session with the window server. */
|
sl@0
|
32 |
{}
|
sl@0
|
33 |
|
sl@0
|
34 |
EXPORT_C TInt RSoundPlugIn::Construct(TUid aUid)
|
sl@0
|
35 |
/** Second phase constructor.
|
sl@0
|
36 |
|
sl@0
|
37 |
Creates the server side resource and initialises the client's handle to it.
|
sl@0
|
38 |
|
sl@0
|
39 |
This function always causes a flush of the window server buffer.
|
sl@0
|
40 |
|
sl@0
|
41 |
@param aUid Optional UID. This can be ignored unless you intend to use the CommandReply()
|
sl@0
|
42 |
function. If you do intend to use CommandReply(), this should be the plug-in DLL's third
|
sl@0
|
43 |
UID. CommandReply() will return the value ESoundWrongPlugIn if the plug-in DLL identified
|
sl@0
|
44 |
by this UID is not loaded.
|
sl@0
|
45 |
@return KErrNone if the function was successful, otherwise one of the system wide error
|
sl@0
|
46 |
codes.
|
sl@0
|
47 |
@panic TW32Panic 17 in debug builds if called on an already constructed object.*/
|
sl@0
|
48 |
{
|
sl@0
|
49 |
__ASSERT_DEBUG(iWsHandle == KNullHandle, Panic(EW32PanicGraphicDoubleConstruction));
|
sl@0
|
50 |
TInt ret;
|
sl@0
|
51 |
if ((ret=iBuffer->WriteReplyWs(&aUid,sizeof(aUid),EWsClOpCreateClick))>=0)
|
sl@0
|
52 |
{
|
sl@0
|
53 |
iWsHandle=ret;
|
sl@0
|
54 |
ret=KErrNone;
|
sl@0
|
55 |
}
|
sl@0
|
56 |
return(ret);
|
sl@0
|
57 |
}
|
sl@0
|
58 |
|
sl@0
|
59 |
EXPORT_C void RSoundPlugIn::Close()
|
sl@0
|
60 |
/** Sets the handle to zero and frees the resource owned by the server. */
|
sl@0
|
61 |
{
|
sl@0
|
62 |
if (iBuffer && iWsHandle)
|
sl@0
|
63 |
Write(EWsClickOpFree);
|
sl@0
|
64 |
iWsHandle=NULL;
|
sl@0
|
65 |
}
|
sl@0
|
66 |
|
sl@0
|
67 |
EXPORT_C void RSoundPlugIn::Destroy()
|
sl@0
|
68 |
/** Closes (by calling Close()) and deletes the object. */
|
sl@0
|
69 |
{
|
sl@0
|
70 |
Close();
|
sl@0
|
71 |
delete this;
|
sl@0
|
72 |
}
|
sl@0
|
73 |
|
sl@0
|
74 |
EXPORT_C TBool RSoundPlugIn::IsLoaded(TBool& aIsChangeAble) const
|
sl@0
|
75 |
/** Tests whether a key or pointer click plug-in DLL is currently loaded.
|
sl@0
|
76 |
|
sl@0
|
77 |
If one is currently loaded, aIsChangeAble returns whether or not
|
sl@0
|
78 |
it can be unloaded.
|
sl@0
|
79 |
|
sl@0
|
80 |
This function always causes a flush of the window server buffer.
|
sl@0
|
81 |
|
sl@0
|
82 |
@param aIsChangeAble If a plug-in is currently loaded, this returns ETrue if it
|
sl@0
|
83 |
can be unloaded and EFalse if it cannot. This depends on whether the
|
sl@0
|
84 |
KEYCLICKPLUGINFIXED keyword is specified in wsini.ini for the plug-in.
|
sl@0
|
85 |
@return ETrue if a plug-in is currently loaded, EFalse if not. */
|
sl@0
|
86 |
{
|
sl@0
|
87 |
TUint reply=WriteReply(EWsClickOpIsLoaded);
|
sl@0
|
88 |
aIsChangeAble=reply&EClickLoadable;
|
sl@0
|
89 |
return reply&EClickLoaded;
|
sl@0
|
90 |
}
|
sl@0
|
91 |
|
sl@0
|
92 |
EXPORT_C TInt RSoundPlugIn::Unload()
|
sl@0
|
93 |
/** Unloads the plug-in if one is currently loaded and if it can be unloaded.
|
sl@0
|
94 |
|
sl@0
|
95 |
This function always causes a flush of the window server buffer.
|
sl@0
|
96 |
|
sl@0
|
97 |
@return KErrNone if the function was successful, KErrNotSupported if it could
|
sl@0
|
98 |
not be unloaded.
|
sl@0
|
99 |
@capability WriteDeviceData */
|
sl@0
|
100 |
{
|
sl@0
|
101 |
return WriteReply(EWsClickOpUnLoad);
|
sl@0
|
102 |
}
|
sl@0
|
103 |
|
sl@0
|
104 |
EXPORT_C TInt RSoundPlugIn::Load(const TDesC& aFileName)
|
sl@0
|
105 |
/** Loads a new plug-in, replacing the existing one, if any.
|
sl@0
|
106 |
|
sl@0
|
107 |
This function always causes a flush of the window server buffer.
|
sl@0
|
108 |
|
sl@0
|
109 |
@param aFileName The filename of the plug-in DLL to load.
|
sl@0
|
110 |
@return KErrNone if the function was successful. KErrNotSupported if the currently
|
sl@0
|
111 |
loaded plug-in could not be unloaded.
|
sl@0
|
112 |
@capability WriteDeviceData */
|
sl@0
|
113 |
{
|
sl@0
|
114 |
TInt length=aFileName.Length();
|
sl@0
|
115 |
return WriteReply(&length,sizeof(length),aFileName.Ptr(),aFileName.Size(),EWsClickOpLoad);
|
sl@0
|
116 |
}
|
sl@0
|
117 |
|
sl@0
|
118 |
EXPORT_C void RSoundPlugIn::SetPenClick(TBool aEnabled)
|
sl@0
|
119 |
/**
|
sl@0
|
120 |
@publishedPartner
|
sl@0
|
121 |
@released
|
sl@0
|
122 |
|
sl@0
|
123 |
Sets whether pointer clicks should be enabled or disabled.
|
sl@0
|
124 |
|
sl@0
|
125 |
By default, pointer clicks are enabled.
|
sl@0
|
126 |
|
sl@0
|
127 |
@param aEnabled ETrue to enable pointer clicks, EFalse to disable them.
|
sl@0
|
128 |
@capability WriteDeviceData */
|
sl@0
|
129 |
{
|
sl@0
|
130 |
WriteInt(aEnabled,EWsClickOpSetPenClick);
|
sl@0
|
131 |
}
|
sl@0
|
132 |
|
sl@0
|
133 |
EXPORT_C void RSoundPlugIn::SetKeyClick(TBool aEnabled)
|
sl@0
|
134 |
/**
|
sl@0
|
135 |
@publishedPartner
|
sl@0
|
136 |
@released
|
sl@0
|
137 |
|
sl@0
|
138 |
Sets whether key clicks should be enabled or disabled.
|
sl@0
|
139 |
|
sl@0
|
140 |
By default, key clicks are enabled.
|
sl@0
|
141 |
|
sl@0
|
142 |
@param aEnabled ETrue to enable key clicks, EFalse to disable them.
|
sl@0
|
143 |
@capability WriteDeviceData */
|
sl@0
|
144 |
{
|
sl@0
|
145 |
WriteInt(aEnabled,EWsClickOpSetKeyClick);
|
sl@0
|
146 |
}
|
sl@0
|
147 |
|
sl@0
|
148 |
EXPORT_C TBool RSoundPlugIn::PenClickEnabled() const
|
sl@0
|
149 |
/** Tests whether pointer clicks are enabled, as set by SetPenClick().
|
sl@0
|
150 |
|
sl@0
|
151 |
This function always causes a flush of the window server buffer.
|
sl@0
|
152 |
|
sl@0
|
153 |
@return ETrue if pointer clicks are enabled, EFalse if they are disabled. */
|
sl@0
|
154 |
{
|
sl@0
|
155 |
return WriteReply(EWsClickOpPenClickEnabled);
|
sl@0
|
156 |
}
|
sl@0
|
157 |
|
sl@0
|
158 |
EXPORT_C TBool RSoundPlugIn::KeyClickEnabled() const
|
sl@0
|
159 |
/** Tests whether key clicks are enabled, as set by SetKeyClick().
|
sl@0
|
160 |
|
sl@0
|
161 |
This function always causes a flush of the window server buffer.
|
sl@0
|
162 |
|
sl@0
|
163 |
@return ETrue if key clicks are enabled, EFalse if they are disabled. */
|
sl@0
|
164 |
{
|
sl@0
|
165 |
return WriteReply(EWsClickOpKeyClickEnabled);
|
sl@0
|
166 |
}
|
sl@0
|
167 |
|
sl@0
|
168 |
EXPORT_C TInt RSoundPlugIn::CommandReply(TInt aOpcode, const TPtrC8& aArgs)
|
sl@0
|
169 |
/** Sends a command to the plug-in DLL and may receive a response.
|
sl@0
|
170 |
|
sl@0
|
171 |
If the correct plug-in is loaded, its implementation of CommandReplyL()
|
sl@0
|
172 |
is called and its return code is returned by this function.
|
sl@0
|
173 |
|
sl@0
|
174 |
Specify an opcode of zero if you just want the identity of the plug-in DLL
|
sl@0
|
175 |
being used.
|
sl@0
|
176 |
|
sl@0
|
177 |
This function always causes a flush of the window server buffer.
|
sl@0
|
178 |
|
sl@0
|
179 |
@param aOpcode Opcode understood by both the window server client and the
|
sl@0
|
180 |
plug-in DLL. If an opcode of zero is specified, this is intercepted by the
|
sl@0
|
181 |
window server, and the third UID of the plug-in is returned. This allows
|
sl@0
|
182 |
the caller to identify the plug-in DLL being used.
|
sl@0
|
183 |
@param aArgs Packaged arguments which are passed to the plug-in via the window
|
sl@0
|
184 |
server.
|
sl@0
|
185 |
@return KErrNone or another of the system error codes, as returned by the
|
sl@0
|
186 |
plug-in's CommandReplyL() implementation. ESoundWrongPlugIn is returned if no
|
sl@0
|
187 |
plug-in is loaded, or if the plug-in identified by the aUid parameter in Construct()
|
sl@0
|
188 |
is not loaded. */
|
sl@0
|
189 |
{
|
sl@0
|
190 |
return WriteReply(&aOpcode,sizeof(aOpcode),aArgs.Ptr(),aArgs.Length(),EWsClickOpCommandReply);
|
sl@0
|
191 |
}
|
sl@0
|
192 |
|