os/graphics/windowing/windowserver/nonnga/SERVER/wnredraw.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
// Sending a redraw message to the client (see redrawmsgwindow.cpp)
sl@0
    16
// Drawing from backup bitmap
sl@0
    17
// Simply clearing the window
sl@0
    18
// 
sl@0
    19
//
sl@0
    20
sl@0
    21
#include "wnredraw.h"
sl@0
    22
#include "server.h"
sl@0
    23
#include "playbackgc.h"
sl@0
    24
#include "wstop.h"
sl@0
    25
#include "ANIM.H"
sl@0
    26
#include "EVQUEUE.H"
sl@0
    27
#include "offscreenbitmap.h"
sl@0
    28
#include <s32mem.h>
sl@0
    29
#include <gdi.h>
sl@0
    30
#include "panics.h"
sl@0
    31
#include "inifile.h"
sl@0
    32
#include "rootwin.h"
sl@0
    33
#include "EVENT.H"
sl@0
    34
#include "wstypes.h"
sl@0
    35
sl@0
    36
struct TFadingParams
sl@0
    37
	{
sl@0
    38
	TUint8 blackMap;
sl@0
    39
	TUint8 whiteMap;
sl@0
    40
	};
sl@0
    41
sl@0
    42
CWsWindowRedraw::CWsWindowRedraw(CWsWindow *aWin) : iWsWin(aWin)
sl@0
    43
	{
sl@0
    44
	}
sl@0
    45
sl@0
    46
CWsWindowRedraw::~CWsWindowRedraw()
sl@0
    47
	{
sl@0
    48
	if (iWsWin->WsOwner())
sl@0
    49
		{
sl@0
    50
		iWsWin->WsOwner()->RedrawQueue()->RemoveInvalid(this);
sl@0
    51
		}
sl@0
    52
	}
sl@0
    53
sl@0
    54
void CWsWindowRedraw::ConstructL()
sl@0
    55
	{
sl@0
    56
	}
sl@0
    57
sl@0
    58
void CWsWindowRedraw::ClipInvalidRegion(const TRect &)
sl@0
    59
	{
sl@0
    60
	}
sl@0
    61
sl@0
    62
void CWsWindowRedraw::Resize(const TSize &, const TSize &)
sl@0
    63
	{
sl@0
    64
	}
sl@0
    65
sl@0
    66
void CWsWindowRedraw::SetReply(TInt aReply)
sl@0
    67
	{
sl@0
    68
	iWsWin->WsOwner()->SetReply(aReply);
sl@0
    69
	}
sl@0
    70
sl@0
    71
void CWsWindowRedraw::OwnerPanic(TClientPanic aPanic)
sl@0
    72
	{
sl@0
    73
	iWsWin->OwnerPanic(aPanic);
sl@0
    74
	}
sl@0
    75
sl@0
    76
CWsBackedUpWindow *CWsWindowRedraw::Backup() const
sl@0
    77
	{
sl@0
    78
	return(NULL);
sl@0
    79
	}
sl@0
    80
sl@0
    81
void CWsWindowRedraw::Scroll(const TRect &, const TPoint &,const TRect &)
sl@0
    82
	{
sl@0
    83
	}
sl@0
    84
sl@0
    85
void CWsWindowRedraw::UpdateAnimArea()
sl@0
    86
	{
sl@0
    87
	}
sl@0
    88
sl@0
    89
void CWsWindowRedraw::PrepareForResizeL(const TSize &, TSize &)
sl@0
    90
	{
sl@0
    91
	}
sl@0
    92
sl@0
    93
TBool CWsWindowRedraw::DrawCommand(CWsGc*,const TAny*)
sl@0
    94
	{
sl@0
    95
	return ETrue;
sl@0
    96
	}
sl@0
    97
sl@0
    98
void CWsWindowRedraw::GcAttributeChange(CWsGc*,const TAny*)
sl@0
    99
	{
sl@0
   100
	}
sl@0
   101
sl@0
   102
void CWsWindowRedraw::GcDeactivate(CWsGc*)
sl@0
   103
	{
sl@0
   104
	}
