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.
29 /*******************************************************************************
30 These windows draw a bordered rectangle (opaque) within a bordered rectangle
31 (translucent). The inner rectangle is consistently drawn as a separate
33 *******************************************************************************/
34 _LIT8(KEdgedWindowType, "Edged");
35 class CEdgedWin : public CCompWin
38 static CEdgedWin* NewLC(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc);
39 static void LoadConfiguration(const MTestStepConfigurationContext* aContext);
40 static TBool IsEnabled() { return iEnabled; }
43 void Redraw(const TRect& aRect);
44 void DrawBitmap(CFbsBitGc* aGc, TRect& aClip, TPoint& aOrigin);
45 void SetSize(const TSize & aSize);
46 virtual const TDesC8& TypeName() { return KEdgedWindowType; }
47 void DumpDetails(RFile & aFile, TInt aDepth);
50 CEdgedWin(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc);
54 static TBool iEnabled;
55 static TBool iTransparent;
56 static TBool iRandomizeAlpha;
57 static TBool iRandomizePenStyle;
58 static TBool iRandomizeBrushStyle;
60 TRegionFix<4> iTransparentRegion;
61 TRgb iTransBgColor; //outer rectangle, pen colour
62 TRgb iTransFgColor; //outer rectangle, brush colour
63 TRgb iBgColor; //inner rectangle, brush colour
64 TRgb iFgColor; //inner rectangle, pen colour
65 CGraphicsContext::TPenStyle iPenStyle;
66 CGraphicsContext::TBrushStyle iBrushStyle;