sl@0
|
1 |
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
/**
|
sl@0
|
17 |
@file
|
sl@0
|
18 |
@test
|
sl@0
|
19 |
@internalComponent
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
#ifndef CRPWIN_H
|
sl@0
|
23 |
#define CRPWIN_H
|
sl@0
|
24 |
|
sl@0
|
25 |
|
sl@0
|
26 |
#include <w32std.h>
|
sl@0
|
27 |
#include "compwin.h"
|
sl@0
|
28 |
|
sl@0
|
29 |
/*******************************************************************************
|
sl@0
|
30 |
Client side of the crp used by CCrpWin
|
sl@0
|
31 |
*******************************************************************************/
|
sl@0
|
32 |
class CCrpClient : public CWsGraphic
|
sl@0
|
33 |
{
|
sl@0
|
34 |
public:
|
sl@0
|
35 |
static CCrpClient * NewL();
|
sl@0
|
36 |
~CCrpClient();
|
sl@0
|
37 |
void DrawCrp(CWindowGc& aGc,const TRect& aRect);
|
sl@0
|
38 |
|
sl@0
|
39 |
private:
|
sl@0
|
40 |
CCrpClient();
|
sl@0
|
41 |
void ConstructL();
|
sl@0
|
42 |
|
sl@0
|
43 |
private: // from CWsGraphic
|
sl@0
|
44 |
virtual void HandleMessage(const TDesC8& aData);
|
sl@0
|
45 |
virtual void OnReplace();
|
sl@0
|
46 |
};
|
sl@0
|
47 |
|
sl@0
|
48 |
/*******************************************************************************
|
sl@0
|
49 |
These windows have a crp that draws over the full extent of the window.
|
sl@0
|
50 |
Currently only draws a simple square with an elipse within (NO ANIMATION).
|
sl@0
|
51 |
*******************************************************************************/
|
sl@0
|
52 |
_LIT8(KCrpWindowType, "CrpDrawer");
|
sl@0
|
53 |
class CCrpWin : public CCompWin
|
sl@0
|
54 |
{
|
sl@0
|
55 |
public:
|
sl@0
|
56 |
static CCrpWin* NewLC(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc);
|
sl@0
|
57 |
static void LoadConfiguration(const MTestStepConfigurationContext* aContext);
|
sl@0
|
58 |
static TBool IsEnabled() { return iEnabled; }
|
sl@0
|
59 |
~CCrpWin();
|
sl@0
|
60 |
|
sl@0
|
61 |
void SetSize(const TSize & aSize);
|
sl@0
|
62 |
void Redraw(const TRect& aRect);
|
sl@0
|
63 |
void DrawBitmap(CFbsBitGc* aGc, TRect& aClip, TPoint& aOrigin);
|
sl@0
|
64 |
virtual const TDesC8& TypeName() { return KCrpWindowType; }
|
sl@0
|
65 |
void DumpDetails(RFile & aFile, TInt aDepth);
|
sl@0
|
66 |
|
sl@0
|
67 |
protected:
|
sl@0
|
68 |
CCrpWin(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc);
|
sl@0
|
69 |
void ConstructL();
|
sl@0
|
70 |
|
sl@0
|
71 |
private:
|
sl@0
|
72 |
static TBool iEnabled;
|
sl@0
|
73 |
static TBool iTransparent;
|
sl@0
|
74 |
CCrpClient* iCrp;
|
sl@0
|
75 |
};
|
sl@0
|
76 |
|
sl@0
|
77 |
|
sl@0
|
78 |
|
sl@0
|
79 |
|
sl@0
|
80 |
#endif // CRPWIN_H
|