sl@0
   105
sl@0
   106
CFbsDevice* CWsWindowRedraw::OutputDevice() const
sl@0
   107
	{
sl@0
   108
	return iWsWin->Screen()->GetFbsDevice();
sl@0
   109
	}
sl@0
   110
sl@0
   111
void CWsWindowRedraw::ClientExposing()
sl@0
   112
	{
sl@0
   113
	}
sl@0
   114
sl@0
   115
void CWsWindowRedraw::ClearRedrawStore(TBool)
sl@0
   116
	{}
sl@0
   117
sl@0
   118
void CWsWindowRedraw::PreDrawWindow(CFbsBitGc* aGc, const TRegion &aRegion)
sl@0
   119
	{
sl@0
   120
	WS_ASSERT_DEBUG(iGlobalRedrawRegion == NULL, EWsPanicScheduledRedraw);
sl@0
   121
	iGlobalRedrawRegion = &aRegion;
sl@0
   122
	CPlaybackGc::Instance()->SetTargetRegion(iGlobalRedrawRegion);
sl@0
   123
	CWsClient::iCurrentCommand.iOpcode=0; // Andy - urgh - loose me please
sl@0
   124
	CPlaybackGc::Instance()->Activate(CliWin(), aGc, iGlobalRedrawRegion);
sl@0
   125
	}
sl@0
   126
sl@0
   127
void CWsWindowRedraw::PostDrawWindow(CFbsBitGc* aGc)
sl@0
   128
	{	
sl@0
   129
	if(CWsTop::IsFadeEnabled() && iWsWin->FadeCount()>0 && !iWsWin->IsNonFading())
sl@0
   130
		{
sl@0
   131
		//x86gcc compiler needs this syntax to perform 
sl@0
   132
		//multiple inheritance duplicate common base class declaration resolution
sl@0
   133
		//combined with the template resolution.
sl@0
   134
		MWsGc* objectInterfaceResolver=CPlaybackGc::Instance();
sl@0
   135
		MWsFader* fader = objectInterfaceResolver->ObjectInterface<MWsFader>();
sl@0
   136
		if(fader)
sl@0
   137
			{
sl@0
   138
	      	TFadingParams parameters;
sl@0
   139
	      	iWsWin->GetFadingParams(parameters.blackMap,parameters.whiteMap);
sl@0
   140
	      	TPckgBuf<TFadingParams> buf(parameters);
sl@0
   141
	      	fader->SetFadingParameters(buf);
sl@0
   142
	      	// Only fade the region that hasn't been faded before
sl@0
   143
      		STACK_REGION fdRgn;
sl@0
   144
      		fdRgn.Copy( *iGlobalRedrawRegion );
sl@0
   145
      		fdRgn.Intersect( iWsWin->FadableRegion() );
sl@0
   146
      		fader->FadeArea( aGc, &fdRgn );
sl@0
   147
      		fdRgn.Close();
sl@0
   148
	      	}
sl@0
   149
		}
sl@0
   150
sl@0
   151
	CPlaybackGc::Instance()->Deactivate();
sl@0
   152
	
sl@0
   153
	WS_ASSERT_DEBUG(iGlobalRedrawRegion, EWsPanicScheduledRedraw);
sl@0
   154
	DrawAnims(aGc, *iGlobalRedrawRegion);
sl@0
   155
	
sl@0
   156
	CPlaybackGc::Instance()->SetTargetRegion(NULL);
sl@0
   157
	iGlobalRedrawRegion = 0;
sl@0
   158
	}
sl@0
   159
	
sl@0
   160
