os/graphics/windowing/windowserver/nga/graphicdrawer/graphicdrawerenvironment.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 1995-2009 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 #include "graphics/WSGRAPHICDRAWER.H"
    17 #include <graphics/WSGRAPHICDRAWERINTERFACE.H>
    18 #include "graphics/wsgraphicdrawerinternal.h"
    19 
    20 // TGraphicDrawerId \\\\\\\\\\\\\\\\\\\\\\\\
    21 
    22 EXPORT_C TInt TGraphicDrawerId::Compare(const TGraphicDrawerId& aOther) const
    23 /** Compares another ID with this for equality.
    24 @param aOther the ID to be compared with this.
    25 @return 0 if identical, -1 if this is less than aOther and 1 if this is greater than aOther
    26 */	{
    27 	// id is expected to differ most 99.99% of the time
    28 	if(iId < aOther.iId)
    29 		{
    30 		return -1;
    31 		}
    32 	else if(iId > aOther.iId)
    33 		{
    34 		return 1;
    35 		}
    36 	// else we have to compare the iIsUid flag too; again, expect it to be a match 99.99% of these times
    37 	else if(iIsUid == aOther.iIsUid)
    38 		{
    39 		return 0;
    40 		}
    41 	// collisions of id but not iIsUid are going to be really really rare
    42 	else if(iIsUid)
    43 		{
    44 		return 1;
    45 		}
    46 	else
    47 		{
    48 		return -1;
    49 		}
    50 	}
    51 	
    52 EXPORT_C TInt TGraphicDrawerId::Compare(const TGraphicDrawerId& aFirst,const TGraphicDrawerId& aSecond)
    53 /** Compares two IDs for equality.
    54 @param aFirst the ID to be compared with aSecond
    55 @param aSecond the ID to be compared with aFirst
    56 @return 0 if identical, -1 if aFirst is less than aSecond and 1 if aFirst is greater than aSecond
    57 */	{
    58 	return aFirst.Compare(aSecond);
    59 	}
    60 
    61 // MWsAnimationScheduler \\\\\\\\\\\\\\\\\\\\\\\\
    62 
    63 EXPORT_C void MWsAnimationScheduler::Animate(MWsScreen& aScreen)
    64 /** Calls the screen's OnAnimation() callback
    65 	@param aScreen the screen to be called back
    66 */	{
    67 	aScreen.OnAnimation(NULL);
    68 	}
    69 
    70 EXPORT_C void MWsAnimationScheduler::Animate(MWsScreen& aScreen, TRequestStatus* aFinished)
    71 /** Calls the screen's OnAnimation() callback.
    72 	@param aScreen The screen to be called back.
    73 	@param aFinished If not NULL, then this is signalled when the next (down stream) render stage
    74 	is ready to recieve further updates. Note that it is valid to call Animate() again, before aFinished is signalled,
    75 	but the render-stage pipeline may not be ready to recieve updates.*/	
    76 	{
    77 	aScreen.OnAnimation(aFinished);
    78 	}
    79 
    80 EXPORT_C void MWsAnimationScheduler::Redraw(MWsScreen& aScreen)
    81 /** Calls the screen's Redraw() method
    82 	@param aScreen the screen to be redrawn
    83 */	{
    84 	aScreen.Redraw();
    85 	}
    86 
    87 EXPORT_C TBool MWsAnimationScheduler::RedrawInvalid(MWsScreen& aScreen,const TArray<TGraphicDrawerId>& aInvalid)
    88 /** Calls the screen's RedrawInvalid() method
    89 	@param aScreen the screen to be signalled to redraw any affected areas
    90 	@param the list of graphic IDs that are invalid
    91 	@return whether the screen drew anything
    92 */	{
    93 	return aScreen.RedrawInvalid(aInvalid);
    94 	}
    95 	
    96 // MWsObjectProvider \\\\\\\\\\\\\\\\\\\\\\\\
    97 	
    98 EXPORT_C TAny* MWsObjectProvider::ResolveObjectInterface(TUint /*aTypeId*/)
    99 	{
   100 	return NULL;
   101 	}
   102 
   103 // MWsGraphicDrawerEnvironment \\\\\\\\\\\\\\\\\\\\\\\\
   104