os/graphics/windowing/windowserver/nonnga/SERVER/ROOTWIN.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// Root window sub-class of CWsWindow
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include <e32std.h>
sl@0
    19
#include "server.h"
sl@0
    20
#include "rootwin.h"
sl@0
    21
#include "windowgroup.h"
sl@0
    22
#include "walkwindowtree.h"
sl@0
    23
#include "wstop.h"
sl@0
    24
#include "ScrDev.H"
sl@0
    25
#include "panics.h"
sl@0
    26
#include "inifile.h"
sl@0
    27
#include "EVENT.H"
sl@0
    28
sl@0
    29
_LIT(KNoBlank,"NOBLANKSCREEN");
sl@0
    30
_LIT(KDefaultBackgroundColor,"BACKGROUNDCOLOR");
sl@0
    31
_LIT(KDefaultBackgroundAlpha,"BACKGROUNDALPHA");
sl@0
    32
_LIT(KRootWinDefaultBackgroundColor,"ROOTBACKGROUNDCOLOR");
sl@0
    33
_LIT(KRootWinDefaultBackgroundAlpha,"ROOTBACKGROUNDALPHA");
sl@0
    34
sl@0
    35
CWsRootWindow::CWsRootWindow(CWsClient* aOwner, CScreen* aScreen) : CWsWindow(aOwner,WS_HANDLE_ROOT_WINDOW,aScreen)
sl@0
    36
	{
sl@0
    37
	iWinType=EWinTypeRoot;
sl@0
    38
	}
sl@0
    39
sl@0
    40
CWsRootWindow::~CWsRootWindow()
sl@0
    41
	{
sl@0
    42
	Shutdown();
sl@0
    43
	}
sl@0
    44
sl@0
    45
void CWsRootWindow::ConstructL()
sl@0
    46
	{
sl@0
    47
	CWsWindow::Construct();
sl@0
    48
	iParent=NULL;
sl@0
    49
	iSibling=NULL;
sl@0
    50
	iChild=NULL;
sl@0
    51
	iClientHandle=NULL;
sl@0
    52
	iAbs.Resize(iScreen->ScreenDevice()->SizeInPixels());
sl@0
    53
	iRel=iAbs;
sl@0
    54
	iFlags=EFlagPointerCaptured;
sl@0
    55
	iPointerFilter=EPointerFilterEnterExit|EPointerFilterMove|EPointerFilterDrag;
sl@0
    56
	iArea.AddRect(iAbs);
sl@0
    57
	iRedraw=new(ELeave) CWsBlankWindow(this);
sl@0
    58
	iRedraw->ConstructL();
sl@0
    59
	TInt backgroundcolor;
sl@0
    60
	if(!WsIniFile->FindVar(KDefaultBackgroundColor,backgroundcolor))
sl@0
    61
		backgroundcolor = KRgbWhite.Value();
sl@0
    62
	TInt backgroundalpha;
sl@0
    63
	if(!WsIniFile->FindVar(KDefaultBackgroundAlpha,backgroundalpha))
sl@0
    64
		backgroundalpha = 0xFF;	
sl@0
    65
	iDefaultBackgroundColor = TRgb(backgroundcolor,backgroundalpha);
sl@0
    66
sl@0
    67
	if (WsIniFile->FindVar(KNoBlank))
sl@0
    68
		{
sl@0
    69
		BlankRedraw()->SetBackgroundClear();
sl@0
    70
		}
sl@0
    71
	else
sl@0
    72
		{
sl@0
    73
		TInt rootAlpha;
sl@0
    74
		TInt rootColor;
sl@0
    75
		if (!WsIniFile->FindVar(KRootWinDefaultBackgroundColor,rootColor))
sl@0
    76
			rootColor = backgroundcolor;
sl@0
    77
		if (!WsIniFile->FindVar(KRootWinDefaultBackgroundAlpha,rootAlpha))
sl@0
    78
			rootAlpha = backgroundalpha;
sl@0
    79
		SetColor(TRgb(rootColor,rootAlpha));
sl@0
    80
		}
sl@0
    81
	}
