sl@0
|
1 |
// Copyright (c) 2007-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 - Internal Symbian test code
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
#ifndef __WSSIMPLEDRAWER_H__
|
sl@0
|
23 |
#define __WSSIMPLEDRAWER_H__
|
sl@0
|
24 |
|
sl@0
|
25 |
|
sl@0
|
26 |
#include <w32std.h>
|
sl@0
|
27 |
const TUid KSimpleDrawerInterfaceId = {0x1028351B};
|
sl@0
|
28 |
const TUid KSimpleDrawerImplId = {0x1028351C};
|
sl@0
|
29 |
|
sl@0
|
30 |
/** Client representation of a window-server-side drawing owned by this Client
|
sl@0
|
31 |
@publishedAll
|
sl@0
|
32 |
@released
|
sl@0
|
33 |
*/
|
sl@0
|
34 |
NONSHARABLE_CLASS(CWsSimpleGraphicBitmap): public CWsGraphic
|
sl@0
|
35 |
{
|
sl@0
|
36 |
public:
|
sl@0
|
37 |
IMPORT_C static CWsSimpleGraphicBitmap* NewL();
|
sl@0
|
38 |
IMPORT_C static CWsSimpleGraphicBitmap* NewL(TUid aUid);
|
sl@0
|
39 |
IMPORT_C static CWsSimpleGraphicBitmap* NewL(const TWsGraphicId& aReplace);
|
sl@0
|
40 |
|
sl@0
|
41 |
IMPORT_C ~CWsSimpleGraphicBitmap();
|
sl@0
|
42 |
public: // protected virtuals from CWsGraphic promoted to public
|
sl@0
|
43 |
IMPORT_C TInt ShareGlobally();
|
sl@0
|
44 |
IMPORT_C TInt UnShareGlobally();
|
sl@0
|
45 |
IMPORT_C TInt Share(TSecureId aClientId);
|
sl@0
|
46 |
IMPORT_C TInt UnShare(TSecureId aClientId);
|
sl@0
|
47 |
|
sl@0
|
48 |
IMPORT_C TInt UpdateColor(TRgb aColor);
|
sl@0
|
49 |
|
sl@0
|
50 |
public:
|
sl@0
|
51 |
CWsSimpleGraphicBitmap();
|
sl@0
|
52 |
void HandleMessage(const TDesC8& aData);
|
sl@0
|
53 |
void OnReplace();
|
sl@0
|
54 |
public:
|
sl@0
|
55 |
TBool iIsReady;
|
sl@0
|
56 |
};
|
sl@0
|
57 |
|
sl@0
|
58 |
|
sl@0
|
59 |
const TUid KInvisibleDrawerInterfaceId1 = {0x1028353A};
|
sl@0
|
60 |
const TUid KInvisibleDrawerImplId1 = {0x10283539};
|
sl@0
|
61 |
|
sl@0
|
62 |
/** Client representation of a window-server-side drawing owned by this Client
|
sl@0
|
63 |
@publishedAll
|
sl@0
|
64 |
@released
|
sl@0
|
65 |
*/
|
sl@0
|
66 |
NONSHARABLE_CLASS(CWsInvisibleGraphicBitmap1): public CWsSimpleGraphicBitmap
|
sl@0
|
67 |
{
|
sl@0
|
68 |
public:
|
sl@0
|
69 |
IMPORT_C static CWsInvisibleGraphicBitmap1* NewL();
|
sl@0
|
70 |
IMPORT_C static CWsInvisibleGraphicBitmap1* NewL(TUid aUid);
|
sl@0
|
71 |
IMPORT_C static CWsInvisibleGraphicBitmap1* NewL(const TWsGraphicId& aReplace);
|
sl@0
|
72 |
};
|
sl@0
|
73 |
|
sl@0
|
74 |
|
sl@0
|
75 |
const TUid KInvisibleDrawerInterfaceId2 = {0x1028353C};
|
sl@0
|
76 |
const TUid KInvisibleDrawerImplId2 = {0x1028353B};
|
sl@0
|
77 |
|
sl@0
|
78 |
/** Client representation of a window-server-side drawing owned by this Client
|
sl@0
|
79 |
@publishedAll
|
sl@0
|
80 |
@released
|
sl@0
|
81 |
*/
|
sl@0
|
82 |
NONSHARABLE_CLASS(CWsInvisibleGraphicBitmap2): public CWsSimpleGraphicBitmap
|
sl@0
|
83 |
{
|
sl@0
|
84 |
public:
|
sl@0
|
85 |
IMPORT_C static CWsInvisibleGraphicBitmap2* NewL();
|
sl@0
|
86 |
IMPORT_C static CWsInvisibleGraphicBitmap2* NewL(TUid aUid);
|
sl@0
|
87 |
IMPORT_C static CWsInvisibleGraphicBitmap2* NewL(const TWsGraphicId& aReplace);
|
sl@0
|
88 |
};
|
sl@0
|
89 |
|
sl@0
|
90 |
|
sl@0
|
91 |
|
sl@0
|
92 |
#endif
|