os/graphics/windowing/windowserver/nonnga/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/nonnga/SERVER/TCURSOR.CPP	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,381 @@
     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 "server.h"
    1.23 +#include "tcursor.h"
    1.24 +#include "windowgroup.h"
    1.25 +#include "wstop.h"
    1.26 +#include "panics.h"
    1.27 +#include "offscreenbitmap.h"
    1.28 +#include "EVENT.H"
    1.29 +#include "graphics/windowserverconstants.h"
    1.30 +
    1.31 +void RWsTextCursor::ConstructL(CWsWindowGroup *aGroupWin)
    1.32 +	{
    1.33 +	iInternalFlags = 0;
    1.34 +	iGroupWin=aGroupWin;
    1.35 +	iCustomTextCursor = NULL;
    1.36 +	}
    1.37 +
    1.38 +void RWsTextCursor::Close()
    1.39 +	{
    1.40 +	iDrawRegion.Close();
    1.41 +	Cancel();
    1.42 +	}
    1.43 +
    1.44 +void RWsTextCursor::SetL(const TWsWinCmdSetTextCursor &aSet, TBool aClipped)
    1.45 +	{
    1.46 +	if (aSet.cursor.iType < TTextCursor::ETypeFirst ||
    1.47 +        (aSet.cursor.iType > TTextCursor::ETypeLast &&        
    1.48 +         aSet.cursor.iType <= TTextCursor::ETypeLastBasic) ||
    1.49 +		(aSet.cursor.iFlags&static_cast<TUint>(ETextCursorPrivateFlags)))
    1.50 +		{
    1.51 +		Cancel();
    1.52 +		iGroupWin->OwnerPanic(EWservPanicInvalidTextCursor);
    1.53 +		}
    1.54 +	else
    1.55 +		{
    1.56 +		CWsClientWindow* win = NULL;
    1.57 +		iGroupWin->WsOwner()->HandleToClientWindow(aSet.window, &win);
    1.58 +
    1.59 +		// Check window is a child of the group window
    1.60 +		CWsWindowBase* searchWin = NULL;
    1.61 +		for(searchWin=win; searchWin->WinType()!=EWinTypeGroup; searchWin=searchWin->BaseParent())
    1.62 +			{}
    1.63 +		if (iGroupWin != searchWin)
    1.64 +			{
    1.65 +			Cancel();
    1.66 +			iGroupWin->OwnerPanic(EWservPanicWindow);
    1.67 +			}
    1.68 +
    1.69 +		TPoint pos(aSet.pos.iX, aSet.pos.iY-aSet.cursor.iAscent);
    1.70 +		TSize size(aSet.cursor.iWidth, aSet.cursor.iHeight);
    1.71 +		TUint flags = aSet.cursor.iFlags;
    1.72 +		TInt type = aSet.cursor.iType;
    1.73 +		TRect clipRect = iClipRect;
    1.74 +		TRgb color = aSet.cursor.iColor;
    1.75 +		CWsCustomTextCursor* customTextCursor = iCustomTextCursor;
    1.76 +		TBool changed = EFalse;
    1.77 +
    1.78 +		TPoint clipOrigo;
    1.79 +		TSize clipSize;
    1.80 +
    1.81 +		if (type > TTextCursor::ETypeLastBasic)
    1.82 +			{
    1.83 +			changed = ETrue;
    1.84 +
    1.85 +			customTextCursor = CWsClient::FindCustomTextCursor(type);
    1.86 +			if (!customTextCursor)
    1.87 +				{
    1.88 +				Cancel();
    1.89 +				iGroupWin->OwnerPanic(EWservPanicNoCustomTextCursor);
    1.90 +				return;
    1.91 +				}
    1.92 +			
    1.93 +			if( !customTextCursor->HasSpriteMember() )
    1.94 +				{
    1.95 +				iGroupWin->OwnerPanic(EWservPanicNoSpriteMember);
    1.96 +				return;
    1.97 +				}
    1.98 +			
    1.99 +			TInt yAdjust=0;
   1.100 +			switch (customTextCursor->Alignment())
   1.101 +				{
   1.102 +				case RWsSession::ECustomTextCursorAlignTop:
   1.103 +					break;
   1.104 +				case RWsSession::ECustomTextCursorAlignBaseline:
   1.105 +					yAdjust = aSet.cursor.iAscent-1;
   1.106 +					break;
   1.107 +				case RWsSession::ECustomTextCursorAlignBottom:
   1.108 +					yAdjust = aSet.cursor.iHeight-1;
   1.109 +					break;
   1.110 +				default:
   1.111 +					Cancel();
   1.112 +					iGroupWin->OwnerPanic(EWservPanicCustomTextCursorAlign);
   1.113 +					return;
   1.114 +				}
   1.115 +			pos.iY += yAdjust;
   1.116 +			// Start with a clipping rect to be the whole window
   1.117 +			// relative cursor pos and shrink down to what we want
   1.118 +			clipOrigo = -pos;
   1.119 +			clipSize = win->Size();
   1.120 +			if (flags & TTextCursor::EFlagClipHorizontal)
   1.121 +				{
   1.122 +				clipOrigo.iX = 0;
   1.123 +				clipSize.iWidth = size.iWidth;
   1.124 +				}
   1.125 +			if (flags & TTextCursor::EFlagClipVertical)
   1.126 +				{
   1.127 +				clipOrigo.iY = -yAdjust;
   1.128 +				clipSize.iHeight = aSet.cursor.iHeight;
   1.129 +				}
   1.130 +			}
   1.131 +		else
   1.132 +			{
   1.133 +			customTextCursor = NULL;
   1.134 +			}
   1.135 +
   1.136 +		if (aClipped)
   1.137 +			{
   1.138 +			flags|=ETextCursorFlagClipped;
   1.139 +			clipRect=aSet.rect;
   1.140 +			}
   1.141 +
   1.142 +		if (pos != iPos || size != iSize || iType != type ||
   1.143 +			flags != iFlags || clipRect != iClipRect || color != iColor ||
   1.144 +			customTextCursor != iCustomTextCursor || win != iWin)
   1.145 +			{
   1.146 +			// There is a change in the cursor.
   1.147 +			changed = ETrue;
   1.148 +			}
   1.149 +
   1.150 +		if (iInternalFlags&EHasFocus && changed)
   1.151 +			{
   1.152 +			TCursorSprite::Hide();
   1.153 +			}
   1.154 +
   1.155 +		iPos = pos;
   1.156 +		iSize = size;
   1.157 +		iType = type;
   1.158 +		iFlags= flags;
   1.159 +		iClipRect = clipRect;
   1.160 +		iColor = color;
   1.161 +		iCustomTextCursor = customTextCursor;
   1.162 +		iWin = win;
   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 +
   1.176 +void RWsTextCursor::Cancel()
   1.177 +	{
   1.178 +	if (iType!=TTextCursor::ETypeNone)
   1.179 +		{
   1.180 +		if (iInternalFlags&EHasFocus)
   1.181 +			TCursorSprite::SetFocus(NULL);
   1.182 +		iType=TTextCursor::ETypeNone;
   1.183 +		iWin=NULL;
   1.184 +		}
   1.185 +	}
   1.186 +
   1.187 +void RWsTextCursor::Disable()
   1.188 +	{
   1.189 +	if (iWin)
   1.190 +		{
   1.191 +		TCursorSprite::Hide();
   1.192 +		}
   1.193 +	}
   1.194 +
   1.195 +void RWsTextCursor::Enable()
   1.196 +	{
   1.197 +	if (iWin)
   1.198 +		{
   1.199 +		TCursorSprite::Reveal();
   1.200 +		}
   1.201 +	}
   1.202 +
   1.203 +void RWsTextCursor::LostFocus()
   1.204 +	{
   1.205 +	TCursorSprite::SetFocus(NULL);
   1.206 +	iInternalFlags &= ~EHasFocus;
   1.207 +	}
   1.208 +
   1.209 +void RWsTextCursor::ReceivedFocus()
   1.210 +	{
   1.211 +	iInternalFlags |= EHasFocus;
   1.212 +	if (iType!=TTextCursor::ETypeNone && iWin)
   1.213 +		{
   1.214 +		TCursorSprite::SetFocus(this,iWin);
   1.215 +		if (iCustomTextCursor)
   1.216 +			{
   1.217 +			iCustomTextCursor->SetPositionNoRedraw(iPos);
   1.218 +			}
   1.219 +		}
   1.220 +	}
   1.221 +
   1.222 +TRect RWsTextCursor::RectRelativeToScreen() const
   1.223 +	{
   1.224 +	TRect rect;
   1.225 +	rect.iTl=iPos+iWin->Origin();
   1.226 +	rect.iBr=rect.iTl+iSize;
   1.227 +	return(rect);
   1.228 +	}
   1.229 +
   1.230 +void RWsTextCursor::doDraw(CFbsBitGc* aGc, const TRegion& aRegion)
   1.231 +	{
   1.232 +	TRegionFix<1> justInCase;
   1.233 +	const TRegion *pr= &aRegion;
   1.234 +	if (aRegion.CheckError())
   1.235 +		{
   1.236 +		justInCase.AddRect(iWin->AbsRect());
   1.237 +		pr= &justInCase;
   1.238 +		}
   1.239 +	if (!pr->IsEmpty())
   1.240 +		{
   1.241 +		aGc->SetUserDisplayMode(iWin->DisplayMode());
   1.242 +		aGc->SetDitherOrigin(iWin->Origin());
   1.243 +		aGc->SetDrawMode(CGraphicsContext::EDrawModeXOR);
   1.244 +		switch (iType)
   1.245 +			{
   1.246 +			case TTextCursor::ETypeRectangle:
   1.247 +				{
   1.248 +				aGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
   1.249 +				aGc->SetPenStyle(CGraphicsContext::ENullPen);
   1.250 +				aGc->SetBrushColor(iColor);
   1.251 +				}
   1.252 +				break;
   1.253 +			case TTextCursor::ETypeHollowRectangle:
   1.254 +				{
   1.255 +				aGc->SetBrushStyle(CGraphicsContext::ENullBrush);
   1.256 +				aGc->SetPenStyle(CGraphicsContext::ESolidPen);
   1.257 +				aGc->SetPenColor(iColor);
   1.258 +				}
   1.259 +				break;
   1.260 +			default:
   1.261 +				WS_PANIC_ALWAYS(EWsPanicInvalidCursorType);
   1.262 +			}
   1.263 +		aGc->SetClippingRegion(pr);
   1.264 +		aGc->DrawRect(RectRelativeToScreen());
   1.265 +		aGc->SetUserDisplayMode(ENone);
   1.266 +
   1.267 +		TWindowServerEvent::NotifyScreenDrawingEvent(pr);
   1.268 +		}
   1.269 +	}
   1.270 +
   1.271 +void RWsTextCursor::Draw(CFbsBitGc* aGc, const TRegion& aRegion)
   1.272 +	{
   1.273 +	iDrawRegion.Copy(iWin->VisibleRegion());
   1.274 +	if (iFlags&ETextCursorFlagClipped)
   1.275 +		{
   1.276 +		TRect rect(iClipRect);
   1.277 +		rect.Move(iWin->Origin());
   1.278 +		iDrawRegion.ClipRect(rect);
   1.279 +		}
   1.280 +
   1.281 +	// Need to clip against a possible recent screen size change.
   1.282 +	iDrawRegion.ClipRect(iWin->Screen()->DrawDevice()->SizeInPixels());
   1.283 +
   1.284 +
   1.285 +	RWsRegion tmpRegion;
   1.286 +	tmpRegion.Intersection(iDrawRegion, aRegion);
   1.287 +	if (tmpRegion.CheckError())
   1.288 +		doDraw(aGc, iDrawRegion);
   1.289 +	else
   1.290 +		{
   1.291 +		if (!tmpRegion.IsEmpty())
   1.292 +			{
   1.293 +			doDraw(aGc, tmpRegion);
   1.294 +			}
   1.295 +		}
   1.296 +	tmpRegion.Close();
   1.297 +	}
   1.298 +
   1.299 +void RWsTextCursor::WindowDisconnected(CWsWindow *aWindow)
   1.300 +	{
   1.301 +	if (iWin==aWindow)
   1.302 +		Cancel();
   1.303 +	}
   1.304 +
   1.305 +TBool RWsTextCursor::IsStandardCursorActive()
   1.306 +	{
   1.307 +	return TCursorSprite::IsStandardCursorActive();
   1.308 +	}
   1.309 +
   1.310 +TBool RWsTextCursor::IsFlashing() const
   1.311 +	{
   1.312 +	return !(iFlags&TTextCursor::EFlagNoFlash);
   1.313 +	}
   1.314 +
   1.315 +void RWsTextCursor::ScheduleReDrawNow()
   1.316 +	{
   1.317 +	iGroupWin->Screen()->ScheduleAnimation(RectRelativeToScreen(), 0, 0, 0);
   1.318 +	}
   1.319 +
   1.320 +
   1.321 +// Cursor sprite handling
   1.322 +
   1.323 +TBool TCursorSprite::iHidden=ETrue;
   1.324 +RWsTextCursor *TCursorSprite::iCurrentCursor=NULL;
   1.325 +
   1.326 +//
   1.327 +
   1.328 +// Hide / Reveal text cursors.
   1.329 +void TCursorSprite::Hide()
   1.330 +	{
   1.331 +	if (!iHidden && iCurrentCursor)
   1.332 +		{
   1.333 +		iHidden=ETrue;
   1.334 +		if (iCurrentCursor->iCustomTextCursor)
   1.335 +			{
   1.336 +			iCurrentCursor->iCustomTextCursor->Deactivate();
   1.337 +			}
   1.338 +		else
   1.339 +			{
   1.340 +			iCurrentCursor->ScheduleReDrawNow();
   1.341 +			}
   1.342 +		}
   1.343 +	}
   1.344 +	
   1.345 +void TCursorSprite::Reveal()
   1.346 +	{
   1.347 +	if(iHidden && iCurrentCursor)
   1.348 +		{
   1.349 +		iHidden=EFalse;
   1.350 +		if (iCurrentCursor->iCustomTextCursor)
   1.351 +			{
   1.352 +			iCurrentCursor->iCustomTextCursor->Activate();
   1.353 +			}
   1.354 +		else
   1.355 +			{
   1.356 +			iCurrentCursor->ScheduleReDrawNow();
   1.357 +			}
   1.358 +		}
   1.359 +	}
   1.360 +
   1.361 +void TCursorSprite::SetFocus(RWsTextCursor* aFocus,CWsClientWindow* aWin/*=NULL*/)
   1.362 +	{
   1.363 +	if (iCurrentCursor!=aFocus)
   1.364 +		{
   1.365 +		Hide();
   1.366 +		SetCurrentCursor(aFocus, aWin);
   1.367 +		}
   1.368 +	}
   1.369 +
   1.370 +void TCursorSprite::SetCurrentCursor(RWsTextCursor* aFocus, CWsClientWindow* aWin)
   1.371 +	{
   1.372 +	iCurrentCursor = aFocus;
   1.373 +	if (aWin && iCurrentCursor && iCurrentCursor->iCustomTextCursor)
   1.374 +		{
   1.375 +		iCurrentCursor->iCustomTextCursor->SetWindow(aWin);
   1.376 +		}
   1.377 +	Reveal();
   1.378 +	}
   1.379 +
   1.380 +TBool TCursorSprite::IsStandardCursorActive()
   1.381 +	{
   1.382 +	return iCurrentCursor && !iCurrentCursor->iCustomTextCursor && !iHidden;
   1.383 +	}
   1.384 +