sl@0
|
1 |
// Copyright (c) 2004-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 |
// Defines the screen class (was in scrdev.h)
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef __SCREEN_H__
|
sl@0
|
19 |
#define __SCREEN_H__
|
sl@0
|
20 |
|
sl@0
|
21 |
#include <e32std.h>
|
sl@0
|
22 |
#include <e32base.h>
|
sl@0
|
23 |
#include <w32std.h>
|
sl@0
|
24 |
#include "w32cmd.h"
|
sl@0
|
25 |
#include "wstypes.h"
|
sl@0
|
26 |
|
sl@0
|
27 |
#include <Graphics/WSGRAPHICDRAWERINTERFACE.H>
|
sl@0
|
28 |
|
sl@0
|
29 |
class CWsDirectScreenAccess;
|
sl@0
|
30 |
|
sl@0
|
31 |
class CWsOffScreenBitmap;
|
sl@0
|
32 |
class CWsWindowGroup;
|
sl@0
|
33 |
class CWsWindow;
|
sl@0
|
34 |
class CWsRootWindow;
|
sl@0
|
35 |
class CWsClientWindow;
|
sl@0
|
36 |
class CDebugBar;
|
sl@0
|
37 |
class CScreenRedraw;
|
sl@0
|
38 |
class CWsSpriteManager;
|
sl@0
|
39 |
|
sl@0
|
40 |
class CScreen : public CBase, public MWsScreen, public MWsScreenConfig, public MWsFrontBuffer
|
sl@0
|
41 |
{
|
sl@0
|
42 |
enum {EDefaultShadowX=2};
|
sl@0
|
43 |
enum {EDefaultShadowY=2};
|
sl@0
|
44 |
public:
|
sl@0
|
45 |
enum {EGetScanLineBufLen=0x100}; // Buffer of for returning result of GetScanLine
|
sl@0
|
46 |
enum {EMaxNumModes=EColorLast-2}; // Number of available devices in the GDI enum TDisplayMode
|
sl@0
|
47 |
enum TDisplayScreen
|
sl@0
|
48 |
{
|
sl@0
|
49 |
EBlankScreenOnRotation = 0x1,
|
sl@0
|
50 |
EAutoClear = 0x2,
|
sl@0
|
51 |
EBltOffScreenBitmap = 0x04, // Refrain from clearing window to default background color
|
sl@0
|
52 |
};
|
sl@0
|
53 |
/**
|
sl@0
|
54 |
The fallback map is an array of 32 bit integers sufficiently large to store a single bit for any
|
sl@0
|
55 |
possible orientation and size of the screen, with the pixel rows padded to the end of the int.
|
sl@0
|
56 |
Andy - This is only used by the screen redraw, so it should be in the screen redraw, not the screen.
|
sl@0
|
57 |
Also, it doesnt need its own region, since the root window has the correct region already.
|
sl@0
|
58 |
*/
|
sl@0
|
59 |
class CFallbackMap : public CBase
|
sl@0
|
60 |
{
|
sl@0
|
61 |
public:
|
sl@0
|
62 |
static CFallbackMap * NewL(CScreen* aScreen);
|
sl@0
|
63 |
~CFallbackMap();
|
sl@0
|
64 |
|
sl@0
|
65 |
void Prepare();
|
sl@0
|
66 |
TBool FillRegion(const TRegion& aRegion);
|
sl@0
|
67 |
TBool FillRect(const TRect& aRect);
|
sl@0
|
68 |
TInt Count() const;
|
sl@0
|
69 |
const TRect * Rect() const;
|
sl@0
|
70 |
const RRegion * Region() const;
|
sl@0
|
71 |
|
sl@0
|
72 |
private:
|
sl@0
|
73 |
CFallbackMap(CScreen* aScreen);
|
sl@0
|
74 |
void ConstructL();
|
sl@0
|
75 |
|
sl@0
|
76 |
public:
|
sl@0
|
77 |
CScreen* iScreen;
|
sl@0
|
78 |
RRegionBuf<1> iRegion;
|
sl@0
|
79 |
TInt iCount;
|
sl@0
|
80 |
TInt iMapSize; // size in padded TInts
|
sl@0
|
81 |
TInt * iMap;
|
sl@0
|
82 |
};
|
sl@0
|
83 |
public:
|
sl@0
|
84 |
CScreen();
|
sl@0
|
85 |
~CScreen();
|
sl@0
|
86 |
void ConstructL( const TRect& aDigitiserArea, TInt aScreenNumber );
|
sl@0
|
87 |
void AbortAllDirectDrawing(RDirectScreenAccess::TTerminationReasons aReason);
|
sl@0
|
88 |
void AddDirect(CWsDirectScreenAccess& aDirect);
|
sl@0
|
89 |
void RemoveDirect(CWsDirectScreenAccess& aDirect);
|
sl@0
|
90 |
void AbortDSAs(RDirectScreenAccess::TTerminationReasons aReason,TSglQue<CWsDirectScreenAccess>& aDirects);
|
sl@0
|
91 |
#if defined(_DEBUG)
|
sl@0
|
92 |
TBool IsDirectOnQueue(const CWsDirectScreenAccess* aDirect);
|
sl@0
|
93 |
#if defined(__WINS__)
|
sl@0
|
94 |
void UpdateOffScreenBitmap();
|
sl@0
|
95 |
#endif
|
sl@0
|
96 |
#endif
|
sl@0
|
97 |
|
sl@0
|
98 |
inline CWsWindowGroup* FocusWindowGroup();
|
sl@0
|
99 |
void KillForegroundSession();
|
sl@0
|
100 |
void ResetFocus(CWsWindowGroup *aClosingWindow);
|
sl@0
|
101 |
void SetShadowVector(const TPoint &aShadowShift);
|
sl@0
|
102 |
inline TPoint ShadowVector();
|
sl@0
|
103 |
inline TBool BlankScreenOnRotation();
|
sl@0
|
104 |
inline TBool AutoClear();
|
sl@0
|
105 |
void RemoveFromDefaultOwningList(CWsWindowGroup *aDestroyedGroup);
|
sl@0
|
106 |
void SetDefaultOwningWindow(CWsWindowGroup *aGroup);
|
sl@0
|
107 |
inline CWsWindowGroup *DefaultOwningWindowGroup();
|
sl@0
|
108 |
|
sl@0
|
109 |
void CheckDisplayMode(TBool aUpdateNow);
|
sl@0
|
110 |
CFbsScreenDevice *ScreenDevice();
|
sl@0
|
111 |
inline CWsRootWindow* RootWindow() const;
|
sl@0
|
112 |
inline TInt ScreenNumber() const;
|
sl@0
|
113 |
void Update();
|
sl@0
|
114 |
void Update(const TRegion &aRegion);
|
sl@0
|
115 |
inline TDisplayMode CurrentDisplayMode();
|
sl@0
|
116 |
inline TDisplayMode DefaultDisplayMode();
|
sl@0
|
117 |
inline TDisplayMode DefaultDisplayMode(const TInt aMode) const;
|
sl@0
|
118 |
TDisplayMode FirstDefaultDisplayMode() const;
|
sl@0
|
119 |
//
|
sl@0
|
120 |
inline CFbsBitGc *ScreenGdi();
|
sl@0
|
121 |
void MaxNumColors(TInt& aColors,TInt& aGrays);
|
sl@0
|
122 |
TInt ColorModesFlag();
|
sl@0
|
123 |
inline void GetFadingParams(TUint8& aBlackMap,TUint8& aWhiteMap) const;
|
sl@0
|
124 |
inline void SetFadingParams(TUint8 aBlackMap,TUint8 aWhiteMap);
|
sl@0
|
125 |
void GetScanLine(const TWsSdCmdGetScanLine *aGetScanLine);
|
sl@0
|
126 |
|
sl@0
|
127 |
TBool SetScreenModeEnforcement(TInt aMode);
|
sl@0
|
128 |
inline TInt ScreenSizeMode() const;
|
sl@0
|
129 |
void SetPointerCursorArea(TInt aMode,const TRect& aRect);
|
sl@0
|
130 |
inline TRect GetPointerCursorArea(TInt aMode) const;
|
sl@0
|
131 |
CFbsBitGc::TGraphicsOrientation Orientation();
|
sl@0
|
132 |
void CycleDisplaySize();
|
sl@0
|
133 |
void UpdateOrientation();
|
sl@0
|
134 |
void doSetScreenMode(TInt aMode);
|
sl@0
|
135 |
inline TSize CurrentScreenSize() const;
|
sl@0
|
136 |
TRect DrawableArea() const;
|
sl@0
|
137 |
void CycleOrientation();
|
sl@0
|
138 |
TClientPanic SetModeRotation(TInt aMode,CFbsBitGc::TGraphicsOrientation aRotation);
|
sl@0
|
139 |
void LoadScreenSizesL(TSize aScreenSize);
|
sl@0
|
140 |
void LoadScreenSizeProperties();
|
sl@0
|
141 |
void LoadScreenScale();
|
sl@0
|
142 |
void SetDigitiserAreas(const TSize& aScreenSize,const TRect& aDigitiserArea);
|
sl@0
|
143 |
inline TInt NumScreenSizeModes() const;
|
sl@0
|
144 |
inline const TSizeMode& ScreenSizeModeData() const;
|
sl@0
|
145 |
inline const TSizeMode& ScreenSizeModeData(TInt aMode) const;
|
sl@0
|
146 |
inline TPoint ScreenModeOrigin(TInt aMode);
|
sl@0
|
147 |
inline TPoint CurrentScreenModeOrigin();
|
sl@0
|
148 |
inline TSize CurrentScreenModeScale();
|
sl@0
|
149 |
inline TPoint CurrentScreenModeScaledOrigin();
|
sl@0
|
150 |
inline TPoint ScreenModeScaledOrigin(TInt aMode);
|
sl@0
|
151 |
inline TScreenModeEnforcement SizeEnforcementMode() const;
|
sl@0
|
152 |
void GetScreenSizeAndRotation(TPixelsTwipsAndRotation &aSar, TInt aScreenMode);
|
sl@0
|
153 |
void GetScreenSizeAndRotation(TPixelsAndRotation &aSar, TInt aScreenMode);
|
sl@0
|
154 |
inline TSize GetScreenScale(TInt aMode) const;
|
sl@0
|
155 |
inline void SetCurrentScreenModeAttributes(const TSizeMode &aModeData);
|
sl@0
|
156 |
inline TSize GetPhysicalScreenSize();
|
sl@0
|
157 |
inline void SetPhysicalScreenSize();
|
sl@0
|
158 |
inline TBool ShouldSwapWidthAndHeightOffScBitmap(TInt aOldRotation);
|
sl@0
|
159 |
inline TInt Modes();
|
sl@0
|
160 |
CFbsDevice * DrawDevice();
|
sl@0
|
161 |
CWsOffScreenBitmap* OffScreenBitmap();
|
sl@0
|
162 |
void FreeOffScreenBitmap();
|
sl@0
|
163 |
void UpdateGcs();
|
sl@0
|
164 |
inline void SetScalingFactor();
|
sl@0
|
165 |
void UpdateOffScreenBitmapGc(const TBool aSwapWidthAndHeight);
|
sl@0
|
166 |
TPoint PhysicalToLogical(TPoint aPhysicalPt);
|
sl@0
|
167 |
void IncContrast();
|
sl@0
|
168 |
void DecContrast();
|
sl@0
|
169 |
void IncBrightness();
|
sl@0
|
170 |
void DecBrightness();
|
sl@0
|
171 |
inline TBool IsValidScreenSizeMode(TInt aMode);
|
sl@0
|
172 |
TInt GetScreenSizeModeListL();
|
sl@0
|
173 |
void SetDisplayModeFromName(const TDesC& aModeName, TDisplayMode& aMode);
|
sl@0
|
174 |
CFbsDevice* GetFbsDevice();
|
sl@0
|
175 |
// called by CWsGc when it is implementing MWsGc
|
sl@0
|
176 |
const TTime& Now() const;
|
sl@0
|
177 |
void ScheduleAnimation(const TRect& aRect,const TTimeIntervalMicroSeconds& aFromNow,const TTimeIntervalMicroSeconds& aFreq,const TTimeIntervalMicroSeconds& aStop);
|
sl@0
|
178 |
// redraw scheduling code
|
sl@0
|
179 |
void AddRedrawRegion(const TRegion& aRegion, TBool aSchedule = ETrue, TRedrawDepth aDepth = ERedrawAll);
|
sl@0
|
180 |
void DoRedrawNow();
|
sl@0
|
181 |
void ScheduleRegionUpdate(const TRegion* aDefinitelyDirty);
|
sl@0
|
182 |
void EndClientBuffer();
|
sl@0
|
183 |
// implementing MWsScreen
|
sl@0
|
184 |
void OnAnimation();
|
sl@0
|
185 |
void Redraw();
|
sl@0
|
186 |
TBool RedrawInvalid(const TArray<TGraphicDrawerId>& aInvalid);
|
sl@0
|
187 |
inline TBool BackLightFlag();
|
sl@0
|
188 |
// implementing interface extension
|
sl@0
|
189 |
TAny* ResolveObjectInterface(TUint aTypeId);
|
sl@0
|
190 |
// implementing MWsScreenConfig interface
|
sl@0
|
191 |
TDisplayMode DisplayMode() const;
|
sl@0
|
192 |
TSize SizeInPixels() const;
|
sl@0
|
193 |
TSize ScreenModeSizeInPixels() const;
|
sl@0
|
194 |
TInt Stride() const;
|
sl@0
|
195 |
CFbsBitGc::TGraphicsOrientation Orientation() const;
|
sl@0
|
196 |
TInt SizeMode() const;
|
sl@0
|
197 |
TSize ScalingFactor() const;
|
sl@0
|
198 |
TPoint Origin() const;
|
sl@0
|
199 |
TPoint ScaledOrigin() const;
|
sl@0
|
200 |
// implementing MWsFrontBuffer
|
sl@0
|
201 |
const TAny* GetBits();
|
sl@0
|
202 |
CFbsBitGc* GetBitGc();
|
sl@0
|
203 |
CFbsBitGc* GetBitGcCurrent();
|
sl@0
|
204 |
TInt SetBitGc(CFbsBitGc* aBitGc);
|
sl@0
|
205 |
TInt SetBitGc(CFbsBitGc* aBitGc, TBool aInvalidateScreen);
|
sl@0
|
206 |
inline TBool IsOffScreenBitmap();
|
sl@0
|
207 |
inline TBool MaskingEnabled();
|
sl@0
|
208 |
inline TBool BltOffScreen();
|
sl@0
|
209 |
void RecalcHeights();
|
sl@0
|
210 |
void DiscardAllSchedules();
|
sl@0
|
211 |
inline CDebugBar * DebugBar();
|
sl@0
|
212 |
inline CFallbackMap * FallbackMap();
|
sl@0
|
213 |
inline CWsSpriteManager* SpriteManager();
|
sl@0
|
214 |
inline MWsFader* Fader();
|
sl@0
|
215 |
TBool IsUpdatePending();
|
sl@0
|
216 |
void DSARegionSyncStart( CWsDirectScreenAccess& aDSA );
|
sl@0
|
217 |
void DSARegionSyncOver( CWsDirectScreenAccess& aDSA );
|
sl@0
|
218 |
TBool HasVisibleDirectOnQueue();
|
sl@0
|
219 |
TBool IsDSAClientWindow( const CWsClientWindow* aWin ) const;
|
sl@0
|
220 |
void AcceptFadeRequest( CWsWindow* aWin, TBool aIsFaded, TBool aIsBehind, TBool aIncludeChildren = EFalse );
|
sl@0
|
221 |
|
sl@0
|
222 |
private:
|
sl@0
|
223 |
enum TSyncConsts
|
sl@0
|
224 |
{
|
sl@0
|
225 |
KDSAAbortingImmediateRespAwaitFrameMicrosec = 80000 // 0.08 sec
|
sl@0
|
226 |
};
|
sl@0
|
227 |
private:
|
sl@0
|
228 |
void ChangeDisplayModeForAllOffScreenBitmap(TBool aSwapWidthAndHeight=EFalse);
|
sl@0
|
229 |
void SetInitialScreenSizeMode();
|
sl@0
|
230 |
CWsWindowGroup* FindNewFocus(CWsRootWindow* aRootWindow);
|
sl@0
|
231 |
void CreateFallbackMapL();
|
sl@0
|
232 |
void CreateScreenDeviceL();
|
sl@0
|
233 |
TBool DoCreateScreenDevice(TDisplayMode aScreenMode);
|
sl@0
|
234 |
private:
|
sl@0
|
235 |
enum
|
sl@0
|
236 |
{
|
sl@0
|
237 |
eTimerCreated=0x1,
|
sl@0
|
238 |
};
|
sl@0
|
239 |
enum TDsaDrawState
|
sl@0
|
240 |
{
|
sl@0
|
241 |
EDsaDrawStateIdle,
|
sl@0
|
242 |
EDsaDrawStateDrawing
|
sl@0
|
243 |
};
|
sl@0
|
244 |
private:
|
sl@0
|
245 |
TSglQue<CWsDirectScreenAccess> iDirects;
|
sl@0
|
246 |
RTimer iTimer;
|
sl@0
|
247 |
TRequestStatus iTimerStatus;
|
sl@0
|
248 |
TUint iFlags;
|
sl@0
|
249 |
|
sl@0
|
250 |
CScreenRedraw* iRedraw;
|
sl@0
|
251 |
|
sl@0
|
252 |
CWsRootWindow* iRootWindow;
|
sl@0
|
253 |
CWsWindowGroup *iCurrentFocus;
|
sl@0
|
254 |
CWsWindowGroup *iDefaultOwningWindow;
|
sl@0
|
255 |
CWsOffScreenBitmap* iOffScreenBitmap;
|
sl@0
|
256 |
TPoint iShadowShift;
|
sl@0
|
257 |
|
sl@0
|
258 |
CFbsScreenDevice *iScreenDevice;
|
sl@0
|
259 |
CFbsBitGc *iScreenGdi;
|
sl@0
|
260 |
|
sl@0
|
261 |
// Size and roation members
|
sl@0
|
262 |
RPointerArray<TSizeMode> *iModes;
|
sl@0
|
263 |
TInt iScreenSizeMode;
|
sl@0
|
264 |
TScreenModeEnforcement iSizeEnforcementMode;
|
sl@0
|
265 |
TSize iPhysicalScreenSize;
|
sl@0
|
266 |
TInt iScreenNumber;
|
sl@0
|
267 |
TInt iMaxContrast;
|
sl@0
|
268 |
TInt iMaxBrightness;
|
sl@0
|
269 |
TInt iNumScreenSizeModes;
|
sl@0
|
270 |
TInt iNumSupportedScreenSizeModes;
|
sl@0
|
271 |
TBool iBackLightFlag;
|
sl@0
|
272 |
|
sl@0
|
273 |
// used by MWsFrontBuffer to redirect screen output
|
sl@0
|
274 |
CFbsBitGc* iRedirectGc;
|
sl@0
|
275 |
|
sl@0
|
276 |
TDsaDrawState iDsaDrawState;
|
sl@0
|
277 |
CDebugBar* iDebugBar;
|
sl@0
|
278 |
CFallbackMap* iFallbackMap;
|
sl@0
|
279 |
TUint8 iBlackMap;
|
sl@0
|
280 |
TUint8 iWhiteMap;
|
sl@0
|
281 |
CWsSpriteManager* iSpriteManager;
|
sl@0
|
282 |
MWsFader* iFader;
|
sl@0
|
283 |
};
|
sl@0
|
284 |
|
sl@0
|
285 |
|
sl@0
|
286 |
|
sl@0
|
287 |
//
|
sl@0
|
288 |
// inlines //
|
sl@0
|
289 |
//
|
sl@0
|
290 |
|
sl@0
|
291 |
//
|
sl@0
|
292 |
// CScreen
|
sl@0
|
293 |
//
|
sl@0
|
294 |
inline void CScreen::Update(const TRegion &aRegion)
|
sl@0
|
295 |
{iScreenDevice->Update(aRegion);}
|
sl@0
|
296 |
inline TPoint CScreen::ShadowVector()
|
sl@0
|
297 |
{return(iShadowShift);}
|
sl@0
|
298 |
inline CWsWindowGroup* CScreen::FocusWindowGroup()
|
sl@0
|
299 |
{return(iCurrentFocus);}
|
sl@0
|
300 |
inline TBool CScreen::BlankScreenOnRotation()
|
sl@0
|
301 |
{return(iFlags&EBlankScreenOnRotation);}
|
sl@0
|
302 |
inline TBool CScreen::AutoClear()
|
sl@0
|
303 |
{return(iFlags&EAutoClear);}
|
sl@0
|
304 |
inline CWsWindowGroup* CScreen::DefaultOwningWindowGroup()
|
sl@0
|
305 |
{return(iDefaultOwningWindow);}
|
sl@0
|
306 |
|
sl@0
|
307 |
inline CWsRootWindow* CScreen::RootWindow() const
|
sl@0
|
308 |
{return iRootWindow;}
|
sl@0
|
309 |
inline TInt CScreen::ScreenNumber() const
|
sl@0
|
310 |
{return iScreenNumber;}
|
sl@0
|
311 |
|
sl@0
|
312 |
inline CFbsBitGc *CScreen::ScreenGdi()
|
sl@0
|
313 |
{return(iScreenGdi);}
|
sl@0
|
314 |
inline TDisplayMode CScreen::CurrentDisplayMode()
|
sl@0
|
315 |
{return iScreenDevice->DisplayMode();}
|
sl@0
|
316 |
inline TDisplayMode CScreen::DefaultDisplayMode()
|
sl@0
|
317 |
{return iScreenDevice->DisplayMode();}
|
sl@0
|
318 |
//
|
sl@0
|
319 |
inline TInt CScreen::ScreenSizeMode() const
|
sl@0
|
320 |
{return(iScreenSizeMode);}
|
sl@0
|
321 |
inline TRect CScreen::GetPointerCursorArea(TInt aMode) const
|
sl@0
|
322 |
{return (*iModes)[aMode]->iPointerCursorArea;}
|
sl@0
|
323 |
inline TSize CScreen::CurrentScreenSize() const
|
sl@0
|
324 |
{return (*iModes)[iScreenSizeMode]->iScreenSize;}
|
sl@0
|
325 |
inline TInt CScreen::NumScreenSizeModes() const
|
sl@0
|
326 |
{return iNumScreenSizeModes;}
|
sl@0
|
327 |
inline const TSizeMode& CScreen::ScreenSizeModeData() const
|
sl@0
|
328 |
{return *(*iModes)[iScreenSizeMode];}
|
sl@0
|
329 |
inline const TSizeMode& CScreen::ScreenSizeModeData(TInt aMode) const
|
sl@0
|
330 |
{return *(*iModes)[aMode];}
|
sl@0
|
331 |
inline TPoint CScreen::ScreenModeOrigin(TInt aMode)
|
sl@0
|
332 |
{return (*iModes)[aMode]->iOrigin;}
|
sl@0
|
333 |
inline TPoint CScreen::CurrentScreenModeOrigin()
|
sl@0
|
334 |
{return (*iModes)[iScreenSizeMode]->iOrigin;}
|
sl@0
|
335 |
inline TSize CScreen::CurrentScreenModeScale()
|
sl@0
|
336 |
{return (*iModes)[iScreenSizeMode]->iScreenScale;}
|
sl@0
|
337 |
inline TPoint CScreen::CurrentScreenModeScaledOrigin()
|
sl@0
|
338 |
{return (*iModes)[iScreenSizeMode]->ScaledOrigin();}
|
sl@0
|
339 |
inline TPoint CScreen::ScreenModeScaledOrigin(TInt aMode)
|
sl@0
|
340 |
{return (*iModes)[aMode]->ScaledOrigin();}
|
sl@0
|
341 |
inline TSize CScreen::GetScreenScale(TInt aMode) const
|
sl@0
|
342 |
{return (*iModes)[aMode]->iScreenScale;}
|
sl@0
|
343 |
inline TDisplayMode CScreen::DefaultDisplayMode(const TInt aMode) const
|
sl@0
|
344 |
{return (*iModes)[aMode]->iDefaultDisplayMode;}
|
sl@0
|
345 |
inline TSize CScreen::GetPhysicalScreenSize()
|
sl@0
|
346 |
{return iPhysicalScreenSize;}
|
sl@0
|
347 |
inline void CScreen::SetScalingFactor()
|
sl@0
|
348 |
{iScreenDevice->SetScalingFactor((*iModes)[iScreenSizeMode]->iOrigin,(*iModes)[iScreenSizeMode]->iScreenScale.iWidth,(*iModes)[iScreenSizeMode]->iScreenScale.iHeight,1,1);}
|
sl@0
|
349 |
inline void CScreen::SetCurrentScreenModeAttributes(const TSizeMode &aModeData)
|
sl@0
|
350 |
{*(*iModes)[iScreenSizeMode]=aModeData;}
|
sl@0
|
351 |
inline void CScreen::SetPhysicalScreenSize()
|
sl@0
|
352 |
{TInt temp=iPhysicalScreenSize.iWidth;iPhysicalScreenSize.iWidth=iPhysicalScreenSize.iHeight;iPhysicalScreenSize.iHeight=temp;}
|
sl@0
|
353 |
inline TScreenModeEnforcement CScreen::SizeEnforcementMode() const
|
sl@0
|
354 |
{return iSizeEnforcementMode;}
|
sl@0
|
355 |
inline TBool CScreen::IsValidScreenSizeMode(TInt aMode)
|
sl@0
|
356 |
{return (aMode>=0 && aMode<iModes->Count() && (*iModes)[aMode]!=NULL);}
|
sl@0
|
357 |
inline TBool CScreen::BackLightFlag()
|
sl@0
|
358 |
{return iBackLightFlag;}
|
sl@0
|
359 |
inline TBool CScreen::IsOffScreenBitmap()
|
sl@0
|
360 |
{return iOffScreenBitmap!=NULL;}
|
sl@0
|
361 |
|
sl@0
|
362 |
inline CDebugBar * CScreen::DebugBar()
|
sl@0
|
363 |
{return iDebugBar;}
|
sl@0
|
364 |
inline CScreen::CFallbackMap * CScreen::FallbackMap()
|
sl@0
|
365 |
{return iFallbackMap;}
|
sl@0
|
366 |
|
sl@0
|
367 |
inline void CScreen::GetFadingParams(TUint8& aBlackMap,TUint8& aWhiteMap) const
|
sl@0
|
368 |
{aBlackMap=iBlackMap;aWhiteMap=iWhiteMap;}
|
sl@0
|
369 |
inline void CScreen::SetFadingParams(TUint8 aBlackMap,TUint8 aWhiteMap)
|
sl@0
|
370 |
{iBlackMap=aBlackMap;iWhiteMap=aWhiteMap;}
|
sl@0
|
371 |
inline CWsSpriteManager* CScreen::SpriteManager()
|
sl@0
|
372 |
{return iSpriteManager;}
|
sl@0
|
373 |
inline MWsFader* CScreen::Fader()
|
sl@0
|
374 |
{return iFader;}
|
sl@0
|
375 |
inline TBool CScreen::BltOffScreen()
|
sl@0
|
376 |
{return iFlags&EBltOffScreenBitmap;}
|
sl@0
|
377 |
#endif
|