os/graphics/windowing/windowserver/inc/advancedpointerevent.inl
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/inc/advancedpointerevent.inl	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,81 @@
     1.4 +// Copyright (c) 2008-2010 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 +// inline implementations for TAdvancedPointerEvent
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#ifndef ADVANCEDPOINTEREVENT_INL_
    1.22 +#define ADVANCEDPOINTEREVENT_INL_
    1.23 +
    1.24 +
    1.25 +/**	Does basic initialisation of a TAdvancedPointerEvent
    1.26 +	@internalTechnology */
    1.27 +inline void TAdvancedPointerEvent::Init()
    1.28 +	{
    1.29 +	iModifiers=EModifierAdvancedPointerEvent;
    1.30 +	iData.ints.iSpare1=0;
    1.31 +	iData.ints.iSpare2=0;
    1.32 +	}
    1.33 +
    1.34 +/**	Does specific initialisation of a TAdvancedPointerEvent
    1.35 +	@param aType The pointer event type.
    1.36 +	@param aModifiers Additional modifiers for the event.
    1.37 +	@param aPoint3D The 3D coordinated of the event.
    1.38 +	@param aPointerNumber The pointer number for the event.
    1.39 +	@internalTechnology */
    1.40 +inline void TAdvancedPointerEvent::Init(const TPointerEvent::TType aType, const TUint aModifiers, const TPoint3D &aPoint3D, const TUint8 aPointerNumber)
    1.41 +	{
    1.42 +	Init();
    1.43 +	iType=aType;
    1.44 +	iModifiers|=aModifiers; //add the new modifiers to EModifierAdvancedPointerEvent
    1.45 +	iPosition.iX=aPoint3D.iX;
    1.46 +	iPosition.iY=aPoint3D.iY;
    1.47 +	iData.multiPos3D.iPosZ=aPoint3D.iZ;
    1.48 +	iData.multiPos3D.iPointerNumber=aPointerNumber;
    1.49 +	}
    1.50 +
    1.51 +/** Sets the pointer number and enforces pointer event to an advanced pointer event.
    1.52 +	@internalTechnology */
    1.53 +inline void TAdvancedPointerEvent::SetPointerNumber(TUint8 aPointerNumber)
    1.54 +	{
    1.55 +	iModifiers|=EModifierAdvancedPointerEvent; // ensure we're an AdvancePointerEvent 
    1.56 +	iData.multiPos3D.iPointerNumber=aPointerNumber;
    1.57 +	}
    1.58 +
    1.59 +/** Sets Z and enforces pointer event to advanced pointer event
    1.60 +	@internalTechnology */
    1.61 +inline void TAdvancedPointerEvent::SetPointerZ(TInt aZ)
    1.62 +	{
    1.63 +	iModifiers|=EModifierAdvancedPointerEvent; // ensure we're an advanced pointer event 
    1.64 +	iData.multiPos3D.iPosZ=aZ;
    1.65 +	}
    1.66 +
    1.67 +inline void TAdvancedPointerEvent::Copy(const TAdvancedPointerEvent& aPointerEvent)
    1.68 +	{
    1.69 +	if(aPointerEvent.iModifiers&EModifierAdvancedPointerEvent)
    1.70 +		{
    1.71 +		iType=aPointerEvent.iType;
    1.72 +		iModifiers=aPointerEvent.iModifiers;
    1.73 +		iPosition=aPointerEvent.iPosition;
    1.74 +		iParentPosition=aPointerEvent.iParentPosition;	
    1.75 +		iData=aPointerEvent.iData;
    1.76 +		}
    1.77 +	else
    1.78 +		{
    1.79 +		// delegate to TPointerEvent::Copy
    1.80 +		TPointerEvent::Copy(aPointerEvent);
    1.81 +		}
    1.82 +	}
    1.83 +
    1.84 +#endif /*ADVANCEDPOINTEREVENT_INL_*/