os/graphics/windowing/windowserver/nonnga/SERVER/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
sl@0
    33
CFbsBitGc *CWsBackedUpWindow::iBitGc=NULL;
sl@0
    34
sl@0
    35
CWsBackedUpWindow::CWsBackedUpWindow(CWsWindow *aWin, TDisplayMode aDisplayMode) : CWsWindowRedraw(aWin), iDisplayMode(aDisplayMode)
sl@0
    36
	{}
sl@0
    37
sl@0
    38
void CWsBackedUpWindow::StaticInitL()
sl@0
    39
	{
sl@0
    40
	iBitGc=CFbsBitGc::NewL();
sl@0
    41
	}
sl@0
    42
sl@0
    43
void CWsBackedUpWindow::StaticDestroy()
sl@0
    44
	{
sl@0
    45
	delete iBitGc;
sl@0
    46
	iBitGc = 0;
sl@0
    47
	}
sl@0
    48
sl@0
    49
void CWsBackedUpWindow::ActivateGc()
sl@0
    50
	{
sl@0
    51
	iBitGc->Activate(iBitmapDevice);
sl@0
    52
	iBitGc->Reset();
sl@0
    53
	iBitGc->SetBrushColor(BackColor());
sl@0
    54
	}
sl@0
    55
sl@0
    56
TBool CWsBackedUpWindow::DrawCommand(CWsGc*,const TAny*)
sl@0
    57
	{
sl@0
    58
	Screen()->AddRedrawRegion(iWsWin->VisibleRegion());
sl@0
    59
	return ETrue;
sl@0
    60
	}
sl@0
    61
sl@0
    62
void CWsBackedUpWindow::ConstructL()
sl@0
    63
	{
sl@0
    64
	iDisplayMode=iWsWin->DisplayMode();
sl@0
    65
	TSize size=iWsWin->Size();
sl@0
    66
	iBitmap=new(ELeave) CFbsBitmap();
sl@0
    67
	User::LeaveIfError(iBitmap->Create(size, iDisplayMode));
sl@0
    68
	iBitmapDevice=CFbsBitmapDevice::NewL(iBitmap);
sl@0
    69
	SetSizeInTwips();
sl@0
    70
//
sl@0
    71
	ActivateGc();
sl@0
    72
	iBitGc->SetDrawMode(CGraphicsContext::EDrawModeWriteAlpha);
sl@0
    73
	iBitGc->Clear(TRect(size));
sl@0
    74
	iBitGc->SetDrawMode(CGraphicsContext::EDrawModePEN);
sl@0
    75
	WS_ASSERT_DEBUG(iWsWin->WinType()==EWinTypeClient,EWsPanicWindowType);
sl@0
    76
	}
sl@0
    77
sl@0
    78
void CWsBackedUpWindow::PrepareForResizeL(const TSize &aSize, TSize &aOldSize)
sl@0
    79
	{
sl@0
    80
	aOldSize=iBitmapDevice->SizeInPixels();
sl@0
    81
	if (aOldSize!=aSize)
sl@0
    82
		{
sl@0
    83
		User::LeaveIfError(iBitmapDevice->Resize(aSize));
sl@0
    84
		SetSizeInTwips();
sl@0
    85
		}
sl@0
    86
	}
sl@0
    87
sl@0
    88
void CWsBackedUpWindow::Resize(const TSize &aSize, const TSize &aOldSize)
sl@0
    89
	{
sl@0
    90
	ActivateGc();
sl@0
    91
	iBitGc->SetClippingRegion(NULL);
sl@0
    92
	iBitGc->Clear(TRect(aOldSize.iWidth, 0, aSize.iWidth, aOldSize.iHeight));
sl@0
    93
	iBitGc->Clear(TRect(0, aOldSize.iHeight,aSize.iWidth, aSize.iHeight));
sl@0
    94
	
sl@0
    95
	static_cast<CWsClientWindow *>(iWsWin)->ReactivateGcs();
sl@0
    96
	}
sl@0
    97
sl@0
    98
CWsBackedUpWindow::~CWsBackedUpWindow()
sl@0
    99
	{
sl@0
   100
	delete iBitmapDevice;
sl@0
   101
	delete iBitmap;
sl@0
   102
	}
sl@0
   103
sl@0
   104
