os/graphics/windowing/windowserver/inc/advancedpointerevent.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 1994-2010 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #ifndef ADVANCEDPOINTEREVENT_H
    17 #define ADVANCEDPOINTEREVENT_H
    18 
    19 #ifndef __E32STD_H__
    20 #include <e32std.h>
    21 #endif
    22 #ifndef __E32KEYS_H__
    23 #include <e32keys.h>
    24 #endif
    25 #ifndef POINTEREVENT_H
    26 #include <pointerevent.h>
    27 #endif
    28 
    29 
    30 /** Subclass of TPointerEvent created in order to maintain binary compatibility while
    31 extending TPointerEvent with new data:
    32 (1) pointer number of the pointer whose state change is described by the event,
    33 (2) proximity of the pointer to the screen's surface,
    34 (3) pressure applied by the pointer to the screen.
    35 
    36 These new attributes will be present only on devices that support them, otherwise
    37 they will be set to 0.
    38 
    39 @see TPointerEvent
    40 @see TPointerEvent::AdvancedPointerEvent()
    41 @see TPointerEvent::IsAdvancedPointerEvent()
    42 @see TWsEvent::Pointer()
    43 @publishedAll
    44 @released */
    45 class TAdvancedPointerEvent : public TPointerEvent
    46 	{
    47 public:
    48 	enum
    49 		{
    50 		/**
    51 		The value used by Symbian OS as the default pointer number for pointer-related 
    52 		event objects which do not contain a pointer number member.
    53 		
    54 		WARNING: Enum for internal use ONLY. Compatibility is not guaranteed in future releases.		
    55 		*/
    56 		EDefaultPointerNumber = 0,
    57 		/**
    58 		Maximum number of pointers that WServ is able to support. On each particular platform,
    59 		the number of supported pointers must be less than or equal to this value.
    60 		
    61 		WARNING: Enum for internal use ONLY. Compatibility is not guaranteed in future releases.		
    62 		*/
    63 		EMaximumWServNumberOfPointers = 8
    64 		};
    65 	
    66 	// Public API's for WServ Clients
    67 	inline TAdvancedPointerEvent();	
    68 	inline TInt PointerNumber() const;
    69 	inline TInt Proximity() const;
    70 	inline TInt Pressure() const;
    71 	inline TInt ProximityAndPressure() const;
    72 	inline TPoint3D Position3D() const;
    73 	inline TPoint3D Pressure3D() const;
    74 	inline TPoint3D PositionAndPressure3D() const;
    75 
    76 	IMPORT_C TAdvancedPointerEvent(const TAdvancedPointerEvent& aPointerEvent);
    77 	IMPORT_C TAdvancedPointerEvent& operator=(const TAdvancedPointerEvent& aPointerEvent);	
    78 	
    79 private:
    80 	// The methods in this section are internalTechnology and intended for use by TWsEvent 
    81 	// and TAdvancedPointerEventHelper (internal WSERV class).
    82 	friend class TWsEvent;	
    83 	friend class TAdvancedPointerEventHelper;
    84 	
    85 	enum
    86 		{
    87 		/**
    88 		Value used as return value from PointerNumber API when the object is a TPointerEvent
    89 		not a TAdvancedPointerEvent (as indicated by the iModifier flags). 
    90 		 */
    91 		ENonAdvancedPointerPointerNumber = EDefaultPointerNumber,
    92 		};
    93 	enum
    94 		{
    95 		/**
    96 		Value used to distinguish between pressure and proximity Z values by Pressure or
    97 		Proximity Specific APIs. 
    98 		 */			
    99 		EPressureProximityCrossover = 0,
   100 		/**
   101 		Value used as return Z value from APIs when the object is a TPointerEvent
   102 		not a TAdvancedPointerEvent (as indicated by the iModifier flags). 
   103 		 */		
   104 		ENonAdvancedPointerZCoordinate = EPressureProximityCrossover,
   105 		};
   106 	
   107 	// Private API's for external usage, via inlined accessors
   108 	IMPORT_C TInt DoGetPointerNumber() const;
   109 	IMPORT_C TInt DoGetProximity() const;
   110 	IMPORT_C TInt DoGetPressure() const;
   111 	IMPORT_C TInt DoGetProximityAndPressure() const;
   112 	
   113 	// Private API's for internal WSERV usage. It is impossible to inline them into
   114 	// client's binaries, thus implementation may be changed in the future.
   115 	inline void Init();
   116 	inline void Init(const TPointerEvent::TType aType, const TUint aModifiers, const TPoint3D &aPoint3D, const TUint8 aPointerNumber);
   117 	inline void SetPointerNumber(TUint8 aPointerNumber);
   118 	inline void SetPointerZ(TInt aZ);
   119 	inline void Copy(const TAdvancedPointerEvent& aPointerEvent);		
   120 		
   121 	/** WARNING: Member variable for internal use ONLY. Compatibility is not guaranteed in future releases. Please access using the provided get/set APIs only. */
   122 	union
   123 		{
   124 		struct {TInt iSpare1; TInt iSpare2;} ints; // 8 bytes to fill TWsEvent
   125 		struct {TInt32 iPosZ; TUint8 iPointerNumber;} multiPos3D;
   126 		} iData;
   127 	};
   128 
   129 /** Default Constructor for TAdvancedPointerEvent
   130 
   131 @publishedAll
   132 @released
   133 */
   134 inline TAdvancedPointerEvent::TAdvancedPointerEvent() {}
   135 
   136 inline const TAdvancedPointerEvent* TPointerEvent::AdvancedPointerEvent() const
   137 /** Casts this TPointerEvent to TAdvancedPointerEvent in order to provide access
   138 	to event's pointer number, pressure and proximity (these attributes are accessible
   139 	through appropriate getters of TAdvancedPointerEvent class).
   140 	
   141 	If this is not an instance of TAdvancedPointerEvent, NULL will be returned.
   142 	Please note that TAdvancedPointerEvents are delivered only to windows for
   143 	which they have been enabled using RWindowBase::EnableAdvancedPointers() method.
   144 
   145 	@return A pointer to this object as TAdvancedPointerEvent or NULL if this is not
   146 	        an instance of TAdvancedPointerEvent.
   147 	@see TPointerEvent::IsAdvancedPointerEvent()
   148 	@see RWindowBase::EnableAdvancedPointers()
   149 	@publishedAll
   150 	@released */
   151 	{
   152 	return (iModifiers&EModifierAdvancedPointerEvent ? static_cast<const TAdvancedPointerEvent*>(this) : NULL);	
   153 	}
   154 
   155 #include "advancedpointerevent.inl"
   156 
   157 #endif /* ADVANCEDPOINTEREVENT_H */