os/graphics/windowing/windowserver/nga/SERVER/TCURSOR.CPP
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/nga/SERVER/TCURSOR.CPP	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,582 @@
     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 +// The text cursor
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#include <e32std.h>
    1.22 +#include <graphics/wscursor.h>
    1.23 +#include "server.h"
    1.24 +#include "tcursor.h"
    1.25 +#include "windowgroup.h"
    1.26 +#include "wstop.h"
    1.27 +#include "panics.h"
    1.28 +#include "EVENT.H"
    1.29 +#include "graphics/windowserverconstants.h"
    1.30 +
    1.31 +static const TInt64 KFlashRate(500000); // duration cursor is ON or OFF
    1.32 +
    1.33 +void RWsTextCursor::ConstructL(CWsWindowGroup *aGroupWin)
    1.34 +	{
    1.35 +	iInternalFlags = 0;
    1.36 +	iGroupWin=aGroupWin;
    1.37 +	iCustomTextCursor = NULL;
    1.38 +	}
    1.39 +
    1.40 +void RWsTextCursor::Close()
    1.41 +	{
    1.42 +	iDrawRegion.Close();
    1.43 +	Cancel();
    1.44 +	}
    1.45 +
    1.46 +void RWsTextCursor::SetL(const TWsWinCmdSetTextCursor &aSet, TBool aClipped)
    1.47 +	{
    1.48 +	if (aSet.cursor.iType < TTextCursor::ETypeFirst ||
    1.49 +	        (aSet.cursor.iType > TTextCursor::ETypeLast &&
    1.50 +		 aSet.cursor.iType <= TTextCursor::ETypeLastBasic) ||
    1.51 +		(aSet.cursor.iFlags&static_cast<TUint>(ETextCursorPrivateFlags)))
    1.52 +		{
    1.53 +		Cancel();
    1.54 +		iGroupWin->OwnerPanic(EWservPanicInvalidTextCursor);
    1.55 +		}
    1.56 +	else
    1.57 +		{
    1.58 +		CWsClientWindow* win = NULL;
    1.59 +		iGroupWin->WsOwner()->HandleToClientWindow(aSet.window, &win);
    1.60 +
    1.61 +		// Check window is a child of the group window
    1.62 +		CWsWindowBase* searchWin = NULL;
    1.63 +		for(searchWin=win; searchWin->WinType()!=EWinTypeGroup; searchWin=searchWin->BaseParent())
    1.64 +			{}
    1.65 +		if (iGroupWin != searchWin)
    1.66 +			{
    1.67 +			Cancel();
    1.68 +			iGroupWin->OwnerPanic(EWservPanicWindow);
    1.69 +			}
    1.70 +
    1.71 +		TPoint pos(aSet.pos.iX, aSet.pos.iY-aSet.cursor.iAscent);
    1.72 +		TSize size(aSet.cursor.iWidth, aSet.cursor.iHeight);
    1.73 +		TUint flags = aSet.cursor.iFlags;
    1.74 +		TInt type = aSet.cursor.iType;
    1.75 +		TRect clipRect = iClipRect;
    1.76 +		TRgb color = aSet.cursor.iColor;
    1.77 +		CWsCustomTextCursor* customTextCursor = iCustomTextCursor;
    1.78 +		TBool changed = EFalse;
    1.79 +
    1.80 +		TPoint clipOrigo;
    1.81 +		TSize clipSize;
    1.82 +
    1.83 +		if (type > TTextCursor::ETypeLastBasic)
    1.84 +			{
    1.85 +			changed = ETrue;
    1.86 +
    1.87 +			customTextCursor = CWsClient::FindCustomTextCursor(type);
    1.88 +			if (!customTextCursor)
    1.89 +				{
    1.90 +				Cancel();
    1.91 +				iGroupWin->OwnerPanic(EWservPanicNoCustomTextCursor);
    1.92 +				return;
    1.93 +				}
    1.94 +			
    1.95 +			if( !customTextCursor->HasSpriteMember() )
    1.96 +				{
    1.97 +				iGroupWin->OwnerPanic(EWservPanicNoSpriteMember);
    1.98 +				return;
    1.99 +				}
   1.100 +			
   1.101 +			TInt yAdjust=0;
   1.102 +			switch (customTextCursor->Alignment())
   1.103 +				{
   1.104 +				case RWsSession::ECustomTextCursorAlignTop:
   1.105 +					break;
   1.106 +				case RWsSession::ECustomTextCursorAlignBaseline:
   1.107 +					yAdjust = aSet.cursor.iAscent-1;
   1.108 +					break;
   1.109 +				case RWsSession::ECustomTextCursorAlignBottom:
   1.110 +					yAdjust = aSet.cursor.iHeight-1;
   1.111 +					break;
   1.112 +				default:
   1.113 +					Cancel();
   1.114 +					iGroupWin->OwnerPanic(EWservPanicCustomTextCursorAlign);
   1.115 +					return;
   1.116 +				}
   1.117 +			pos.iY += yAdjust;
   1.118 +			// Start with a clipping rect to be the whole window
   1.119 +			// relative cursor pos and shrink down to what we want
   1.120 +			clipOrigo = -pos;
   1.121 +			clipSize = win->Size();
   1.122 +			if (flags & TTextCursor::EFlagClipHorizontal)
   1.123 +				{
   1.124 +				clipOrigo.iX = 0;
   1.125 +				clipSize.iWidth = size.iWidth;
   1.126 +				}
   1.127 +			if (flags & TTextCursor::EFlagClipVertical)
   1.128 +				{
   1.129 +				clipOrigo.iY = -yAdjust;
   1.130 +				clipSize.iHeight = aSet.cursor.iHeight;
   1.131 +				}
   1.132 +			}
   1.133 +		else
   1.134 +			{
   1.135 +			customTextCursor = NULL;
   1.136 +			}
   1.137 +
   1.138 +		if (aClipped)
   1.139 +			{
   1.140 +			flags|=ETextCursorFlagClipped;
   1.141 +			clipRect=aSet.rect;
   1.142 +			}
   1.143 +
   1.144 +		TPoint absPos(pos.iX,pos.iY);
   1.145 +		absPos=absPos+win->Origin();
   1.146 +		if (pos != iPos || absPos != iAbsPos || size != iSize || iType != type ||
   1.147 +			flags != iFlags || clipRect != iClipRect || color != iColor ||
   1.148 +			customTextCursor != iCustomTextCursor || win != iWin)
   1.149 +			{
   1.150 +			// There is a change in the cursor.
   1.151 +			changed = ETrue;
   1.152 +			}
   1.153 +
   1.154 +		if (iInternalFlags&EHasFocus && changed)
   1.155 +			{
   1.156 +			if ((win != iWin && !iCustomTextCursor) || (customTextCursor && !iCustomTextCursor))
   1.157 +				ReleaseNode();
   1.158 +			TCursorSprite::Hide();
   1.159 +			}
   1.160 +
   1.161 +		UpdateAttributes(pos, absPos, size, type, flags, clipRect, color, customTextCursor, win);
   1.162 +
   1.163 +		if (customTextCursor && iInternalFlags&EHasFocus)
   1.164 +			{
   1.165 +			customTextCursor->CompleteL(win, !(flags&TTextCursor::EFlagNoFlash), flags & (TTextCursor::EFlagClipHorizontal | TTextCursor::EFlagClipVertical), clipOrigo, clipSize);
   1.166 +			customTextCursor->SetPositionNoRedraw(pos);
   1.167 +			}
   1.168 +
   1.169 +		if (iInternalFlags&EHasFocus && changed)
   1.170 +			{
   1.171 +			TCursorSprite::SetCurrentCursor(this, win);
   1.172 +			}
   1.173 +		}
   1.174 +	}
   1.175 +void RWsTextCursor::UpdateAttributes(TPoint aPos, TPoint aAbsPos, TSize aSize, TInt aType, TUint aFlags, TRect aClipRect, TRgb aColor, CWsCustomTextCursor* aCustomTextCursor, CWsClientWindow* aWin)
   1.176 +	{
   1.177 +	if (aPos != iPos || aSize != iSize || aAbsPos != iAbsPos)
   1.178 +		{
   1.179 +		iPos = aPos;
   1.180 +        iAbsPos = aAbsPos;
   1.181 +		iSize = aSize;
   1.182 +		WS_ASSERT_DEBUG(iGroupWin->Screen(),EWsPanicNoScreen);
   1.183 +		MWsWindowTreeObserver* const windowTreeObserver = iGroupWin->Screen()->WindowTreeObserver();
   1.184 +		if (windowTreeObserver && iInternalFlags&EHasFocus && iInternalFlags&EActiveNode)
   1.185 +			windowTreeObserver->NodeExtentChanged(*this, RectRelativeToScreen());
   1.186 +		}
   1.187 +
   1.188 +	if (aType != iType)
   1.189 +		{
   1.190 +		iType = aType;
   1.191 +		NotifyObserver(MWsWindowTreeObserver::ECursorType);
   1.192 +		}
   1.193 +
   1.194 +	if (aClipRect != iClipRect)
   1.195 +		{
   1.196 +		iClipRect = aClipRect; // must update clip rect before sending clip rect set/unset notification
   1.197 +		if ((aFlags&ETextCursorFlagClipped) && (iFlags&ETextCursorFlagClipped))
   1.198 +			NotifyObserver(MWsWindowTreeObserver::ECursorClipRect); // clip rect changed
   1.199 +		}
   1.200 +
   1.201 +	if (aFlags != iFlags)
   1.202 +		{
   1.203 +		TBool sendFlagChanged = EFalse;
   1.204 +		if ((aFlags&ETextCursorFlagClipped) != (iFlags&ETextCursorFlagClipped))
   1.205 +			{
   1.206 +			if (iInternalFlags&EHasFocus && iInternalFlags&EActiveNode)
   1.207 +				{
   1.208 +				// We can't send flag changed till iFlags has been updated, as otherwise plugins responding to
   1.209 +				// the flag changed notification by calling ClipRect() may get the wrong rect
   1.210 +				sendFlagChanged = ETrue;
   1.211 +				}
   1.212 +			}
   1.213 +		const TBool userFlagsChanged((aFlags&ETextCursorUserFlags) != (iFlags&ETextCursorUserFlags)); 
   1.214 +		iFlags = aFlags;
   1.215 +		if (userFlagsChanged)
   1.216 +			NotifyObserver(MWsWindowTreeObserver::ECursorFlags);
   1.217 +		if (sendFlagChanged)
   1.218 +			{
   1.219 +			WS_ASSERT_DEBUG(iGroupWin->Screen(),EWsPanicNoScreen);
   1.220 +			MWsWindowTreeObserver* const windowTreeObserver = iGroupWin->Screen()->WindowTreeObserver();
   1.221 +			if (windowTreeObserver)
   1.222 +				windowTreeObserver->FlagChanged(*this, MWsWindowTreeObserver::ECursorClipRectSet, !!(iFlags&ETextCursorFlagClipped)); // clip rect set/unset
   1.223 +			}
   1.224 +		}
   1.225 +
   1.226 +	if (aColor != iColor)
   1.227 +		{
   1.228 +		iColor = aColor;
   1.229 +		NotifyObserver(MWsWindowTreeObserver::ECursorColor);
   1.230 +		}
   1.231 +	iCustomTextCursor = aCustomTextCursor;
   1.232 +	iWin = aWin;
   1.233 +	}
   1.234 +
   1.235 +void RWsTextCursor::NotifyObserver(MWsWindowTreeObserver::TAttributes aAttribute) const
   1.236 +	{
   1.237 +	if (iInternalFlags&EHasFocus && iInternalFlags&EActiveNode)
   1.238 +		{
   1.239 +		WS_ASSERT_DEBUG(iGroupWin->Screen(),EWsPanicNoScreen);
   1.240 +		MWsWindowTreeObserver* const windowTreeObserver = iGroupWin->Screen()->WindowTreeObserver();
   1.241 +		if (windowTreeObserver)
   1.242 +			windowTreeObserver->AttributeChanged(*this, aAttribute);
   1.243 +		}
   1.244 +	}
   1.245 +
   1.246 +void RWsTextCursor::CreateNode()
   1.247 +	{
   1.248 +	WS_ASSERT_DEBUG(iGroupWin->Screen(),EWsPanicNoScreen);
   1.249 +	MWsWindowTreeObserver* const windowTreeObserver = iGroupWin->Screen()->WindowTreeObserver();
   1.250 +	if (windowTreeObserver && !(iInternalFlags&EActiveNode))
   1.251 +		{
   1.252 +		iInternalFlags |= EActiveNode;
   1.253 +		windowTreeObserver->NodeCreated(*this, iWin);
   1.254 +		windowTreeObserver->NodeExtentChanged(*this, RectRelativeToScreen());
   1.255 +		if (iFlags&ETextCursorFlagClipped)
   1.256 +			windowTreeObserver->FlagChanged(*this, MWsWindowTreeObserver::ECursorClipRectSet, ETrue);
   1.257 +		windowTreeObserver->NodeActivated(*this);
   1.258 +		}
   1.259 +	}
   1.260 +
   1.261 +void RWsTextCursor::ReleaseNode()
   1.262 +	{
   1.263 +	if (iInternalFlags&EActiveNode)
   1.264 +		{
   1.265 +		WS_ASSERT_DEBUG(iGroupWin->Screen(),EWsPanicNoScreen);
   1.266 +		MWsWindowTreeObserver* const windowTreeObserver = iGroupWin->Screen()->WindowTreeObserver();
   1.267 +		if (windowTreeObserver)
   1.268 +			{
   1.269 +			windowTreeObserver->NodeReleased(*this);
   1.270 +			iInternalFlags &= ~EActiveNode;
   1.271 +			}
   1.272 +		}
   1.273 +	}
   1.274 +
   1.275 +void RWsTextCursor::SendState(MWsWindowTreeObserver& aWindowTreeObserver) const
   1.276 +	{
   1.277 +	if (iInternalFlags & EActiveNode)
   1.278 +		{
   1.279 +		aWindowTreeObserver.NodeCreated(*this, iWin);
   1.280 +		aWindowTreeObserver.NodeExtentChanged(*this, RectRelativeToScreen());
   1.281 +		if (iFlags&ETextCursorFlagClipped)
   1.282 +			aWindowTreeObserver.FlagChanged(*this, MWsWindowTreeObserver::ECursorClipRectSet, ETrue);
   1.283 +		aWindowTreeObserver.NodeActivated(*this);
   1.284 +		}
   1.285 +	}
   1.286 +
   1.287 +void RWsTextCursor::Cancel()
   1.288 +	{
   1.289 +	if (iType!=TTextCursor::ETypeNone)
   1.290 +		{
   1.291 +		if (iInternalFlags&EHasFocus)
   1.292 +			TCursorSprite::SetFocus(NULL);
   1.293 +		iType=TTextCursor::ETypeNone;
   1.294 +		iWin=NULL;
   1.295 +		}
   1.296 +	}
   1.297 +
   1.298 +void RWsTextCursor::Disable()
   1.299 +	{
   1.300 +	if (iWin)
   1.301 +		{
   1.302 +		TCursorSprite::Hide();
   1.303 +		}
   1.304 +	}
   1.305 +
   1.306 +void RWsTextCursor::Enable()
   1.307 +	{
   1.308 +	if (iWin)
   1.309 +		{
   1.310 +		TCursorSprite::Reveal();
   1.311 +		}
   1.312 +	}
   1.313 +
   1.314 +void RWsTextCursor::LostFocus()
   1.315 +	{
   1.316 +	TCursorSprite::SetFocus(NULL);
   1.317 +	iInternalFlags &= ~EHasFocus;
   1.318 +	}
   1.319 +
   1.320 +void RWsTextCursor::ReceivedFocus()
   1.321 +	{
   1.322 +	iInternalFlags |= EHasFocus;
   1.323 +	if (iType!=TTextCursor::ETypeNone && iWin)
   1.324 +		{
   1.325 +		TCursorSprite::SetFocus(this,iWin);
   1.326 +		if (iCustomTextCursor)
   1.327 +			{
   1.328 +			iCustomTextCursor->SetPositionNoRedraw(iPos);
   1.329 +			}
   1.330 +		}
   1.331 +	}
   1.332 +
   1.333 +TRect RWsTextCursor::RectRelativeToScreen() const
   1.334 +	{
   1.335 +	TRect rect;
   1.336 +	rect.iTl=iPos+iWin->Origin();
   1.337 +	rect.iBr=rect.iTl+iSize;
   1.338 +	return(rect);
   1.339 +	}
   1.340 +
   1.341 +TRect RWsTextCursor::RectRelativeToWindow() const
   1.342 +	{
   1.343 +	TRect rect;
   1.344 +	rect.iTl=iPos;
   1.345 +	rect.iBr=rect.iTl+iSize;
   1.346 +	return rect;
   1.347 +	}
   1.348 +
   1.349 +void RWsTextCursor::doDraw(const TRegion& aRegion)
   1.350 +	{
   1.351 +	TRegionFix<1> fallbackClipRegion;
   1.352 +	const TRegion *clipRegion= &aRegion;
   1.353 +	if (aRegion.CheckError())
   1.354 +		{
   1.355 +		fallbackClipRegion.AddRect(iWin->AbsRect());
   1.356 +		clipRegion= &fallbackClipRegion;
   1.357 +		}
   1.358 +
   1.359 +	if(!clipRegion->IsEmpty())
   1.360 +		{
   1.361 +		MWsTextCursor::TTextCursorInfo renderStageCursorInfo(
   1.362 +			RectRelativeToWindow(),
   1.363 +			*clipRegion,
   1.364 +			iType, static_cast<MWsWindow *>(Win()), iColor
   1.365 +			);
   1.366 +		
   1.367 +		MWsTextCursor* textCursor = iWin->Screen()->RenderStageTextCursor();
   1.368 +
   1.369 +		textCursor->DrawTextCursor(renderStageCursorInfo);
   1.370 +
   1.371 +		TWindowServerEvent::NotifyScreenDrawingEvent(clipRegion);
   1.372 +		}
   1.373 +	}
   1.374 +
   1.375 +void RWsTextCursor::Draw(const TRegion& aRegion)
   1.376 +	{
   1.377 +	iDrawRegion.Copy(iWin->VisibleRegion());
   1.378 +	if (iFlags&ETextCursorFlagClipped)
   1.379 +		{
   1.380 +		TRect rect(iClipRect);
   1.381 +		rect.Move(iWin->Origin());
   1.382 +		iDrawRegion.ClipRect(rect);
   1.383 +		}
   1.384 +
   1.385 +	// Need to clip against a possible recent screen size change.
   1.386 +	iDrawRegion.ClipRect(iWin->Screen()->SizeInPixels());
   1.387 +
   1.388 +	RWsRegion tmpRegion;
   1.389 +	tmpRegion.Intersection(iDrawRegion, aRegion);
   1.390 +	if (tmpRegion.CheckError())
   1.391 +		doDraw(iDrawRegion);
   1.392 +	else
   1.393 +		{
   1.394 +		if (!tmpRegion.IsEmpty())
   1.395 +			{
   1.396 +			doDraw(tmpRegion);
   1.397 +			}
   1.398 +		}
   1.399 +	tmpRegion.Close();
   1.400 +	}
   1.401 +
   1.402 +void RWsTextCursor::WindowDisconnected(CWsWindow *aWindow)
   1.403 +	{
   1.404 +	if (iWin==aWindow)
   1.405 +		Cancel();
   1.406 +	}
   1.407 +
   1.408 +TBool RWsTextCursor::IsStandardCursorActive()
   1.409 +	{
   1.410 +	return TCursorSprite::IsStandardCursorActive();
   1.411 +	}
   1.412 +
   1.413 +TBool RWsTextCursor::IsFlashing() const
   1.414 +	{
   1.415 +	return !(iFlags&TTextCursor::EFlagNoFlash);
   1.416 +	}
   1.417 +
   1.418 +void RWsTextCursor::ScheduleReDrawNow()
   1.419 +	{
   1.420 +	if (!iGroupWin->Screen()->ChangeTracking())
   1.421 +		iGroupWin->Screen()->ScheduleAnimation(ETextCursor, RectRelativeToScreen(), 0, 0, 0, iWin);
   1.422 +	}
   1.423 +
   1.424 +/** @see MWsWindowTreeNode */
   1.425 +MWsWindowTreeNode::TType RWsTextCursor::NodeType() const
   1.426 +	{
   1.427 +	return MWsWindowTreeNode::EWinTreeNodeStandardTextCursor; 
   1.428 +	}
   1.429 +
   1.430 +/** @see MWsWindowTreeNode */
   1.431 +const MWsWindow* RWsTextCursor::Window() const
   1.432 +	{
   1.433 +	return NULL;
   1.434 +	}
   1.435 +
   1.436 +/** @see MWsWindowTreeNode */
   1.437 +const MWsSprite* RWsTextCursor::Sprite() const
   1.438 +	{
   1.439 +	return NULL;
   1.440 +	}
   1.441 +
   1.442 +/** @see MWsWindowTreeNode */
   1.443 +const MWsStandardTextCursor* RWsTextCursor::StandardTextCursor() const
   1.444 +	{
   1.445 +	return this;
   1.446 +	}
   1.447 +
   1.448 +/** @see MWsWindowTreeNode */
   1.449 +const MWsWindowGroup* RWsTextCursor::WindowGroup() const
   1.450 +	{
   1.451 +	return static_cast<MWsWindowGroup*>(iGroupWin);
   1.452 +	}
   1.453 +
   1.454 +/** @see MWsWindowTreeNode */
   1.455 +const MWsWindowTreeNode* RWsTextCursor::ParentNode() const
   1.456 +	{
   1.457 +	return iWin;
   1.458 +	}
   1.459 +
   1.460 +/** @see MWsStandardTextCursor */
   1.461 +TInt RWsTextCursor::Type() const
   1.462 +	{
   1.463 +	return iType;
   1.464 +	}
   1.465 +
   1.466 +/** @see MWsStandardTextCursor */
   1.467 +TRect RWsTextCursor::Rect() const
   1.468 +	{
   1.469 +	return RectRelativeToScreen();
   1.470 +	}
   1.471 +
   1.472 +/** @see MWsStandardTextCursor */
   1.473 +TRect RWsTextCursor::ClipRect() const
   1.474 +	{
   1.475 +	if (iFlags&ETextCursorFlagClipped)
   1.476 +		{
   1.477 +		TRect clipRectRelativeToScreen(iClipRect);
   1.478 +		clipRectRelativeToScreen.Move(iWin->Origin());
   1.479 +		return clipRectRelativeToScreen;
   1.480 +		}
   1.481 +	else
   1.482 +		{
   1.483 +		return Rect();
   1.484 +		}
   1.485 +	}
   1.486 +
   1.487 +/** @see MWsStandardTextCursor */
   1.488 +TUint RWsTextCursor::Flags() const
   1.489 +	{
   1.490 +	return iFlags&ETextCursorUserFlags;
   1.491 +	}
   1.492 +
   1.493 +/** @see MWsStandardTextCursor */
   1.494 +TRgb RWsTextCursor::Color() const
   1.495 +	{
   1.496 +	return iColor;
   1.497 +	}
   1.498 +
   1.499 +/** @see MWsStandardTextCursor */
   1.500 +TTimeIntervalMicroSeconds32 RWsTextCursor::FlashInterval() const
   1.501 +	{
   1.502 +	return iFlags&TTextCursor::EFlagNoFlash ? 0 : KFlashRate;
   1.503 +	}
   1.504 +
   1.505 +TFlashState RWsTextCursor::CurrentCursorFlashState() const
   1.506 +	{
   1.507 +	if (IsFlashing())
   1.508 +		{
   1.509 +		return (CWsTop::CurrentFocusScreen()->Now().DateTime().MicroSecond()<KFlashRate)?EFlashOn:EFlashOff;
   1.510 +		}
   1.511 +	else
   1.512 +		{
   1.513 +		return EFlashOn;
   1.514 +		}
   1.515 +	}
   1.516 +
   1.517 +
   1.518 +// Cursor sprite handling
   1.519 +
   1.520 +TBool TCursorSprite::iHidden=ETrue;
   1.521 +RWsTextCursor *TCursorSprite::iCurrentCursor=NULL;
   1.522 +
   1.523 +//
   1.524 +
   1.525 +// Hide / Reveal text cursors.
   1.526 +void TCursorSprite::Hide()
   1.527 +	{
   1.528 +	if (!iHidden && iCurrentCursor)
   1.529 +		{
   1.530 +		iHidden=ETrue;
   1.531 +		if (iCurrentCursor->iCustomTextCursor)
   1.532 +			{
   1.533 +			iCurrentCursor->iCustomTextCursor->Deactivate();
   1.534 +			}
   1.535 +		else
   1.536 +			{
   1.537 +			iCurrentCursor->ScheduleReDrawNow();
   1.538 +			}
   1.539 +		}
   1.540 +	}
   1.541 +	
   1.542 +void TCursorSprite::Reveal()
   1.543 +	{
   1.544 +	if(iHidden && iCurrentCursor)
   1.545 +		{
   1.546 +		iHidden=EFalse;
   1.547 +		if (iCurrentCursor->iCustomTextCursor)
   1.548 +			{
   1.549 +			iCurrentCursor->iCustomTextCursor->Activate();
   1.550 +			}
   1.551 +		else
   1.552 +			{
   1.553 +			iCurrentCursor->ScheduleReDrawNow();
   1.554 +			}
   1.555 +		}
   1.556 +	}
   1.557 +
   1.558 +void TCursorSprite::SetFocus(RWsTextCursor* aFocus,CWsClientWindow* aWin/*=NULL*/)
   1.559 +	{
   1.560 +	if (iCurrentCursor!=aFocus)
   1.561 +		{
   1.562 +		if (iCurrentCursor)
   1.563 +			iCurrentCursor->ReleaseNode();
   1.564 +		Hide();
   1.565 +		SetCurrentCursor(aFocus, aWin);
   1.566 +		}
   1.567 +	}
   1.568 +
   1.569 +void TCursorSprite::SetCurrentCursor(RWsTextCursor* aFocus, CWsClientWindow* aWin)
   1.570 +	{
   1.571 +	if (aFocus && !aFocus->iCustomTextCursor)
   1.572 +		aFocus->CreateNode();
   1.573 +	iCurrentCursor = aFocus;
   1.574 +	if (aWin && iCurrentCursor && iCurrentCursor->iCustomTextCursor)
   1.575 +		{
   1.576 +		iCurrentCursor->iCustomTextCursor->SetWindow(aWin);
   1.577 +		}
   1.578 +	Reveal();
   1.579 +	}
   1.580 +
   1.581 +TBool TCursorSprite::IsStandardCursorActive()
   1.582 +	{
   1.583 +	return iCurrentCursor && !iCurrentCursor->iCustomTextCursor && !iHidden;
   1.584 +	}
   1.585 +