os/graphics/windowing/windowserver/nga/SERVER/openwfc/backedupwindow.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
// Window redraw code, three sorts of redrawing are supported
sl@0
    15
// This class deals with drawing from backup bitmap
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
#include "backedupwindow.h"
sl@0
    20
#include "server.h"
sl@0
    21
#include "gc.h"
sl@0
    22
#include "wstop.h"
sl@0
    23
#include "ANIM.H"
sl@0
    24
#include "EVQUEUE.H"
sl@0
    25
#include <s32mem.h>
sl@0
    26
#include <gdi.h>
sl@0
    27
#include "panics.h"
sl@0
    28
#include "inifile.h"
sl@0
    29
#include "rootwin.h"
sl@0
    30
#include "EVENT.H"
sl@0
    31
#include "playbackgc.h"
sl@0
    32
#include "devicemap.h"
sl@0
    33
sl@0
    34
CFbsBitGc *CWsBackedUpWindow::iBitGc=NULL;
sl@0
    35
sl@0
    36
CWsBackedUpWindow::CWsBackedUpWindow(CWsWindow *aWin, TDisplayMode aDisplayMode) 
sl@0
    37
	: CWsWindowRedraw(aWin), iDisplayMode(aDisplayMode)
sl@0
    38
	{}
sl@0
    39
sl@0
    40
void CWsBackedUpWindow::StaticInitL()
sl@0
    41
	{
sl@0
    42
	iBitGc=CFbsBitGc::NewL();
sl@0
    43
	}
sl@0
    44
sl@0
    45
void CWsBackedUpWindow::StaticDestroy()
sl@0
    46
	{
sl@0
    47
	delete iBitGc;
sl@0
    48
	iBitGc = 0;
sl@0
    49
	}
sl@0
    50
sl@0
    51
void CWsBackedUpWindow::ActivateGc()
sl@0
    52
	{
sl@0
    53
	iBitGc->Activate(iBitmapDevice);
sl@0
    54
	iBitGc->Reset();
sl@0
    55
	iBitGc->SetBrushColor(BackColor());
sl@0
    56
	}
sl@0
    57
sl@0
    58
TBool CWsBackedUpWindow::DrawCommand(CWsGc*,const TAny*)
sl@0
    59
	{
sl@0
    60
	if (Screen()->ChangeTracking())
sl@0
    61
		MarkDirtyAndSchedule(iCurrentRegion);
sl@0
    62
	else
sl@0
    63
		Screen()->AddRedrawRegion(iWsWin->VisibleRegion());
sl@0
    64
	
sl@0
    65
	return ETrue;
sl@0
    66
	}
sl@0
    67
sl@0
    68
void CWsBackedUpWindow::ConstructL()
sl@0
    69
	{
sl@0
    70
	iDisplayMode=iWsWin->SetRequiredDisplayModeL(iDisplayMode);
sl@0
    71
	TSize size=iWsWin->Size();
sl@0
    72
	iBitmap=new(ELeave) CFbsBitmap();
sl@0
    73
	User::LeaveIfError(iBitmap->Create(size, iDisplayMode));
sl@0
    74
	iBitmapDevice=CFbsBitmapDevice::NewL(iBitmap);
sl@0
    75
	SetSizeInTwips();
sl@0
    76
//
sl@0
    77
	ActivateGc();
sl@0
    78
	iBitGc->SetDrawMode(CGraphicsContext::EDrawModeWriteAlpha);
sl@0
    79
	iBitGc->Clear(TRect(size));
sl@0
    80
	iBitGc->SetDrawMode(CGraphicsContext::EDrawModePEN);
sl@0
    81
	WS_ASSERT_DEBUG(iWsWin->WinType()==EWinTypeClient,EWsPanicWindowType);
sl@0
    82
	}
sl@0
    83
sl@0
    84
