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.
16 #ifndef __DEBUGBARDRAWER_H__
17 #define __DEBUGBARDRAWER_H__
19 #include <graphics/wsgraphicscontext.h>
20 #include <graphics/wsrenderstage.h>
22 /** MWsDebugBar simple implementation
27 class CDebugBarDrawer : public MWsDebugBar
30 static CDebugBarDrawer* NewL(CWsRenderStage * aRenderStage, TInt aScreenWidth);
32 void DrawDebugBar(const TArray<TPtrC>& aDebugText);
35 CDebugBarDrawer(CWsRenderStage * aRenderStage, TInt aScreenWidth);
39 enum {KFontHeightInPixel = 10};
41 CWsRenderStage * iRenderStage;
42 MWsGraphicsContext * iGc;
46 CFbsTypefaceStore* iFontStore;