TBool CWsBackedUpWindow::CommandL(TInt aOpcode, TWsWinCmdUnion &aCmd)
sl@0
   105
	{
sl@0
   106
	switch(aOpcode)
sl@0
   107
		{
sl@0
   108
		case EWsWinOpUpdateBackupBitmap:
sl@0
   109
			break;
sl@0
   110
		case EWsWinOpMaintainBackup:
sl@0
   111
			break;
sl@0
   112
		case EWsWinOpBitmapHandle:
sl@0
   113
			SetReply(iBitmap->Handle());
sl@0
   114
			break;
sl@0
   115
		case EWsWinOpUpdateScreen:
sl@0
   116
			{
sl@0
   117
			// Andy - shouldn't this use the base area?  Or don't we allow funny shaped
sl@0
   118
			// backup windows?
sl@0
   119
			TRegionFix<1> fixRegion(iWsWin->AbsRect());
sl@0
   120
			Screen()->AddRedrawRegion(fixRegion);
sl@0
   121
			}
sl@0
   122
			break;
sl@0
   123
		case EWsWinOpUpdateScreenRegion:
sl@0
   124
			{
sl@0
   125
			TRegionFix<1> fixRegion(iWsWin->AbsRect());
sl@0
   126
			RWsRegion *clientRegion=NULL;
sl@0
   127
			TRAPD(err,clientRegion=GetRegionFromClientL(iWsWin->WsOwner(), *aCmd.Int));
sl@0
   128
			if (err==KErrNone)
sl@0
   129
				{
sl@0
   130
				clientRegion->Offset(iWsWin->Origin());
sl@0
   131
				clientRegion->ClipRect(iWsWin->AbsRect());
sl@0
   132
				Screen()->AddRedrawRegion(*static_cast<TRegion*>(clientRegion));
sl@0
   133
				clientRegion->Destroy();
sl@0
   134
				}
sl@0
   135
			else
sl@0
   136
				{
sl@0
   137
				Screen()->AddRedrawRegion(fixRegion);
sl@0
   138
				}
sl@0
   139
			}
sl@0
   140
			break;
sl@0
   141
		default:
sl@0
   142
			return(EFalse);
sl@0
   143
		}
sl@0
   144
	return(ETrue);
sl@0
   145
	}
sl@0
   146
sl@0
   147
CWsBackedUpWindow *CWsBackedUpWindow::Backup() const
sl@0
   148
	{
sl@0
   149
	return((CWsBackedUpWindow *)this);
sl@0
   150
	}
sl@0
   151
sl@0
   152
CFbsDevice* CWsBackedUpWindow::OutputDevice() const
sl@0
   153
	{
sl@0
   154
	return iBitmapDevice;
sl@0
   155
	}
sl@0
   156
sl@0
   157
TRgb CWsBackedUpWindow::BackColor() const
sl@0
   158
	{
sl@0
   159
	return(iWsWin->RootWindow()->DefaultBackgroundColor());
sl@0
   160
	}
sl@0
   161
sl@0
   162
void CWsBackedUpWindow::Scroll(const TRect &aClipRect, const TPoint &aOffset,const TRect &aRect)
sl@0
   163
	{
sl@0
   164
	TRect winBorder=TRect(iWsWin->Size());
sl@0
   165
	TRect clipRect=aClipRect;
sl@0
   166
	TRect srcRect = aRect;		
sl@0
   167
	clipRect.Intersection(winBorder);	
sl@0
   168
	if (!clipRect.IsEmpty())
sl@0
   169
		{	// If we have to do something (a visible part will change)
sl@0
   170
		srcRect.Intersection(clipRect);
sl@0
   171
sl@0
   172
		STACK_REGION regionToClear;
sl@0
   173
		regionToClear.AddRect(aRect);
sl@0
   174
		regionToClear.SubRect(srcRect);
sl@0
   175
		regionToClear.Offset(aOffset);
sl@0
   176
		
sl@0
   177
		ActivateGc();
sl@0
   178
		iBitGc->SetClippingRect(clipRect);
sl@0
   179
		iBitGc->SetDrawMode(CGraphicsContext::EDrawModeWriteAlpha);
sl@0
   180
		iBitGc->CopyRect(aOffset,srcRect);				
sl@0
   181
		for (TInt k=0;k<regionToClear.Count();k++)
sl@0
   182
			{
sl@0
   183
			iBitGc->Clear(regionToClear[k]);
sl@0
   184
			}
sl@0
   185
		iBitGc->SetClippingRect(winBorder);
sl@0
   186
		iBitGc->SetDrawMode(CGraphicsContext::EDrawModePEN);
sl@0
   187
		TRegionFix<1> fixRegion(iWsWin->AbsRect());
sl@0
   188
		Screen()->AddRedrawRegion(fixRegion);		
sl@0
   189
		regionToClear.Close();
sl@0
   190
		}
sl@0
   191
	}
sl@0
   192
sl@0
   193
TBool CWsBackedUpWindow::NeedsRedraw() const
sl@0
   194
	{
sl@0
   195
	return(EFalse);
sl@0
   196
	}
sl@0
   197
sl@0
   198
TBool CWsBackedUpWindow::GetRedrawRect(TRect &) const
sl@0
   199
	{
sl@0
   200
	return(EFalse);
sl@0
   201
	}
sl@0
   202
sl@0
   203
void CWsBackedUpWindow::SetSizeInTwips()
sl@0
   204
	{
sl@0
   205
	TSize size=iBitmap->SizeInPixels();
sl@0
   206
	size.iWidth=Screen()->ScreenDevice()->HorizontalPixelsToTwips(size.iWidth);
sl@0
   207
	size.iHeight=Screen()->ScreenDevice()->VerticalPixelsToTwips(size.iHeight);
sl@0
   208
	iBitmap->SetSizeInTwips(size);
sl@0
   209
	}
sl@0
   210
sl@0
   211
void CWsBackedUpWindow::DrawWindow()
sl@0
   212
	{
sl@0
   213
	CFbsBitGc& gc = CPlaybackGc::Instance()->BitGc();
sl@0
   214
	gc.SetUserDisplayMode(iWsWin->DisplayMode());
sl@0
   215
	gc.SetOrigin(iWsWin->Origin());
sl@0
   216
	gc.SetClippingRegion(iGlobalRedrawRegion);
sl@0
   217
	gc.BitBlt(TPoint(0,0), iBitmap);
sl@0
   218
	}