void CWsBackedUpWindow::PrepareForResizeL(const TSize &aSize, TSize &aOldSize)
sl@0
    85
	{
sl@0
    86
	aOldSize=iBitmapDevice->SizeInPixels();
sl@0
    87
	if (aOldSize!=aSize)
sl@0
    88
		{
sl@0
    89
		User::LeaveIfError(iBitmapDevice->Resize(aSize));
sl@0
    90
		SetSizeInTwips();
sl@0
    91
		}
sl@0
    92
	}
sl@0
    93
sl@0
    94
void CWsBackedUpWindow::Resize(const TSize &aSize, const TSize &aOldSize)
sl@0
    95
	{
sl@0
    96
	ActivateGc();
sl@0
    97
	iBitGc->SetClippingRegion(NULL);
sl@0
    98
	iBitGc->Clear(TRect(aOldSize.iWidth, 0, aSize.iWidth, aOldSize.iHeight));
sl@0
    99
	iBitGc->Clear(TRect(0, aOldSize.iHeight,aSize.iWidth, aSize.iHeight));
sl@0
   100
	
sl@0
   101
	static_cast<CWsClientWindow *>(iWsWin)->ReactivateGcs();
sl@0
   102
	
sl@0
   103
	if(Screen()->ChangeTracking())
sl@0
   104
		{
sl@0
   105
		//Keep track of the region we need to refresh when we recieve draw commands
sl@0
   106
		iCurrentRegion.Reset();
sl@0
   107
		iCurrentRegion.Copy(iWsWin->WindowArea());
sl@0
   108
		iCurrentRegion.Offset(-iWsWin->Origin());
sl@0
   109
		iCurrentRegion.Tidy();
sl@0
   110
		if(iCurrentRegion.CheckError())
sl@0
   111
			{
sl@0
   112
			iCurrentRegion.Reset();
sl@0
   113
			TRegionFix<1> fallback(iWsWin->AbsRect());
sl@0
   114
			iCurrentRegion.Copy(fallback); 
sl@0
   115
			iCurrentRegion.Offset(-iWsWin->Origin());
sl@0
   116
			}
sl@0
   117
		
sl@0
   118
		//If the window has nerver been drawn to screen, we now schedule the initial draw. This can't
sl@0
   119
		//be done in ConstructL because BackedUpWindows are created with size(0,0). And we can't check
sl@0
   120
		//iWsWin->IsActive() because the client might activate the window before giving it a size.
sl@0
   121
		if (!iHasBeenScheduled)
sl@0
   122
			{
sl@0
   123
			iHasBeenScheduled = ETrue;
sl@0
   124
			MarkDirtyAndSchedule(iCurrentRegion);
sl@0
   125
			}
sl@0
   126
		}
sl@0
   127
	}
sl@0
   128
sl@0
   129
CWsBackedUpWindow::~CWsBackedUpWindow()
sl@0
   130
	{
sl@0
   131
	iCurrentRegion.Reset();
sl@0
   132
	delete iBitmapDevice;
sl@0
   133
	delete iBitmap;
sl@0
   134
	}
sl@0
   135
sl@0
   136
