sl@0
|
1 |
// Copyright (c) 2005-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 |
@publishedAll
|
sl@0
|
19 |
@released
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
#include <ecam/mcameraoverlay.h>
|
sl@0
|
23 |
#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
|
sl@0
|
24 |
#include <ecam/cameraoverlayconst.h>
|
sl@0
|
25 |
#endif
|
sl@0
|
26 |
#include "ecamversion.h"
|
sl@0
|
27 |
|
sl@0
|
28 |
const TUint KBaselinedOverlayModeMask = (CCamera::CCameraOverlay::EModeVideo << 1) - 1;
|
sl@0
|
29 |
const TUint KOverlayGlobalStillMode = (CCamera::CCameraOverlay::EModeStillImageContinuous
|
sl@0
|
30 |
| CCamera::CCameraOverlay::EModeStillImageBracket
|
sl@0
|
31 |
| CCamera::CCameraOverlay::EModeStillImageBracketMerge
|
sl@0
|
32 |
| CCamera::CCameraOverlay::EModeStillImageTimed
|
sl@0
|
33 |
| CCamera::CCameraOverlay::EModeStillImageTimeLapse
|
sl@0
|
34 |
| CCamera::CCameraOverlay::EModeStillImageBurst);
|
sl@0
|
35 |
/**
|
sl@0
|
36 |
Factory function that creates a new camera overlay object on the heap.
|
sl@0
|
37 |
|
sl@0
|
38 |
@param aCamera
|
sl@0
|
39 |
A reference to the camera object for which a camera overlay object is to be created.
|
sl@0
|
40 |
|
sl@0
|
41 |
@leave KErrNoMemory if out of memory; also any system wide error.
|
sl@0
|
42 |
|
sl@0
|
43 |
@return A pointer to the newly created camera overlay object.
|
sl@0
|
44 |
|
sl@0
|
45 |
@note Clients using MCameraObserver are not recommended to use this extension class since they cannot handle events.
|
sl@0
|
46 |
*/
|
sl@0
|
47 |
|
sl@0
|
48 |
EXPORT_C CCamera::CCameraOverlay* CCamera::CCameraOverlay::NewL(CCamera& aCamera)
|
sl@0
|
49 |
{
|
sl@0
|
50 |
CCamera::CCameraOverlay* self = new (ELeave) CCamera::CCameraOverlay(aCamera);
|
sl@0
|
51 |
CleanupStack::PushL(self);
|
sl@0
|
52 |
self->ConstructL();
|
sl@0
|
53 |
CleanupStack::Pop(self);
|
sl@0
|
54 |
|
sl@0
|
55 |
return self;
|
sl@0
|
56 |
}
|
sl@0
|
57 |
|
sl@0
|
58 |
/**
|
sl@0
|
59 |
CCameraOverlay second phase constructor.
|
sl@0
|
60 |
|
sl@0
|
61 |
This function used to initialise internal state of the object.
|
sl@0
|
62 |
It uses reference to the camera to retrieve overlay interface pointer.
|
sl@0
|
63 |
|
sl@0
|
64 |
@leave KErrNotSupported if this functionality is not supported; also any system wide error.
|
sl@0
|
65 |
*/
|
sl@0
|
66 |
void CCamera::CCameraOverlay::ConstructL()
|
sl@0
|
67 |
{
|
sl@0
|
68 |
iImpl = static_cast<MCameraOverlay*>(iOwner.CustomInterface(KECamMCameraOverlayUid));
|
sl@0
|
69 |
|
sl@0
|
70 |
if (iImpl == NULL)
|
sl@0
|
71 |
{
|
sl@0
|
72 |
User::Leave(KErrNotSupported);
|
sl@0
|
73 |
}
|
sl@0
|
74 |
|
sl@0
|
75 |
iImpl2 = static_cast<MCameraOverlay2*>(iOwner.CustomInterface(KECamMCameraOverlay2Uid));
|
sl@0
|
76 |
}
|
sl@0
|
77 |
|
sl@0
|
78 |
/**
|
sl@0
|
79 |
Constructor for the CCamera::CCameraOverlay class.
|
sl@0
|
80 |
|
sl@0
|
81 |
@param aOwner
|
sl@0
|
82 |
A reference to the camera object for which a camera overlay object is to be created.
|
sl@0
|
83 |
*/
|
sl@0
|
84 |
CCamera::CCameraOverlay::CCameraOverlay(CCamera& aOwner):iOwner(aOwner), iImpl(NULL), iImpl2(NULL)
|
sl@0
|
85 |
{
|
sl@0
|
86 |
}
|
sl@0
|
87 |
|
sl@0
|
88 |
/**
|
sl@0
|
89 |
Destructor for the CCamera::CCameraOverlay class.
|
sl@0
|
90 |
*/
|
sl@0
|
91 |
EXPORT_C CCamera::CCameraOverlay::~CCameraOverlay()
|
sl@0
|
92 |
{
|
sl@0
|
93 |
if (iImpl != NULL)
|
sl@0
|
94 |
{
|
sl@0
|
95 |
iImpl->Release();
|
sl@0
|
96 |
}
|
sl@0
|
97 |
if (iImpl2 != NULL)
|
sl@0
|
98 |
{
|
sl@0
|
99 |
iImpl2->Release();
|
sl@0
|
100 |
}
|
sl@0
|
101 |
}
|
sl@0
|
102 |
|
sl@0
|
103 |
/**
|
sl@0
|
104 |
Creates an image overlay object on the ECam implementation, returning a handle to the newly created object.
|
sl@0
|
105 |
|
sl@0
|
106 |
@param aParameters
|
sl@0
|
107 |
The parameters characterizing the overlay to be created.
|
sl@0
|
108 |
@param aBitmap
|
sl@0
|
109 |
The image that is to become the overlay.
|
sl@0
|
110 |
By default this is set to NULL, allowing the client to provide the image at some point after
|
sl@0
|
111 |
the overlay object has been created, by using SetOverlayBitmapL().
|
sl@0
|
112 |
|
sl@0
|
113 |
@leave KErrNoMemory if out of memory; also any system wide error.
|
sl@0
|
114 |
|
sl@0
|
115 |
@leave KErrArgument if the member variables in TOverlayParameters are such that they create mutual exclusion.
|
sl@0
|
116 |
|
sl@0
|
117 |
@return The overlay handle.
|
sl@0
|
118 |
*/
|
sl@0
|
119 |
EXPORT_C TUint CCamera::CCameraOverlay::CreateOverlayL(const TOverlayParameters& aParameters, CFbsBitmap* aBitmap)
|
sl@0
|
120 |
{
|
sl@0
|
121 |
CCamera::CCameraOverlay::TOverlayParameters overlayParameters = aParameters;
|
sl@0
|
122 |
if (aParameters.iCurrentModes & EModeViewfinder)
|
sl@0
|
123 |
{
|
sl@0
|
124 |
overlayParameters.iCurrentModes |= EModeClientViewfinder;
|
sl@0
|
125 |
overlayParameters.iCurrentModes |= EModeDirectViewfinder;
|
sl@0
|
126 |
}
|
sl@0
|
127 |
if (aParameters.iCurrentModes & EModeStillImage)
|
sl@0
|
128 |
{
|
sl@0
|
129 |
overlayParameters.iCurrentModes |= KOverlayGlobalStillMode;
|
sl@0
|
130 |
}
|
sl@0
|
131 |
return iImpl->CreateOverlayL(overlayParameters, aBitmap);
|
sl@0
|
132 |
}
|
sl@0
|
133 |
|
sl@0
|
134 |
/**
|
sl@0
|
135 |
Allows the overlay image data to be changed for a specified overlay.
|
sl@0
|
136 |
Use this function to set the overlay image data if it was not specified when the overlay
|
sl@0
|
137 |
was created using CreateOverlayL().
|
sl@0
|
138 |
|
sl@0
|
139 |
@param aOverlayHandle
|
sl@0
|
140 |
The handle of the overlay whose overlay image data is to be changed.
|
sl@0
|
141 |
@param aBitmap
|
sl@0
|
142 |
The new image data for the overlay.
|
sl@0
|
143 |
|
sl@0
|
144 |
@leave KErrArgument if aOverlayHandle is out of range; also any system wide error.
|
sl@0
|
145 |
|
sl@0
|
146 |
@note Once this method is called, overlay size should not be changed for the given overlay. Hence, SetOverlayParametersL
|
sl@0
|
147 |
should not be called after this method.
|
sl@0
|
148 |
*/
|
sl@0
|
149 |
EXPORT_C void CCamera::CCameraOverlay::SetOverlayBitmapL(TUint aOverlayHandle, const CFbsBitmap* aBitmap)
|
sl@0
|
150 |
{
|
sl@0
|
151 |
iImpl->SetOverlayBitmapL(aOverlayHandle, aBitmap);
|
sl@0
|
152 |
}
|
sl@0
|
153 |
|
sl@0
|
154 |
/**
|
sl@0
|
155 |
@publishedPartner
|
sl@0
|
156 |
@prototype
|
sl@0
|
157 |
|
sl@0
|
158 |
Allows the overlay image data to be changed for a specified overlay. Ownership of the bitmap is passed to the
|
sl@0
|
159 |
implementation.
|
sl@0
|
160 |
Use this function to set the overlay image data if it was not specified when the overlay was created using
|
sl@0
|
161 |
CreateOverlayL().
|
sl@0
|
162 |
|
sl@0
|
163 |
@param aOverlayHandle
|
sl@0
|
164 |
The handle of the overlay whose overlay image data is to be changed.
|
sl@0
|
165 |
@param aBitmap
|
sl@0
|
166 |
The new image data for the overlay.
|
sl@0
|
167 |
|
sl@0
|
168 |
@leave May leave with any error code.
|
sl@0
|
169 |
|
sl@0
|
170 |
@note If required, implementation is free to modify the overlay bitmap passed to it.
|
sl@0
|
171 |
|
sl@0
|
172 |
@note SetOverlayParametersL should not be called after this method for the given overlay since it may change the overlay
|
sl@0
|
173 |
parameters considerably. In such a case, SetOverlayParametersL may leave with error KErrArgument.
|
sl@0
|
174 |
*/
|
sl@0
|
175 |
EXPORT_C void CCamera::CCameraOverlay::SetModifiableOverlayBitmapL(TUint aOverlayHandle, CFbsBitmap* aBitmap)
|
sl@0
|
176 |
{
|
sl@0
|
177 |
if(iImpl2 != NULL)
|
sl@0
|
178 |
{
|
sl@0
|
179 |
iImpl2->SetModifiableOverlayBitmapL(aOverlayHandle, aBitmap);
|
sl@0
|
180 |
}
|
sl@0
|
181 |
else
|
sl@0
|
182 |
{
|
sl@0
|
183 |
User::Leave(KErrNotSupported);
|
sl@0
|
184 |
}
|
sl@0
|
185 |
}
|
sl@0
|
186 |
|
sl@0
|
187 |
/**
|
sl@0
|
188 |
Gets the overlay image data for a specified overlay.
|
sl@0
|
189 |
|
sl@0
|
190 |
@param aOverlayHandle
|
sl@0
|
191 |
The handle of the overlay whose overlay image data is to be obtained.
|
sl@0
|
192 |
@param aBitmap
|
sl@0
|
193 |
A CFbsBitmap that will receive the returned image data for the overlay.
|
sl@0
|
194 |
|
sl@0
|
195 |
@leave KErrArgument if aOverlayHandle is out of range; also any system wide error.
|
sl@0
|
196 |
|
sl@0
|
197 |
@leave KErrNotSupported if a sharing client (which did not create the given overlay) tries to retrieve the overlay bitmap
|
sl@0
|
198 |
and the implementation may not be interested in providing the overlay.
|
sl@0
|
199 |
|
sl@0
|
200 |
@note The ECam implementation will transfer the ownership of the aBitmap to the client.
|
sl@0
|
201 |
*/
|
sl@0
|
202 |
EXPORT_C void CCamera::CCameraOverlay::GetOverlayBitmapL(TUint aOverlayHandle, CFbsBitmap* aBitmap)
|
sl@0
|
203 |
{
|
sl@0
|
204 |
iImpl->GetOverlayBitmapL(aOverlayHandle, aBitmap);
|
sl@0
|
205 |
}
|
sl@0
|
206 |
|
sl@0
|
207 |
/**
|
sl@0
|
208 |
Gets the parameters that characterize a given overlay.
|
sl@0
|
209 |
|
sl@0
|
210 |
@param aOverlayHandle
|
sl@0
|
211 |
The handle of the overlay whose parameters are required.
|
sl@0
|
212 |
@param aInfo
|
sl@0
|
213 |
Reference to TOverlayParameters object that will contain the returned overlay parameters.
|
sl@0
|
214 |
|
sl@0
|
215 |
@leave KErrArgument if aOverlayHandle is out of range; also any system wide error.
|
sl@0
|
216 |
*/
|
sl@0
|
217 |
EXPORT_C void CCamera::CCameraOverlay::GetOverlayParametersL(TUint aOverlayHandle, TOverlayParameters& aInfo)
|
sl@0
|
218 |
{
|
sl@0
|
219 |
iImpl->GetOverlayParametersL(aOverlayHandle, aInfo);
|
sl@0
|
220 |
|
sl@0
|
221 |
// for clients not using CCamera::New2L() turn new overlay modes into old ones
|
sl@0
|
222 |
if (iOwner.CameraVersion() == KCameraDefaultVersion)
|
sl@0
|
223 |
{
|
sl@0
|
224 |
// specific viewfinder modes into "old" EModeViewfinder
|
sl@0
|
225 |
if (aInfo.iCurrentModes & (EModeClientViewfinder | EModeDirectViewfinder))
|
sl@0
|
226 |
{
|
sl@0
|
227 |
aInfo.iCurrentModes |= EModeViewfinder;
|
sl@0
|
228 |
}
|
sl@0
|
229 |
// turn different drive modes into "old" EModeStillImage
|
sl@0
|
230 |
if (aInfo.iCurrentModes & ( EModeStillImageContinuous | EModeStillImageBracket |
|
sl@0
|
231 |
EModeStillImageBracketMerge | EModeStillImageTimed |
|
sl@0
|
232 |
EModeStillImageTimeLapse | EModeStillImageBurst
|
sl@0
|
233 |
)
|
sl@0
|
234 |
)
|
sl@0
|
235 |
{
|
sl@0
|
236 |
aInfo.iCurrentModes |= EModeStillImage;
|
sl@0
|
237 |
}
|
sl@0
|
238 |
// for old clients we present only old set of features
|
sl@0
|
239 |
aInfo.iCurrentModes &= KBaselinedOverlayModeMask;
|
sl@0
|
240 |
}
|
sl@0
|
241 |
else
|
sl@0
|
242 |
{
|
sl@0
|
243 |
if (aInfo.iCurrentModes & EModeViewfinder)
|
sl@0
|
244 |
{
|
sl@0
|
245 |
aInfo.iCurrentModes |= EModeClientViewfinder;
|
sl@0
|
246 |
aInfo.iCurrentModes |= EModeDirectViewfinder;
|
sl@0
|
247 |
}
|
sl@0
|
248 |
if (aInfo.iCurrentModes & EModeStillImage)
|
sl@0
|
249 |
{
|
sl@0
|
250 |
aInfo.iCurrentModes |= KOverlayGlobalStillMode;
|
sl@0
|
251 |
}
|
sl@0
|
252 |
}
|
sl@0
|
253 |
}
|
sl@0
|
254 |
|
sl@0
|
255 |
/**
|
sl@0
|
256 |
Sets new parameters that characterize a given overlay.
|
sl@0
|
257 |
|
sl@0
|
258 |
@param aOverlayHandle
|
sl@0
|
259 |
The handle of the overlay whose parameters are to be changed.
|
sl@0
|
260 |
@param aParameters
|
sl@0
|
261 |
The new overlay parameters.
|
sl@0
|
262 |
|
sl@0
|
263 |
@leave KErrNotSupported if TOverlayCameraMode passed in TOverlayParameters is not supported;
|
sl@0
|
264 |
also any system wide error.
|
sl@0
|
265 |
|
sl@0
|
266 |
@leave KErrArgument if the member variables in TOverlayParameters are such that they create mutual exclusion.
|
sl@0
|
267 |
*/
|
sl@0
|
268 |
EXPORT_C void CCamera::CCameraOverlay::SetOverlayParametersL(TUint aOverlayHandle, const TOverlayParameters& aParameters)
|
sl@0
|
269 |
{
|
sl@0
|
270 |
CCamera::CCameraOverlay::TOverlayParameters overlayParameters = aParameters;
|
sl@0
|
271 |
if (aParameters.iCurrentModes & EModeViewfinder)
|
sl@0
|
272 |
{
|
sl@0
|
273 |
overlayParameters.iCurrentModes |= EModeClientViewfinder;
|
sl@0
|
274 |
overlayParameters.iCurrentModes |= EModeDirectViewfinder;
|
sl@0
|
275 |
}
|
sl@0
|
276 |
if (aParameters.iCurrentModes & EModeStillImage)
|
sl@0
|
277 |
{
|
sl@0
|
278 |
overlayParameters.iCurrentModes |= KOverlayGlobalStillMode;
|
sl@0
|
279 |
}
|
sl@0
|
280 |
|
sl@0
|
281 |
iImpl->SetOverlayParametersL(aOverlayHandle, overlayParameters);
|
sl@0
|
282 |
}
|
sl@0
|
283 |
|
sl@0
|
284 |
/**
|
sl@0
|
285 |
Releases the specified overlay handle.
|
sl@0
|
286 |
|
sl@0
|
287 |
@note If the handle specified in aOverlayHandle is invalid (out of range) the function
|
sl@0
|
288 |
call is ignored and no error is reported.
|
sl@0
|
289 |
|
sl@0
|
290 |
@param aOverlayHandle
|
sl@0
|
291 |
The handle of the overlay that is to be released.
|
sl@0
|
292 |
*/
|
sl@0
|
293 |
EXPORT_C void CCamera::CCameraOverlay::ReleaseOverlay(TUint aOverlayHandle)
|
sl@0
|
294 |
{
|
sl@0
|
295 |
iImpl->ReleaseOverlay(aOverlayHandle);
|
sl@0
|
296 |
}
|
sl@0
|
297 |
|
sl@0
|
298 |
/**
|
sl@0
|
299 |
Gets information on the overlay functionality supported by the ECam implementation.
|
sl@0
|
300 |
|
sl@0
|
301 |
@param aInfo
|
sl@0
|
302 |
A reference to a TOverlaySupportInfo object that will receive the overlay support information.
|
sl@0
|
303 |
*/
|
sl@0
|
304 |
EXPORT_C void CCamera::CCameraOverlay::GetOverlaySupport(TOverlaySupportInfo& aInfo)
|
sl@0
|
305 |
{
|
sl@0
|
306 |
iImpl->GetOverlaySupport(aInfo);
|
sl@0
|
307 |
// we hide new overlay modes for clients not using New2L()/NewDuplicate2L()
|
sl@0
|
308 |
if (iOwner.CameraVersion() == KCameraDefaultVersion)
|
sl@0
|
309 |
{
|
sl@0
|
310 |
aInfo.iSupportedModes &= KBaselinedOverlayModeMask;
|
sl@0
|
311 |
}
|
sl@0
|
312 |
else
|
sl@0
|
313 |
{
|
sl@0
|
314 |
if (aInfo.iSupportedModes & EModeViewfinder)
|
sl@0
|
315 |
{
|
sl@0
|
316 |
aInfo.iSupportedModes |= EModeClientViewfinder;
|
sl@0
|
317 |
aInfo.iSupportedModes |= EModeDirectViewfinder;
|
sl@0
|
318 |
}
|
sl@0
|
319 |
if (aInfo.iSupportedModes & EModeStillImage)
|
sl@0
|
320 |
{
|
sl@0
|
321 |
aInfo.iSupportedModes |= KOverlayGlobalStillMode;
|
sl@0
|
322 |
}
|
sl@0
|
323 |
}
|
sl@0
|
324 |
}
|
sl@0
|
325 |
|
sl@0
|
326 |
/**
|
sl@0
|
327 |
Gets all the overlay handles maintained by the ECam implementation, in order of their Z-Value.
|
sl@0
|
328 |
|
sl@0
|
329 |
@param aOverlayHandles
|
sl@0
|
330 |
Returned list, in Z-Value order, of all the overlay handles maintained on the ECam implementation.
|
sl@0
|
331 |
The topmost overlay is the first element of the array.
|
sl@0
|
332 |
|
sl@0
|
333 |
@leave KErrNoMemory if out of memory; also any system wide error.
|
sl@0
|
334 |
|
sl@0
|
335 |
@note Implementation shall give preference to the sequence in which the client has passed the overlay handles in case of
|
sl@0
|
336 |
any mis-match with the 'z-order' of each such overlay. Implementation shall amend the 'z-order' of the overlays if
|
sl@0
|
337 |
required to remove any ambiguity.
|
sl@0
|
338 |
*/
|
sl@0
|
339 |
EXPORT_C void CCamera::CCameraOverlay::GetAllOverlaysInZOrderL(RArray<TUint>& aOverlayHandles)
|
sl@0
|
340 |
{
|
sl@0
|
341 |
iImpl->GetAllOverlaysInZOrderL(aOverlayHandles);
|
sl@0
|
342 |
}
|
sl@0
|
343 |
|
sl@0
|
344 |
/**
|
sl@0
|
345 |
Sets the Z-Order of all the overlay handles known by this CCameraOverlay object.
|
sl@0
|
346 |
|
sl@0
|
347 |
@param aOverlayHandles
|
sl@0
|
348 |
The overlay handles in aOverlayHandles array. This must be the complete current set
|
sl@0
|
349 |
of handles known to this CCameraOverlay object. The client specifies the desired
|
sl@0
|
350 |
order by placing the topmost overlay in the first element of the array.
|
sl@0
|
351 |
|
sl@0
|
352 |
@leave KErrNoMemory if out of memory; also any system wide error.
|
sl@0
|
353 |
|
sl@0
|
354 |
@note Implementation shall give preference to the sequence in which the client has passed the overlay handles in case of
|
sl@0
|
355 |
any mis-match with the 'z-order' of each such overlay. Implementation shall amend the 'z-order' of the overlays if
|
sl@0
|
356 |
required to remove any ambiguity.
|
sl@0
|
357 |
*/
|
sl@0
|
358 |
EXPORT_C void CCamera::CCameraOverlay::SetAllOverlaysInZOrderL(const RArray<TUint>& aOverlayHandles)
|
sl@0
|
359 |
{
|
sl@0
|
360 |
iImpl->SetAllOverlaysInZOrderL(aOverlayHandles);
|
sl@0
|
361 |
}
|
sl@0
|
362 |
|
sl@0
|
363 |
/**
|
sl@0
|
364 |
Constructor for the TOverlaySupportInfo class.
|
sl@0
|
365 |
*/
|
sl@0
|
366 |
EXPORT_C CCamera::CCameraOverlay::TOverlaySupportInfo::TOverlaySupportInfo()
|
sl@0
|
367 |
{
|
sl@0
|
368 |
iDesiredCameraMode = CCamera::CCameraOverlay::EModeNone;
|
sl@0
|
369 |
iViewFinderHandle = KECamOverlayInvalidViewFinderHandle;
|
sl@0
|
370 |
}
|
sl@0
|
371 |
|
sl@0
|
372 |
/**
|
sl@0
|
373 |
Returns the size of the class. Used for extensibility by deriving from this base class and adding new member variables.
|
sl@0
|
374 |
Intended to be used for implementation of methods where this class reference is passed as function arguments.
|
sl@0
|
375 |
Implementation of such methods can find out the whether the actual class passed is base or the derived one. So, if a new application
|
sl@0
|
376 |
is made to run on an old implementation, an error may occur once the old implementation detects this by getting
|
sl@0
|
377 |
the size information of the T class passed. Also, if an old application is made to run on a new implementation, this can be
|
sl@0
|
378 |
corrrectly handled if the derived class variables handling is done in a proper 'if-else' statement.
|
sl@0
|
379 |
|
sl@0
|
380 |
@return The size of the class.
|
sl@0
|
381 |
|
sl@0
|
382 |
@note The size will be modified when the T-class gets updated.
|
sl@0
|
383 |
*/
|
sl@0
|
384 |
EXPORT_C TUint CCamera::CCameraOverlay::TOverlaySupportInfo::Size() const
|
sl@0
|
385 |
{
|
sl@0
|
386 |
return sizeof(CCamera::CCameraOverlay::TOverlaySupportInfo);
|
sl@0
|
387 |
}
|
sl@0
|
388 |
|
sl@0
|
389 |
/**
|
sl@0
|
390 |
Returns the version of the class. Used for extensibility specially when the class members are not added but the Reserved
|
sl@0
|
391 |
members get used at a later stage.
|
sl@0
|
392 |
|
sl@0
|
393 |
@return The version of the class.
|
sl@0
|
394 |
|
sl@0
|
395 |
@note The version will be modified when the T-class gets updated.
|
sl@0
|
396 |
*/
|
sl@0
|
397 |
EXPORT_C TUint CCamera::CCameraOverlay::TOverlaySupportInfo::Version() const
|
sl@0
|
398 |
{
|
sl@0
|
399 |
return KECamOverlaySupportInfoCurrentVersion;
|
sl@0
|
400 |
}
|
sl@0
|
401 |
|
sl@0
|
402 |
/**
|
sl@0
|
403 |
Constructor for the TOverlayParameters class.
|
sl@0
|
404 |
*/
|
sl@0
|
405 |
EXPORT_C CCamera::CCameraOverlay::TOverlayParameters::TOverlayParameters()
|
sl@0
|
406 |
{
|
sl@0
|
407 |
iViewFinderHandle = KECamOverlayInvalidViewFinderHandle;
|
sl@0
|
408 |
}
|
sl@0
|
409 |
|
sl@0
|
410 |
/**
|
sl@0
|
411 |
Returns the size of the class. Used for extensibility by deriving from this base class and adding new member variables.
|
sl@0
|
412 |
Intended to be used for implementation of methods where this class reference is passed as function arguments.
|
sl@0
|
413 |
Implementation of such methods can find out the whether the actual class passed is base or the derived one. So, if a new application
|
sl@0
|
414 |
is made to run on an old implementation, an error may occur once the old implementation detects this by getting
|
sl@0
|
415 |
the size information of the T class passed. Also, if an old application is made to run on a new implementation, this can be
|
sl@0
|
416 |
corrrectly handled if the derived class variables handling is done in a proper 'if-else' statement.
|
sl@0
|
417 |
|
sl@0
|
418 |
@return The size of the class.
|
sl@0
|
419 |
|
sl@0
|
420 |
@note The size will be modified when the T-class gets updated.
|
sl@0
|
421 |
*/
|
sl@0
|
422 |
EXPORT_C TUint CCamera::CCameraOverlay::TOverlayParameters::Size() const
|
sl@0
|
423 |
{
|
sl@0
|
424 |
return sizeof(CCamera::CCameraOverlay::TOverlayParameters);
|
sl@0
|
425 |
}
|
sl@0
|
426 |
|
sl@0
|
427 |
/**
|
sl@0
|
428 |
Returns the version of the class. Used for extensibility specially when the class members are not added but the Reserved
|
sl@0
|
429 |
members get used at a later stage.
|
sl@0
|
430 |
|
sl@0
|
431 |
@return The version of the class.
|
sl@0
|
432 |
|
sl@0
|
433 |
@note The version will be modified when the T-class gets updated.
|
sl@0
|
434 |
*/
|
sl@0
|
435 |
EXPORT_C TUint CCamera::CCameraOverlay::TOverlayParameters::Version() const
|
sl@0
|
436 |
{
|
sl@0
|
437 |
return KECamOverlayParametersCurrentVersion;
|
sl@0
|
438 |
}
|
sl@0
|
439 |
|
sl@0
|
440 |
/**
|
sl@0
|
441 |
@publishedPartner
|
sl@0
|
442 |
@prototype
|
sl@0
|
443 |
|
sl@0
|
444 |
Gets all the overlay handles maintained by the ECam implementation, in order of their z-value, for a particular camera mode.
|
sl@0
|
445 |
If for viewfinder, then the handle number is used to get the z-value for the viewfinder whose handle number is passed.
|
sl@0
|
446 |
|
sl@0
|
447 |
@param aOverlayCameraMode
|
sl@0
|
448 |
The specific camera mode whose overlays' z-value information is required.
|
sl@0
|
449 |
|
sl@0
|
450 |
@param aViewFinderHandle
|
sl@0
|
451 |
The specific viewfinder handle, if overlays' z-value information is required for viewfinder camera mode.
|
sl@0
|
452 |
|
sl@0
|
453 |
@param aOverlayHandles
|
sl@0
|
454 |
Returned list, in z-value order, of all the overlay handles maintained on the ECam implementation.
|
sl@0
|
455 |
The topmost overlay is the first element of the array.
|
sl@0
|
456 |
|
sl@0
|
457 |
@leave May leave with any error code.
|
sl@0
|
458 |
|
sl@0
|
459 |
@note Implementation shall give preference to the sequence in which the client has passed the overlay handles in case of
|
sl@0
|
460 |
any mis-match with the 'z-order' of each such overlay. Implementation shall amend the 'z-order' of the overlays if
|
sl@0
|
461 |
required to remove any ambiguity.
|
sl@0
|
462 |
*/
|
sl@0
|
463 |
EXPORT_C void CCamera::CCameraOverlay::GetAllOverlaysInZOrderL(CCamera::CCameraOverlay::TOverlayCameraMode aOverlayCameraMode, TInt aViewFinderHandle, RArray<TUint>& aOverlayHandles) const
|
sl@0
|
464 |
{
|
sl@0
|
465 |
if(iImpl2 != NULL)
|
sl@0
|
466 |
{
|
sl@0
|
467 |
iImpl2->GetAllOverlaysInZOrderL(aOverlayCameraMode, aViewFinderHandle, aOverlayHandles);
|
sl@0
|
468 |
}
|
sl@0
|
469 |
else
|
sl@0
|
470 |
{
|
sl@0
|
471 |
User::Leave(KErrNotSupported);
|
sl@0
|
472 |
}
|
sl@0
|
473 |
}
|
sl@0
|
474 |
|
sl@0
|
475 |
/**
|
sl@0
|
476 |
@publishedPartner
|
sl@0
|
477 |
@prototype
|
sl@0
|
478 |
|
sl@0
|
479 |
Sets all the overlay handles maintained by the ECam implementation, in order of their z-value for a particular camera mode.
|
sl@0
|
480 |
If for viewfinder, then the handle number is used to set the z-value for the viewfinder whose handle number is passed.
|
sl@0
|
481 |
|
sl@0
|
482 |
@param aOverlayCameraMode
|
sl@0
|
483 |
The specific camera mode whose overlays' z-value is to be set.
|
sl@0
|
484 |
|
sl@0
|
485 |
@param aViewFinderHandle
|
sl@0
|
486 |
The specific viewfinder handle, if overlays' z-value is required to be set for viewfinder camera mode.
|
sl@0
|
487 |
|
sl@0
|
488 |
@param aOverlayHandles
|
sl@0
|
489 |
The overlay handles in aOverlayHandles array. This must be the complete current set
|
sl@0
|
490 |
of handles known to this CCameraOverlay object for the given camera mode (and for the given viewfinder, if applicable).
|
sl@0
|
491 |
The client specifies the desired order by placing the topmost overlay in the first element of the array.
|
sl@0
|
492 |
|
sl@0
|
493 |
@leave May leave with any error code.
|
sl@0
|
494 |
|
sl@0
|
495 |
@note Implementation shall give preference to the sequence in which the client has passed the overlay handles in case of
|
sl@0
|
496 |
any mis-match with the 'z-order' of each such overlay. Implementation shall amend the 'z-order' of the overlays if
|
sl@0
|
497 |
required to remove any ambiguity.
|
sl@0
|
498 |
*/
|
sl@0
|
499 |
EXPORT_C void CCamera::CCameraOverlay::SetAllOverlaysInZOrderL(CCamera::CCameraOverlay::TOverlayCameraMode aOverlayCameraMode, TInt aViewFinderHandle, const RArray<TUint>& aOverlayHandles)
|
sl@0
|
500 |
{
|
sl@0
|
501 |
if(iImpl2 != NULL)
|
sl@0
|
502 |
{
|
sl@0
|
503 |
iImpl2->SetAllOverlaysInZOrderL(aOverlayCameraMode, aViewFinderHandle, aOverlayHandles);
|
sl@0
|
504 |
}
|
sl@0
|
505 |
else
|
sl@0
|
506 |
{
|
sl@0
|
507 |
User::Leave(KErrNotSupported);
|
sl@0
|
508 |
}
|
sl@0
|
509 |
}
|