void CWsWindowRedraw::DrawAnims(CFbsBitGc * aGc, const TRegion& aRegion)
sl@0
   161
	{
sl@0
   162
	if (iWsWin->iAnimList)
sl@0
   163
		{
sl@0
   164
		// If an anim panics, it will leave and set the panic flag on the client
sl@0
   165
		// The client itself won't actually panic yet, and we don't want to leave from here.
sl@0
   166
		TRAP_IGNORE(DrawAnimsL(aGc, aRegion));
sl@0
   167
		}
sl@0
   168
sl@0
   169
	// Draw standard text cursor if required
sl@0
   170
	RWsTextCursor* const cursor = CWsTop::CurrentTextCursor();
sl@0
   171
	if (cursor && cursor->Win() == iWsWin && cursor->IsStandardCursorActive())
sl@0
   172
		{
sl@0
   173
		// Standard text cursor is active on this window
sl@0
   174
		const TBool flashing = cursor->IsFlashing();
sl@0
   175
		TFlashState flashState = EFlashOff;
sl@0
   176
		if (flashing)
sl@0
   177
			{
sl@0
   178
			flashState = Screen()->SpriteManager()->CurrentCursorFlashState();
sl@0
   179
			}
sl@0
   180
		if (flashState == EFlashOn || !flashing)
sl@0
   181
			{
sl@0
   182
			// Cursor should be visible, so draw it
sl@0
   183
			aGc->Reset();
sl@0
   184
			cursor->Draw(aGc, aRegion);
sl@0
   185
			}
sl@0
   186
		if (flashing)
sl@0
   187
			{
sl@0
   188
			// Reschedule to flash the standard cursor on or off
sl@0
   189
			Screen()->ScheduleAnimation(cursor->RectRelativeToScreen(), Screen()->SpriteManager()->NextCursorFlashStateChange(), 0, 0);
sl@0
   190
			}
sl@0
   191
		}
sl@0
   192
sl@0
   193
	for (CWsSpriteBase * sprite = iWsWin->iSpriteList; sprite; sprite = sprite->Next())
sl@0
   194
		{
sl@0
   195
		aGc->Reset();
sl@0
   196
		sprite->Redraw(aGc, aRegion);
sl@0
   197
		}
sl@0
   198
	}
sl@0
   199
sl@0
   200
void CWsWindowRedraw::DrawAnimsL(CFbsBitGc * aGc, const TRegion& aRegion)
sl@0
   201
	{
sl@0
   202
	for (CWsAnim * anim = iWsWin->iAnimList; anim; anim = anim->Next())
sl@0
   203
		{
sl@0
   204
		// This can leave
sl@0
   205
		TRAPD(err,anim->Redraw(aGc, &aRegion));
sl@0
   206
		if(err!=KErrNone)
sl@0
   207
			{
sl@0
   208
			anim->Panic(EWservPanicAnimLeave);
sl@0
   209
			}
sl@0
   210
		}
sl@0
   211
	}
sl@0
   212
sl@0
   213
TBool CWsWindowRedraw::Contains(const TArray<TGraphicDrawerId>& /*aDrawers*/,const TRegion& aRegion) const
sl@0
   214
	{
sl@0
   215
	// if in doubt, assume we do
sl@0
   216
	return !aRegion.IsEmpty();
sl@0
   217
	}
sl@0
   218
sl@0
   219
TInt CWsWindowRedraw::DrawBackgroundColor(const TRegion* aRegion)
sl@0
   220
	{
sl@0
   221
	if(Screen()->BltOffScreen())
sl@0
   222
		{
sl@0
   223
		return KErrNone;
sl@0
   224
		}
sl@0
   225
	TRgb col = BackColor();
sl@0
   226
	if (col.Alpha() == 0)
sl@0
   227
		{
sl@0
   228
		return KErrNone;
sl@0
   229
		}
sl@0
   230
	TRect abs(CliWin()->AbsRect());
sl@0
   231
	abs.Move(-CliWin()->Origin());
sl@0
   232
	TBuf8<sizeof(TRect)> cmd;
sl@0
   233
	cmd.Copy(reinterpret_cast<TUint8*>(&abs),sizeof(TRect));
sl@0
   234
	CPlaybackGc::Instance()->BitGc().SetClippingRegion(aRegion);
sl@0
   235
	CPlaybackGc::Instance()->BitGc().SetBrushColor(col);
sl@0
   236
	CPlaybackGc::Instance()->BitGc().SetBrushStyle(CGraphicsContext::ESolidBrush);
sl@0
   237
	CPlaybackGc::Instance()->BitGc().SetPenStyle(CGraphicsContext::ENullPen);
sl@0
   238
	// Andy - this is pretty ridiculous - can't we just draw using the gc?
sl@0
   239
	TRAPD(err,CPlaybackGc::Instance()->CommandL(EWsGcOpDrawRect, cmd));		//Should not leave ###
sl@0
   240
	CPlaybackGc::Instance()->BitGc().SetDrawMode(CGraphicsContext::EDrawModePEN);
sl@0
   241
	CPlaybackGc::Instance()->BitGc().CancelClippingRegion();
sl@0
   242
	return err;
sl@0
   243
	}
