Update contrib.
1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
30 /*******************************************************************************
31 These windows are very very big, but do not attempt to draw themselves in their
32 entirety at any point. They request that the redraw store is disabled so that
33 they don't get asked to.
34 *******************************************************************************/
35 _LIT8(KEnormousWindowType, "Enormous");
36 class CEnormousWin : public CCompWin
39 enum { EScale = 1000, ESegmentSize = 32 };
41 static CEnormousWin* NewLC(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc);
42 static void LoadConfiguration(const MTestStepConfigurationContext* aContext);
43 static TBool IsEnabled() { return iEnabled; }
46 void Redraw(const TRect& aRect);
47 void DrawBitmap(CFbsBitGc* aGc, TRect& aClip, TPoint& aOrigin);
48 virtual const TDesC8& TypeName() { return KEnormousWindowType; }
49 void DumpDetails(RFile & aFile, TInt aDepth);
52 CEnormousWin(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc);
56 static TBool iEnabled;
57 static TBool iTransparent;
58 static TBool iRandomizePenStyle;
59 static TBool iRandomizeBrushStyle;
60 CGraphicsContext::TPenStyle iPenStyle;
61 CGraphicsContext::TBrushStyle iBrushStyle;
65 #endif // ENORMOUSWIN_H