sl@0
|
1 |
// Copyright (c) 1995-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 |
#include "W32STDGRAPHIC.H"
|
sl@0
|
17 |
|
sl@0
|
18 |
LOCAL_C const TUid KStdBitmapType = {0x10281921};
|
sl@0
|
19 |
|
sl@0
|
20 |
NONSHARABLE_STRUCT(TBitmapInit)
|
sl@0
|
21 |
{
|
sl@0
|
22 |
TBitmapInit(const CFbsBitmap* aBitmap,const CFbsBitmap* aMask);
|
sl@0
|
23 |
TInt iBitmapHandle;
|
sl@0
|
24 |
TInt iMaskHandle;
|
sl@0
|
25 |
};
|
sl@0
|
26 |
|
sl@0
|
27 |
TBitmapInit::TBitmapInit(const CFbsBitmap* aBitmap,const CFbsBitmap* aMask)
|
sl@0
|
28 |
{
|
sl@0
|
29 |
iBitmapHandle = (aBitmap?aBitmap->Handle():0);
|
sl@0
|
30 |
iMaskHandle = (aMask?aMask->Handle():0);
|
sl@0
|
31 |
}
|
sl@0
|
32 |
|
sl@0
|
33 |
CWsGraphicBitmap::CWsGraphicBitmap()
|
sl@0
|
34 |
{
|
sl@0
|
35 |
}
|
sl@0
|
36 |
|
sl@0
|
37 |
EXPORT_C CWsGraphicBitmap::~CWsGraphicBitmap()
|
sl@0
|
38 |
{
|
sl@0
|
39 |
}
|
sl@0
|
40 |
|
sl@0
|
41 |
EXPORT_C CWsGraphicBitmap* CWsGraphicBitmap::NewL(const CFbsBitmap* aBitmap,const CFbsBitmap* aMask)
|
sl@0
|
42 |
/**
|
sl@0
|
43 |
Constructs the client representation of a window-server-side CFbsBitmap owned by this Client.
|
sl@0
|
44 |
The base class CWsGraphic is therefore constructed having KStdBitmapType as artwork type.
|
sl@0
|
45 |
|
sl@0
|
46 |
@param aBitmap CFbsBitmap owned by the Client
|
sl@0
|
47 |
@param aMask Bitmap's Mask.
|
sl@0
|
48 |
*/
|
sl@0
|
49 |
{
|
sl@0
|
50 |
CWsGraphicBitmap* self = new(ELeave) CWsGraphicBitmap;
|
sl@0
|
51 |
CleanupStack::PushL(self);
|
sl@0
|
52 |
const TPckgBuf<TBitmapInit> data(TBitmapInit(aBitmap,aMask));
|
sl@0
|
53 |
self->BaseConstructL(KStdBitmapType,data);
|
sl@0
|
54 |
CleanupStack::Pop(self);
|
sl@0
|
55 |
return self;
|
sl@0
|
56 |
}
|
sl@0
|
57 |
|
sl@0
|
58 |
EXPORT_C CWsGraphicBitmap* CWsGraphicBitmap::NewL(TUid aUid,const CFbsBitmap* aBitmap,const CFbsBitmap* aMask)
|
sl@0
|
59 |
/**
|
sl@0
|
60 |
Constructs the client representation of a window-server-side CFbsBitmap owned by this Client.
|
sl@0
|
61 |
The base class CWsGraphic is therefore constructed having KStdBitmapType as artwork type.
|
sl@0
|
62 |
|
sl@0
|
63 |
@param aUid Graphic Bitmap UID.
|
sl@0
|
64 |
@param aBitmap CFbsBitmap owned by the Client
|
sl@0
|
65 |
@param aMask Bitmap's Mask.
|
sl@0
|
66 |
*/
|
sl@0
|
67 |
{
|
sl@0
|
68 |
CWsGraphicBitmap* self = new(ELeave) CWsGraphicBitmap;
|
sl@0
|
69 |
CleanupStack::PushL(self);
|
sl@0
|
70 |
const TPckgBuf<TBitmapInit> data(TBitmapInit(aBitmap,aMask));
|
sl@0
|
71 |
self->BaseConstructL(aUid,KStdBitmapType,data);
|
sl@0
|
72 |
CleanupStack::Pop(self);
|
sl@0
|
73 |
return self;
|
sl@0
|
74 |
}
|
sl@0
|
75 |
|
sl@0
|
76 |
EXPORT_C CWsGraphicBitmap* CWsGraphicBitmap::NewL(const TWsGraphicId& aReplace,const CFbsBitmap* aBitmap,const CFbsBitmap* aMask)
|
sl@0
|
77 |
/**
|
sl@0
|
78 |
Constructs the client representation of a window-server-side CFbsBitmap owned by this Client.
|
sl@0
|
79 |
The base class CWsGraphic is therefore constructed having KStdBitmapType as artwork type.
|
sl@0
|
80 |
|
sl@0
|
81 |
Atomically replace the artwork that already exists with this artwork (i.e. aBitmap) .
|
sl@0
|
82 |
If failure to properly construct the replacement artwork occurs, the replacee artwork will remain
|
sl@0
|
83 |
|
sl@0
|
84 |
@param aReplace Bitmap artwork which will be replaced.
|
sl@0
|
85 |
@param aBitmap CFbsBitmap owned by the Client
|
sl@0
|
86 |
@param aMask Bitmap's Mask.
|
sl@0
|
87 |
*/
|
sl@0
|
88 |
{
|
sl@0
|
89 |
CWsGraphicBitmap* self = new(ELeave) CWsGraphicBitmap;
|
sl@0
|
90 |
CleanupStack::PushL(self);
|
sl@0
|
91 |
const TPckgBuf<TBitmapInit> data(TBitmapInit(aBitmap,aMask));
|
sl@0
|
92 |
self->BaseConstructL(aReplace,KStdBitmapType,data);
|
sl@0
|
93 |
CleanupStack::Pop(self);
|
sl@0
|
94 |
return self;
|
sl@0
|
95 |
}
|
sl@0
|
96 |
|
sl@0
|
97 |
EXPORT_C void CWsGraphicBitmap::HandleMessage(const TDesC8& /*aData*/)
|
sl@0
|
98 |
{
|
sl@0
|
99 |
}
|
sl@0
|
100 |
|
sl@0
|
101 |
EXPORT_C void CWsGraphicBitmap::OnReplace()
|
sl@0
|
102 |
{
|
sl@0
|
103 |
}
|
sl@0
|
104 |
|
sl@0
|
105 |
EXPORT_C TInt CWsGraphicBitmap::ShareGlobally()
|
sl@0
|
106 |
{
|
sl@0
|
107 |
return CWsGraphic::ShareGlobally();
|
sl@0
|
108 |
}
|
sl@0
|
109 |
|
sl@0
|
110 |
EXPORT_C TInt CWsGraphicBitmap::UnShareGlobally()
|
sl@0
|
111 |
{
|
sl@0
|
112 |
return CWsGraphic::UnShareGlobally();
|
sl@0
|
113 |
}
|
sl@0
|
114 |
|
sl@0
|
115 |
EXPORT_C TInt CWsGraphicBitmap::Share(TSecureId aClientId)
|
sl@0
|
116 |
{
|
sl@0
|
117 |
return CWsGraphic::Share(aClientId);
|
sl@0
|
118 |
}
|
sl@0
|
119 |
|
sl@0
|
120 |
EXPORT_C TInt CWsGraphicBitmap::UnShare(TSecureId aClientId)
|
sl@0
|
121 |
{
|
sl@0
|
122 |
return CWsGraphic::UnShare(aClientId);
|
sl@0
|
123 |
}
|