sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <e32std.h>
|
sl@0
|
20 |
#include <e32base.h>
|
sl@0
|
21 |
|
sl@0
|
22 |
#include <gdi.h>
|
sl@0
|
23 |
#include <s32mem.h>
|
sl@0
|
24 |
#include <conpics.h>
|
sl@0
|
25 |
|
sl@0
|
26 |
#include "TESTPANI.H"
|
sl@0
|
27 |
|
sl@0
|
28 |
// ***************************************************************************
|
sl@0
|
29 |
// MDEMPICTUREHEADERFACTORY IMPLEMENTATION
|
sl@0
|
30 |
// ***************************************************************************
|
sl@0
|
31 |
|
sl@0
|
32 |
EXPORT_C MDemPictureFactory::MDemPictureFactory()
|
sl@0
|
33 |
// Fix to force GCC to export the vtable.
|
sl@0
|
34 |
//
|
sl@0
|
35 |
{}
|
sl@0
|
36 |
|
sl@0
|
37 |
|
sl@0
|
38 |
EXPORT_C void MDemPictureFactory::NewPictureL(TPictureHeader& aHeader,const CStreamStore& aDeferredPictureStore)const
|
sl@0
|
39 |
// From the picture header, instantiates the correct concrete picture, and
|
sl@0
|
40 |
// restores it frorm the specified stream.
|
sl@0
|
41 |
//
|
sl@0
|
42 |
{
|
sl@0
|
43 |
if (aHeader.iPictureType==KUidXzePictureType)
|
sl@0
|
44 |
aHeader.iPicture=CXzePicture::NewL(aDeferredPictureStore,aHeader.iPicture.AsId());
|
sl@0
|
45 |
else if(aHeader.iPictureType==KUidXzeDoorType)
|
sl@0
|
46 |
aHeader.iPicture=CXzeDoor::NewL(aDeferredPictureStore,aHeader.iPicture.AsId());
|
sl@0
|
47 |
else
|
sl@0
|
48 |
Panic(EPictureTypeNotSupportedByHeader);
|
sl@0
|
49 |
}
|
sl@0
|
50 |
|
sl@0
|
51 |
|
sl@0
|
52 |
|
sl@0
|
53 |
|
sl@0
|
54 |
// ***************************************************************************
|
sl@0
|
55 |
// TEST PICTURE IMPLEMENTATION
|
sl@0
|
56 |
// ***************************************************************************
|
sl@0
|
57 |
EXPORT_C CXzePicture* CXzePicture::NewL(TChar aLabel)
|
sl@0
|
58 |
{return new(ELeave) CXzePicture(aLabel);}
|
sl@0
|
59 |
|
sl@0
|
60 |
|
sl@0
|
61 |
EXPORT_C CXzePicture* CXzePicture::NewL(const CStreamStore& aStore,TStreamId aId)
|
sl@0
|
62 |
// Restoring NewL.
|
sl@0
|
63 |
//
|
sl@0
|
64 |
{
|
sl@0
|
65 |
CXzePicture* self=new(ELeave) CXzePicture();
|
sl@0
|
66 |
CleanupStack::PushL(self);
|
sl@0
|
67 |
self->RestoreL(aStore,aId);
|
sl@0
|
68 |
CleanupStack::Pop();
|
sl@0
|
69 |
return self;
|
sl@0
|
70 |
}
|
sl@0
|
71 |
|
sl@0
|
72 |
|
sl@0
|
73 |
EXPORT_C CXzePicture::CXzePicture(TChar aLabel)
|
sl@0
|
74 |
// Sets the startup attributes of this picture
|
sl@0
|
75 |
//
|
sl@0
|
76 |
: iLabel(aLabel)
|
sl@0
|
77 |
{ResetToOriginal();}
|
sl@0
|
78 |
|
sl@0
|
79 |
|
sl@0
|
80 |
EXPORT_C CXzePicture::CXzePicture()
|
sl@0
|
81 |
// Sets the startup attributes of this picture
|
sl@0
|
82 |
//
|
sl@0
|
83 |
//
|
sl@0
|
84 |
{ResetToOriginal();}
|
sl@0
|
85 |
|
sl@0
|
86 |
|
sl@0
|
87 |
EXPORT_C CXzePicture::~CXzePicture()
|
sl@0
|
88 |
{}
|
sl@0
|
89 |
|
sl@0
|
90 |
|
sl@0
|
91 |
EXPORT_C void CXzePicture::ExternalizeL(RWriteStream& aStream)const
|
sl@0
|
92 |
// Save this picture.
|
sl@0
|
93 |
// Typically called from the base class StoreL();
|
sl@0
|
94 |
//
|
sl@0
|
95 |
{aStream.WriteUint32L(iLabel);}
|
sl@0
|
96 |
|
sl@0
|
97 |
|
sl@0
|
98 |
EXPORT_C void CXzePicture::InternalizeL(RReadStream& aStream)
|
sl@0
|
99 |
// Load this picture
|
sl@0
|
100 |
//
|
sl@0
|
101 |
{iLabel=(TChar)aStream.ReadUint32L();}
|
sl@0
|
102 |
|
sl@0
|
103 |
|
sl@0
|
104 |
EXPORT_C void CXzePicture::RestoreL(const CStreamStore& aStore,TStreamId aStreamId)
|
sl@0
|
105 |
// Create a read-stream over aStore, and open it over the specified stream ID.
|
sl@0
|
106 |
// Internalize picture from this stream.
|
sl@0
|
107 |
//
|
sl@0
|
108 |
{
|
sl@0
|
109 |
RStoreReadStream stream;
|
sl@0
|
110 |
stream.OpenLC(aStore,aStreamId);
|
sl@0
|
111 |
stream>> *this;
|
sl@0
|
112 |
CleanupStack::PopAndDestroy();
|
sl@0
|
113 |
}
|
sl@0
|
114 |
|
sl@0
|
115 |
|
sl@0
|
116 |
EXPORT_C void CXzePicture::Draw(CGraphicsContext& aGc,const TPoint& aTopLeft,const TRect& aClipRect,MGraphicsDeviceMap* aMap) const
|
sl@0
|
117 |
// Draw this simple picture.
|
sl@0
|
118 |
//
|
sl@0
|
119 |
{
|
sl@0
|
120 |
aGc.Reset();
|
sl@0
|
121 |
aGc.SetClippingRect(aClipRect);
|
sl@0
|
122 |
TSize size; // Size of graphics device in pixels
|
sl@0
|
123 |
GetSizeInPixels(aMap,size);
|
sl@0
|
124 |
TRect box; // The rectangle that exactly fits the picture
|
sl@0
|
125 |
box.iTl=aTopLeft;
|
sl@0
|
126 |
box.iBr.iX=aTopLeft.iX+size.iWidth;
|
sl@0
|
127 |
box.iBr.iY=aTopLeft.iY+size.iHeight;
|
sl@0
|
128 |
TRgb white(255,255,255);
|
sl@0
|
129 |
// First draw outer box and fill in rest of box.
|
sl@0
|
130 |
aGc.SetBrushColor(white);
|
sl@0
|
131 |
aGc.SetBrushStyle(CGraphicsContext::ESolidBrush);
|
sl@0
|
132 |
aGc.DrawRect(box);
|
sl@0
|
133 |
// Now draw label
|
sl@0
|
134 |
CFont* font;
|
sl@0
|
135 |
TFontSpec fontSpec(_L("Arial"),213);
|
sl@0
|
136 |
if (aMap->GetNearestFontInTwips(font,fontSpec)<0)
|
sl@0
|
137 |
{
|
sl@0
|
138 |
return;
|
sl@0
|
139 |
}
|
sl@0
|
140 |
aGc.UseFont(font);
|
sl@0
|
141 |
TBuf<1> label; label.Append(iLabel);
|
sl@0
|
142 |
TInt baselineOffset=(box.Height()+font->AscentInPixels())/2;
|
sl@0
|
143 |
aGc.SetBrushStyle(CGraphicsContext::ENullBrush);
|
sl@0
|
144 |
aGc.DrawText(label,box,baselineOffset,CGraphicsContext::ECenter);
|
sl@0
|
145 |
aGc.DiscardFont();
|
sl@0
|
146 |
aMap->ReleaseFont(font);
|
sl@0
|
147 |
}
|
sl@0
|
148 |
|
sl@0
|
149 |
|
sl@0
|
150 |
EXPORT_C void CXzePicture::GetOriginalSizeInTwips(TSize& aSize)const
|
sl@0
|
151 |
//
|
sl@0
|
152 |
{aSize=iOriginalSizeInTwips;}
|
sl@0
|
153 |
|
sl@0
|
154 |
|
sl@0
|
155 |
EXPORT_C CXzeDoor* CXzeDoor::NewL(TChar aLabel,TBool aAlwaysFailToDetach)
|
sl@0
|
156 |
{return new(ELeave) CXzeDoor(aLabel,aAlwaysFailToDetach);}
|
sl@0
|
157 |
|
sl@0
|
158 |
|
sl@0
|
159 |
EXPORT_C CXzeDoor* CXzeDoor::NewL(const CStreamStore& aStore,TStreamId aId)
|
sl@0
|
160 |
// Restoring NewL.
|
sl@0
|
161 |
//
|
sl@0
|
162 |
{
|
sl@0
|
163 |
CXzeDoor* self=new(ELeave) CXzeDoor(EFalse);
|
sl@0
|
164 |
CleanupStack::PushL(self);
|
sl@0
|
165 |
self->RestoreL(aStore,aId);
|
sl@0
|
166 |
CleanupStack::Pop();
|
sl@0
|
167 |
return self;
|
sl@0
|
168 |
}
|
sl@0
|
169 |
|
sl@0
|
170 |
|
sl@0
|
171 |
EXPORT_C CXzeDoor::CXzeDoor(TChar aLabel,TBool aAlwaysFailToDetach)
|
sl@0
|
172 |
// Sets the startup attributes of this picture
|
sl@0
|
173 |
//
|
sl@0
|
174 |
: CXzePicture(aLabel), iAlwaysFailToDetach(aAlwaysFailToDetach)
|
sl@0
|
175 |
{ResetToOriginal();}
|
sl@0
|
176 |
|
sl@0
|
177 |
|
sl@0
|
178 |
EXPORT_C CXzeDoor::CXzeDoor(TBool aAlwaysFailToDetach)
|
sl@0
|
179 |
// Sets the startup attributes of this picture
|
sl@0
|
180 |
//
|
sl@0
|
181 |
//
|
sl@0
|
182 |
: iAlwaysFailToDetach(aAlwaysFailToDetach)
|
sl@0
|
183 |
{ResetToOriginal();}
|
sl@0
|
184 |
|
sl@0
|
185 |
|
sl@0
|
186 |
EXPORT_C void CXzeDoor::DetachFromStoreL(TDetach /*aDegree*/)
|
sl@0
|
187 |
//
|
sl@0
|
188 |
//
|
sl@0
|
189 |
{
|
sl@0
|
190 |
if (iAlwaysFailToDetach)
|
sl@0
|
191 |
User::Leave(KErrNotSupported);
|
sl@0
|
192 |
}
|
sl@0
|
193 |
|
sl@0
|
194 |
EXPORT_C void CXzeDoor::ExternalizeL(RWriteStream& aStream)const
|
sl@0
|
195 |
// Save this picture.
|
sl@0
|
196 |
// Typically called from the base class StoreL();
|
sl@0
|
197 |
//
|
sl@0
|
198 |
{
|
sl@0
|
199 |
CXzePicture::ExternalizeL(aStream);
|
sl@0
|
200 |
aStream.WriteUint8L((TUint8)iAlwaysFailToDetach!=EFalse);
|
sl@0
|
201 |
}
|
sl@0
|
202 |
|
sl@0
|
203 |
|
sl@0
|
204 |
EXPORT_C void CXzeDoor::InternalizeL(RReadStream& aStream)
|
sl@0
|
205 |
// Load this picture
|
sl@0
|
206 |
//
|
sl@0
|
207 |
{
|
sl@0
|
208 |
CXzePicture::InternalizeL(aStream);
|
sl@0
|
209 |
iAlwaysFailToDetach=TBool(aStream.ReadUint8L());
|
sl@0
|
210 |
}
|
sl@0
|
211 |
|
sl@0
|
212 |
|
sl@0
|
213 |
EXPORT_C void CXzeDoor::RestoreL(const CStreamStore& aStore,TStreamId aStreamId)
|
sl@0
|
214 |
// Create a read-stream over aStore, and open it over the specified stream ID.
|
sl@0
|
215 |
// Internalize picture from this stream.
|
sl@0
|
216 |
//
|
sl@0
|
217 |
{
|
sl@0
|
218 |
RStoreReadStream stream;
|
sl@0
|
219 |
stream.OpenLC(aStore,aStreamId);
|
sl@0
|
220 |
stream>> *this;
|
sl@0
|
221 |
CleanupStack::PopAndDestroy();
|
sl@0
|
222 |
}
|
sl@0
|
223 |
|
sl@0
|
224 |
|
sl@0
|
225 |
EXPORT_C CTestPicture* CTestPicture::NewL()
|
sl@0
|
226 |
{return new(ELeave) CTestPicture();}
|
sl@0
|
227 |
|
sl@0
|
228 |
|
sl@0
|
229 |
EXPORT_C CTestPicture::CTestPicture()
|
sl@0
|
230 |
{ResetToOriginal();}
|
sl@0
|
231 |
|
sl@0
|
232 |
|
sl@0
|
233 |
EXPORT_C void CTestPicture::GetOriginalSizeInTwips(TSize& aSize)const
|
sl@0
|
234 |
//
|
sl@0
|
235 |
{aSize=iOriginalSizeInTwips;}
|
sl@0
|
236 |
|
sl@0
|
237 |
|
sl@0
|
238 |
EXPORT_C void CTestPicture::Draw(CGraphicsContext& aGc,const TPoint& aTopLeft,const TRect& aClipRect,MGraphicsDeviceMap* /*aMap*/) const
|
sl@0
|
239 |
// draw a simple object
|
sl@0
|
240 |
{
|
sl@0
|
241 |
aGc.Reset();
|
sl@0
|
242 |
aGc.SetClippingRect(aClipRect);
|
sl@0
|
243 |
TSize size; // Size in pixels
|
sl@0
|
244 |
TSize sizeInner; // In pixels
|
sl@0
|
245 |
TRect box;
|
sl@0
|
246 |
GetSizeInPixels(aGc.Device(),size);
|
sl@0
|
247 |
box.iTl=aTopLeft;
|
sl@0
|
248 |
box.iBr.iX=aTopLeft.iX+size.iWidth;
|
sl@0
|
249 |
box.iBr.iY=aTopLeft.iY+size.iHeight;
|
sl@0
|
250 |
TRgb black(0,0,0);
|
sl@0
|
251 |
TRgb white(255,255,255);
|
sl@0
|
252 |
// First draw outer box and fill in rest of box.
|
sl@0
|
253 |
aGc.SetBrushColor(white);
|
sl@0
|
254 |
aGc.SetBrushStyle(CGraphicsContext::ESolidBrush);
|
sl@0
|
255 |
aGc.DrawRect(box);
|
sl@0
|
256 |
// Inner box.
|
sl@0
|
257 |
sizeInner.iWidth=size.iWidth/3;
|
sl@0
|
258 |
sizeInner.iHeight=size.iHeight/3;
|
sl@0
|
259 |
box.iTl.iX+=sizeInner.iWidth;
|
sl@0
|
260 |
box.iTl.iY+=sizeInner.iHeight;
|
sl@0
|
261 |
box.iBr.iX-=sizeInner.iWidth;
|
sl@0
|
262 |
box.iBr.iY-=+sizeInner.iHeight;
|
sl@0
|
263 |
aGc.SetBrushColor(black);
|
sl@0
|
264 |
aGc.SetBrushStyle(CGraphicsContext::EDiamondCrossHatchBrush);
|
sl@0
|
265 |
aGc.DrawRect(box);
|
sl@0
|
266 |
}
|
sl@0
|
267 |
|
sl@0
|
268 |
|
sl@0
|
269 |
EXPORT_C void CTestPicture::ExternalizeL(RWriteStream& /*aStream*/)const
|
sl@0
|
270 |
{}
|
sl@0
|
271 |
|
sl@0
|
272 |
|
sl@0
|
273 |
////////////////////////////////////////////////////////////////////////
|
sl@0
|
274 |
|
sl@0
|
275 |
EXPORT_C CDummyField::CDummyField()
|
sl@0
|
276 |
{
|
sl@0
|
277 |
}
|
sl@0
|
278 |
|
sl@0
|
279 |
|
sl@0
|
280 |
EXPORT_C TInt CDummyField::Value(TPtr& aValueText)
|
sl@0
|
281 |
{
|
sl@0
|
282 |
if (aValueText.MaxLength() < 3)
|
sl@0
|
283 |
return 3;
|
sl@0
|
284 |
else
|
sl@0
|
285 |
{
|
sl@0
|
286 |
aValueText = _L("XXX");
|
sl@0
|
287 |
return 0;
|
sl@0
|
288 |
}
|
sl@0
|
289 |
}
|
sl@0
|
290 |
|
sl@0
|
291 |
|
sl@0
|
292 |
EXPORT_C void CDummyField::ExternalizeL(RWriteStream& aStream)const
|
sl@0
|
293 |
{
|
sl@0
|
294 |
aStream.WriteUint8L(0); // empty streams cause problems
|
sl@0
|
295 |
}
|
sl@0
|
296 |
|
sl@0
|
297 |
|
sl@0
|
298 |
EXPORT_C void CDummyField::InternalizeL(RReadStream& aStream)
|
sl@0
|
299 |
{
|
sl@0
|
300 |
TUint8 dummy=aStream.ReadUint8L();
|
sl@0
|
301 |
dummy=0;
|
sl@0
|
302 |
}
|
sl@0
|
303 |
|
sl@0
|
304 |
|
sl@0
|
305 |
EXPORT_C TUid CDummyField::Type() const
|
sl@0
|
306 |
{
|
sl@0
|
307 |
return KNullUid;
|
sl@0
|
308 |
}
|