sl@0
   244
sl@0
   245
TBool CWsWindowRedraw::ReleaseMemory(MWsMemoryRelease::TMemoryReleaseLevel)
sl@0
   246
	{
sl@0
   247
	return EFalse;
sl@0
   248
	}
sl@0
   249
sl@0
   250
void CWsWindowRedraw::VisibleRegionChange()
sl@0
   251
	{
sl@0
   252
	}
sl@0
   253
	
sl@0
   254
TBool CWsWindowRedraw::ReadyToDraw() const
sl@0
   255
	{
sl@0
   256
	return ETrue;
sl@0
   257
	}
sl@0
   258
sl@0
   259
void CWsWindowRedraw::WindowClosing()
sl@0
   260
	{}
sl@0
   261
	
sl@0
   262
//
sl@0
   263
// Blank up window //
sl@0
   264
//
sl@0
   265
sl@0
   266
CWsBlankWindow::CWsBlankWindow(CWsWindow *aWin) : CWsWindowRedraw(aWin), iColor(iWsWin->RootWindow()->DefaultBackgroundColor()), iNoColor(EFalse)
sl@0
   267
	{
sl@0
   268
	}
sl@0
   269
sl@0
   270
CWsBlankWindow::~CWsBlankWindow()
sl@0
   271
	{
sl@0
   272
	}
sl@0
   273
sl@0
   274
void CWsBlankWindow::SetColor(TRgb aColor)
sl@0
   275
	{
sl@0
   276
	iColor=aColor;
sl@0
   277
	iNoColor=EFalse;
sl@0
   278
	Screen()->AddRedrawRegion(iWsWin->VisibleRegion());
sl@0
   279
	}
sl@0
   280
sl@0
   281
TBool CWsBlankWindow::CommandL(TInt aOpcode, TWsWinCmdUnion &aCmd)
sl@0
   282
	{
sl@0
   283
	switch(aOpcode)
sl@0
   284
		{
sl@0
   285
		case EWsWinOpSetColor:
sl@0
   286
			SetColor(*aCmd.rgb);
sl@0
   287
			break;
sl@0
   288
		case EWsWinOpSetNoBackgroundColor:
sl@0
   289
			SetBackgroundClear();
sl@0
   290
			break;
sl@0
   291
		default:
sl@0
   292
			return(EFalse);
sl@0
   293
		}
sl@0
   294
	return(ETrue);
sl@0
   295
	}
sl@0
   296
sl@0
   297
TRgb CWsBlankWindow::BackColor() const
sl@0
   298
	{
sl@0
   299
	return(iColor);
sl@0
   300
	}
sl@0
   301
sl@0
   302
TBool CWsBlankWindow::GetRedrawRect(TRect &) const
sl@0
   303
	{
sl@0
   304
	if (!iNoColor || iWsWin->iAnimList)
sl@0
   305
		iWsWin->Screen()->AddRedrawRegion(iWsWin->VisibleRegion());
sl@0
   306
	return(EFalse);
sl@0
   307
	}
sl@0
   308
sl@0
   309
TBool CWsBlankWindow::NeedsRedraw() const
sl@0
   310
	{
sl@0
   311
	return(EFalse);
sl@0
   312
	}
sl@0
   313
sl@0
   314
void CWsBlankWindow::DrawWindow()
sl@0
   315
	{
sl@0
   316
	if (!iNoColor)
sl@0
   317
		{
sl@0
   318
		DrawBackgroundColor(iGlobalRedrawRegion);
sl@0
   319
		}
sl@0
   320
	}