|
64
|
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 |
#ifndef __DEBUGBARDRAWER_H__
|
|
|
17 |
#define __DEBUGBARDRAWER_H__
|
|
|
18 |
|
|
|
19 |
#include <graphics/wsgraphicscontext.h>
|
|
|
20 |
#include <graphics/wsrenderstage.h>
|
|
|
21 |
|
|
|
22 |
/** MWsDebugBar simple implementation
|
|
|
23 |
|
|
|
24 |
@publishedPartner
|
|
|
25 |
@prototype
|
|
|
26 |
*/
|
|
|
27 |
class CDebugBarDrawer : public MWsDebugBar
|
|
|
28 |
{
|
|
|
29 |
public:
|
|
|
30 |
static CDebugBarDrawer* NewL(CWsRenderStage * aRenderStage, TInt aScreenWidth);
|
|
|
31 |
~CDebugBarDrawer();
|
|
|
32 |
void DrawDebugBar(const TArray<TPtrC>& aDebugText);
|
|
|
33 |
|
|
|
34 |
private:
|
|
|
35 |
CDebugBarDrawer(CWsRenderStage * aRenderStage, TInt aScreenWidth);
|
|
|
36 |
void ConstructL();
|
|
|
37 |
|
|
|
38 |
private:
|
|
|
39 |
enum {KFontHeightInPixel = 10};
|
|
|
40 |
|
|
|
41 |
CWsRenderStage * iRenderStage;
|
|
|
42 |
MWsGraphicsContext * iGc;
|
|
|
43 |
|
|
|
44 |
TInt iScreenWidth;
|
|
|
45 |
TRect iDebugBarRect;
|
|
|
46 |
CFbsTypefaceStore* iFontStore;
|
|
|
47 |
CFont* iFont;
|
|
|
48 |
TInt iBaseline;
|
|
|
49 |
};
|
|
|
50 |
#endif
|
|
|
51 |
|
|
|
52 |
|