os/graphics/windowing/windowserver/inc/W32CLICK.H
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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
// Definition of class that needs to be provided by a Key Click plugin
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __W32CLICK_H__
sl@0
    19
#define __W32CLICK_H__
sl@0
    20
sl@0
    21
#ifndef __E32STD_H__
sl@0
    22
#include <e32std.h>
sl@0
    23
#endif
sl@0
    24
#ifndef __E32BASE_H__
sl@0
    25
#include <e32base.h>
sl@0
    26
#endif
sl@0
    27
#ifndef __W32STD_H__
sl@0
    28
#include <w32std.h>
sl@0
    29
#endif
sl@0
    30
sl@0
    31
#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
    32
#include <graphics/pointereventdata.h>
sl@0
    33
#endif //SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
    34
sl@0
    35
class CClickMaker: public CBase
sl@0
    36
/** Key or pointer click plug-in provider interface.
sl@0
    37
sl@0
    38
This class should be implemented by a plug-in DLL in order to produce a sound 
sl@0
    39
when a key is pressed, a key auto repeats or when the screen is tapped with 
sl@0
    40
a pointer. When any of these events occur, the window server informs the plug-in 
sl@0
    41
DLL, which can then make the sound.
sl@0
    42
sl@0
    43
The details of the event are also passed to the plug-in so that the sound 
sl@0
    44
can be tailored to the precise event, for example clicking on different keys on the 
sl@0
    45
keypad or on different parts of the screen could make different sounds.
sl@0
    46
sl@0
    47
The name of the initial plug-in to use can be specified in the wsini.ini configuration 
sl@0
    48
file using the KEYCLICKPLUGIN or KEYCLICKPLUGINFIXED keywords. When the operating 
sl@0
    49
system boots, wsini.ini is read for the name of this plug-in. If a plug-in 
sl@0
    50
name exists, the window server will try to load it. At a later time, any client 
sl@0
    51
of the window server can request a new plug-in to be loaded or the current 
sl@0
    52
one to be unloaded, using the RSoundPlugIn class.
sl@0
    53
sl@0
    54
The plug-in is a polymorphic DLL which implements the CClickMaker interface. 
sl@0
    55
Its first UID is KDynamicLibraryUidValue and its second UID is 0x10004F63. 
sl@0
    56
Its first exported function should create an object of the CClickMaker sub-class 
sl@0
    57
and should have the following signature:
sl@0
    58
sl@0
    59
EXPORT_C CClickMaker* CreateClickMakerL() 
sl@0
    60
sl@0
    61
@publishedAll 
sl@0
    62
@released 
sl@0
    63
@see RSoundPlugIn */
sl@0
    64
	{
sl@0
    65
public:
sl@0
    66
	/** This function is called by the window server whenever there is a key event, 
sl@0
    67
	to generate the sound.
sl@0
    68
	
sl@0
    69
	It must be implemented by the key or pointer click plug-in.
sl@0
    70
	
sl@0
    71
	If the sound cannot be made, the function should continue without leaving.
sl@0
    72
	
sl@0
    73
	@param aType The type of key event: EEventKey, EEventKeyUp, EEventKeyDown 
sl@0
    74
	or EEventKeyRepeat.
sl@0
    75
	@param aEvent The key event details. */
sl@0
    76
	virtual void KeyEvent(TEventCode aType,const TKeyEvent& aEvent)=0;
sl@0
    77
sl@0
    78
	/** This function is called by the window server whenever there is a pointer event, 
sl@0
    79
	to generate the sound.
sl@0
    80
	
sl@0
    81
	It must be implemented by the key or pointer click plug-in.
sl@0
    82
	
sl@0
    83
	If the sound cannot be made, the function should continue without leaving.
sl@0
    84
	
sl@0
    85
	The iParentPosition data member of aEvent is not the position of the pointer 
sl@0
    86
	event relative to origin of the parent window. Instead it is the position 
sl@0
    87
	on the screen. This is because the parent window has no meaning inside the 
sl@0
    88
	plug-in as it does to the window server client and also knowledge 
sl@0
    89
	of the screen position may be useful to the plug-in.
sl@0
    90
	
sl@0
    91
	On devices where these features are supported, aEvent will contain pointer number, 
sl@0
    92
	proximity of the pointer to the screen and/or pressure applied by the pointer to the screen.
sl@0
    93
	In order to retrieve this information, implementation of this method should
sl@0
    94
	use TPointerEvent::AdvancedPointerEvent().
sl@0
    95
	
sl@0
    96
	@param aEvent The pointer event details. 
sl@0
    97
	@see TPointerEvent::AdvancedPointerEvent() */
sl@0
    98
	virtual void PointerEvent(const TPointerEvent& aEvent)=0;
sl@0
    99
sl@0
   100
	/** This function is intended for future expansion of the interface, in case it 
sl@0
   101
	needs to support sounds for other types of event.
sl@0
   102
sl@0
   103
	Currently it is called by the window server, with several values for aType.
sl@0
   104
	For each of these aParam will need to be cast to a different class type 
sl@0
   105
	to get the data:
sl@0
   106
	EEventPointer: cast to TPointerEventData*
sl@0
   107
	EEventScreenDeviceChanged: TClickMakerData*
sl@0
   108
	EEventGroupWindowOpen: TGroupWindowOpenData*
sl@0
   109
	EEventGroupWindowClose: TInt (the identifier of the window group being closed)
sl@0
   110
	EEventWindowClose: TWindowCloseData*
sl@0
   111
sl@0
   112
	@param aType One of the above listed values, in future may be used with other values.
sl@0
   113
	@param aParam See above. */
sl@0
   114
	virtual void OtherEvent(TInt aType,TAny* aParam=NULL)=0;
sl@0
   115
sl@0
   116
	/** This function may be implemented by the key or pointer click plug-in to enable 
sl@0
   117
	the plug-in to communicate with the window server client.
sl@0
   118
	
sl@0
   119
	If this is not required, the implementation may simply return zero.
sl@0
   120
	
sl@0
   121
	It is called by RSoundPlugIn::CommandReply() which returns the value returned 
sl@0
   122
	by this function.
sl@0
   123
	
sl@0
   124
	The return value can be generated either by returning it from the function 
sl@0
   125
	or by leaving with the value. In either case, the client will get back the 
sl@0
   126
	value concerned.
sl@0
   127
	
sl@0
   128
	@param aOpcode Opcode understood by both the window server client and the 
sl@0
   129
	plug-in DLL.
sl@0
   130
	@param aArgs Arguments packaged by the window server client.
sl@0
   131
	@return A value passed back to the client. This may be KErrNone or another 
sl@0
   132
	of the system-wide error codes. */
sl@0
   133
	virtual TInt CommandReplyL(TInt aOpcode, TAny *aArgs)=0;
sl@0
   134
	};