sl@0
    82
sl@0
    83
void CWsRootWindow::SetColor(TRgb aColor)
sl@0
    84
	{
sl@0
    85
	BlankRedraw()->SetColor(aColor);
sl@0
    86
	}
sl@0
    87
sl@0
    88
void CWsRootWindow::SetColorIfClear()
sl@0
    89
	{
sl@0
    90
	if (!BlankRedraw()->IsBackgroundColor())
sl@0
    91
		SetColor(iDefaultBackgroundColor);
sl@0
    92
	}
sl@0
    93
sl@0
    94
const CWsWindow *CWsRootWindow::PointerWindow(const TPoint &aInPos,TPoint *aOutPos, TPoint *aParentPos,
sl@0
    95
					const CWsWindow *aGrabWin, const CWsWindow *&aOriginalWinItIsIn, const CWsWindowGroup *aForceInGroup)
sl@0
    96
//
sl@0
    97
// For aInPos (a global point on screen) find which window it is in, starting the search from 'this'.
sl@0
    98
// aOutPos is set to be aInPos adjusted relative to the top left of the result window.
sl@0
    99
// If the pointer is not in any of the searched windows the result is returned as though it was in 'this'
sl@0
   100
// even though it may actually be oustside the bounds of this.
sl@0
   101
//
sl@0
   102
// If aForceInGroup==NULL search all groups otherwise only search it only
sl@0
   103
//
sl@0
   104
	{
sl@0
   105
	aOriginalWinItIsIn=this;
sl@0
   106
	const CWsWindowGroup *group;
sl@0
   107
	const CWsWindowGroup *winItIsInGroup=aForceInGroup;
sl@0
   108
//
sl@0
   109
// First determine owner of the window the event is in regardless of any capture
sl@0
   110
// This is so we can decide whether the capture affects this case or not
sl@0
   111
//
sl@0
   112
	for(group=(aForceInGroup ? aForceInGroup:Child());group!=NULL;group=group->NextSibling())
sl@0
   113
		{
sl@0
   114
		CWsClientWindow *win=group->Child();
sl@0
   115
		while(win!=NULL)
sl@0
   116
			{
sl@0
   117
			const TRegion *baseArea=win->BaseArea();
sl@0
   118
			if (win->IsVisible() && baseArea->Contains(aInPos))
sl@0
   119
				{
sl@0
   120
				aOriginalWinItIsIn=win;
sl@0
   121
				winItIsInGroup=group;
sl@0
   122
				win=win->Child();
sl@0
   123
				}
sl@0
   124
			else
sl@0
   125
				win=win->NextSibling();
sl@0
   126
			}
sl@0
   127
		if (aOriginalWinItIsIn!=this || aForceInGroup!=NULL)
sl@0
   128
			break;
sl@0
   129
		}
sl@0
   130
//
sl@0
   131
// Then try again taking note of any pointer capture or grab
sl@0
   132
//
sl@0
   133
	const CWsWindow *winItIsIn;
sl@0
   134
	if (aGrabWin!=NULL)
sl@0
   135
		winItIsIn=aGrabWin;
sl@0
   136
	else
sl@0
   137
		{
sl@0
   138
		winItIsIn=this;
sl@0
   139
		for(group=(aForceInGroup ? aForceInGroup:Child());group!=NULL;group=group->NextSibling())
sl@0
   140
			{
sl@0
   141
			CWsClientWindow *win=group->Child();
sl@0
   142
			while(win!=NULL)
sl@0
   143
				{
sl@0
   144
				const TRegion *baseArea=win->BaseArea();
sl@0
   145
				const TBool underTheSameGroup=winItIsInGroup==group;
sl@0
   146
				if (win->IsVisible() && 
sl@0
   147
					((win->iFlags&EFlagPointerCaptured && 
sl@0
   148
					 ((!underTheSameGroup && win->iFlags&EFlagPointerCaptureAllGroups) || 
sl@0
   149
					  (winItIsInGroup==NULL && group==CWsTop::FocusWindowGroup()) || 
sl@0
   150
					  (underTheSameGroup && win->iPointerCapturePriority>=aOriginalWinItIsIn->iPointerCapturePriority)))
sl@0
   151
					   || baseArea->Contains(aInPos)))
sl@0
   152
					{
sl@0
   153
				 	winItIsIn=win;
sl@0
   154
					win=win->Child();
sl@0
   155
					}
sl@0
   156
				else
sl@0
   157
					win=win->NextSibling();
sl@0
   158
				}
sl@0
   159
			if (winItIsIn!=this || aForceInGroup!=NULL)
sl@0
   160
				break;
sl@0
   161
			}
sl@0
   162
		}
sl@0
   163
	if (aOutPos!=NULL)
sl@0
   164
		{
sl@0
   165
		*aOutPos=aInPos-winItIsIn->iOrigin;
sl@0
   166
		}
sl@0
   167
	if (aParentPos!=NULL)
sl@0
   168
		{
sl@0
   169
		const CWsWindowBase *win=winItIsIn->BaseParent();
sl@0
   170
		if (win==NULL)
sl@0
   171
			win=winItIsIn;
sl@0
   172
		*aParentPos=aInPos-win->Origin();
sl@0
   173
		}
sl@0
   174
	return(winItIsIn);
sl@0
   175
	}
