os/graphics/windowing/windowserver/nga/graphicdrawer/graphicdrawerenvironment.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/nga/graphicdrawer/graphicdrawerenvironment.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,104 @@
     1.4 +// Copyright (c) 1995-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 +//
    1.18 +
    1.19 +#include "graphics/WSGRAPHICDRAWER.H"
    1.20 +#include <graphics/WSGRAPHICDRAWERINTERFACE.H>
    1.21 +#include "graphics/wsgraphicdrawerinternal.h"
    1.22 +
    1.23 +// TGraphicDrawerId \\\\\\\\\\\\\\\\\\\\\\\\
    1.24 +
    1.25 +EXPORT_C TInt TGraphicDrawerId::Compare(const TGraphicDrawerId& aOther) const
    1.26 +/** Compares another ID with this for equality.
    1.27 +@param aOther the ID to be compared with this.
    1.28 +@return 0 if identical, -1 if this is less than aOther and 1 if this is greater than aOther
    1.29 +*/	{
    1.30 +	// id is expected to differ most 99.99% of the time
    1.31 +	if(iId < aOther.iId)
    1.32 +		{
    1.33 +		return -1;
    1.34 +		}
    1.35 +	else if(iId > aOther.iId)
    1.36 +		{
    1.37 +		return 1;
    1.38 +		}
    1.39 +	// else we have to compare the iIsUid flag too; again, expect it to be a match 99.99% of these times
    1.40 +	else if(iIsUid == aOther.iIsUid)
    1.41 +		{
    1.42 +		return 0;
    1.43 +		}
    1.44 +	// collisions of id but not iIsUid are going to be really really rare
    1.45 +	else if(iIsUid)
    1.46 +		{
    1.47 +		return 1;
    1.48 +		}
    1.49 +	else
    1.50 +		{
    1.51 +		return -1;
    1.52 +		}
    1.53 +	}
    1.54 +	
    1.55 +EXPORT_C TInt TGraphicDrawerId::Compare(const TGraphicDrawerId& aFirst,const TGraphicDrawerId& aSecond)
    1.56 +/** Compares two IDs for equality.
    1.57 +@param aFirst the ID to be compared with aSecond
    1.58 +@param aSecond the ID to be compared with aFirst
    1.59 +@return 0 if identical, -1 if aFirst is less than aSecond and 1 if aFirst is greater than aSecond
    1.60 +*/	{
    1.61 +	return aFirst.Compare(aSecond);
    1.62 +	}
    1.63 +
    1.64 +// MWsAnimationScheduler \\\\\\\\\\\\\\\\\\\\\\\\
    1.65 +
    1.66 +EXPORT_C void MWsAnimationScheduler::Animate(MWsScreen& aScreen)
    1.67 +/** Calls the screen's OnAnimation() callback
    1.68 +	@param aScreen the screen to be called back
    1.69 +*/	{
    1.70 +	aScreen.OnAnimation(NULL);
    1.71 +	}
    1.72 +
    1.73 +EXPORT_C void MWsAnimationScheduler::Animate(MWsScreen& aScreen, TRequestStatus* aFinished)
    1.74 +/** Calls the screen's OnAnimation() callback.
    1.75 +	@param aScreen The screen to be called back.
    1.76 +	@param aFinished If not NULL, then this is signalled when the next (down stream) render stage
    1.77 +	is ready to recieve further updates. Note that it is valid to call Animate() again, before aFinished is signalled,
    1.78 +	but the render-stage pipeline may not be ready to recieve updates.*/	
    1.79 +	{
    1.80 +	aScreen.OnAnimation(aFinished);
    1.81 +	}
    1.82 +
    1.83 +EXPORT_C void MWsAnimationScheduler::Redraw(MWsScreen& aScreen)
    1.84 +/** Calls the screen's Redraw() method
    1.85 +	@param aScreen the screen to be redrawn
    1.86 +*/	{
    1.87 +	aScreen.Redraw();
    1.88 +	}
    1.89 +
    1.90 +EXPORT_C TBool MWsAnimationScheduler::RedrawInvalid(MWsScreen& aScreen,const TArray<TGraphicDrawerId>& aInvalid)
    1.91 +/** Calls the screen's RedrawInvalid() method
    1.92 +	@param aScreen the screen to be signalled to redraw any affected areas
    1.93 +	@param the list of graphic IDs that are invalid
    1.94 +	@return whether the screen drew anything
    1.95 +*/	{
    1.96 +	return aScreen.RedrawInvalid(aInvalid);
    1.97 +	}
    1.98 +	
    1.99 +// MWsObjectProvider \\\\\\\\\\\\\\\\\\\\\\\\
   1.100 +	
   1.101 +EXPORT_C TAny* MWsObjectProvider::ResolveObjectInterface(TUint /*aTypeId*/)
   1.102 +	{
   1.103 +	return NULL;
   1.104 +	}
   1.105 +
   1.106 +// MWsGraphicDrawerEnvironment \\\\\\\\\\\\\\\\\\\\\\\\
   1.107 +