TBool CWsBackedUpWindow::CommandL(TInt aOpcode, TWsWinCmdUnion &aCmd)
sl@0
   137
	{
sl@0
   138
	switch(aOpcode)
sl@0
   139
		{
sl@0
   140
		case EWsWinOpUpdateBackupBitmap:
sl@0
   141
			break;
sl@0
   142
		case EWsWinOpMaintainBackup:
sl@0
   143
			break;
sl@0
   144
		case EWsWinOpBitmapHandle:
sl@0
   145
			SetReply(iBitmap->Handle());
sl@0
   146
			break;
sl@0
   147
		case EWsWinOpUpdateScreen:
sl@0
   148
			{
sl@0
   149
			TRegionFix<1> fixRegion(iWsWin->AbsRect());
sl@0
   150
			UpdateScreen(fixRegion);
sl@0
   151
			}
sl@0
   152
			break;
sl@0
   153
		case EWsWinOpUpdateScreenRegion:
sl@0
   154
			{
sl@0
   155
			RWsRegion *clientRegion=NULL;
sl@0
   156
			TRAPD(err,clientRegion=GetRegionFromClientL(iWsWin->WsOwner(), *aCmd.Int));
sl@0
   157
			if (err==KErrNone && !clientRegion->CheckError())
sl@0
   158
				{
sl@0
   159
				clientRegion->Offset(iWsWin->Origin());
sl@0
   160
				clientRegion->ClipRect(iWsWin->AbsRect());
sl@0
   161
				UpdateScreen(*clientRegion);
sl@0
   162
				}
sl@0
   163
			else
sl@0
   164
				{
sl@0
   165
				TRegionFix<1> fixRegion(iWsWin->AbsRect());
sl@0
   166
				UpdateScreen(fixRegion);
sl@0
   167
				}
sl@0
   168
			clientRegion->Destroy();
sl@0
   169
			}
sl@0
   170
			break;
sl@0
   171
		case EWsWinOpSetBackgroundSurface:
sl@0
   172
		case EWsWinOpSetBackgroundSurfaceConfig:
sl@0
   173
		case EWsWinOpGetBackgroundSurfaceConfig:
sl@0
   174
			OwnerPanic(EWservPanicDrawable);	// Backed up windows don't support these
sl@0
   175
			break;
sl@0
   176
		default:
sl@0
   177
			return(EFalse);
sl@0
   178
		}
sl@0
   179
	return(ETrue);
sl@0
   180
	}
sl@0
   181
sl@0
   182
CWsBackedUpWindow *CWsBackedUpWindow::Backup() const
sl@0
   183
	{
sl@0
   184
	return((CWsBackedUpWindow *)this);
sl@0
   185
	}
sl@0
   186
sl@0
   187
CFbsDevice* CWsBackedUpWindow::OutputDevice() const
sl@0
   188
	{
sl@0
   189
	return iBitmapDevice;
sl@0
   190
	}
sl@0
   191
sl@0
   192
TRgb CWsBackedUpWindow::BackColor() const
sl@0
   193
	{
sl@0
   194
	return(iWsWin->RootWindow()->DefaultBackgroundColor());
sl@0
   195
	}
sl@0
   196
sl@0
   197
void CWsBackedUpWindow::Scroll(const TRect &aClipRect, const TPoint &aOffset,const TRect &aRect)
sl@0
   198
	{
sl@0
   199
	TRect winBorder=TRect(iWsWin->Size());
sl@0
   200
	TRect clipRect=aClipRect;
sl@0
   201
	TRect srcRect = aRect;		
sl@0
   202
	clipRect.Intersection(winBorder);	
sl@0
   203
	if (!clipRect.IsEmpty())
sl@0
   204
		{	// If we have to do something (a visible part will change)
sl@0
   205
		srcRect.Intersection(clipRect);
sl@0
   206
sl@0
   207
		STACK_REGION regionToClear;
sl@0
   208
		regionToClear.AddRect(aRect);
sl@0
   209
		regionToClear.SubRect(srcRect);
sl@0
   210
		regionToClear.Offset(aOffset);
sl@0
   211
		
sl@0
   212
		ActivateGc();
sl@0
   213
		iBitGc->SetClippingRect(clipRect);
sl@0
   214
		iBitGc->SetDrawMode(CGraphicsContext::EDrawModeWriteAlpha);
sl@0
   215
		iBitGc->CopyRect(aOffset,srcRect);				
sl@0
   216
		for (TInt k=0;k<regionToClear.Count();k++)
sl@0
   217
			{
sl@0
   218
			iBitGc->Clear(regionToClear[k]);
sl@0
   219
			}
sl@0
   220
		iBitGc->SetClippingRect(winBorder);
sl@0
   221
		iBitGc->SetDrawMode(CGraphicsContext::EDrawModePEN);
sl@0
   222
		TRegionFix<1> fixRegion(iWsWin->AbsRect());
sl@0
   223
		UpdateScreen(fixRegion);
sl@0
   224
		regionToClear.Close();
sl@0
   225
		}
sl@0
   226
	}