sl@0
   176
sl@0
   177
void CWsRootWindow::GenerateWindowRegion(RWsRegion &aRegion) const
sl@0
   178
	{
sl@0
   179
	aRegion.Clear();
sl@0
   180
	aRegion.AddRect(iAbs);
sl@0
   181
	if (iChild)
sl@0
   182
		{
sl@0
   183
		for(CWsClientWindow *win=FirstTopClientWindow();aRegion.Count()>0 && win!=NULL;win=win->NextSiblingMultiParent())
sl@0
   184
			{
sl@0
   185
			if (win->IsVisible())
sl@0
   186
				aRegion.SubRegion(*win->BaseArea());
sl@0
   187
			}
sl@0
   188
		}
sl@0
   189
	}
sl@0
   190
sl@0
   191
void CWsRootWindow::CommandL(TInt , const TAny *)
sl@0
   192
	{
sl@0
   193
	WS_PANIC_ALWAYS(EWsPanicRootCommand);
sl@0
   194
	}
sl@0
   195
sl@0
   196
void CWsRootWindow::InvalidateWholeScreen()
sl@0
   197
	{
sl@0
   198
	RWsRegion screen(iAbs);
sl@0
   199
	Invalidate(&screen);
sl@0
   200
	screen.Close();
sl@0
   201
	}
sl@0
   202
sl@0
   203
void CWsRootWindow::Invalidate(RWsRegion* aRegion)
sl@0
   204
	{
sl@0
   205
	iScreen->AddRedrawRegion(*aRegion);
sl@0
   206
	}
sl@0
   207
sl@0
   208
