os/graphics/windowing/windowserver/test/t_stress/inc/enormouswin.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 /**
    17  @file
    18  @test
    19  @internalComponent
    20 */
    21 
    22 #ifndef ENORMOUSWIN_H
    23 #define ENORMOUSWIN_H
    24 
    25 
    26 #include <w32std.h>
    27 #include "compwin.h"
    28 
    29 
    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
    37 	{
    38 private:
    39 	enum { EScale = 1000, ESegmentSize = 32 };
    40 public:
    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; }
    44 	~CEnormousWin();
    45 	
    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);
    50 	
    51 protected:
    52 	CEnormousWin(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc);
    53 	void ConstructL();
    54 
    55 private:
    56 	static TBool iEnabled;
    57 	static TBool iTransparent;
    58 	static TBool iRandomizePenStyle;
    59 	static TBool iRandomizeBrushStyle;
    60 	CGraphicsContext::TPenStyle iPenStyle;
    61 	CGraphicsContext::TBrushStyle iBrushStyle;
    62 	};
    63 
    64 
    65 #endif // ENORMOUSWIN_H