sl@0
|
1 |
// Copyright (c) 1995-2010 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 <s32mem.h>
|
sl@0
|
28 |
#include <gdi.h>
|
sl@0
|
29 |
#include "panics.h"
|
sl@0
|
30 |
#include "inifile.h"
|
sl@0
|
31 |
#include "rootwin.h"
|
sl@0
|
32 |
#include "EVENT.H"
|
sl@0
|
33 |
#include "wstypes.h"
|
sl@0
|
34 |
#include <graphics/surface.h>
|
sl@0
|
35 |
#include <graphics/wselement.h>
|
sl@0
|
36 |
#include <graphics/wsscreendevice.h>
|
sl@0
|
37 |
#include "windowelementset.h"
|
sl@0
|
38 |
|
sl@0
|
39 |
struct TFadingParams
|
sl@0
|
40 |
{
|
sl@0
|
41 |
TUint8 blackMap;
|
sl@0
|
42 |
TUint8 whiteMap;
|
sl@0
|
43 |
};
|
sl@0
|
44 |
|
sl@0
|
45 |
CWsWindowRedraw::CWsWindowRedraw(CWsWindow *aWin) : iWsWin(aWin)
|
sl@0
|
46 |
{
|
sl@0
|
47 |
}
|
sl@0
|
48 |
|
sl@0
|
49 |
CWsWindowRedraw::~CWsWindowRedraw()
|
sl@0
|
50 |
{
|
sl@0
|
51 |
if (iWsWin->WsOwner())
|
sl@0
|
52 |
{
|
sl@0
|
53 |
iWsWin->WsOwner()->RedrawQueue()->RemoveInvalid(this);
|
sl@0
|
54 |
}
|
sl@0
|
55 |
if (HasElement())
|
sl@0
|
56 |
{
|
sl@0
|
57 |
iWsWin->Screen()->WindowElements().ReleaseAllElements(*CliWin());
|
sl@0
|
58 |
}
|
sl@0
|
59 |
}
|
sl@0
|
60 |
|
sl@0
|
61 |
void CWsWindowRedraw::ConstructL()
|
sl@0
|
62 |
{
|
sl@0
|
63 |
}
|
sl@0
|
64 |
|
sl@0
|
65 |
const TRegion& CWsWindowRedraw::InvalidArea() const
|
sl@0
|
66 |
{
|
sl@0
|
67 |
return(nullRegion);
|
sl@0
|
68 |
}
|
sl@0
|
69 |
|
sl@0
|
70 |
const TRegion &CWsWindowRedraw::BaseDrawRegion() const
|
sl@0
|
71 |
{
|
sl@0
|
72 |
return(iWsWin->VisibleRegion());
|
sl@0
|
73 |
}
|
sl@0
|
74 |
|
sl@0
|
75 |
void CWsWindowRedraw::ClipInvalidRegion(const TRect &)
|
sl@0
|
76 |
{
|
sl@0
|
77 |
}
|
sl@0
|
78 |
|
sl@0
|
79 |
void CWsWindowRedraw::Resize(const TSize &, const TSize &)
|
sl@0
|
80 |
{
|
sl@0
|
81 |
}
|
sl@0
|
82 |
|
sl@0
|
83 |
void CWsWindowRedraw::SetReply(TInt aReply)
|
sl@0
|
84 |
{
|
sl@0
|
85 |
iWsWin->WsOwner()->SetReply(aReply);
|
sl@0
|
86 |
}
|
sl@0
|
87 |
|
sl@0
|
88 |
void CWsWindowRedraw::OwnerPanic(TClientPanic aPanic)
|
sl@0
|
89 |
{
|
sl@0
|
90 |
iWsWin->OwnerPanic(aPanic);
|
sl@0
|
91 |
}
|
sl@0
|
92 |
|
sl@0
|
93 |
CWsBackedUpWindow *CWsWindowRedraw::Backup() const
|
sl@0
|
94 |
{
|
sl@0
|
95 |
return(NULL);
|
sl@0
|
96 |
}
|
sl@0
|
97 |
|
sl@0
|
98 |
void CWsWindowRedraw::Scroll(const TRect &, const TPoint &,const TRect &)
|
sl@0
|
99 |
{
|
sl@0
|
100 |
}
|
sl@0
|
101 |
|
sl@0
|
102 |
void CWsWindowRedraw::UpdateAnimArea()
|
sl@0
|
103 |
{
|
sl@0
|
104 |
}
|
sl@0
|
105 |
|
sl@0
|
106 |
void CWsWindowRedraw::PrepareForResizeL(const TSize& /* aNewSize */, TSize& /* aOldSize */)
|
sl@0
|
107 |
{
|
sl@0
|
108 |
}
|
sl@0
|
109 |
|
sl@0
|
110 |
TBool CWsWindowRedraw::DrawCommand(CWsGc*,const TAny*)
|
sl@0
|
111 |
{
|
sl@0
|
112 |
return ETrue;
|
sl@0
|
113 |
}
|
sl@0
|
114 |
|
sl@0
|
115 |
void CWsWindowRedraw::GcAttributeChange(CWsGc*,const TAny*)
|
sl@0
|
116 |
{
|
sl@0
|
117 |
}
|
sl@0
|
118 |
|
sl@0
|
119 |
void CWsWindowRedraw::GcDeactivate(CWsGc*)
|
sl@0
|
120 |
{
|
sl@0
|
121 |
}
|
sl@0
|
122 |
|
sl@0
|
123 |
CFbsDevice* CWsWindowRedraw::OutputDevice() const
|
sl@0
|
124 |
{
|
sl@0
|
125 |
return NULL;
|
sl@0
|
126 |
}
|
sl@0
|
127 |
|
sl@0
|
128 |
void CWsWindowRedraw::ClientExposing()
|
sl@0
|
129 |
{
|
sl@0
|
130 |
}
|
sl@0
|
131 |
|
sl@0
|
132 |
void CWsWindowRedraw::ClearRedrawStore(TBool)
|
sl@0
|
133 |
{}
|
sl@0
|
134 |
|
sl@0
|
135 |
void CWsWindowRedraw::PreDrawWindow(MWsGraphicsContext* aGc, const TRegion& aWindowRegion)
|
sl@0
|
136 |
{
|
sl@0
|
137 |
WS_ASSERT_DEBUG(iRedrawRegion == NULL, EWsPanicScheduledRedraw);
|
sl@0
|
138 |
iRedrawRegion = &aWindowRegion;
|
sl@0
|
139 |
CPlaybackGc::Instance()->SetTargetRegion(iRedrawRegion);
|
sl@0
|
140 |
CWsClient::iCurrentCommand.iOpcode=0;
|
sl@0
|
141 |
CPlaybackGc::Instance()->Activate(CliWin(), aGc, iRedrawRegion);
|
sl@0
|
142 |
}
|
sl@0
|
143 |
|
sl@0
|
144 |
void CWsWindowRedraw::PostDrawWindow(MWsGraphicsContext* aGc, const TRegion& aWindowChildNodeRegion)
|
sl@0
|
145 |
{
|
sl@0
|
146 |
WS_ASSERT_DEBUG(iRedrawRegion, EWsPanicScheduledRedraw);
|
sl@0
|
147 |
CPlaybackGc::Instance()->Deactivate();
|
sl@0
|
148 |
CPlaybackGc::Instance()->SetTargetRegion(NULL);
|
sl@0
|
149 |
|
sl@0
|
150 |
if(!Screen()->ChangeTracking())
|
sl@0
|
151 |
{
|
sl@0
|
152 |
DoFade(*iRedrawRegion);
|
sl@0
|
153 |
}
|
sl@0
|
154 |
|
sl@0
|
155 |
AnnotateWindowRedrawEnd(*iWsWin);
|
sl@0
|
156 |
|
sl@0
|
157 |
DrawWindowAnims(aGc, aWindowChildNodeRegion);
|
sl@0
|
158 |
DrawCursorAndSprites(aGc, aWindowChildNodeRegion);
|
sl@0
|
159 |
iRedrawRegion = 0;
|
sl@0
|
160 |
}
|
sl@0
|
161 |
|
sl@0
|
162 |
void CWsWindowRedraw::Fade(MWsGraphicsContext * aGc, const TRegion& aRegion)
|
sl@0
|
163 |
{
|
sl@0
|
164 |
LOG_WINDOW_FADE_START(WsWin());
|
sl@0
|
165 |
AnnotateWindowRedrawStart(*iWsWin, aRegion);
|
sl@0
|
166 |
|
sl@0
|
167 |
aGc->Reset();
|
sl@0
|
168 |
DoFade(aRegion);
|
sl@0
|
169 |
|
sl@0
|
170 |
AnnotateWindowRedrawEnd(*iWsWin);
|
sl@0
|
171 |
LOG_WINDOW_FADE_END(WsWin());
|
sl@0
|
172 |
}
|
sl@0
|
173 |
|
sl@0
|
174 |
void CWsWindowRedraw::DoFade(const TRegion& aRegion)
|
sl@0
|
175 |
{
|
sl@0
|
176 |
if( CWsTop::IsFadeEnabled() && iWsWin && iWsWin->FadeCount()>0 && !(iWsWin->IsNonFading()) && !(iWsWin->FadableRegion().IsEmpty()) && !(iWsWin->IsDSAHost()) )
|
sl@0
|
177 |
{
|
sl@0
|
178 |
MWsFader* fader = static_cast<MWsFader*>(iWsWin->Screen()->ResolveObjectInterface(KMWsFader));
|
sl@0
|
179 |
if(fader)
|
sl@0
|
180 |
{
|
sl@0
|
181 |
TFadingParams parameters;
|
sl@0
|
182 |
iWsWin->GetFadingParams(parameters.blackMap,parameters.whiteMap);
|
sl@0
|
183 |
TPckgBuf<TFadingParams> buf(parameters);
|
sl@0
|
184 |
fader->SetFadingParameters(buf);
|
sl@0
|
185 |
// Only fade the region that hasn't been faded before
|
sl@0
|
186 |
STACK_REGION fdRgn;
|
sl@0
|
187 |
fdRgn.Copy( aRegion );
|
sl@0
|
188 |
fdRgn.Intersect( iWsWin->FadableRegion() );
|
sl@0
|
189 |
if(!fdRgn.CheckError())
|
sl@0
|
190 |
{
|
sl@0
|
191 |
fader->FadeArea( fdRgn );
|
sl@0
|
192 |
LOG_WINDOW_FADE_REGION(&fdRgn);
|
sl@0
|
193 |
}
|
sl@0
|
194 |
fdRgn.Close();
|
sl@0
|
195 |
}
|
sl@0
|
196 |
}
|
sl@0
|
197 |
}
|
sl@0
|
198 |
|
sl@0
|
199 |
void CWsWindowRedraw::DrawWindowAnims(MWsGraphicsContext * aGc, const TRegion& aRegion)
|
sl@0
|
200 |
{
|
sl@0
|
201 |
if (iWsWin->iAnimList)
|
sl@0
|
202 |
{
|
sl@0
|
203 |
// If an anim panics, it will leave and set the panic flag on the client
|
sl@0
|
204 |
// The client itself won't actually panic yet, and we don't want to leave from here.
|
sl@0
|
205 |
TRAP_IGNORE(DrawWindowAnimsL(aGc, aRegion));
|
sl@0
|
206 |
}
|
sl@0
|
207 |
}
|
sl@0
|
208 |
|
sl@0
|
209 |
void CWsWindowRedraw::DrawWindowAnimsL(MWsGraphicsContext * aGc, const TRegion& aRegion)
|
sl@0
|
210 |
{
|
sl@0
|
211 |
for (CWsAnim * anim = iWsWin->iAnimList; anim; anim = anim->Next())
|
sl@0
|
212 |
{
|
sl@0
|
213 |
AnnotateWindowAnimRedrawStart(*iWsWin, *anim, aRegion);
|
sl@0
|
214 |
|
sl@0
|
215 |
//Animate and redraw
|
sl@0
|
216 |
TRAPD(err,anim->RedrawWindowAnimL(Screen()->Now(), aGc, &aRegion));
|
sl@0
|
217 |
if(err!=KErrNone)
|
sl@0
|
218 |
{
|
sl@0
|
219 |
AnnotateWindowAnimRedrawEnd(*iWsWin, *anim);
|
sl@0
|
220 |
anim->Panic(EWservPanicAnimLeave);
|
sl@0
|
221 |
return;
|
sl@0
|
222 |
}
|
sl@0
|
223 |
|
sl@0
|
224 |
AnnotateWindowAnimRedrawEnd(*iWsWin, *anim);
|
sl@0
|
225 |
}
|
sl@0
|
226 |
}
|
sl@0
|
227 |
|
sl@0
|
228 |
void CWsWindowRedraw::DrawCursorAndSprites(MWsGraphicsContext * aGc, const TRegion& aRegion)
|
sl@0
|
229 |
{
|
sl@0
|
230 |
// Draw standard text cursor if required
|
sl@0
|
231 |
RWsTextCursor* const cursor = CWsTop::CurrentTextCursor();
|
sl@0
|
232 |
if (!iWsWin->Screen()->ChangeTracking() && cursor && cursor->Win() == iWsWin && cursor->IsStandardCursorActive())
|
sl@0
|
233 |
{
|
sl@0
|
234 |
// Standard text cursor is active on this window
|
sl@0
|
235 |
const TBool flashing = cursor->IsFlashing();
|
sl@0
|
236 |
TFlashState flashState = EFlashOn;
|
sl@0
|
237 |
if (flashing)
|
sl@0
|
238 |
{
|
sl@0
|
239 |
flashState = cursor->CurrentCursorFlashState();
|
sl@0
|
240 |
}
|
sl@0
|
241 |
if (flashState == EFlashOn)
|
sl@0
|
242 |
{
|
sl@0
|
243 |
// Cursor should be visible, so draw it
|
sl@0
|
244 |
cursor->Draw(aRegion);
|
sl@0
|
245 |
}
|
sl@0
|
246 |
if (flashing)
|
sl@0
|
247 |
{
|
sl@0
|
248 |
// Reschedule to flash the standard cursor on or off
|
sl@0
|
249 |
Screen()->ScheduleAnimation(ETextCursor, cursor->RectRelativeToScreen(), Screen()->SpriteManager()->NextCursorFlashStateChange(), 0, 0, iWsWin);
|
sl@0
|
250 |
}
|
sl@0
|
251 |
}
|
sl@0
|
252 |
|
sl@0
|
253 |
for (CWsSpriteBase * sprite = iWsWin->iSpriteList; sprite; sprite = sprite->Next())
|
sl@0
|
254 |
{
|
sl@0
|
255 |
TBool hasRedrawBegun = EFalse;
|
sl@0
|
256 |
STACK_REGION redrawRegion;
|
sl@0
|
257 |
sprite->CalcRedrawRegion(aRegion, redrawRegion);
|
sl@0
|
258 |
if(redrawRegion.CheckError() || !redrawRegion.IsEmpty())
|
sl@0
|
259 |
{
|
sl@0
|
260 |
if (sprite->IsFlashingEnabled() || sprite->IsDirty() || sprite->HasAnimation())
|
sl@0
|
261 |
{
|
sl@0
|
262 |
if (sprite->IsDirty() || sprite->HasAnimation())
|
sl@0
|
263 |
{
|
sl@0
|
264 |
AnnotateSpriteRedrawStart(*iWsWin, *sprite, redrawRegion);
|
sl@0
|
265 |
hasRedrawBegun = ETrue;
|
sl@0
|
266 |
}
|
sl@0
|
267 |
|
sl@0
|
268 |
if(sprite->HasAnimation())
|
sl@0
|
269 |
{
|
sl@0
|
270 |
CWsAnim* anim = static_cast<CWsSprite*>(sprite)->iAnim;
|
sl@0
|
271 |
WS_ASSERT_DEBUG(anim,EWsPanicAnim);
|
sl@0
|
272 |
|
sl@0
|
273 |
//Animate and...
|
sl@0
|
274 |
TRAPD(err, anim->AnimateSpriteAnimL(Screen()->Now()));
|
sl@0
|
275 |
if(err!=KErrNone)
|
sl@0
|
276 |
{
|
sl@0
|
277 |
AnnotateSpriteRedrawEnd(*iWsWin, *sprite);
|
sl@0
|
278 |
anim->Panic(EWservPanicAnimLeave);
|
sl@0
|
279 |
return;
|
sl@0
|
280 |
}
|
sl@0
|
281 |
}
|
sl@0
|
282 |
|
sl@0
|
283 |
//...call Redraw on the sprite
|
sl@0
|
284 |
if (hasRedrawBegun)
|
sl@0
|
285 |
{
|
sl@0
|
286 |
aGc->Reset();
|
sl@0
|
287 |
}
|
sl@0
|
288 |
sprite->Redraw(aGc, redrawRegion);
|
sl@0
|
289 |
|
sl@0
|
290 |
if (hasRedrawBegun)
|
sl@0
|
291 |
{
|
sl@0
|
292 |
AnnotateSpriteRedrawEnd(*iWsWin, *sprite);
|
sl@0
|
293 |
}
|
sl@0
|
294 |
}
|
sl@0
|
295 |
}
|
sl@0
|
296 |
redrawRegion.Close();
|
sl@0
|
297 |
}
|
sl@0
|
298 |
}
|
sl@0
|
299 |
|
sl@0
|
300 |
TBool CWsWindowRedraw::Contains(const TArray<TGraphicDrawerId>& /*aDrawers*/,const TRegion& aRegion) const
|
sl@0
|
301 |
{
|
sl@0
|
302 |
// if in doubt, assume we do
|
sl@0
|
303 |
return !aRegion.IsEmpty();
|
sl@0
|
304 |
}
|
sl@0
|
305 |
|
sl@0
|
306 |
TInt CWsWindowRedraw::DrawBackgroundColor(const TRegion& aRegion, TBool aDoFillColor)
|
sl@0
|
307 |
{
|
sl@0
|
308 |
if (BackColor().Alpha() == 0 && !HasElement())
|
sl@0
|
309 |
return KErrNone;
|
sl@0
|
310 |
|
sl@0
|
311 |
if(aRegion.IsEmpty())
|
sl@0
|
312 |
return KErrNone;
|
sl@0
|
313 |
|
sl@0
|
314 |
TRect winAbs(CliWin()->AbsRect()); //fill size for background color fill
|
sl@0
|
315 |
TRect surfaceAbs(0,0,0,0); //fill size for background surface fill - initially disabled
|
sl@0
|
316 |
|
sl@0
|
317 |
if (HasElement())
|
sl@0
|
318 |
{
|
sl@0
|
319 |
TBackgroundAttributes* backgroundAttributes = CliWin()->Screen()->WindowElements().FindBackgroundElement(*CliWin());
|
sl@0
|
320 |
WS_ASSERT_DEBUG(backgroundAttributes,EWsPanicNoWindowElement);
|
sl@0
|
321 |
|
sl@0
|
322 |
if (backgroundAttributes->iElement)
|
sl@0
|
323 |
{
|
sl@0
|
324 |
if (backgroundAttributes->ExplicitExtent())
|
sl@0
|
325 |
{
|
sl@0
|
326 |
backgroundAttributes->iElement->GetDestinationRectangle(surfaceAbs);
|
sl@0
|
327 |
surfaceAbs.Intersection(winAbs);
|
sl@0
|
328 |
if (surfaceAbs==winAbs)
|
sl@0
|
329 |
{
|
sl@0
|
330 |
winAbs.iBr.iX=winAbs.iTl.iX; //disable background color fill
|
sl@0
|
331 |
}
|
sl@0
|
332 |
}
|
sl@0
|
333 |
else
|
sl@0
|
334 |
{
|
sl@0
|
335 |
surfaceAbs=winAbs;
|
sl@0
|
336 |
winAbs.iBr.iX=winAbs.iTl.iX; //disable background color fill
|
sl@0
|
337 |
}
|
sl@0
|
338 |
}
|
sl@0
|
339 |
if (!aDoFillColor)
|
sl@0
|
340 |
{
|
sl@0
|
341 |
winAbs.iBr.iX=winAbs.iTl.iX; //disable background color fill
|
sl@0
|
342 |
}
|
sl@0
|
343 |
}
|
sl@0
|
344 |
|
sl@0
|
345 |
CPlaybackGc* playback = CPlaybackGc::Instance();
|
sl@0
|
346 |
MWsGraphicsContext* gc = static_cast<MWsGraphicsContext*>(playback->ResolveObjectInterface(KMWsGraphicsContext));
|
sl@0
|
347 |
gc->SetClippingRegion(aRegion);
|
sl@0
|
348 |
gc->SetBrushStyle(MWsGraphicsContext::ESolidBrush);
|
sl@0
|
349 |
gc->SetPenStyle(MWsGraphicsContext::ENullPen);
|
sl@0
|
350 |
TInt err = KErrNone;
|
sl@0
|
351 |
if (!winAbs.IsEmpty())
|
sl@0
|
352 |
{
|
sl@0
|
353 |
gc->SetBrushColor(BackColor());
|
sl@0
|
354 |
gc->DrawRect(winAbs);
|
sl@0
|
355 |
}
|
sl@0
|
356 |
if (!surfaceAbs.IsEmpty())
|
sl@0
|
357 |
{
|
sl@0
|
358 |
gc->SetDrawMode(MWsGraphicsContext::EDrawModeWriteAlpha);
|
sl@0
|
359 |
gc->SetBrushColor(TRgb(0,0,0,0));
|
sl@0
|
360 |
gc->DrawRect(surfaceAbs);
|
sl@0
|
361 |
gc->SetBrushColor(BackColor()); //leave in a sensible state
|
sl@0
|
362 |
gc->SetDrawMode(MWsGraphicsContext::EDrawModePEN);
|
sl@0
|
363 |
}
|
sl@0
|
364 |
gc->ResetClippingRegion();
|
sl@0
|
365 |
return err;
|
sl@0
|
366 |
}
|
sl@0
|
367 |
|
sl@0
|
368 |
TBool CWsWindowRedraw::ReleaseMemory(MWsMemoryRelease::TMemoryReleaseLevel)
|
sl@0
|
369 |
{
|
sl@0
|
370 |
return EFalse;
|
sl@0
|
371 |
}
|
sl@0
|
372 |
|
sl@0
|
373 |
void CWsWindowRedraw::VisibleRegionChange()
|
sl@0
|
374 |
{
|
sl@0
|
375 |
}
|
sl@0
|
376 |
|
sl@0
|
377 |
TBool CWsWindowRedraw::ReadyToDraw() const
|
sl@0
|
378 |
{
|
sl@0
|
379 |
return ETrue;
|
sl@0
|
380 |
}
|
sl@0
|
381 |
|
sl@0
|
382 |
TBool CWsWindowRedraw::RedrawingInProgress() const
|
sl@0
|
383 |
{
|
sl@0
|
384 |
return EFalse;
|
sl@0
|
385 |
}
|
sl@0
|
386 |
|
sl@0
|
387 |
void CWsWindowRedraw::WindowClosing()
|
sl@0
|
388 |
{
|
sl@0
|
389 |
ReleaseBackgroundElement();
|
sl@0
|
390 |
}
|
sl@0
|
391 |
|
sl@0
|
392 |
TBool CWsWindowRedraw::HasDsaElement() const
|
sl@0
|
393 |
{
|
sl@0
|
394 |
TBool hasDsaElement = EFalse;
|
sl@0
|
395 |
|
sl@0
|
396 |
if (HasElement())
|
sl@0
|
397 |
{
|
sl@0
|
398 |
CWsClientWindow* cliWin = CliWin();
|
sl@0
|
399 |
CWindowElementSet& set = cliWin->Screen()->WindowElements();
|
sl@0
|
400 |
TBackgroundAttributes* backgroundAttributes = set.FindBackgroundElement(*cliWin);
|
sl@0
|
401 |
WS_ASSERT_DEBUG(backgroundAttributes,EWsPanicNoWindowElement);
|
sl@0
|
402 |
|
sl@0
|
403 |
if (backgroundAttributes->iElement)
|
sl@0
|
404 |
{
|
sl@0
|
405 |
MWsElement& element = *(backgroundAttributes->iElement);
|
sl@0
|
406 |
hasDsaElement = (element.ConnectedSurface() == cliWin->Screen()->DsaSurface());
|
sl@0
|
407 |
}
|
sl@0
|
408 |
}
|
sl@0
|
409 |
|
sl@0
|
410 |
return hasDsaElement;
|
sl@0
|
411 |
}
|
sl@0
|
412 |
|
sl@0
|
413 |
void CWsWindowRedraw::SetDsaElementL()
|
sl@0
|
414 |
{
|
sl@0
|
415 |
TRect extent(TPoint(0,0), WsWin()->Screen()->DSASizeInPixels());
|
sl@0
|
416 |
MWsDisplayMapping *dispMap = WsWin()->Screen()->DisplayMapping();
|
sl@0
|
417 |
TRect extentOut;
|
sl@0
|
418 |
TRect extentInDSA;
|
sl@0
|
419 |
if(dispMap)
|
sl@0
|
420 |
{
|
sl@0
|
421 |
dispMap->MapCoordinates(EDirectScreenAccessSpace,extent,EApplicationSpace,extentOut);
|
sl@0
|
422 |
//DSA extent in application space intersects window extent in application space
|
sl@0
|
423 |
extentOut.Intersection(WsWin()->FullRect());
|
sl@0
|
424 |
if(extentOut.IsEmpty())
|
sl@0
|
425 |
{
|
sl@0
|
426 |
extentOut.SetRect(0,0,0,0);
|
sl@0
|
427 |
}
|
sl@0
|
428 |
//use DSA coordinates to determine the viewport
|
sl@0
|
429 |
dispMap->MapCoordinates(EApplicationSpace, extentOut, EDirectScreenAccessSpace, extentInDSA);
|
sl@0
|
430 |
}
|
sl@0
|
431 |
else
|
sl@0
|
432 |
{
|
sl@0
|
433 |
extentOut = extent;
|
sl@0
|
434 |
extentInDSA = extent;
|
sl@0
|
435 |
extentOut.Intersection(WsWin()->FullRect());
|
sl@0
|
436 |
}
|
sl@0
|
437 |
if (!HasDsaElement())
|
sl@0
|
438 |
{
|
sl@0
|
439 |
WsWin()->Screen()->ClearDsaSurface(extent, BackColor());
|
sl@0
|
440 |
}
|
sl@0
|
441 |
|
sl@0
|
442 |
TSurfaceConfiguration sc;
|
sl@0
|
443 |
sc.SetSurfaceId(WsWin()->Screen()->DsaSurface());
|
sl@0
|
444 |
sc.SetExtent(extentOut.Size());
|
sl@0
|
445 |
sc.SetViewport(extentInDSA);
|
sl@0
|
446 |
|
sl@0
|
447 |
SetBackgroundSurfaceL(sc, ETrue, ETrue);
|
sl@0
|
448 |
}
|
sl@0
|
449 |
|
sl@0
|
450 |
TBackgroundAttributes& CWsWindowRedraw::AcquireBackgroundElementL()
|
sl@0
|
451 |
{
|
sl@0
|
452 |
// Only client windows can have elements set
|
sl@0
|
453 |
WS_ASSERT_DEBUG(iWsWin->WinType() == EWinTypeClient,EWsPanicWindowType);
|
sl@0
|
454 |
CWsClientWindow* cliWin = static_cast<CWsClientWindow*>(iWsWin);
|
sl@0
|
455 |
CScreen* screen = cliWin->Screen();
|
sl@0
|
456 |
WS_ASSERT_DEBUG(screen,EWsPanicNoScreen);
|
sl@0
|
457 |
|
sl@0
|
458 |
CWindowElementSet& set = screen->WindowElements();
|
sl@0
|
459 |
SetHasElement(EFalse);
|
sl@0
|
460 |
TBackgroundAttributes& backgroundAttributes = set.AcquireBackgroundElementL(*cliWin);
|
sl@0
|
461 |
MWsElement& element = *(backgroundAttributes.iElement);
|
sl@0
|
462 |
element.SetGlobalAlpha(cliWin->IsVisible() ? 0xFF : 0);
|
sl@0
|
463 |
SetHasElement(ETrue);
|
sl@0
|
464 |
screen->ElementAdded();
|
sl@0
|
465 |
|
sl@0
|
466 |
return backgroundAttributes;
|
sl@0
|
467 |
}
|
sl@0
|
468 |
|
sl@0
|
469 |
void CWsWindowRedraw::SetBackgroundSurfaceL(const TSurfaceId& aSurface)
|
sl@0
|
470 |
{
|
sl@0
|
471 |
if (aSurface.Type() == TSurfaceId::EScreenSurface || aSurface.IsNull())
|
sl@0
|
472 |
{
|
sl@0
|
473 |
OwnerPanic(EWservPanicInvalidSurface);
|
sl@0
|
474 |
}
|
sl@0
|
475 |
|
sl@0
|
476 |
CWsClientWindow* cliWin = CliWin();
|
sl@0
|
477 |
CScreen* screen = cliWin->Screen();
|
sl@0
|
478 |
CWindowElementSet& set = screen->WindowElements();
|
sl@0
|
479 |
TBackgroundAttributes& backgroundAttributes = AcquireBackgroundElementL();
|
sl@0
|
480 |
MWsElement& element = *(backgroundAttributes.iElement);
|
sl@0
|
481 |
TInt err = set.RegisterSurface(aSurface);
|
sl@0
|
482 |
if (err != KErrNone)
|
sl@0
|
483 |
{
|
sl@0
|
484 |
ReleaseBackgroundElement();
|
sl@0
|
485 |
User::Leave(err);
|
sl@0
|
486 |
}
|
sl@0
|
487 |
err = element.ConnectSurface(aSurface);
|
sl@0
|
488 |
if (err != KErrNone)
|
sl@0
|
489 |
{
|
sl@0
|
490 |
set.UnregisterSurface(aSurface);
|
sl@0
|
491 |
ReleaseBackgroundElement();
|
sl@0
|
492 |
User::Leave(err);
|
sl@0
|
493 |
}
|
sl@0
|
494 |
|
sl@0
|
495 |
TRect winExtent = cliWin->FullRect();
|
sl@0
|
496 |
element.SetDestinationRectangle(winExtent);
|
sl@0
|
497 |
|
sl@0
|
498 |
// By default Element's source rectangle is set to its surface rectangle
|
sl@0
|
499 |
TRect srcRect;
|
sl@0
|
500 |
element.GetSourceRectangle(srcRect);
|
sl@0
|
501 |
cliWin->SetOriginalSrcElementRect(srcRect);
|
sl@0
|
502 |
cliWin->SetOriginalDestElementRect(winExtent);
|
sl@0
|
503 |
|
sl@0
|
504 |
SetMayContainElementFlags();
|
sl@0
|
505 |
|
sl@0
|
506 |
MWsWindowTreeObserver* windowTreeObserver = Screen()->WindowTreeObserver();
|
sl@0
|
507 |
if (windowTreeObserver)
|
sl@0
|
508 |
{
|
sl@0
|
509 |
windowTreeObserver->ElementAdded(*iWsWin, element);
|
sl@0
|
510 |
}
|
sl@0
|
511 |
}
|
sl@0
|
512 |
|
sl@0
|
513 |
void CWsWindowRedraw::SetBackgroundSurfaceL(const TSurfaceConfiguration& aConfiguration, TBool aTriggerRedraw, TBool aAllowScreenSurface)
|
sl@0
|
514 |
{
|
sl@0
|
515 |
if (aConfiguration.Size() < sizeof(TSurfaceConfiguration))
|
sl@0
|
516 |
{
|
sl@0
|
517 |
__ASSERT_COMPILE(sizeof(TSurfaceConfiguration2)==sizeof(TSurfaceConfiguration));
|
sl@0
|
518 |
if (aConfiguration.Size() != sizeof(TSurfaceConfiguration1))
|
sl@0
|
519 |
{
|
sl@0
|
520 |
OwnerPanic(EWservPanicInvalidSurfaceConfiguration);
|
sl@0
|
521 |
}
|
sl@0
|
522 |
}
|
sl@0
|
523 |
|
sl@0
|
524 |
TSurfaceId surfaceId;
|
sl@0
|
525 |
aConfiguration.GetSurfaceId(surfaceId);
|
sl@0
|
526 |
if ((surfaceId.Type() == TSurfaceId::EScreenSurface && !aAllowScreenSurface) || surfaceId.IsNull())
|
sl@0
|
527 |
{
|
sl@0
|
528 |
OwnerPanic(EWservPanicInvalidSurface);
|
sl@0
|
529 |
}
|
sl@0
|
530 |
|
sl@0
|
531 |
CFbsBitGc::TGraphicsOrientation tempOrientation = aConfiguration.Orientation();
|
sl@0
|
532 |
__ASSERT_COMPILE(CFbsBitGc::EGraphicsOrientationNormal==0 &&
|
sl@0
|
533 |
CFbsBitGc::EGraphicsOrientationRotated270 == 3);
|
sl@0
|
534 |
if(tempOrientation < CFbsBitGc::EGraphicsOrientationNormal ||
|
sl@0
|
535 |
tempOrientation > CFbsBitGc::EGraphicsOrientationRotated270)
|
sl@0
|
536 |
{
|
sl@0
|
537 |
OwnerPanic(EWservPanicInvalidSurfaceConfiguration);
|
sl@0
|
538 |
}
|
sl@0
|
539 |
|
sl@0
|
540 |
CWsClientWindow* cliWin = CliWin();
|
sl@0
|
541 |
CScreen* screen = cliWin->Screen();
|
sl@0
|
542 |
__ASSERT_DEBUG(screen, Panic(EWsPanicNoScreen));
|
sl@0
|
543 |
|
sl@0
|
544 |
CWindowElementSet& set = screen->WindowElements();
|
sl@0
|
545 |
TBool mustRegister = ETrue;
|
sl@0
|
546 |
TRect oldExtent(0,0,0,0);
|
sl@0
|
547 |
MWsElement::TElementRotation oldRotation = MWsElement::EElementAntiClockwise0;
|
sl@0
|
548 |
TBool oldFlip = EFalse;
|
sl@0
|
549 |
TRect oldViewport(0,0,0,0);
|
sl@0
|
550 |
TSurfaceId oldSurfaceId = TSurfaceId::CreateNullId();
|
sl@0
|
551 |
|
sl@0
|
552 |
// If a element has already been set
|
sl@0
|
553 |
if (HasElement())
|
sl@0
|
554 |
{
|
sl@0
|
555 |
TBackgroundAttributes* backgroundAttributes = set.FindBackgroundElement(*cliWin);
|
sl@0
|
556 |
WS_ASSERT_DEBUG(backgroundAttributes,EWsPanicNoWindowElement);
|
sl@0
|
557 |
|
sl@0
|
558 |
if (backgroundAttributes->iElement)
|
sl@0
|
559 |
{
|
sl@0
|
560 |
MWsElement& element = *(backgroundAttributes->iElement);
|
sl@0
|
561 |
element.GetDestinationRectangle(oldExtent);
|
sl@0
|
562 |
element.GetSourceRectangle(oldViewport);
|
sl@0
|
563 |
oldRotation = element.SourceRotation();
|
sl@0
|
564 |
oldFlip = element.SourceFlipping();
|
sl@0
|
565 |
oldSurfaceId = element.ConnectedSurface();
|
sl@0
|
566 |
mustRegister = EFalse;
|
sl@0
|
567 |
// If it is a different surface, flag to register the new surface
|
sl@0
|
568 |
if (element.ConnectedSurface() != surfaceId)
|
sl@0
|
569 |
{
|
sl@0
|
570 |
mustRegister = ETrue;
|
sl@0
|
571 |
}
|
sl@0
|
572 |
}
|
sl@0
|
573 |
}
|
sl@0
|
574 |
|
sl@0
|
575 |
//the call to AcquireBackgroundElementL() will remove any existing background element
|
sl@0
|
576 |
TBackgroundAttributes& backgroundAttributes = mustRegister ?
|
sl@0
|
577 |
AcquireBackgroundElementL() : *(set.FindBackgroundElement(*cliWin));
|
sl@0
|
578 |
MWsElement& element = *(backgroundAttributes.iElement);
|
sl@0
|
579 |
TInt err = KErrNone;
|
sl@0
|
580 |
if (mustRegister)
|
sl@0
|
581 |
{
|
sl@0
|
582 |
err = set.RegisterSurface(surfaceId);
|
sl@0
|
583 |
switch(err)
|
sl@0
|
584 |
{
|
sl@0
|
585 |
case KErrBadHandle:
|
sl@0
|
586 |
// Invalid surface IDs have to return KErrArgument
|
sl@0
|
587 |
err = KErrArgument;
|
sl@0
|
588 |
// drop through
|
sl@0
|
589 |
case KErrNoMemory:
|
sl@0
|
590 |
case KErrArgument:
|
sl@0
|
591 |
ReleaseBackgroundElement();
|
sl@0
|
592 |
User::Leave(err);
|
sl@0
|
593 |
case KErrNone:
|
sl@0
|
594 |
break;
|
sl@0
|
595 |
default:
|
sl@0
|
596 |
// No need to release layer here since session closure will do it
|
sl@0
|
597 |
// automatically when the client thread is panicked.
|
sl@0
|
598 |
OwnerPanic(EWservPanicInvalidSurface);
|
sl@0
|
599 |
}
|
sl@0
|
600 |
|
sl@0
|
601 |
err = element.ConnectSurface(surfaceId);
|
sl@0
|
602 |
if (err != KErrNone)
|
sl@0
|
603 |
{
|
sl@0
|
604 |
set.UnregisterSurface(surfaceId);
|
sl@0
|
605 |
ReleaseBackgroundElement(); //Releasing new empty element
|
sl@0
|
606 |
User::Leave(err);
|
sl@0
|
607 |
}
|
sl@0
|
608 |
|
sl@0
|
609 |
if (screen->DsaSurface() == surfaceId)
|
sl@0
|
610 |
{
|
sl@0
|
611 |
TUint32 flags;
|
sl@0
|
612 |
element.GetRenderStageFlags(flags);
|
sl@0
|
613 |
flags |= MWsElement::EElementIsDirectlyRenderedUserInterface;
|
sl@0
|
614 |
element.SetRenderStageFlags(flags);
|
sl@0
|
615 |
}
|
sl@0
|
616 |
}
|
sl@0
|
617 |
|
sl@0
|
618 |
SetHasElement(ETrue); //set element flag
|
sl@0
|
619 |
SetMayContainElementFlags();
|
sl@0
|
620 |
|
sl@0
|
621 |
err = CWindowElement::SetElement(element,aConfiguration,ETrue); //set viewport and orientation
|
sl@0
|
622 |
if (err == KErrArgument)
|
sl@0
|
623 |
{
|
sl@0
|
624 |
OwnerPanic(EWservPanicInvalidSurfaceConfiguration);
|
sl@0
|
625 |
}
|
sl@0
|
626 |
TRect srcRect;
|
sl@0
|
627 |
aConfiguration.GetViewport(srcRect);
|
sl@0
|
628 |
if (!srcRect.IsEmpty())
|
sl@0
|
629 |
backgroundAttributes.SetExplicitViewPort();
|
sl@0
|
630 |
element.GetSourceRectangle(srcRect);
|
sl@0
|
631 |
cliWin->SetOriginalSrcElementRect(srcRect);
|
sl@0
|
632 |
|
sl@0
|
633 |
//Set Extent
|
sl@0
|
634 |
TRect newExtent;
|
sl@0
|
635 |
aConfiguration.GetExtent(newExtent);
|
sl@0
|
636 |
SetElementExtentL(newExtent, backgroundAttributes);
|
sl@0
|
637 |
cliWin->SetOriginalDestElementRect(newExtent);
|
sl@0
|
638 |
|
sl@0
|
639 |
MWsWindowTreeObserver* windowTreeObserver = Screen()->WindowTreeObserver();
|
sl@0
|
640 |
if (windowTreeObserver && mustRegister)
|
sl@0
|
641 |
{
|
sl@0
|
642 |
windowTreeObserver->ElementAdded(*iWsWin, element);
|
sl@0
|
643 |
}
|
sl@0
|
644 |
|
sl@0
|
645 |
//If set, redraw
|
sl@0
|
646 |
if (aTriggerRedraw)
|
sl@0
|
647 |
{
|
sl@0
|
648 |
TRect newViewport;
|
sl@0
|
649 |
aConfiguration.GetViewport(newViewport);
|
sl@0
|
650 |
CFbsBitGc::TGraphicsOrientation orientation = aConfiguration.Orientation();
|
sl@0
|
651 |
MWsElement::TElementRotation newRotation = GcToElementRotation(orientation);
|
sl@0
|
652 |
TBool newFlip = aConfiguration.Flip();
|
sl@0
|
653 |
|
sl@0
|
654 |
//The following parameter guarantees that update will be scheduled.
|
sl@0
|
655 |
//This will trigger the composition.
|
sl@0
|
656 |
TBool alwaysScheduleUpdate = (oldSurfaceId != surfaceId) ||
|
sl@0
|
657 |
(oldExtent != newExtent) ||
|
sl@0
|
658 |
(oldViewport != newViewport) ||
|
sl@0
|
659 |
(oldRotation != newRotation)||
|
sl@0
|
660 |
(oldFlip != newFlip);
|
sl@0
|
661 |
|
sl@0
|
662 |
ElementRedraw(oldExtent,newExtent,alwaysScheduleUpdate);
|
sl@0
|
663 |
}
|
sl@0
|
664 |
}
|
sl@0
|
665 |
|
sl@0
|
666 |
/**
|
sl@0
|
667 |
Sets the EMayContainElement flag for parent window.
|
sl@0
|
668 |
Sets the flag for all ancestor windows.
|
sl@0
|
669 |
**/
|
sl@0
|
670 |
void CWsWindowRedraw::SetMayContainElementFlags()
|
sl@0
|
671 |
{
|
sl@0
|
672 |
CWsWindowBase* parent = CliWin()->BaseParent();
|
sl@0
|
673 |
TInt type = parent->WinType();
|
sl@0
|
674 |
while(type ==EWinTypeClient)
|
sl@0
|
675 |
{
|
sl@0
|
676 |
CWsClientWindow* win = static_cast<CWsClientWindow*>(parent);
|
sl@0
|
677 |
win->Redraw()->iStateFlags |= EMayContainElement;
|
sl@0
|
678 |
parent=parent->BaseParent();
|
sl@0
|
679 |
type = parent->WinType();
|
sl@0
|
680 |
}
|
sl@0
|
681 |
}
|
sl@0
|
682 |
|
sl@0
|
683 |
void CWsWindowRedraw::SetElementExtentL(TRect& aNewExtent, TBackgroundAttributes& aAttributes)
|
sl@0
|
684 |
{
|
sl@0
|
685 |
CWsClientWindow* cliWin = CliWin();
|
sl@0
|
686 |
MWsElement& element = *(aAttributes.iElement);
|
sl@0
|
687 |
if (aNewExtent.IsEmpty())
|
sl@0
|
688 |
{
|
sl@0
|
689 |
aNewExtent = cliWin->FullRect();
|
sl@0
|
690 |
aAttributes.SetExplicitExtent(EFalse);
|
sl@0
|
691 |
}
|
sl@0
|
692 |
else
|
sl@0
|
693 |
{
|
sl@0
|
694 |
TRect tempWindowPosition = cliWin->FullRect(); //get window absolute coordinates
|
sl@0
|
695 |
aNewExtent.Move(tempWindowPosition.iTl); //shift user defined extent to absolute coordinates
|
sl@0
|
696 |
aAttributes.SetExplicitExtent(ETrue);
|
sl@0
|
697 |
}
|
sl@0
|
698 |
element.SetDestinationRectangle(aNewExtent);
|
sl@0
|
699 |
}
|
sl@0
|
700 |
|
sl@0
|
701 |
void CWsWindowRedraw::ElementRedraw(const TRect& aOldExtent, const TRect& aNewExtent, TBool aAlwaysScheduleUpdate)
|
sl@0
|
702 |
{
|
sl@0
|
703 |
if (!aOldExtent.IsEmpty())
|
sl@0
|
704 |
{
|
sl@0
|
705 |
//If the previous extent was different
|
sl@0
|
706 |
if (aOldExtent != aNewExtent)
|
sl@0
|
707 |
{
|
sl@0
|
708 |
STACK_REGION tempRegion;
|
sl@0
|
709 |
tempRegion.AddRect(aOldExtent);
|
sl@0
|
710 |
tempRegion.AddRect(aNewExtent);
|
sl@0
|
711 |
|
sl@0
|
712 |
//Calculate the difference between
|
sl@0
|
713 |
TRect tempRect = aOldExtent;
|
sl@0
|
714 |
tempRect.Intersection(aNewExtent); //intersect both regions
|
sl@0
|
715 |
tempRegion.SubRect(tempRect); //cut unaltered region
|
sl@0
|
716 |
Screen()->ScheduleRegionUpdate(&tempRegion);
|
sl@0
|
717 |
|
sl@0
|
718 |
tempRegion.Close();
|
sl@0
|
719 |
}
|
sl@0
|
720 |
else
|
sl@0
|
721 |
{
|
sl@0
|
722 |
if(aAlwaysScheduleUpdate)
|
sl@0
|
723 |
{
|
sl@0
|
724 |
TTimeIntervalMicroSeconds interval(0);
|
sl@0
|
725 |
Screen()->ScheduleRender(interval);
|
sl@0
|
726 |
}
|
sl@0
|
727 |
}
|
sl@0
|
728 |
}
|
sl@0
|
729 |
else
|
sl@0
|
730 |
{
|
sl@0
|
731 |
TRegionFix<1> region(aNewExtent);
|
sl@0
|
732 |
Screen()->ScheduleRegionUpdate(®ion);
|
sl@0
|
733 |
}
|
sl@0
|
734 |
}
|
sl@0
|
735 |
|
sl@0
|
736 |
void CWsWindowRedraw::RemoveBackgroundSurface(TBool aTriggerRedraw)
|
sl@0
|
737 |
{
|
sl@0
|
738 |
if (HasElement())
|
sl@0
|
739 |
{
|
sl@0
|
740 |
TBackgroundAttributes* backgroundAttributes = CliWin()->Screen()->
|
sl@0
|
741 |
WindowElements().FindBackgroundElement(*CliWin());
|
sl@0
|
742 |
WS_ASSERT_DEBUG(backgroundAttributes,EWsPanicNoWindowElement);
|
sl@0
|
743 |
if (backgroundAttributes->iElement)
|
sl@0
|
744 |
{
|
sl@0
|
745 |
RemoveBackgroundElement(aTriggerRedraw);
|
sl@0
|
746 |
}
|
sl@0
|
747 |
}
|
sl@0
|
748 |
}
|
sl@0
|
749 |
|
sl@0
|
750 |
void CWsWindowRedraw::RemoveBackgroundElement(TBool aTriggerRedraw)
|
sl@0
|
751 |
{
|
sl@0
|
752 |
CWsClientWindow* cliWin = CliWin();
|
sl@0
|
753 |
CScreen* screen = cliWin->Screen();
|
sl@0
|
754 |
TRect tempRect;
|
sl@0
|
755 |
if (aTriggerRedraw)
|
sl@0
|
756 |
{
|
sl@0
|
757 |
TBackgroundAttributes* backgroundAttributes = screen->WindowElements().FindBackgroundElement(*CliWin());
|
sl@0
|
758 |
WS_ASSERT_DEBUG(backgroundAttributes,EWsPanicNoWindowElement);
|
sl@0
|
759 |
if (backgroundAttributes->ExplicitExtent())
|
sl@0
|
760 |
{
|
sl@0
|
761 |
backgroundAttributes->iElement->GetDestinationRectangle(tempRect);
|
sl@0
|
762 |
backgroundAttributes->SetExplicitExtent(EFalse);
|
sl@0
|
763 |
}
|
sl@0
|
764 |
else
|
sl@0
|
765 |
{
|
sl@0
|
766 |
tempRect = cliWin->FullRect();
|
sl@0
|
767 |
}
|
sl@0
|
768 |
}
|
sl@0
|
769 |
ReleaseBackgroundElement();
|
sl@0
|
770 |
if (aTriggerRedraw)
|
sl@0
|
771 |
{
|
sl@0
|
772 |
if (screen->ChangeTracking())
|
sl@0
|
773 |
{
|
sl@0
|
774 |
TTimeIntervalMicroSeconds interval(0);
|
sl@0
|
775 |
screen->ScheduleRender(interval);
|
sl@0
|
776 |
}
|
sl@0
|
777 |
else
|
sl@0
|
778 |
{
|
sl@0
|
779 |
TRegionFix<1> region(tempRect);
|
sl@0
|
780 |
screen->ScheduleRegionUpdate(®ion);
|
sl@0
|
781 |
}
|
sl@0
|
782 |
}
|
sl@0
|
783 |
}
|
sl@0
|
784 |
|
sl@0
|
785 |
void CWsWindowRedraw::GetBackgroundSurfaceL(TSurfaceConfiguration& aConfiguration)
|
sl@0
|
786 |
{
|
sl@0
|
787 |
if (aConfiguration.Size() < sizeof(TSurfaceConfiguration))
|
sl@0
|
788 |
{
|
sl@0
|
789 |
__ASSERT_COMPILE(sizeof(TSurfaceConfiguration2)==sizeof(TSurfaceConfiguration));
|
sl@0
|
790 |
if (aConfiguration.Size() != sizeof(TSurfaceConfiguration1))
|
sl@0
|
791 |
{
|
sl@0
|
792 |
OwnerPanic(EWservPanicInvalidSurfaceConfiguration);
|
sl@0
|
793 |
}
|
sl@0
|
794 |
}
|
sl@0
|
795 |
|
sl@0
|
796 |
CWsClientWindow* cliWin = CliWin();
|
sl@0
|
797 |
TBackgroundAttributes* backgroundAttributes = NULL;
|
sl@0
|
798 |
|
sl@0
|
799 |
if (HasElement())
|
sl@0
|
800 |
{
|
sl@0
|
801 |
backgroundAttributes = cliWin->Screen()->WindowElements().FindBackgroundElement(*cliWin);
|
sl@0
|
802 |
WS_ASSERT_DEBUG(backgroundAttributes,EWsPanicNoWindowElement);
|
sl@0
|
803 |
if (!backgroundAttributes->iElement)
|
sl@0
|
804 |
{
|
sl@0
|
805 |
User::Leave(KErrNotFound);
|
sl@0
|
806 |
}
|
sl@0
|
807 |
}
|
sl@0
|
808 |
else
|
sl@0
|
809 |
{
|
sl@0
|
810 |
User::Leave(KErrNotFound);
|
sl@0
|
811 |
}
|
sl@0
|
812 |
|
sl@0
|
813 |
MWsElement& element = *(backgroundAttributes->iElement);
|
sl@0
|
814 |
|
sl@0
|
815 |
TInt errCode=CWindowElementSet::GetConfiguration(aConfiguration,element);
|
sl@0
|
816 |
|
sl@0
|
817 |
// Get source rect
|
sl@0
|
818 |
if (errCode>=KErrNone)
|
sl@0
|
819 |
{
|
sl@0
|
820 |
if (!backgroundAttributes->ExplicitViewPort())
|
sl@0
|
821 |
{
|
sl@0
|
822 |
aConfiguration.SetViewport(TRect());
|
sl@0
|
823 |
}
|
sl@0
|
824 |
else
|
sl@0
|
825 |
{
|
sl@0
|
826 |
TRect tempExtent = cliWin->GetOriginalSrcElementRect();
|
sl@0
|
827 |
aConfiguration.SetViewport(tempExtent);
|
sl@0
|
828 |
}
|
sl@0
|
829 |
}
|
sl@0
|
830 |
|
sl@0
|
831 |
//Convert and copy extent
|
sl@0
|
832 |
if (errCode>=KErrNone)
|
sl@0
|
833 |
{
|
sl@0
|
834 |
if (!backgroundAttributes->ExplicitExtent())
|
sl@0
|
835 |
{
|
sl@0
|
836 |
aConfiguration.SetExtent(TRect());
|
sl@0
|
837 |
}
|
sl@0
|
838 |
else //translate to window coordinates
|
sl@0
|
839 |
{
|
sl@0
|
840 |
TRect tempExtent = cliWin->GetOriginalDestElementRect();
|
sl@0
|
841 |
tempExtent.Move(-cliWin->Origin());
|
sl@0
|
842 |
aConfiguration.SetExtent(tempExtent);
|
sl@0
|
843 |
}
|
sl@0
|
844 |
}
|
sl@0
|
845 |
}
|
sl@0
|
846 |
|
sl@0
|
847 |
void CWsWindowRedraw::ReleaseBackgroundElement()
|
sl@0
|
848 |
{
|
sl@0
|
849 |
if (HasElement())
|
sl@0
|
850 |
{
|
sl@0
|
851 |
CWsClientWindow* cliWin = CliWin();
|
sl@0
|
852 |
CScreen* screen = cliWin->Screen();
|
sl@0
|
853 |
screen->WindowElements().ReleaseBackgroundElement(*cliWin, ETrue);
|
sl@0
|
854 |
screen->ElementRemoved();
|
sl@0
|
855 |
}
|
sl@0
|
856 |
}
|
sl@0
|
857 |
|
sl@0
|
858 |
//
|
sl@0
|
859 |
// Blank window //
|
sl@0
|
860 |
//
|
sl@0
|
861 |
|
sl@0
|
862 |
CWsBlankWindow::CWsBlankWindow(CWsWindow *aWin) : CWsWindowRedraw(aWin), iColor(iWsWin->RootWindow()->DefaultBackgroundColor()), iNoColor(EFalse)
|
sl@0
|
863 |
{
|
sl@0
|
864 |
}
|
sl@0
|
865 |
|
sl@0
|
866 |
CWsBlankWindow::~CWsBlankWindow()
|
sl@0
|
867 |
{
|
sl@0
|
868 |
}
|
sl@0
|
869 |
|
sl@0
|
870 |
void CWsBlankWindow::ConstructL()
|
sl@0
|
871 |
{
|
sl@0
|
872 |
CWsWindowRedraw::ConstructL();
|
sl@0
|
873 |
if (Screen()->ChangeTracking())
|
sl@0
|
874 |
{
|
sl@0
|
875 |
STACK_REGION dirtyRegion;
|
sl@0
|
876 |
dirtyRegion.Copy(iWsWin->WindowArea());
|
sl@0
|
877 |
dirtyRegion.Offset(-iWsWin->Origin());
|
sl@0
|
878 |
iWsWin->AddDirtyWindowRegion(dirtyRegion);
|
sl@0
|
879 |
dirtyRegion.Close();
|
sl@0
|
880 |
}
|
sl@0
|
881 |
}
|
sl@0
|
882 |
|
sl@0
|
883 |
void CWsBlankWindow::SetColor(TRgb aColor)
|
sl@0
|
884 |
{
|
sl@0
|
885 |
iColor=aColor;
|
sl@0
|
886 |
iNoColor=EFalse;
|
sl@0
|
887 |
if (Screen()->ChangeTracking())
|
sl@0
|
888 |
{
|
sl@0
|
889 |
STACK_REGION dirtyRegion;
|
sl@0
|
890 |
dirtyRegion.Copy(iWsWin->WindowArea());
|
sl@0
|
891 |
dirtyRegion.Offset(-iWsWin->Origin());
|
sl@0
|
892 |
iWsWin->AddDirtyWindowRegion(dirtyRegion);
|
sl@0
|
893 |
dirtyRegion.Close();
|
sl@0
|
894 |
|
sl@0
|
895 |
if (iWsWin->IsActive() && iWsWin->IsVisible())
|
sl@0
|
896 |
{
|
sl@0
|
897 |
Screen()->ScheduleWindow(iWsWin);
|
sl@0
|
898 |
}
|
sl@0
|
899 |
}
|
sl@0
|
900 |
else
|
sl@0
|
901 |
{
|
sl@0
|
902 |
Screen()->AddRedrawRegion(iWsWin->VisibleRegion());
|
sl@0
|
903 |
}
|
sl@0
|
904 |
}
|
sl@0
|
905 |
|
sl@0
|
906 |
TBool CWsBlankWindow::CommandL(TInt aOpcode, TWsWinCmdUnion &aCmd)
|
sl@0
|
907 |
{
|
sl@0
|
908 |
switch(aOpcode)
|
sl@0
|
909 |
{
|
sl@0
|
910 |
case EWsWinOpSetBackgroundSurface:
|
sl@0
|
911 |
SetBackgroundSurfaceL(*aCmd.Surface);
|
sl@0
|
912 |
break;
|
sl@0
|
913 |
case EWsWinOpSetBackgroundSurfaceConfig:
|
sl@0
|
914 |
SetBackgroundSurfaceL(aCmd.SurfaceConfigurationAndTrigger->surfaceConfig, aCmd.SurfaceConfigurationAndTrigger->triggerRedraw, EFalse);
|
sl@0
|
915 |
break;
|
sl@0
|
916 |
case EWsWinOpRemoveBackgroundSurface:
|
sl@0
|
917 |
RemoveBackgroundSurface(*aCmd.Bool);
|
sl@0
|
918 |
break;
|
sl@0
|
919 |
case EWsWinOpGetBackgroundSurfaceConfig:
|
sl@0
|
920 |
{
|
sl@0
|
921 |
TSurfaceConfiguration tempConfiguration = *aCmd.SurfaceConfiguration;
|
sl@0
|
922 |
GetBackgroundSurfaceL(tempConfiguration);
|
sl@0
|
923 |
TInt tempSize = aCmd.SurfaceConfiguration->Size();
|
sl@0
|
924 |
if (sizeof(TSurfaceConfiguration)<tempSize)
|
sl@0
|
925 |
tempSize = sizeof(TSurfaceConfiguration);
|
sl@0
|
926 |
CWsClient::ReplyBuf(&tempConfiguration,tempSize);
|
sl@0
|
927 |
}
|
sl@0
|
928 |
break;
|
sl@0
|
929 |
case EWsWinOpSetColor:
|
sl@0
|
930 |
SetColor(*aCmd.rgb);
|
sl@0
|
931 |
break;
|
sl@0
|
932 |
case EWsWinOpSetNoBackgroundColor:
|
sl@0
|
933 |
SetBackgroundClear();
|
sl@0
|
934 |
break;
|
sl@0
|
935 |
default:
|
sl@0
|
936 |
return(EFalse);
|
sl@0
|
937 |
}
|
sl@0
|
938 |
return(ETrue);
|
sl@0
|
939 |
}
|
sl@0
|
940 |
|
sl@0
|
941 |
TRgb CWsBlankWindow::BackColor() const
|
sl@0
|
942 |
{
|
sl@0
|
943 |
return(iColor);
|
sl@0
|
944 |
}
|
sl@0
|
945 |
|
sl@0
|
946 |
TBool CWsBlankWindow::GetRedrawRect(TRect &) const
|
sl@0
|
947 |
{
|
sl@0
|
948 |
if (!iNoColor || iWsWin->iAnimList)
|
sl@0
|
949 |
iWsWin->Screen()->AddRedrawRegion(iWsWin->VisibleRegion());
|
sl@0
|
950 |
return(EFalse);
|
sl@0
|
951 |
}
|
sl@0
|
952 |
|
sl@0
|
953 |
TBool CWsBlankWindow::NeedsRedraw() const
|
sl@0
|
954 |
{
|
sl@0
|
955 |
return(EFalse);
|
sl@0
|
956 |
}
|
sl@0
|
957 |
|
sl@0
|
958 |
void CWsBlankWindow::DrawWindow()
|
sl@0
|
959 |
{
|
sl@0
|
960 |
if ((!iNoColor)||HasElement())
|
sl@0
|
961 |
{
|
sl@0
|
962 |
DrawBackgroundColor(*iRedrawRegion,!iNoColor);
|
sl@0
|
963 |
}
|
sl@0
|
964 |
}
|