sl@0: // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @test sl@0: @internalComponent sl@0: */ sl@0: sl@0: #ifndef ENORMOUSWIN_H sl@0: #define ENORMOUSWIN_H sl@0: sl@0: sl@0: #include sl@0: #include "compwin.h" sl@0: sl@0: sl@0: /******************************************************************************* sl@0: These windows are very very big, but do not attempt to draw themselves in their sl@0: entirety at any point. They request that the redraw store is disabled so that sl@0: they don't get asked to. sl@0: *******************************************************************************/ sl@0: _LIT8(KEnormousWindowType, "Enormous"); sl@0: class CEnormousWin : public CCompWin sl@0: { sl@0: private: sl@0: enum { EScale = 1000, ESegmentSize = 32 }; sl@0: public: sl@0: static CEnormousWin* NewLC(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc); sl@0: static void LoadConfiguration(const MTestStepConfigurationContext* aContext); sl@0: static TBool IsEnabled() { return iEnabled; } sl@0: ~CEnormousWin(); sl@0: sl@0: void Redraw(const TRect& aRect); sl@0: void DrawBitmap(CFbsBitGc* aGc, TRect& aClip, TPoint& aOrigin); sl@0: virtual const TDesC8& TypeName() { return KEnormousWindowType; } sl@0: void DumpDetails(RFile & aFile, TInt aDepth); sl@0: sl@0: protected: sl@0: CEnormousWin(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc); sl@0: void ConstructL(); sl@0: sl@0: private: sl@0: static TBool iEnabled; sl@0: static TBool iTransparent; sl@0: static TBool iRandomizePenStyle; sl@0: static TBool iRandomizeBrushStyle; sl@0: CGraphicsContext::TPenStyle iPenStyle; sl@0: CGraphicsContext::TBrushStyle iBrushStyle; sl@0: }; sl@0: sl@0: sl@0: #endif // ENORMOUSWIN_H