sl@0
   135
sl@0
   136
struct TClickMakerData
sl@0
   137
/**
sl@0
   138
Passed to a Key Click Plug-in using the function CClickMaker::OtherEvent when the 
sl@0
   139
aType value is EEventScreenDeviceChanged.
sl@0
   140
sl@0
   141
@publishedAll 
sl@0
   142
@released 
sl@0
   143
*/
sl@0
   144
	{
sl@0
   145
	TInt screenDeviceMode;
sl@0
   146
	};
sl@0
   147
sl@0
   148
class TGroupWindowOpenData
sl@0
   149
/**
sl@0
   150
Passed to a Key Click Plug-in using the function CClickMaker::OtherEvent when the 
sl@0
   151
aType value is EEventGroupWindowOpen.
sl@0
   152
sl@0
   153
@publishedAll 
sl@0
   154
@released 
sl@0
   155
*/
sl@0
   156
	{
sl@0
   157
public:
sl@0
   158
	/**
sl@0
   159
	The Window Group Identifier of the window being created.
sl@0
   160
	*/
sl@0
   161
	TInt iIdentifier;
sl@0
   162
	/**
sl@0
   163
	A number unique to the client creating the window group - allows the Plug-in to tell 
sl@0
   164
	different clients apart.
sl@0
   165
	*/
sl@0
   166
	TUint iClient;
sl@0
   167
	/**
sl@0
   168
	The number of Window Groups currently owned by that client (not including the one being created).
sl@0
   169
	*/
sl@0
   170
	TInt iNumClientWindowGroups;
sl@0
   171
	};
sl@0
   172
sl@0
   173
class TWindowCloseData
sl@0
   174
/**
sl@0
   175
Passed to a Key Click Plug-in using the function CClickMaker::OtherEvent when the aType value 
sl@0
   176
is EEventWindowClose.
sl@0
   177
sl@0
   178
@publishedAll 
sl@0
   179
@released 
sl@0
   180
*/
sl@0
   181
	{
sl@0
   182
public:
sl@0
   183
	/**
sl@0
   184
	The client handle of the window being closed.
sl@0
   185
	*/
sl@0
   186
	TUint32 iClientHandle;
sl@0
   187
	/**
sl@0
   188
	The Window Group Identifier of the window group that is a parent (or grandparent etc.)
sl@0
   189
	of the window being closed, or 0 if the window has been orphaned.
sl@0
   190
	*/
sl@0
   191
	TInt iWindowGroupId;
sl@0
   192
	};
sl@0
   193
sl@0
   194
#endif