sl@0
   227
sl@0
   228
TBool CWsBackedUpWindow::NeedsRedraw() const
sl@0
   229
	{
sl@0
   230
	return(EFalse);
sl@0
   231
	}
sl@0
   232
sl@0
   233
TBool CWsBackedUpWindow::GetRedrawRect(TRect &) const
sl@0
   234
	{
sl@0
   235
	return(EFalse);
sl@0
   236
	}
sl@0
   237
sl@0
   238
void CWsBackedUpWindow::SetSizeInTwips()
sl@0
   239
	{
sl@0
   240
	TSize size=iBitmap->SizeInPixels();
sl@0
   241
	size.iWidth=Screen()->DeviceMap().HorizontalPixelsToTwips(size.iWidth);
sl@0
   242
	size.iHeight=Screen()->DeviceMap().VerticalPixelsToTwips(size.iHeight);
sl@0
   243
	iBitmap->SetSizeInTwips(size);
sl@0
   244
	}
sl@0
   245
sl@0
   246
void CWsBackedUpWindow::DrawWindow()
sl@0
   247
	{
sl@0
   248
	MWsGraphicsContext* gc = static_cast<MWsGraphicsContext*>(CPlaybackGc::Instance()->ResolveObjectInterface(KMWsGraphicsContext));
sl@0
   249
	
sl@0
   250
	gc->SetOrigin(iWsWin->Origin());
sl@0
   251
	gc->SetClippingRegion(*iRedrawRegion);
sl@0
   252
	gc->BitBlt(TPoint(0,0), *iBitmap);
sl@0
   253
	}
sl@0
   254
sl@0
   255
/** 
sl@0
   256
This function updates the window's dirty region and schedules a redraw if needed.
sl@0
   257
Only used when the screen is run in CHANGETRACKING mode. 
sl@0
   258
@param aRegion in window coordinates
sl@0
   259
*/
sl@0
   260
void CWsBackedUpWindow::MarkDirtyAndSchedule(const TRegion& aRegion)
sl@0
   261
	{
sl@0
   262
	WS_ASSERT_DEBUG(Screen()->ChangeTracking(),EWsPanicNoChangetracking);
sl@0
   263
	
sl@0
   264
	if(!aRegion.IsEmpty())
sl@0
   265
		{
sl@0
   266
		iWsWin->AddDirtyWindowRegion(aRegion);
sl@0
   267
		if (iWsWin->IsActive() && iWsWin->IsVisible())
sl@0
   268
			{
sl@0
   269
			Screen()->ScheduleWindow(iWsWin);
sl@0
   270
			}
sl@0
   271
		}
sl@0
   272
	}
sl@0
   273
sl@0
   274
/**
sl@0
   275
This function selects the desired behaviour depending on whether the screen is
sl@0
   276
run in CHANGETRACKING mode or not. 
sl@0
   277
@param aRegion in screen coordinates
sl@0
   278
*/
sl@0
   279
void CWsBackedUpWindow::UpdateScreen(const TRegion& aRegion)
sl@0
   280
	{
sl@0
   281
	if (Screen()->ChangeTracking())
sl@0
   282
		{
sl@0
   283
		STACK_REGION region;
sl@0
   284
		region.Copy(aRegion);
sl@0
   285
		region.Offset(-WsWin()->Origin()); //convert to window coordinates 
sl@0
   286
		MarkDirtyAndSchedule(region);
sl@0
   287
		region.Close();		
sl@0
   288
		}
sl@0
   289
	else
sl@0
   290
		{
sl@0
   291
		Screen()->AddRedrawRegion(aRegion);
sl@0
   292
		}
sl@0
   293
	}