1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/inc/W32CLICK.H Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,194 @@
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 class that needs to be provided by a Key Click plugin
1.18 +//
1.19 +//
1.20 +
1.21 +#ifndef __W32CLICK_H__
1.22 +#define __W32CLICK_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 __W32STD_H__
1.31 +#include <w32std.h>
1.32 +#endif
1.33 +
1.34 +#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
1.35 +#include <graphics/pointereventdata.h>
1.36 +#endif //SYMBIAN_ENABLE_SPLIT_HEADERS
1.37 +
1.38 +class CClickMaker: public CBase
1.39 +/** Key or pointer click plug-in provider interface.
1.40 +
1.41 +This class should be implemented by a plug-in DLL in order to produce a sound
1.42 +when a key is pressed, a key auto repeats or when the screen is tapped with
1.43 +a pointer. When any of these events occur, the window server informs the plug-in
1.44 +DLL, which can then make the sound.
1.45 +
1.46 +The details of the event are also passed to the plug-in so that the sound
1.47 +can be tailored to the precise event, for example clicking on different keys on the
1.48 +keypad or on different parts of the screen could make different sounds.
1.49 +
1.50 +The name of the initial plug-in to use can be specified in the wsini.ini configuration
1.51 +file using the KEYCLICKPLUGIN or KEYCLICKPLUGINFIXED keywords. When the operating
1.52 +system boots, wsini.ini is read for the name of this plug-in. If a plug-in
1.53 +name exists, the window server will try to load it. At a later time, any client
1.54 +of the window server can request a new plug-in to be loaded or the current
1.55 +one to be unloaded, using the RSoundPlugIn class.
1.56 +
1.57 +The plug-in is a polymorphic DLL which implements the CClickMaker interface.
1.58 +Its first UID is KDynamicLibraryUidValue and its second UID is 0x10004F63.
1.59 +Its first exported function should create an object of the CClickMaker sub-class
1.60 +and should have the following signature:
1.61 +
1.62 +EXPORT_C CClickMaker* CreateClickMakerL()
1.63 +
1.64 +@publishedAll
1.65 +@released
1.66 +@see RSoundPlugIn */
1.67 + {
1.68 +public:
1.69 + /** This function is called by the window server whenever there is a key event,
1.70 + to generate the sound.
1.71 +
1.72 + It must be implemented by the key or pointer click plug-in.
1.73 +
1.74 + If the sound cannot be made, the function should continue without leaving.
1.75 +
1.76 + @param aType The type of key event: EEventKey, EEventKeyUp, EEventKeyDown
1.77 + or EEventKeyRepeat.
1.78 + @param aEvent The key event details. */
1.79 + virtual void KeyEvent(TEventCode aType,const TKeyEvent& aEvent)=0;
1.80 +
1.81 + /** This function is called by the window server whenever there is a pointer event,
1.82 + to generate the sound.
1.83 +
1.84 + It must be implemented by the key or pointer click plug-in.
1.85 +
1.86 + If the sound cannot be made, the function should continue without leaving.
1.87 +
1.88 + The iParentPosition data member of aEvent is not the position of the pointer
1.89 + event relative to origin of the parent window. Instead it is the position
1.90 + on the screen. This is because the parent window has no meaning inside the
1.91 + plug-in as it does to the window server client and also knowledge
1.92 + of the screen position may be useful to the plug-in.
1.93 +
1.94 + On devices where these features are supported, aEvent will contain pointer number,
1.95 + proximity of the pointer to the screen and/or pressure applied by the pointer to the screen.
1.96 + In order to retrieve this information, implementation of this method should
1.97 + use TPointerEvent::AdvancedPointerEvent().
1.98 +
1.99 + @param aEvent The pointer event details.
1.100 + @see TPointerEvent::AdvancedPointerEvent() */
1.101 + virtual void PointerEvent(const TPointerEvent& aEvent)=0;
1.102 +
1.103 + /** This function is intended for future expansion of the interface, in case it
1.104 + needs to support sounds for other types of event.
1.105 +
1.106 + Currently it is called by the window server, with several values for aType.
1.107 + For each of these aParam will need to be cast to a different class type
1.108 + to get the data:
1.109 + EEventPointer: cast to TPointerEventData*
1.110 + EEventScreenDeviceChanged: TClickMakerData*
1.111 + EEventGroupWindowOpen: TGroupWindowOpenData*
1.112 + EEventGroupWindowClose: TInt (the identifier of the window group being closed)
1.113 + EEventWindowClose: TWindowCloseData*
1.114 +
1.115 + @param aType One of the above listed values, in future may be used with other values.
1.116 + @param aParam See above. */
1.117 + virtual void OtherEvent(TInt aType,TAny* aParam=NULL)=0;
1.118 +
1.119 + /** This function may be implemented by the key or pointer click plug-in to enable
1.120 + the plug-in to communicate with the window server client.
1.121 +
1.122 + If this is not required, the implementation may simply return zero.
1.123 +
1.124 + It is called by RSoundPlugIn::CommandReply() which returns the value returned
1.125 + by this function.
1.126 +
1.127 + The return value can be generated either by returning it from the function
1.128 + or by leaving with the value. In either case, the client will get back the
1.129 + value concerned.
1.130 +
1.131 + @param aOpcode Opcode understood by both the window server client and the
1.132 + plug-in DLL.
1.133 + @param aArgs Arguments packaged by the window server client.
1.134 + @return A value passed back to the client. This may be KErrNone or another
1.135 + of the system-wide error codes. */
1.136 + virtual TInt CommandReplyL(TInt aOpcode, TAny *aArgs)=0;
1.137 + };
1.138 +
1.139 +struct TClickMakerData
1.140 +/**
1.141 +Passed to a Key Click Plug-in using the function CClickMaker::OtherEvent when the
1.142 +aType value is EEventScreenDeviceChanged.
1.143 +
1.144 +@publishedAll
1.145 +@released
1.146 +*/
1.147 + {
1.148 + TInt screenDeviceMode;
1.149 + };
1.150 +
1.151 +class TGroupWindowOpenData
1.152 +/**
1.153 +Passed to a Key Click Plug-in using the function CClickMaker::OtherEvent when the
1.154 +aType value is EEventGroupWindowOpen.
1.155 +
1.156 +@publishedAll
1.157 +@released
1.158 +*/
1.159 + {
1.160 +public:
1.161 + /**
1.162 + The Window Group Identifier of the window being created.
1.163 + */
1.164 + TInt iIdentifier;
1.165 + /**
1.166 + A number unique to the client creating the window group - allows the Plug-in to tell
1.167 + different clients apart.
1.168 + */
1.169 + TUint iClient;
1.170 + /**
1.171 + The number of Window Groups currently owned by that client (not including the one being created).
1.172 + */
1.173 + TInt iNumClientWindowGroups;
1.174 + };
1.175 +
1.176 +class TWindowCloseData
1.177 +/**
1.178 +Passed to a Key Click Plug-in using the function CClickMaker::OtherEvent when the aType value
1.179 +is EEventWindowClose.
1.180 +
1.181 +@publishedAll
1.182 +@released
1.183 +*/
1.184 + {
1.185 +public:
1.186 + /**
1.187 + The client handle of the window being closed.
1.188 + */
1.189 + TUint32 iClientHandle;
1.190 + /**
1.191 + The Window Group Identifier of the window group that is a parent (or grandparent etc.)
1.192 + of the window being closed, or 0 if the window has been orphaned.
1.193 + */
1.194 + TInt iWindowGroupId;
1.195 + };
1.196 +
1.197 +#endif