void CWsRootWindow::ScreenSizeChanged(const TBool aSwapWidthAndHeight)
sl@0
   209
	{
sl@0
   210
	// We have to disable the text cursor here while we are still in the
sl@0
   211
	// same orientation as we drew it.
sl@0
   212
	RWsTextCursor* cursor=CWsTop::CurrentTextCursor();
sl@0
   213
	if (cursor)
sl@0
   214
		{
sl@0
   215
		cursor->Disable();
sl@0
   216
		}
sl@0
   217
	iScreen->SetScalingFactor();
sl@0
   218
	iScreen->UpdateOrientation();
sl@0
   219
	iScreen->UpdateGcs();
sl@0
   220
	iScreen->UpdateOffScreenBitmapGc(aSwapWidthAndHeight);
sl@0
   221
	iArea.Clear();
sl@0
   222
	iAbs=iScreen->DrawableArea();
sl@0
   223
	iRel=iAbs;
sl@0
   224
	iArea.AddRect(iAbs);
sl@0
   225
	iOrigin=iAbs.iTl;
sl@0
   226
	for(CWsClientWindow *win=FirstTopClientWindow();win!=NULL;win=win->NextSiblingMultiParent())
sl@0
   227
		{
sl@0
   228
		win->RecalcChildAbs(NULL);
sl@0
   229
		}
sl@0
   230
	if (iScreen->BlankScreenOnRotation())
sl@0
   231
		{
sl@0
   232
		ClearDisplay();
sl@0
   233
		}
sl@0
   234
	iScreen->DiscardAllSchedules();
sl@0
   235
	CWsTop::ClearAllRedrawStores();
sl@0
   236
	OrientationChanged();
sl@0
   237
	iScreen->AbortAllDirectDrawing(RDirectScreenAccess::ETerminateRotation);
sl@0
   238
	iScreen->ScheduleRegionUpdate(&iArea);
sl@0
   239
	}
sl@0
   240
sl@0
   241
void CWsRootWindow::OrientationChanged()
sl@0
   242
	{
sl@0
   243
	InvalidateWholeScreen();
sl@0
   244
	}
sl@0
   245
sl@0
   246
void CWsRootWindow::ClearDisplay()
sl@0
   247
	{
sl@0
   248
	CFbsBitGc *gdi=iScreen->ScreenGdi();
sl@0
   249
	gdi->SetBrushStyle(CGraphicsContext::ESolidBrush);
sl@0
   250
	gdi->SetPenStyle(CGraphicsContext::ENullPen);
sl@0
   251
	gdi->SetOrientation(iScreen->Orientation());
sl@0
   252
	gdi->SetBrushColor(BackColor());
sl@0
   253
	gdi->SetDrawMode(CGraphicsContext::EDrawModeWriteAlpha);
sl@0
   254
	TRect absRect(AbsRect());
sl@0
   255
	gdi->DrawRect(absRect);
sl@0
   256
	gdi->SetDrawMode(CGraphicsContext::EDrawModePEN);
sl@0
   257
sl@0
   258
	TWindowServerEvent::NotifyScreenDrawingEvent(absRect);
sl@0
   259
	}
sl@0
   260
sl@0
   261
void CWsRootWindow::SetSystemFaded(TBool aFaded, TUint8 aBlackMap, TUint8 aWhiteMap)
sl@0
   262
	{
sl@0
   263
	for(CWsWindowGroup* win=Child();win!=NULL;win=win->NextSibling())
sl@0
   264
		{
sl@0
   265
		TWalkWindowTreeSetFaded wwt(aFaded,win,aBlackMap,aWhiteMap);
sl@0
   266
		win->WalkWindowTree(wwt,EWalkChildren);
sl@0
   267
		}
sl@0
   268
	WS_ASSERT_DEBUG(Screen(),EWsPanicNoScreen);
sl@0
   269
	}
sl@0
   270
sl@0
   271
CWsWindowGroup* CWsRootWindow::WindowGroup(TInt aWindowGroup)
sl@0
   272
	{
sl@0
   273
	CWsWindowBase* group=iChild;
sl@0
   274
	while (aWindowGroup-->0 && group)
sl@0
   275
		group=group->NextSibling();
sl@0
   276
	return static_cast<CWsWindowGroup*>(group);
sl@0
   277
	}
sl@0
   278
sl@0
   279
CWsClientWindow *CWsRootWindow::FirstTopClientWindow() const
sl@0
   280
	{
sl@0
   281
	CWsWindowGroup* group;
sl@0
   282
	for(group=Child();group && group->Child()==NULL;group=group->NextSibling())
sl@0
   283
		{}
sl@0
   284
	return(group?group->Child():NULL);
sl@0
   285
	}
sl@0
   286
sl@0
   287
const TRegion& CWsRootWindow::WindowArea() const
sl@0
   288
	{
sl@0
   289
	return iArea;
sl@0
   290
	}