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 class that needs to be provided by a Key Click plugin sl@0: // sl@0: // sl@0: sl@0: #ifndef __W32CLICK_H__ sl@0: #define __W32CLICK_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 __W32STD_H__ sl@0: #include sl@0: #endif sl@0: sl@0: #ifndef SYMBIAN_ENABLE_SPLIT_HEADERS sl@0: #include sl@0: #endif //SYMBIAN_ENABLE_SPLIT_HEADERS sl@0: sl@0: class CClickMaker: public CBase sl@0: /** Key or pointer click plug-in provider interface. sl@0: sl@0: This class should be implemented by a plug-in DLL in order to produce a sound sl@0: when a key is pressed, a key auto repeats or when the screen is tapped with sl@0: a pointer. When any of these events occur, the window server informs the plug-in sl@0: DLL, which can then make the sound. sl@0: sl@0: The details of the event are also passed to the plug-in so that the sound sl@0: can be tailored to the precise event, for example clicking on different keys on the sl@0: keypad or on different parts of the screen could make different sounds. sl@0: sl@0: The name of the initial plug-in to use can be specified in the wsini.ini configuration sl@0: file using the KEYCLICKPLUGIN or KEYCLICKPLUGINFIXED keywords. When the operating sl@0: system boots, wsini.ini is read for the name of this plug-in. If a plug-in sl@0: name exists, the window server will try to load it. At a later time, any client sl@0: of the window server can request a new plug-in to be loaded or the current sl@0: one to be unloaded, using the RSoundPlugIn class. sl@0: sl@0: The plug-in is a polymorphic DLL which implements the CClickMaker interface. sl@0: Its first UID is KDynamicLibraryUidValue and its second UID is 0x10004F63. sl@0: Its first exported function should create an object of the CClickMaker sub-class sl@0: and should have the following signature: sl@0: sl@0: EXPORT_C CClickMaker* CreateClickMakerL() sl@0: sl@0: @publishedAll sl@0: @released sl@0: @see RSoundPlugIn */ sl@0: { sl@0: public: sl@0: /** This function is called by the window server whenever there is a key event, sl@0: to generate the sound. sl@0: sl@0: It must be implemented by the key or pointer click plug-in. sl@0: sl@0: If the sound cannot be made, the function should continue without leaving. sl@0: sl@0: @param aType The type of key event: EEventKey, EEventKeyUp, EEventKeyDown sl@0: or EEventKeyRepeat. sl@0: @param aEvent The key event details. */ sl@0: virtual void KeyEvent(TEventCode aType,const TKeyEvent& aEvent)=0; sl@0: sl@0: /** This function is called by the window server whenever there is a pointer event, sl@0: to generate the sound. sl@0: sl@0: It must be implemented by the key or pointer click plug-in. sl@0: sl@0: If the sound cannot be made, the function should continue without leaving. sl@0: sl@0: The iParentPosition data member of aEvent is not the position of the pointer sl@0: event relative to origin of the parent window. Instead it is the position sl@0: on the screen. This is because the parent window has no meaning inside the sl@0: plug-in as it does to the window server client and also knowledge sl@0: of the screen position may be useful to the plug-in. sl@0: sl@0: On devices where these features are supported, aEvent will contain pointer number, sl@0: proximity of the pointer to the screen and/or pressure applied by the pointer to the screen. sl@0: In order to retrieve this information, implementation of this method should sl@0: use TPointerEvent::AdvancedPointerEvent(). sl@0: sl@0: @param aEvent The pointer event details. sl@0: @see TPointerEvent::AdvancedPointerEvent() */ sl@0: virtual void PointerEvent(const TPointerEvent& aEvent)=0; sl@0: sl@0: /** This function is intended for future expansion of the interface, in case it sl@0: needs to support sounds for other types of event. sl@0: sl@0: Currently it is called by the window server, with several values for aType. sl@0: For each of these aParam will need to be cast to a different class type sl@0: to get the data: sl@0: EEventPointer: cast to TPointerEventData* sl@0: EEventScreenDeviceChanged: TClickMakerData* sl@0: EEventGroupWindowOpen: TGroupWindowOpenData* sl@0: EEventGroupWindowClose: TInt (the identifier of the window group being closed) sl@0: EEventWindowClose: TWindowCloseData* sl@0: sl@0: @param aType One of the above listed values, in future may be used with other values. sl@0: @param aParam See above. */ sl@0: virtual void OtherEvent(TInt aType,TAny* aParam=NULL)=0; sl@0: sl@0: /** This function may be implemented by the key or pointer click plug-in to enable sl@0: the plug-in to communicate with the window server client. sl@0: sl@0: If this is not required, the implementation may simply return zero. sl@0: sl@0: It is called by RSoundPlugIn::CommandReply() which returns the value returned sl@0: by this function. sl@0: sl@0: The return value can be generated either by returning it from the function sl@0: or by leaving with the value. In either case, the client will get back the sl@0: value concerned. sl@0: sl@0: @param aOpcode Opcode understood by both the window server client and the sl@0: plug-in DLL. sl@0: @param aArgs Arguments packaged by the window server client. sl@0: @return A value passed back to the client. This may be KErrNone or another sl@0: of the system-wide error codes. */ sl@0: virtual TInt CommandReplyL(TInt aOpcode, TAny *aArgs)=0; sl@0: }; sl@0: sl@0: struct TClickMakerData sl@0: /** sl@0: Passed to a Key Click Plug-in using the function CClickMaker::OtherEvent when the sl@0: aType value is EEventScreenDeviceChanged. sl@0: sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: { sl@0: TInt screenDeviceMode; sl@0: }; sl@0: sl@0: class TGroupWindowOpenData sl@0: /** sl@0: Passed to a Key Click Plug-in using the function CClickMaker::OtherEvent when the sl@0: aType value is EEventGroupWindowOpen. sl@0: sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: { sl@0: public: sl@0: /** sl@0: The Window Group Identifier of the window being created. sl@0: */ sl@0: TInt iIdentifier; sl@0: /** sl@0: A number unique to the client creating the window group - allows the Plug-in to tell sl@0: different clients apart. sl@0: */ sl@0: TUint iClient; sl@0: /** sl@0: The number of Window Groups currently owned by that client (not including the one being created). sl@0: */ sl@0: TInt iNumClientWindowGroups; sl@0: }; sl@0: sl@0: class TWindowCloseData sl@0: /** sl@0: Passed to a Key Click Plug-in using the function CClickMaker::OtherEvent when the aType value sl@0: is EEventWindowClose. sl@0: sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: { sl@0: public: sl@0: /** sl@0: The client handle of the window being closed. sl@0: */ sl@0: TUint32 iClientHandle; sl@0: /** sl@0: The Window Group Identifier of the window group that is a parent (or grandparent etc.) sl@0: of the window being closed, or 0 if the window has been orphaned. sl@0: */ sl@0: TInt iWindowGroupId; sl@0: }; sl@0: sl@0: #endif