sl@0
|
1 |
// Copyright (c) 2004-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 |
// 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 <graphics/surface.h>
|
sl@0
|
24 |
#include <hal_data.h>
|
sl@0
|
25 |
#include <graphics/wsscene.h>
|
sl@0
|
26 |
#include <graphics/wsdisplaypolicy.h>
|
sl@0
|
27 |
|
sl@0
|
28 |
#include "W32STD.H"
|
sl@0
|
29 |
#include "w32cmd.h"
|
sl@0
|
30 |
#include "wstypes.h"
|
sl@0
|
31 |
#include <graphics/WSGRAPHICDRAWERINTERFACE.H>
|
sl@0
|
32 |
#include "panics.h"
|
sl@0
|
33 |
|
sl@0
|
34 |
#include "wsdisplaychangeao.h"
|
sl@0
|
35 |
|
sl@0
|
36 |
|
sl@0
|
37 |
class CWsDirectScreenAccess;
|
sl@0
|
38 |
|
sl@0
|
39 |
class CWsWindowGroup;
|
sl@0
|
40 |
class CWsWindow;
|
sl@0
|
41 |
class CWsRootWindow;
|
sl@0
|
42 |
class CWsClientWindow;
|
sl@0
|
43 |
class CDebugBar;
|
sl@0
|
44 |
class CScreenRedraw;
|
sl@0
|
45 |
class CWsSpriteManager;
|
sl@0
|
46 |
class CWindowElementSet;
|
sl@0
|
47 |
class CActiveComposer;
|
sl@0
|
48 |
class CRegisteredSurfaceMap;
|
sl@0
|
49 |
class MWsScene;
|
sl@0
|
50 |
class MWsElement;
|
sl@0
|
51 |
class MWsScreenDevice;
|
sl@0
|
52 |
class MWsDisplayMapping;
|
sl@0
|
53 |
class MWsDisplayControl;
|
sl@0
|
54 |
class MWsTextCursor;
|
sl@0
|
55 |
class CGraphicsDeviceMap;
|
sl@0
|
56 |
class TDisplayConfiguration;
|
sl@0
|
57 |
#if defined(__WINS__) && defined(_DEBUG)
|
sl@0
|
58 |
class CDebugOsbWin;
|
sl@0
|
59 |
#endif
|
sl@0
|
60 |
|
sl@0
|
61 |
enum TAnimType
|
sl@0
|
62 |
{
|
sl@0
|
63 |
EWindowAnim = 0x01,
|
sl@0
|
64 |
ESpriteAnim = 0x02,
|
sl@0
|
65 |
ETextCursor = 0x04,
|
sl@0
|
66 |
EWindowSprite = 0x08,
|
sl@0
|
67 |
EFloatingSprite = 0x10,
|
sl@0
|
68 |
EFloatingSpriteAnim = 0x20,
|
sl@0
|
69 |
ECrpAnim = 0x40,
|
sl@0
|
70 |
};
|
sl@0
|
71 |
|
sl@0
|
72 |
_LIT(KWSERVIniFileVarChangeTracking, "CHANGETRACKING");
|
sl@0
|
73 |
|
sl@0
|
74 |
class CScreen : public CBase, public MWsScreen, public MWsScreenConfigList, public MWsScreenConfig, public MWsWindowTree
|
sl@0
|
75 |
{
|
sl@0
|
76 |
public:
|
sl@0
|
77 |
enum {EGetScanLineBufLen=0x100}; // Buffer of for returning result of GetScanLine
|
sl@0
|
78 |
enum TDisplayScreen
|
sl@0
|
79 |
{
|
sl@0
|
80 |
EBlankScreenOnRotation = 0x1,
|
sl@0
|
81 |
EAutoClear = 0x2,
|
sl@0
|
82 |
EHasDynamicSizeModes = 0x04,
|
sl@0
|
83 |
EChangeTracking = 0x8,
|
sl@0
|
84 |
};
|
sl@0
|
85 |
|
sl@0
|
86 |
/**
|
sl@0
|
87 |
The fallback map is an array of 32 bit integers sufficiently large to store a single bit for any
|
sl@0
|
88 |
possible orientation and size of the screen, with the pixel rows padded to the end of the int.
|
sl@0
|
89 |
*/
|
sl@0
|
90 |
class CFallbackMap : public CBase
|
sl@0
|
91 |
{
|
sl@0
|
92 |
public:
|
sl@0
|
93 |
static CFallbackMap * NewL(CScreen* aScreen);
|
sl@0
|
94 |
~CFallbackMap();
|
sl@0
|
95 |
|
sl@0
|
96 |
void Prepare();
|
sl@0
|
97 |
TBool FillRegion(const TRegion& aRegion);
|
sl@0
|
98 |
TBool FillRect(const TRect& aRect);
|
sl@0
|
99 |
TInt Count() const;
|
sl@0
|
100 |
const TRect * Rect() const;
|
sl@0
|
101 |
const RRegion * Region() const;
|
sl@0
|
102 |
TInt Resize(const TSize& aSize);
|
sl@0
|
103 |
|
sl@0
|
104 |
private:
|
sl@0
|
105 |
CFallbackMap(CScreen* aScreen);
|
sl@0
|
106 |
void ConstructL();
|
sl@0
|
107 |
|
sl@0
|
108 |
public:
|
sl@0
|
109 |
CScreen* iScreen;
|
sl@0
|
110 |
RRegionBuf<1> iRegion;
|
sl@0
|
111 |
TInt iCount;
|
sl@0
|
112 |
TInt iMapSize; // size in padded TInts
|
sl@0
|
113 |
TInt * iMap;
|
sl@0
|
114 |
};
|
sl@0
|
115 |
public:
|
sl@0
|
116 |
CScreen();
|
sl@0
|
117 |
~CScreen();
|
sl@0
|
118 |
void ConstructL( const TRect& aDigitiserArea, TInt aScreenNumber);
|
sl@0
|
119 |
void AbortAllDirectDrawing(RDirectScreenAccess::TTerminationReasons aReason);
|
sl@0
|
120 |
void AddDirect(CWsDirectScreenAccess& aDirect);
|
sl@0
|
121 |
void RemoveDirect(CWsDirectScreenAccess& aDirect);
|
sl@0
|
122 |
void AbortDSAs(RDirectScreenAccess::TTerminationReasons aReason,TSglQue<CWsDirectScreenAccess>& aDirects);
|
sl@0
|
123 |
void ReleaseDsaScreenDevice();
|
sl@0
|
124 |
void AcquireDsaScreenDeviceL();
|
sl@0
|
125 |
void CreateDsaScreenDeviceIfSupportedL(TDisplayMode aScreenMode);
|
sl@0
|
126 |
TBool DoCreateDsaScreenDevice(TDisplayMode aScreenMode);
|
sl@0
|
127 |
#if defined(_DEBUG)
|
sl@0
|
128 |
TBool IsDirectOnQueue(const CWsDirectScreenAccess* aDirect);
|
sl@0
|
129 |
#endif
|
sl@0
|
130 |
|
sl@0
|
131 |
inline CWsWindowGroup* FocusWindowGroup();
|
sl@0
|
132 |
void KillForegroundSession();
|
sl@0
|
133 |
void ResetFocus(CWsWindowGroup *aClosingWindow);
|
sl@0
|
134 |
inline TBool BlankScreenOnRotation();
|
sl@0
|
135 |
inline TBool AutoClear();
|
sl@0
|
136 |
void RemoveFromDefaultOwningList(CWsWindowGroup *aDestroyedGroup);
|
sl@0
|
137 |
void SetDefaultOwningWindow(CWsWindowGroup *aGroup);
|
sl@0
|
138 |
inline CWsWindowGroup *DefaultOwningWindowGroup();
|
sl@0
|
139 |
const MWsScreenDevice& ScreenDevice() const;
|
sl@0
|
140 |
const CGraphicsDeviceMap& DeviceMap() const;
|
sl@0
|
141 |
inline const TSurfaceId& DsaSurface() const;
|
sl@0
|
142 |
inline CWsRootWindow* RootWindow() const;
|
sl@0
|
143 |
inline TInt ScreenNumber() const;
|
sl@0
|
144 |
void UpdateDsa();
|
sl@0
|
145 |
inline TDisplayMode DefaultDisplayMode(const TInt aMode) const;
|
sl@0
|
146 |
TDisplayMode FirstDefaultDisplayMode() const;
|
sl@0
|
147 |
void MaxNumColors(TInt& aColors,TInt& aGrays);
|
sl@0
|
148 |
TInt ColorModesFlag();
|
sl@0
|
149 |
inline void GetFadingParams(TUint8& aBlackMap,TUint8& aWhiteMap) const;
|
sl@0
|
150 |
inline void SetFadingParams(TUint8 aBlackMap,TUint8 aWhiteMap);
|
sl@0
|
151 |
void GetScanLine(const TWsSdCmdGetScanLine *aGetScanLine);
|
sl@0
|
152 |
|
sl@0
|
153 |
TBool SetScreenModeEnforcement(TInt aMode);
|
sl@0
|
154 |
inline TInt ScreenSizeMode() const;
|
sl@0
|
155 |
void SetPointerCursorArea(TInt aMode,const TRect& aRect);
|
sl@0
|
156 |
inline TRect GetPointerCursorArea(TInt aMode) const;
|
sl@0
|
157 |
CFbsBitGc::TGraphicsOrientation Orientation() const;
|
sl@0
|
158 |
void CycleDisplaySize();
|
sl@0
|
159 |
TBool UpdateOrientation(MWsScene::TSceneRotation* aOldRotation = NULL);
|
sl@0
|
160 |
void doSetScreenMode(TInt aMode,TBool aInsideStartup=EFalse);
|
sl@0
|
161 |
inline TSize CurrentScreenSize() const;
|
sl@0
|
162 |
TRect DrawableArea() const;
|
sl@0
|
163 |
void CycleOrientation();
|
sl@0
|
164 |
TClientPanic SetModeRotation(TInt aMode,CFbsBitGc::TGraphicsOrientation aRotation);
|
sl@0
|
165 |
void LoadScreenSizesL(TSize aScreenSize);
|
sl@0
|
166 |
void LoadScreenSizeProperties(TDisplayMode aDefaultDisplayMode);
|
sl@0
|
167 |
void SetDigitiserAreas(const TSize& aUiSize);
|
sl@0
|
168 |
inline TInt NumScreenSizeModes() const;
|
sl@0
|
169 |
inline const TSizeMode& ScreenSizeModeData() const;
|
sl@0
|
170 |
inline const TSizeMode& ScreenSizeModeData(TInt aMode) const;
|
sl@0
|
171 |
inline TScreenModeEnforcement SizeEnforcementMode() const;
|
sl@0
|
172 |
void GetScreenSizeAndRotation(TPixelsTwipsAndRotation &aSar, TInt aScreenMode);
|
sl@0
|
173 |
void GetScreenSizeAndRotation(TPixelsAndRotation &aSar, TInt aScreenMode);
|
sl@0
|
174 |
void SetCurrentScreenModeAttributes(const TSizeMode &aModeData);
|
sl@0
|
175 |
TPoint PhysicalToLogical(TPoint aPhysicalPt);
|
sl@0
|
176 |
void IncContrast();
|
sl@0
|
177 |
void DecContrast();
|
sl@0
|
178 |
void IncBrightness();
|
sl@0
|
179 |
void DecBrightness();
|
sl@0
|
180 |
inline TBool IsValidScreenSizeMode(TInt aMode) const;
|
sl@0
|
181 |
TInt GetScreenSizeModeListL();
|
sl@0
|
182 |
// called by CWsGc when it is implementing MWsGc
|
sl@0
|
183 |
const TTime& Now() const;
|
sl@0
|
184 |
void ScheduleAnimation(TAnimType aType, const TRect& aRect,const TTimeIntervalMicroSeconds& aFromNow,const TTimeIntervalMicroSeconds& aFreq,const TTimeIntervalMicroSeconds& aStop, CWsWindow* aWindow);
|
sl@0
|
185 |
TBool IsScheduled(TAnimType aType, const TRect& aRect, CWsWindow* aWindow) const;
|
sl@0
|
186 |
// redraw scheduling code
|
sl@0
|
187 |
void AddRedrawRegion(const TRegion& aRegion, TBool aSchedule = ETrue, TRedrawDepth aDepth = ERedrawAll);
|
sl@0
|
188 |
void ScheduleRender(const TTimeIntervalMicroSeconds& aFromNow);
|
sl@0
|
189 |
void DoRedrawNow();
|
sl@0
|
190 |
void RedrawNowIfPending();
|
sl@0
|
191 |
void ScheduleRegionUpdate(const TRegion* aDefinitelyDirty);
|
sl@0
|
192 |
// implementing MWsScreen
|
sl@0
|
193 |
void OnAnimation(TRequestStatus* aFinished);
|
sl@0
|
194 |
void Redraw();
|
sl@0
|
195 |
TBool RedrawInvalid(const TArray<TGraphicDrawerId>& aInvalid);
|
sl@0
|
196 |
inline TBool BackLightFlag();
|
sl@0
|
197 |
// implementing interface extension
|
sl@0
|
198 |
TAny* ResolveObjectInterface(TUint aTypeId);
|
sl@0
|
199 |
|
sl@0
|
200 |
// implementing MWsScreenConfig... this might be better as RS interface, but half methods are in here!
|
sl@0
|
201 |
TSize ScreenModeSizeInPixels() const;
|
sl@0
|
202 |
TInt Stride() const;
|
sl@0
|
203 |
TInt SizeMode() const;
|
sl@0
|
204 |
TSize ScalingFactor() const;
|
sl@0
|
205 |
TPoint Origin() const;
|
sl@0
|
206 |
TPoint ScaledOrigin() const;
|
sl@0
|
207 |
|
sl@0
|
208 |
// implementing MWsScreenConfigList
|
sl@0
|
209 |
TInt GetScreenSizeModeList(RArray<TInt>&aList) const;
|
sl@0
|
210 |
TDisplayMode DisplayModeL(TInt aIndex) const;
|
sl@0
|
211 |
TSize ScreenModeSizeInPixelsL(TInt aIndex) const;
|
sl@0
|
212 |
/** Get screen size in twips for current screen size mode as defined in wsini */
|
sl@0
|
213 |
TSize ScreenModeSizeInTwipsL(TInt aIndex) const;
|
sl@0
|
214 |
CFbsBitGc::TGraphicsOrientation OrientationL(TInt aIndex) const;
|
sl@0
|
215 |
TInt AvailableOrientationsL(TInt aIndex) const;
|
sl@0
|
216 |
TSize ScalingFactorL(TInt aIndex) const;
|
sl@0
|
217 |
TPoint OriginL(TInt aIndex) const;
|
sl@0
|
218 |
TPoint ScaledOriginL(TInt aIndex) const;
|
sl@0
|
219 |
TInt ModeFlagsL(TInt aIndex) const;
|
sl@0
|
220 |
|
sl@0
|
221 |
//implementing MWsWindowTree
|
sl@0
|
222 |
void SendTree() const;
|
sl@0
|
223 |
|
sl@0
|
224 |
// other public methods
|
sl@0
|
225 |
|
sl@0
|
226 |
TDisplayMode DisplayMode() const;
|
sl@0
|
227 |
TSize SizeInPixels() const;
|
sl@0
|
228 |
TSize SizeInTwips() const;
|
sl@0
|
229 |
TSize DSASizeInPixels() const;
|
sl@0
|
230 |
inline CWindowElementSet& WindowElements() const;
|
sl@0
|
231 |
inline MWsElement& UiElement() const;
|
sl@0
|
232 |
void ElementAdded();
|
sl@0
|
233 |
void ElementRemoved();
|
sl@0
|
234 |
//check if the current display mode has alpha
|
sl@0
|
235 |
inline TBool HasAlpha() const;
|
sl@0
|
236 |
//list of session and surface id
|
sl@0
|
237 |
CRegisteredSurfaceMap* SurfaceMap();
|
sl@0
|
238 |
|
sl@0
|
239 |
void DiscardAllSchedules();
|
sl@0
|
240 |
inline CDebugBar * DebugBar();
|
sl@0
|
241 |
inline CFallbackMap * FallbackMap();
|
sl@0
|
242 |
inline CWsSpriteManager* SpriteManager() const;
|
sl@0
|
243 |
TBool IsQuickFadeScheduled( CWsWindow* aWin ) const;
|
sl@0
|
244 |
void RemoveFromQuickFadeList( CWsWindow* aWin );
|
sl@0
|
245 |
void AcceptFadeRequest( CWsWindow* aWin, TBool aFadeOn );
|
sl@0
|
246 |
TBool HasVisibleDirectOnQueue();
|
sl@0
|
247 |
TBool IsDSAClientWindow( const CWsClientWindow* aWin ) const;
|
sl@0
|
248 |
MWsTextCursor* RenderStageTextCursor() const;
|
sl@0
|
249 |
void ClearDsaSurface(const TRect& area, const TRgb& color);
|
sl@0
|
250 |
void PositionUiElements(const TRect& aExtent, const TRect& aViewport);
|
sl@0
|
251 |
TInt SetConfiguration(const TDisplayConfiguration& aConfig);
|
sl@0
|
252 |
TInt UpdateConfiguration(const TDisplayConfiguration& aConfig);
|
sl@0
|
253 |
void UpdateDynamicScreenModes();
|
sl@0
|
254 |
void RecalculateModeTwips(const TDisplayConfiguration* aConfig = NULL);
|
sl@0
|
255 |
inline void IncreaseDisplaySpinner();
|
sl@0
|
256 |
inline void IncreaseConfigSpinner();
|
sl@0
|
257 |
inline TInt DisplaySpinner();
|
sl@0
|
258 |
inline TInt ConfigSpinner();
|
sl@0
|
259 |
TInt AddNotificationClient(CWsClient *aClient);
|
sl@0
|
260 |
void RemoveNotificationClient(CWsClient *aClient);
|
sl@0
|
261 |
TInt FindNotificationClient (CWsClient *aClient);
|
sl@0
|
262 |
TInt GetNotificationClients(RPointerArray<CWsClient>& aClientsArray);
|
sl@0
|
263 |
inline MWsDisplayPolicy* DisplayPolicy();
|
sl@0
|
264 |
inline MWsDisplayMapping* DisplayMapping();
|
sl@0
|
265 |
|
sl@0
|
266 |
//CR1577
|
sl@0
|
267 |
inline TBool ChangeTracking() const;
|
sl@0
|
268 |
inline MWsWindowTreeObserver* WindowTreeObserver() const;
|
sl@0
|
269 |
inline MWsDrawAnnotationObserver* DrawAnnotationObserver() const;
|
sl@0
|
270 |
inline MWsWindowVisibilityNotifier* WindowVisibilityNotifier() const;
|
sl@0
|
271 |
void ScheduleWindow(CWsWindow* aWindow);
|
sl@0
|
272 |
void RemoveFromScheduledList(CWsWindow* aWindow);
|
sl@0
|
273 |
void RemoveFromTimedDrawList(CWsWindow* aWindow);
|
sl@0
|
274 |
void SetupVisibleRegionTracking(CWsWindow& aWindow, TBool aRegister) const;
|
sl@0
|
275 |
|
sl@0
|
276 |
TBool IsAnimating() const;
|
sl@0
|
277 |
|
sl@0
|
278 |
private:
|
sl@0
|
279 |
class TInternalSizeMode: public TSizeMode
|
sl@0
|
280 |
{
|
sl@0
|
281 |
public:
|
sl@0
|
282 |
inline TInternalSizeMode(){}
|
sl@0
|
283 |
inline TInternalSizeMode(TSize& aSize)
|
sl@0
|
284 |
: TSizeMode(aSize), iFlags(0)
|
sl@0
|
285 |
{ }
|
sl@0
|
286 |
TInt iFlags;
|
sl@0
|
287 |
};
|
sl@0
|
288 |
enum TSyncConsts
|
sl@0
|
289 |
{
|
sl@0
|
290 |
KDSAAbortingImmediateRespAwaitFrameMicrosec = 80000 // 0.08 sec
|
sl@0
|
291 |
};
|
sl@0
|
292 |
void SetInitialScreenSizeModeAndRotation();
|
sl@0
|
293 |
CWsWindowGroup* FindNewFocus(CWsRootWindow* aRootWindow);
|
sl@0
|
294 |
void UpdateCompositionMode();
|
sl@0
|
295 |
void InitializeSceneL();
|
sl@0
|
296 |
void InitializeUiElementsL();
|
sl@0
|
297 |
TInt InitializeDsaSurface();
|
sl@0
|
298 |
void LoadScreenRotationProperties(TInternalSizeMode& aMode, const TInt aModeIndex);
|
sl@0
|
299 |
void LoadScreenTwipsProperties(TInternalSizeMode& aMode, const TInt aModeIndex);
|
sl@0
|
300 |
void CreateFallbackMapL();
|
sl@0
|
301 |
MWsElement* CreateUiElementL(const TRect& aExtent);
|
sl@0
|
302 |
const TInternalSizeMode* ModePtrL(TInt aIndex) const;
|
sl@0
|
303 |
void ApplyRemainingWsiniSettingsL();
|
sl@0
|
304 |
private:
|
sl@0
|
305 |
enum
|
sl@0
|
306 |
{
|
sl@0
|
307 |
eTimerCreated=0x1,
|
sl@0
|
308 |
};
|
sl@0
|
309 |
enum TDsaDrawState
|
sl@0
|
310 |
{
|
sl@0
|
311 |
EDsaDrawStateIdle,
|
sl@0
|
312 |
EDsaDrawStateDrawing
|
sl@0
|
313 |
};
|
sl@0
|
314 |
private:
|
sl@0
|
315 |
TSglQue<CWsDirectScreenAccess> iDirects;
|
sl@0
|
316 |
RTimer iTimer;
|
sl@0
|
317 |
TRequestStatus iTimerStatus;
|
sl@0
|
318 |
TUint iFlags;
|
sl@0
|
319 |
|
sl@0
|
320 |
CScreenRedraw* iRedraw;
|
sl@0
|
321 |
|
sl@0
|
322 |
CWsRootWindow* iRootWindow;
|
sl@0
|
323 |
CWsWindowGroup *iCurrentFocus;
|
sl@0
|
324 |
CWsWindowGroup *iDefaultOwningWindow;
|
sl@0
|
325 |
|
sl@0
|
326 |
MWsScreenDevice* iScreenDevice;
|
sl@0
|
327 |
CFbsScreenDevice* iDsaDevice;
|
sl@0
|
328 |
CFbsBitGc* iDsaGc;
|
sl@0
|
329 |
CGraphicsDeviceMap* iDeviceMap;
|
sl@0
|
330 |
// Size and rotation members
|
sl@0
|
331 |
RPointerArray<TInternalSizeMode> *iModes;
|
sl@0
|
332 |
TInt iScreenSizeMode;
|
sl@0
|
333 |
TScreenModeEnforcement iSizeEnforcementMode;
|
sl@0
|
334 |
TInt iScreenNumber;
|
sl@0
|
335 |
TInt iMaxContrast;
|
sl@0
|
336 |
TInt iMaxBrightness;
|
sl@0
|
337 |
TInt iNumScreenSizeModes;
|
sl@0
|
338 |
TInt iNumSupportedScreenSizeModes;
|
sl@0
|
339 |
TInt iNumberDrawingDsa;
|
sl@0
|
340 |
TBool iBackLightFlag;
|
sl@0
|
341 |
|
sl@0
|
342 |
TDsaDrawState iDsaDrawState;
|
sl@0
|
343 |
|
sl@0
|
344 |
MWsDisplayMapping* iDisplayMapping;
|
sl@0
|
345 |
MWsDisplayControl* iDisplayControl;
|
sl@0
|
346 |
MWsDisplayPolicy* iDisplayPolicy;
|
sl@0
|
347 |
MWsScene* iScene;
|
sl@0
|
348 |
CWindowElementSet* iWindowElementSet;
|
sl@0
|
349 |
MWsElement* iUiElement;
|
sl@0
|
350 |
TSurfaceId iDsaSurface;
|
sl@0
|
351 |
CRegisteredSurfaceMap* iSurfaceMap;
|
sl@0
|
352 |
|
sl@0
|
353 |
CDebugBar* iDebugBar;
|
sl@0
|
354 |
CFallbackMap* iFallbackMap;
|
sl@0
|
355 |
TUint8 iBlackMap;
|
sl@0
|
356 |
TUint8 iWhiteMap;
|
sl@0
|
357 |
CWsSpriteManager* iSpriteManager;
|
sl@0
|
358 |
//The next three interfaces should be provided by renderstages if the screen is to be used in CHANGETRACKING mode
|
sl@0
|
359 |
MWsWindowTreeObserver* iWindowTreeObserver;
|
sl@0
|
360 |
MWsDrawAnnotationObserver* iDrawAnnotationObserver;
|
sl@0
|
361 |
MWsWindowVisibilityNotifier* iWindowVisibilityNotifier;
|
sl@0
|
362 |
|
sl@0
|
363 |
#if defined(__WINS__) && defined(_DEBUG)
|
sl@0
|
364 |
CDebugOsbWin* iDebugWin;
|
sl@0
|
365 |
#endif
|
sl@0
|
366 |
CWsDisplayChangeNotifier* iDisplayChangeNotifier;
|
sl@0
|
367 |
CWsConfigChangeNotifier* iConfigChangeNotifier;
|
sl@0
|
368 |
TInt iDisplayChangeSpinner;
|
sl@0
|
369 |
TInt iConfigChangeSpinner;
|
sl@0
|
370 |
RPointerArray<CWsClient> iWsClientList;
|
sl@0
|
371 |
TRect iDigitiserArea;
|
sl@0
|
372 |
};
|
sl@0
|
373 |
|
sl@0
|
374 |
|
sl@0
|
375 |
|
sl@0
|
376 |
//
|
sl@0
|
377 |
// inlines //
|
sl@0
|
378 |
//
|
sl@0
|
379 |
|
sl@0
|
380 |
//
|
sl@0
|
381 |
// CScreen
|
sl@0
|
382 |
//
|
sl@0
|
383 |
|
sl@0
|
384 |
inline CWsWindowGroup* CScreen::FocusWindowGroup()
|
sl@0
|
385 |
{return(iCurrentFocus);}
|
sl@0
|
386 |
inline TBool CScreen::BlankScreenOnRotation()
|
sl@0
|
387 |
{return(iFlags&EBlankScreenOnRotation);}
|
sl@0
|
388 |
inline TBool CScreen::AutoClear()
|
sl@0
|
389 |
{return(iFlags&EAutoClear);}
|
sl@0
|
390 |
inline CWsWindowGroup* CScreen::DefaultOwningWindowGroup()
|
sl@0
|
391 |
{return(iDefaultOwningWindow);}
|
sl@0
|
392 |
inline const TSurfaceId& CScreen::DsaSurface() const
|
sl@0
|
393 |
{return iDsaSurface;}
|
sl@0
|
394 |
|
sl@0
|
395 |
inline CWsRootWindow* CScreen::RootWindow() const
|
sl@0
|
396 |
{return iRootWindow;}
|
sl@0
|
397 |
inline TInt CScreen::ScreenNumber() const
|
sl@0
|
398 |
{return iScreenNumber;}
|
sl@0
|
399 |
//
|
sl@0
|
400 |
inline TInt CScreen::ScreenSizeMode() const
|
sl@0
|
401 |
{return(iScreenSizeMode);}
|
sl@0
|
402 |
inline TRect CScreen::GetPointerCursorArea(TInt aMode) const
|
sl@0
|
403 |
{return (*iModes)[aMode]->iPointerCursorArea;}
|
sl@0
|
404 |
inline TSize CScreen::CurrentScreenSize() const
|
sl@0
|
405 |
{return (*iModes)[iScreenSizeMode]->iScreenSize;}
|
sl@0
|
406 |
inline TInt CScreen::NumScreenSizeModes() const
|
sl@0
|
407 |
{return iNumScreenSizeModes;}
|
sl@0
|
408 |
inline const TSizeMode& CScreen::ScreenSizeModeData() const
|
sl@0
|
409 |
{return *(*iModes)[iScreenSizeMode];}
|
sl@0
|
410 |
inline const TSizeMode& CScreen::ScreenSizeModeData(TInt aMode) const
|
sl@0
|
411 |
{return *(*iModes)[aMode];}
|
sl@0
|
412 |
inline TDisplayMode CScreen::DefaultDisplayMode(const TInt aMode) const
|
sl@0
|
413 |
{return (*iModes)[aMode]->iDefaultDisplayMode;}
|
sl@0
|
414 |
inline TScreenModeEnforcement CScreen::SizeEnforcementMode() const
|
sl@0
|
415 |
{return iSizeEnforcementMode;}
|
sl@0
|
416 |
inline TBool CScreen::IsValidScreenSizeMode(TInt aMode) const
|
sl@0
|
417 |
{return (aMode>=0 && aMode<iModes->Count() && (*iModes)[aMode]!=NULL);}
|
sl@0
|
418 |
inline TBool CScreen::BackLightFlag()
|
sl@0
|
419 |
{return iBackLightFlag;}
|
sl@0
|
420 |
|
sl@0
|
421 |
inline TBool CScreen::HasAlpha() const
|
sl@0
|
422 |
{return (0x3 & (0x1 << (EColor16MAP - DisplayMode())));} //currently it is just EColor16MA Or EColor16MAP
|
sl@0
|
423 |
|
sl@0
|
424 |
inline CWindowElementSet& CScreen::WindowElements() const
|
sl@0
|
425 |
{
|
sl@0
|
426 |
return *iWindowElementSet;
|
sl@0
|
427 |
}
|
sl@0
|
428 |
|
sl@0
|
429 |
inline MWsElement& CScreen::UiElement() const
|
sl@0
|
430 |
{
|
sl@0
|
431 |
return *iUiElement;
|
sl@0
|
432 |
}
|
sl@0
|
433 |
|
sl@0
|
434 |
inline CDebugBar * CScreen::DebugBar()
|
sl@0
|
435 |
{return iDebugBar;}
|
sl@0
|
436 |
inline CScreen::CFallbackMap * CScreen::FallbackMap()
|
sl@0
|
437 |
{return iFallbackMap;}
|
sl@0
|
438 |
|
sl@0
|
439 |
inline void CScreen::GetFadingParams(TUint8& aBlackMap,TUint8& aWhiteMap) const
|
sl@0
|
440 |
{aBlackMap=iBlackMap;aWhiteMap=iWhiteMap;}
|
sl@0
|
441 |
inline void CScreen::SetFadingParams(TUint8 aBlackMap,TUint8 aWhiteMap)
|
sl@0
|
442 |
{iBlackMap=aBlackMap;iWhiteMap=aWhiteMap;}
|
sl@0
|
443 |
inline CWsSpriteManager* CScreen::SpriteManager() const
|
sl@0
|
444 |
{return iSpriteManager;}
|
sl@0
|
445 |
inline MWsWindowTreeObserver* CScreen::WindowTreeObserver() const
|
sl@0
|
446 |
{return iWindowTreeObserver;}
|
sl@0
|
447 |
inline MWsDrawAnnotationObserver* CScreen::DrawAnnotationObserver() const
|
sl@0
|
448 |
{return iDrawAnnotationObserver;}
|
sl@0
|
449 |
inline MWsWindowVisibilityNotifier* CScreen::WindowVisibilityNotifier() const
|
sl@0
|
450 |
{return iWindowVisibilityNotifier;}
|
sl@0
|
451 |
inline TBool CScreen::ChangeTracking() const
|
sl@0
|
452 |
{return iFlags&EChangeTracking;}
|
sl@0
|
453 |
inline void CScreen::IncreaseDisplaySpinner()
|
sl@0
|
454 |
{iDisplayChangeSpinner++;}
|
sl@0
|
455 |
inline void CScreen::IncreaseConfigSpinner()
|
sl@0
|
456 |
{iConfigChangeSpinner++;}
|
sl@0
|
457 |
inline TInt CScreen::DisplaySpinner()
|
sl@0
|
458 |
{return iDisplayChangeSpinner;}
|
sl@0
|
459 |
inline TInt CScreen::ConfigSpinner()
|
sl@0
|
460 |
{return iConfigChangeSpinner;}
|
sl@0
|
461 |
inline MWsDisplayPolicy* CScreen::DisplayPolicy()
|
sl@0
|
462 |
{return iDisplayPolicy;}
|
sl@0
|
463 |
inline MWsDisplayMapping* CScreen::DisplayMapping()
|
sl@0
|
464 |
{return iDisplayMapping;}
|
sl@0
|
465 |
#endif
|
sl@0
|
466 |
|