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 |
#include <ecam/ecamimageprocessingintf.h>
|
sl@0
|
17 |
#include <ecam/implementationfactoryintf.h>
|
sl@0
|
18 |
#include <ecamimageprocessing.h>
|
sl@0
|
19 |
#include "ecamversion.h"
|
sl@0
|
20 |
#include <ecam/ecamconstants.h>
|
sl@0
|
21 |
|
sl@0
|
22 |
const TInt KBaselinedEffects = 0x000001FF;
|
sl@0
|
23 |
const TUint KBaselinedImageProcessing = KUidECamEventImageProcessingGlareRemovalUidValue;
|
sl@0
|
24 |
|
sl@0
|
25 |
/**
|
sl@0
|
26 |
Factory function for creating the CCameraImageProcessing object.
|
sl@0
|
27 |
The created object is supposed to be meant for image captures only.
|
sl@0
|
28 |
|
sl@0
|
29 |
@param aCamera
|
sl@0
|
30 |
a reference to a CCamera object providing the settings.
|
sl@0
|
31 |
|
sl@0
|
32 |
@return a pointer to a fully constructed CCameraImageProcessing object.
|
sl@0
|
33 |
|
sl@0
|
34 |
@leave KErrNoMemory Out of memory Or any other system-wide error code.
|
sl@0
|
35 |
|
sl@0
|
36 |
@note Clients using MCameraObserver are not recommended to use this extension class since they cannot handle events.
|
sl@0
|
37 |
*/
|
sl@0
|
38 |
EXPORT_C CCamera::CCameraImageProcessing* CCamera::CCameraImageProcessing::NewL(CCamera& aCamera)
|
sl@0
|
39 |
{
|
sl@0
|
40 |
CCamera::CCameraImageProcessing* self = new (ELeave)CCamera::CCameraImageProcessing(aCamera);
|
sl@0
|
41 |
CleanupStack::PushL(self);
|
sl@0
|
42 |
self->ConstructL();
|
sl@0
|
43 |
CleanupStack::Pop(self);
|
sl@0
|
44 |
|
sl@0
|
45 |
return self;
|
sl@0
|
46 |
}
|
sl@0
|
47 |
|
sl@0
|
48 |
/**
|
sl@0
|
49 |
@internalComponent
|
sl@0
|
50 |
|
sl@0
|
51 |
Factory function for creating the CCameraImageProcessing object specifically for any one of the following:-
|
sl@0
|
52 |
VideoCapture and Viewfinder. This may be used in
|
sl@0
|
53 |
other possible cases as well.
|
sl@0
|
54 |
|
sl@0
|
55 |
The other factory method CCamera::CCameraImageProcessing::NewL is assumed for being operated on image captures only.
|
sl@0
|
56 |
|
sl@0
|
57 |
@param aCamera
|
sl@0
|
58 |
A reference to a CCamera object providing the settings.
|
sl@0
|
59 |
|
sl@0
|
60 |
@param aImplFactory
|
sl@0
|
61 |
A reference to the MImplementationFactory derived object.
|
sl@0
|
62 |
|
sl@0
|
63 |
@return a pointer to a fully constructed CCameraImageProcessing object.
|
sl@0
|
64 |
|
sl@0
|
65 |
@leave KErrNoMemory Out of memory.
|
sl@0
|
66 |
|
sl@0
|
67 |
@leave KErrExtensionNotSupported When NewL/NewDuplicateL used instead of New2L/NewDuplicate2L.
|
sl@0
|
68 |
|
sl@0
|
69 |
@note This method is supposed to be used by internal ECAM components only.
|
sl@0
|
70 |
*/
|
sl@0
|
71 |
EXPORT_C CCamera::CCameraImageProcessing* CCamera::CCameraImageProcessing::CreateL(CCamera& aCamera, MImplementationFactory& aImplFactory)
|
sl@0
|
72 |
{
|
sl@0
|
73 |
if(aCamera.CameraVersion() == KCameraDefaultVersion)
|
sl@0
|
74 |
{
|
sl@0
|
75 |
User::Leave(KErrExtensionNotSupported);
|
sl@0
|
76 |
}
|
sl@0
|
77 |
|
sl@0
|
78 |
CCamera::CCameraImageProcessing* self = new (ELeave)CCamera::CCameraImageProcessing(aCamera);
|
sl@0
|
79 |
CleanupStack::PushL(self);
|
sl@0
|
80 |
self->ConstructL(aImplFactory);
|
sl@0
|
81 |
CleanupStack::Pop(self);
|
sl@0
|
82 |
|
sl@0
|
83 |
return self;
|
sl@0
|
84 |
}
|
sl@0
|
85 |
|
sl@0
|
86 |
/**
|
sl@0
|
87 |
CCameraImageProcessing Constructor.
|
sl@0
|
88 |
|
sl@0
|
89 |
@param aOwner
|
sl@0
|
90 |
a reference to a CCamera object providing the settings.
|
sl@0
|
91 |
*/
|
sl@0
|
92 |
EXPORT_C CCamera::CCameraImageProcessing::CCameraImageProcessing(CCamera& aOwner):iOwner(aOwner), iImpl(NULL), iImpl2(NULL), iImpl3(NULL)
|
sl@0
|
93 |
{
|
sl@0
|
94 |
}
|
sl@0
|
95 |
|
sl@0
|
96 |
/**
|
sl@0
|
97 |
CCameraImageProcessing second phase constructor
|
sl@0
|
98 |
Function used to initialise internal state of the object. Uses reference to the camera to retrieve
|
sl@0
|
99 |
Camera image processing interface pointer.
|
sl@0
|
100 |
|
sl@0
|
101 |
@leave KErrNoMemory Out of memory.
|
sl@0
|
102 |
*/
|
sl@0
|
103 |
EXPORT_C void CCamera::CCameraImageProcessing::ConstructL()
|
sl@0
|
104 |
{
|
sl@0
|
105 |
iImpl = static_cast<MCameraImageProcessing*>(iOwner.CustomInterface(KECamMCameraImageProcessingUid));
|
sl@0
|
106 |
if (iImpl == NULL)
|
sl@0
|
107 |
{
|
sl@0
|
108 |
User::Leave(KErrNotSupported);
|
sl@0
|
109 |
}
|
sl@0
|
110 |
|
sl@0
|
111 |
iImpl2 = static_cast<MCameraImageProcessing2*>(iOwner.CustomInterface(KECamMCameraImageProcessing2Uid));
|
sl@0
|
112 |
iImpl3 = static_cast<MCameraImageProcessing3*>(iOwner.CustomInterface(KECamMCameraImageProcessing3Uid));
|
sl@0
|
113 |
}
|
sl@0
|
114 |
|
sl@0
|
115 |
/**
|
sl@0
|
116 |
@internalComponent
|
sl@0
|
117 |
|
sl@0
|
118 |
CCameraImageProcessing second phase constructor
|
sl@0
|
119 |
|
sl@0
|
120 |
Function used to initialise internal state of the object specifically for any one of the following:-
|
sl@0
|
121 |
VideoCapture and Viewfinder. This may be used in other possible cases as well.
|
sl@0
|
122 |
|
sl@0
|
123 |
@param aImplFactory
|
sl@0
|
124 |
A constant reference to the MImplementationFactory derived object.
|
sl@0
|
125 |
|
sl@0
|
126 |
@leave KErrNoMemory Out of memory; or any other error code as well.
|
sl@0
|
127 |
|
sl@0
|
128 |
@note This method is supposed to be used by this class only.
|
sl@0
|
129 |
*/
|
sl@0
|
130 |
EXPORT_C void CCamera::CCameraImageProcessing::ConstructL(const MImplementationFactory& aImplFactory)
|
sl@0
|
131 |
{
|
sl@0
|
132 |
TInt err = KErrNone;
|
sl@0
|
133 |
TAny* implPtr = NULL;
|
sl@0
|
134 |
|
sl@0
|
135 |
err = aImplFactory.GetImpl(implPtr, KECamMCameraImageProcessingUid);
|
sl@0
|
136 |
if (err != KErrNone)
|
sl@0
|
137 |
{
|
sl@0
|
138 |
User::Leave(err);
|
sl@0
|
139 |
}
|
sl@0
|
140 |
iImpl = static_cast<MCameraImageProcessing*>(implPtr);
|
sl@0
|
141 |
|
sl@0
|
142 |
implPtr = NULL;
|
sl@0
|
143 |
err = aImplFactory.GetImpl(implPtr, KECamMCameraImageProcessing2Uid);
|
sl@0
|
144 |
if (err != KErrNone && err != KErrNotSupported)
|
sl@0
|
145 |
{
|
sl@0
|
146 |
User::Leave(err);
|
sl@0
|
147 |
}
|
sl@0
|
148 |
iImpl2 = static_cast<MCameraImageProcessing2*>(implPtr);
|
sl@0
|
149 |
|
sl@0
|
150 |
implPtr = NULL;
|
sl@0
|
151 |
err = aImplFactory.GetImpl(implPtr, KECamMCameraImageProcessing3Uid);
|
sl@0
|
152 |
if (err != KErrNone && err != KErrNotSupported)
|
sl@0
|
153 |
{
|
sl@0
|
154 |
User::Leave(err);
|
sl@0
|
155 |
}
|
sl@0
|
156 |
iImpl3 = static_cast<MCameraImageProcessing3*>(implPtr);
|
sl@0
|
157 |
}
|
sl@0
|
158 |
|
sl@0
|
159 |
/**
|
sl@0
|
160 |
Destructor
|
sl@0
|
161 |
*/
|
sl@0
|
162 |
EXPORT_C CCamera::CCameraImageProcessing::~CCameraImageProcessing()
|
sl@0
|
163 |
{
|
sl@0
|
164 |
if (iImpl != NULL)
|
sl@0
|
165 |
{
|
sl@0
|
166 |
iImpl->Release();
|
sl@0
|
167 |
}
|
sl@0
|
168 |
|
sl@0
|
169 |
if (iImpl2 != NULL)
|
sl@0
|
170 |
{
|
sl@0
|
171 |
iImpl2->Release();
|
sl@0
|
172 |
}
|
sl@0
|
173 |
|
sl@0
|
174 |
if (iImpl3 != NULL)
|
sl@0
|
175 |
{
|
sl@0
|
176 |
iImpl3->Release();
|
sl@0
|
177 |
}
|
sl@0
|
178 |
}
|
sl@0
|
179 |
|
sl@0
|
180 |
/** Get all transformations supported on the camera.
|
sl@0
|
181 |
|
sl@0
|
182 |
@param aTransformations
|
sl@0
|
183 |
An empty RArray of TUids to store the UIDs of the supported transformations.
|
sl@0
|
184 |
|
sl@0
|
185 |
@leave KErrNoMemory Out of memory.
|
sl@0
|
186 |
*/
|
sl@0
|
187 |
EXPORT_C void CCamera::CCameraImageProcessing::GetSupportedTransformationsL(RArray<TUid>& aTransformations) const
|
sl@0
|
188 |
{
|
sl@0
|
189 |
iImpl->GetSupportedTransformationsL(aTransformations);
|
sl@0
|
190 |
|
sl@0
|
191 |
/* if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
|
sl@0
|
192 |
application is not prepared to receive extra added uid values (new settings added). So, any extra uid value passed
|
sl@0
|
193 |
from the implementation will be filtered at this point.
|
sl@0
|
194 |
To receive extra added uid values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
|
sl@0
|
195 |
to create camera object. In this case, application is assumed to be prepared to receive unrecognised uid values */
|
sl@0
|
196 |
if(iOwner.CameraVersion() == KCameraDefaultVersion)
|
sl@0
|
197 |
{
|
sl@0
|
198 |
for(TInt index =0; index < aTransformations.Count(); index++)
|
sl@0
|
199 |
{
|
sl@0
|
200 |
/** KBaselinedImageProcessing is the baseline. Any image processing attribute with greater uid value means that
|
sl@0
|
201 |
it has been added in later versions */
|
sl@0
|
202 |
if(aTransformations[index].iUid > KBaselinedImageProcessing)
|
sl@0
|
203 |
{
|
sl@0
|
204 |
aTransformations.Remove(index);
|
sl@0
|
205 |
index--;
|
sl@0
|
206 |
}
|
sl@0
|
207 |
}
|
sl@0
|
208 |
}
|
sl@0
|
209 |
}
|
sl@0
|
210 |
|
sl@0
|
211 |
/** Get currently active transformations on the camera.
|
sl@0
|
212 |
|
sl@0
|
213 |
@param aTransformations
|
sl@0
|
214 |
An empty RArray of TUids to store the UIDs of the supported transformations.
|
sl@0
|
215 |
|
sl@0
|
216 |
@leave KErrNoMemory Out of memory.
|
sl@0
|
217 |
*/
|
sl@0
|
218 |
EXPORT_C void CCamera::CCameraImageProcessing::GetActiveTransformationsL(RArray<TUid>& aTransformations) const
|
sl@0
|
219 |
{
|
sl@0
|
220 |
iImpl->GetActiveTransformationsL(aTransformations);
|
sl@0
|
221 |
|
sl@0
|
222 |
/* if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
|
sl@0
|
223 |
application is not prepared to receive extra added uid values (new settings added). So, any extra uid value passed
|
sl@0
|
224 |
from the implementation will be filtered at this point.
|
sl@0
|
225 |
To receive extra added uid values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
|
sl@0
|
226 |
to create camera object. In this case, application is assumed to be prepared to receive unrecognised uid values */
|
sl@0
|
227 |
if(iOwner.CameraVersion() == KCameraDefaultVersion)
|
sl@0
|
228 |
{
|
sl@0
|
229 |
for(TInt index =0; index < aTransformations.Count(); index++)
|
sl@0
|
230 |
{
|
sl@0
|
231 |
/** KBaselinedImageProcessing is the baseline. Any image processing attribute with greater uid value means that
|
sl@0
|
232 |
it has been added in later versions */
|
sl@0
|
233 |
if(aTransformations[index].iUid > KBaselinedImageProcessing)
|
sl@0
|
234 |
{
|
sl@0
|
235 |
aTransformations.Remove(index);
|
sl@0
|
236 |
index--;
|
sl@0
|
237 |
}
|
sl@0
|
238 |
}
|
sl@0
|
239 |
}
|
sl@0
|
240 |
}
|
sl@0
|
241 |
|
sl@0
|
242 |
/** Get all values supported by an active transformation.
|
sl@0
|
243 |
|
sl@0
|
244 |
@param aTransformation
|
sl@0
|
245 |
The UID of active transform for which values are requested.
|
sl@0
|
246 |
|
sl@0
|
247 |
@param aValues
|
sl@0
|
248 |
An array of integers to represent the values for the requested transformation.
|
sl@0
|
249 |
|
sl@0
|
250 |
@param aInfo
|
sl@0
|
251 |
Additional information describing the returned array of values.
|
sl@0
|
252 |
|
sl@0
|
253 |
@note Depending on the value of aInfo parameter, same array of values may describe
|
sl@0
|
254 |
different set of values.
|
sl@0
|
255 |
When camera device doesn't support this, empty array may be returned and TValueInfo may be ENotActive;
|
sl@0
|
256 |
corresponding getter/setters for this feature should not be used in such a case.
|
sl@0
|
257 |
|
sl@0
|
258 |
@note If CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
|
sl@0
|
259 |
application is not prepared to receive extra added enum values for Effects. So, any extra enum value(unrecognised) passed
|
sl@0
|
260 |
from the implementation will be filtered at this point.
|
sl@0
|
261 |
To receive extra added enum values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
|
sl@0
|
262 |
to create camera object. In this case, application is assumed to be prepared to receive unrecognised enum values
|
sl@0
|
263 |
|
sl@0
|
264 |
@leave KErrNoMemory Out of memory.
|
sl@0
|
265 |
*/
|
sl@0
|
266 |
EXPORT_C void CCamera::CCameraImageProcessing::GetTransformationSupportedValuesL(TUid aTransformation, RArray<TInt>& aValues, TValueInfo& aInfo) const
|
sl@0
|
267 |
{
|
sl@0
|
268 |
iImpl->GetTransformationSupportedValuesL(aTransformation, aValues, aInfo);
|
sl@0
|
269 |
|
sl@0
|
270 |
/* if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
|
sl@0
|
271 |
application is not prepared to receive extra added enum values for Effects. So, any extra enum value(unrecognised) passed
|
sl@0
|
272 |
from the implementation will be filtered at this point.
|
sl@0
|
273 |
To receive extra added enum values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
|
sl@0
|
274 |
to create camera object. In this case, application is assumed to be prepared to receive unrecognised enum values */
|
sl@0
|
275 |
if(aTransformation == KUidECamEventImageProcessingEffect)
|
sl@0
|
276 |
{
|
sl@0
|
277 |
if(iOwner.CameraVersion() == KCameraDefaultVersion)
|
sl@0
|
278 |
{
|
sl@0
|
279 |
/** it is assumed that implementation will use EBitField to pack all supported effects */
|
sl@0
|
280 |
if(aInfo == EBitField)
|
sl@0
|
281 |
{
|
sl@0
|
282 |
aValues[0] &= KBaselinedEffects;
|
sl@0
|
283 |
}
|
sl@0
|
284 |
}
|
sl@0
|
285 |
}
|
sl@0
|
286 |
}
|
sl@0
|
287 |
|
sl@0
|
288 |
/**
|
sl@0
|
289 |
@deprecated Use TInt GetTransformationValue(TUid aTransformation, TInt& aTransformationValue);
|
sl@0
|
290 |
|
sl@0
|
291 |
Get the current value of a transformation
|
sl@0
|
292 |
|
sl@0
|
293 |
@param aTransformation
|
sl@0
|
294 |
The UID of the transformation
|
sl@0
|
295 |
|
sl@0
|
296 |
@return The integer value of the tranformation.
|
sl@0
|
297 |
|
sl@0
|
298 |
@note If CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
|
sl@0
|
299 |
application is not prepared to receive extra added enum values for Effects. So, any extra enum value (unrecognised) received
|
sl@0
|
300 |
from the implementation will be dropped and EEffectNone would be passed instead.
|
sl@0
|
301 |
To receive extra added enum values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
|
sl@0
|
302 |
to create camera object. In this case, application is assumed to be prepared to receive unrecognised enum values
|
sl@0
|
303 |
*/
|
sl@0
|
304 |
EXPORT_C TInt CCamera::CCameraImageProcessing::TransformationValue(TUid aTransformation) const
|
sl@0
|
305 |
{
|
sl@0
|
306 |
TInt value = iImpl->TransformationValue(aTransformation);
|
sl@0
|
307 |
|
sl@0
|
308 |
/* if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
|
sl@0
|
309 |
application is not prepared to receive extra added enum values for Effects. So, any extra enum value (unrecognised) received
|
sl@0
|
310 |
from the implementation will be dropped and EEffectNone would be passed instead.
|
sl@0
|
311 |
To receive extra added enum values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
|
sl@0
|
312 |
to create camera object. In this case, application is assumed to be prepared to receive unrecognised enum values */
|
sl@0
|
313 |
if(aTransformation == KUidECamEventImageProcessingEffect)
|
sl@0
|
314 |
{
|
sl@0
|
315 |
if(iOwner.CameraVersion() == KCameraDefaultVersion)
|
sl@0
|
316 |
{
|
sl@0
|
317 |
if(value > KBaselinedEffects)
|
sl@0
|
318 |
{
|
sl@0
|
319 |
value = CCamera::CCameraImageProcessing::EEffectNone;
|
sl@0
|
320 |
}
|
sl@0
|
321 |
}
|
sl@0
|
322 |
}
|
sl@0
|
323 |
return value;
|
sl@0
|
324 |
}
|
sl@0
|
325 |
|
sl@0
|
326 |
/** Get the current value of a transformation
|
sl@0
|
327 |
|
sl@0
|
328 |
@param aTransformation
|
sl@0
|
329 |
The UID of the transformation
|
sl@0
|
330 |
|
sl@0
|
331 |
@param aTransformationValue
|
sl@0
|
332 |
Reference to the integer value of the tranformation.
|
sl@0
|
333 |
|
sl@0
|
334 |
@return system wide error code.
|
sl@0
|
335 |
|
sl@0
|
336 |
@note If CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
|
sl@0
|
337 |
application is not prepared to receive extra added enum values for Effects. So, any extra enum value (unrecognised) received
|
sl@0
|
338 |
from the implementation will be dropped and EEffectNone would be passed instead.
|
sl@0
|
339 |
To receive extra added enum values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
|
sl@0
|
340 |
to create camera object. In this case, application is assumed to be prepared to receive unrecognised enum values
|
sl@0
|
341 |
|
sl@0
|
342 |
@note Use this method instead of deprecated TInt TransformationValue(TUid aTransformation)
|
sl@0
|
343 |
|
sl@0
|
344 |
*/
|
sl@0
|
345 |
EXPORT_C TInt CCamera::CCameraImageProcessing::GetTransformationValue(TUid aTransformation, TInt& aTransformationValue) const
|
sl@0
|
346 |
{
|
sl@0
|
347 |
TInt error = iImpl->GetTransformationValue(aTransformation, aTransformationValue);
|
sl@0
|
348 |
|
sl@0
|
349 |
/* if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
|
sl@0
|
350 |
application is not prepared to receive extra added enum values for Effects. So, any extra enum value (unrecognised) received
|
sl@0
|
351 |
from the implementation will be dropped and EEffectNone would be passed instead.
|
sl@0
|
352 |
To receive extra added enum values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
|
sl@0
|
353 |
to create camera object. In this case, application is assumed to be prepared to receive unrecognised enum values */
|
sl@0
|
354 |
if(aTransformation == KUidECamEventImageProcessingEffect)
|
sl@0
|
355 |
{
|
sl@0
|
356 |
if(iOwner.CameraVersion() == KCameraDefaultVersion)
|
sl@0
|
357 |
{
|
sl@0
|
358 |
if(aTransformationValue > KBaselinedEffects)
|
sl@0
|
359 |
{
|
sl@0
|
360 |
aTransformationValue = CCamera::CCameraImageProcessing::EEffectNone;
|
sl@0
|
361 |
}
|
sl@0
|
362 |
}
|
sl@0
|
363 |
}
|
sl@0
|
364 |
|
sl@0
|
365 |
return error;
|
sl@0
|
366 |
}
|
sl@0
|
367 |
|
sl@0
|
368 |
/** Set new value for a transformation.
|
sl@0
|
369 |
A notification event with the transformation UID is sent to
|
sl@0
|
370 |
all clients. UIDs are in the form KUidECamEventImageProcessingXXXX.
|
sl@0
|
371 |
|
sl@0
|
372 |
@param aTransformation
|
sl@0
|
373 |
The UID of the transformation
|
sl@0
|
374 |
|
sl@0
|
375 |
@param aValue
|
sl@0
|
376 |
The integer value of the tranformation.
|
sl@0
|
377 |
*/
|
sl@0
|
378 |
EXPORT_C void CCamera::CCameraImageProcessing::SetTransformationValue(TUid aTransformation, TInt aValue)
|
sl@0
|
379 |
{
|
sl@0
|
380 |
iImpl->SetTransformationValue(aTransformation, aValue);
|
sl@0
|
381 |
}
|
sl@0
|
382 |
|
sl@0
|
383 |
/** Get the sequence of all active transforms, ordered in order of execution.
|
sl@0
|
384 |
|
sl@0
|
385 |
@param aTransformSequence
|
sl@0
|
386 |
an empty array to be populated with sequence of transform UIDs,
|
sl@0
|
387 |
where transform entries with smaller index are executed earlier.
|
sl@0
|
388 |
|
sl@0
|
389 |
@leave KErrNoMemory Out of memory.
|
sl@0
|
390 |
*/
|
sl@0
|
391 |
EXPORT_C void CCamera::CCameraImageProcessing::GetActiveTransformSequenceL(RArray<TUid>& aTransformSequence) const
|
sl@0
|
392 |
{
|
sl@0
|
393 |
iImpl->GetActiveTransformSequenceL(aTransformSequence);
|
sl@0
|
394 |
|
sl@0
|
395 |
/* if CCamera::New2L() or CCamera::NewDuplicate2L() is not used to create CCamera object, it is assumed that
|
sl@0
|
396 |
application is not prepared to receive extra added uid values (new settings added). So, any extra uid value passed
|
sl@0
|
397 |
from the implementation will be filtered at this point.
|
sl@0
|
398 |
To receive extra added uid values, application should rather use CCamera::New2L() or CCamera::NewDuplicate2L()
|
sl@0
|
399 |
to create camera object. In this case, application is assumed to be prepared to receive unrecognised uid values */
|
sl@0
|
400 |
if(iOwner.CameraVersion() == KCameraDefaultVersion)
|
sl@0
|
401 |
{
|
sl@0
|
402 |
for(TInt index =0; index < aTransformSequence.Count(); index++)
|
sl@0
|
403 |
{
|
sl@0
|
404 |
/** KBaselinedImageProcessing is the baseline. Any image processing attribute with greater uid value means that
|
sl@0
|
405 |
it has been added in later versions */
|
sl@0
|
406 |
if(aTransformSequence[index].iUid > KBaselinedImageProcessing)
|
sl@0
|
407 |
{
|
sl@0
|
408 |
aTransformSequence.Remove(index);
|
sl@0
|
409 |
index--;
|
sl@0
|
410 |
}
|
sl@0
|
411 |
}
|
sl@0
|
412 |
}
|
sl@0
|
413 |
}
|
sl@0
|
414 |
|
sl@0
|
415 |
/**
|
sl@0
|
416 |
Set the order of all active transform in terms of execution. The transforms with
|
sl@0
|
417 |
smaller index are executed earlier.
|
sl@0
|
418 |
|
sl@0
|
419 |
@param aTransformSequence
|
sl@0
|
420 |
The list of ordered transforms, where transforms with smaller
|
sl@0
|
421 |
index are executed earlier.
|
sl@0
|
422 |
|
sl@0
|
423 |
@leave KErrNoMemory Out of memory.
|
sl@0
|
424 |
*/
|
sl@0
|
425 |
EXPORT_C void CCamera::CCameraImageProcessing::SetActiveTransformSequenceL(RArray<TUid>& aTransformSequence)
|
sl@0
|
426 |
{
|
sl@0
|
427 |
iImpl->SetActiveTransformSequenceL(aTransformSequence);
|
sl@0
|
428 |
}
|
sl@0
|
429 |
|
sl@0
|
430 |
/**
|
sl@0
|
431 |
Set the source rectangle for KUidECamEventImageProcessingTransformScale or
|
sl@0
|
432 |
KUidECamEventImageProcessingTransformCrop.
|
sl@0
|
433 |
The coordinates should fall within the current image rectangle. The result
|
sl@0
|
434 |
is always a logical AND operation between the two rectangles.
|
sl@0
|
435 |
|
sl@0
|
436 |
@param aRect
|
sl@0
|
437 |
a reference to TRect object which describes the coordinates of the
|
sl@0
|
438 |
area of interest.
|
sl@0
|
439 |
*/
|
sl@0
|
440 |
EXPORT_C void CCamera::CCameraImageProcessing::SetSourceRect(const TRect& aRect)
|
sl@0
|
441 |
{
|
sl@0
|
442 |
iImpl->SetSourceRect(aRect);
|
sl@0
|
443 |
}
|
sl@0
|
444 |
|
sl@0
|
445 |
/**
|
sl@0
|
446 |
Get the source rectangle for KUidECamEventImageProcessingTransformScale or
|
sl@0
|
447 |
KUidECamEventImageProcessingTransformCrop.
|
sl@0
|
448 |
The coordinates should fall within the current image rectangle. The result
|
sl@0
|
449 |
is always a logical AND operation between the two rectangles.
|
sl@0
|
450 |
|
sl@0
|
451 |
@param aRect
|
sl@0
|
452 |
a reference to TRect object to hold the current source rectangle
|
sl@0
|
453 |
coordinates. If it has not been set, the coordinates match these of
|
sl@0
|
454 |
the whole image.
|
sl@0
|
455 |
*/
|
sl@0
|
456 |
EXPORT_C void CCamera::CCameraImageProcessing::GetSourceRect(TRect& aRect) const
|
sl@0
|
457 |
{
|
sl@0
|
458 |
iImpl->GetSourceRect(aRect);
|
sl@0
|
459 |
}
|
sl@0
|
460 |
|
sl@0
|
461 |
|
sl@0
|
462 |
/**
|
sl@0
|
463 |
Retrieves the maximum number of simultaneous color swapping possible.
|
sl@0
|
464 |
|
sl@0
|
465 |
@param aConcurrentColorSwappingSupported
|
sl@0
|
466 |
Retrieves the number of simultaneous color swapping supported.
|
sl@0
|
467 |
Retrieves 0 when swapping feature is not supported.
|
sl@0
|
468 |
|
sl@0
|
469 |
@leave May leave as a result of some error.
|
sl@0
|
470 |
|
sl@0
|
471 |
*/
|
sl@0
|
472 |
EXPORT_C void CCamera::CCameraImageProcessing::GetConcurrentColorSwappingsSupportedL(TInt& aConcurrentColorSwappingSupported) const
|
sl@0
|
473 |
{
|
sl@0
|
474 |
if(iImpl2 != NULL)
|
sl@0
|
475 |
{
|
sl@0
|
476 |
iImpl2->GetConcurrentColorSwappingsSupportedL(aConcurrentColorSwappingSupported);
|
sl@0
|
477 |
}
|
sl@0
|
478 |
else
|
sl@0
|
479 |
{
|
sl@0
|
480 |
User::Leave(KErrNotSupported);
|
sl@0
|
481 |
}
|
sl@0
|
482 |
}
|
sl@0
|
483 |
|
sl@0
|
484 |
/**
|
sl@0
|
485 |
Retrieves the color swapping capabilites per entry, if different entries have different capabilities
|
sl@0
|
486 |
otherwise the same capabilities retrieved for a particular entry can be assumed to be valid for every entry
|
sl@0
|
487 |
|
sl@0
|
488 |
@param aIndex
|
sl@0
|
489 |
This is a value from 0 to numOfSimultaneousColorSwappings -1. Color swapping capabilities specific to
|
sl@0
|
490 |
a particular entry are retrieved. If uniform capability exists for every entry, then this method need not
|
sl@0
|
491 |
be called per entry.
|
sl@0
|
492 |
|
sl@0
|
493 |
@param aColorSwapCapabilities
|
sl@0
|
494 |
This retrieves the color swap capabilities.
|
sl@0
|
495 |
|
sl@0
|
496 |
@leave May leave as a result of some error.
|
sl@0
|
497 |
|
sl@0
|
498 |
*/
|
sl@0
|
499 |
EXPORT_C void CCamera::CCameraImageProcessing::GetColorSwapCapabilitiesL(TInt aIndex, CCamera::CCameraImageProcessing::TColorOperationCapabilities& aColorSwapCapabilities) const
|
sl@0
|
500 |
{
|
sl@0
|
501 |
if(iImpl2 != NULL)
|
sl@0
|
502 |
{
|
sl@0
|
503 |
iImpl2->GetColorSwapCapabilitiesL(aIndex, aColorSwapCapabilities);
|
sl@0
|
504 |
}
|
sl@0
|
505 |
else
|
sl@0
|
506 |
{
|
sl@0
|
507 |
User::Leave(KErrNotSupported);
|
sl@0
|
508 |
}
|
sl@0
|
509 |
}
|
sl@0
|
510 |
|
sl@0
|
511 |
/**
|
sl@0
|
512 |
Set the color swap entries
|
sl@0
|
513 |
|
sl@0
|
514 |
@param aIndex
|
sl@0
|
515 |
This is a value from 0 to numOfSimultaneousColorSwappings -1. This helps in managing the limited no. of
|
sl@0
|
516 |
simultaneous color swaps. If parameters are already set for the given entry, then it's up to the implementation
|
sl@0
|
517 |
to replace the existing one or discard it.
|
sl@0
|
518 |
|
sl@0
|
519 |
@param aColorSwapParameters
|
sl@0
|
520 |
The parameters necessary to define clearly the color swapping operation for the given entry.
|
sl@0
|
521 |
iEntryStatus has to be updated by the implementation as per the result of the setting operation.
|
sl@0
|
522 |
So, iEntryStatus value is redundant at this point.
|
sl@0
|
523 |
|
sl@0
|
524 |
@leave KErrNotSupported if implementation is not present.
|
sl@0
|
525 |
|
sl@0
|
526 |
@note Triggers KUidECamEventCIPSetColorSwapEntry to all MCameraObserver2 clients of the camera.
|
sl@0
|
527 |
HandleEvent is used to report the result or any possible error. TECAMEvent2 class should
|
sl@0
|
528 |
be used in order to provide the entry no. of the color being set.
|
sl@0
|
529 |
|
sl@0
|
530 |
*/
|
sl@0
|
531 |
EXPORT_C void CCamera::CCameraImageProcessing::SetColorSwapEntryL(TInt aIndex, const CCamera::CCameraImageProcessing::TColorOperationEntry& aColorSwapParameters)
|
sl@0
|
532 |
{
|
sl@0
|
533 |
if(iImpl2 != NULL)
|
sl@0
|
534 |
{
|
sl@0
|
535 |
iImpl2->SetColorSwapEntry(aIndex, aColorSwapParameters);
|
sl@0
|
536 |
}
|
sl@0
|
537 |
else
|
sl@0
|
538 |
{
|
sl@0
|
539 |
User::Leave(KErrNotSupported);
|
sl@0
|
540 |
}
|
sl@0
|
541 |
}
|
sl@0
|
542 |
|
sl@0
|
543 |
/**
|
sl@0
|
544 |
Removes the color swap entry corresponding to the given index
|
sl@0
|
545 |
|
sl@0
|
546 |
@param aIndex
|
sl@0
|
547 |
This gives the color swapping entry to be removed.
|
sl@0
|
548 |
|
sl@0
|
549 |
@leave KErrNotSupported if implementation is not present.
|
sl@0
|
550 |
|
sl@0
|
551 |
@note Triggers KUidECamEventCIPRemoveColorSwapEntry to all MCameraObserver2 clients of the camera.
|
sl@0
|
552 |
HandleEvent is used to report the result or any possible error. TECAMEvent2 class should be
|
sl@0
|
553 |
used in order to provide the entry no. of the color being removed.
|
sl@0
|
554 |
|
sl@0
|
555 |
*/
|
sl@0
|
556 |
EXPORT_C void CCamera::CCameraImageProcessing::RemoveColorSwapEntryL(TInt aIndex)
|
sl@0
|
557 |
{
|
sl@0
|
558 |
if(iImpl2 != NULL)
|
sl@0
|
559 |
{
|
sl@0
|
560 |
iImpl2->RemoveColorSwapEntry(aIndex);
|
sl@0
|
561 |
}
|
sl@0
|
562 |
else
|
sl@0
|
563 |
{
|
sl@0
|
564 |
User::Leave(KErrNotSupported);
|
sl@0
|
565 |
}
|
sl@0
|
566 |
}
|
sl@0
|
567 |
|
sl@0
|
568 |
/**
|
sl@0
|
569 |
Get the details of the color swap entry corresponding to the given index
|
sl@0
|
570 |
|
sl@0
|
571 |
@param aIndex
|
sl@0
|
572 |
This gives the color swapping entry whose information has to be retrieved.
|
sl@0
|
573 |
|
sl@0
|
574 |
@param aColorSwapParameters
|
sl@0
|
575 |
This contains the parameters currently being used by the color swapping operation for the given entry.
|
sl@0
|
576 |
|
sl@0
|
577 |
@leave May leave as a result of some error.
|
sl@0
|
578 |
|
sl@0
|
579 |
*/
|
sl@0
|
580 |
EXPORT_C void CCamera::CCameraImageProcessing::GetColorSwapEntryL(TInt aIndex, CCamera::CCameraImageProcessing::TColorOperationEntry& aColorSwapParameters) const
|
sl@0
|
581 |
{
|
sl@0
|
582 |
if(iImpl2 != NULL)
|
sl@0
|
583 |
{
|
sl@0
|
584 |
iImpl2->GetColorSwapEntryL(aIndex, aColorSwapParameters);
|
sl@0
|
585 |
}
|
sl@0
|
586 |
else
|
sl@0
|
587 |
{
|
sl@0
|
588 |
User::Leave(KErrNotSupported);
|
sl@0
|
589 |
}
|
sl@0
|
590 |
}
|
sl@0
|
591 |
|
sl@0
|
592 |
/**
|
sl@0
|
593 |
Starts the color swapping process after taking into account the color swap entries updated up to this point.
|
sl@0
|
594 |
|
sl@0
|
595 |
@leave KErrNotSupported if implementation is not present.
|
sl@0
|
596 |
|
sl@0
|
597 |
@note Triggers KUidECamEventCIPStartColorSwap to all MCameraObserver2 clients of the camera.
|
sl@0
|
598 |
HandleEvent is used to report the result or any possible error.
|
sl@0
|
599 |
One possible error case is when more than one entry describe the same color source.
|
sl@0
|
600 |
New ecam error KErrECamColorOperationConflict used in such a case.
|
sl@0
|
601 |
|
sl@0
|
602 |
*/
|
sl@0
|
603 |
EXPORT_C void CCamera::CCameraImageProcessing::StartColorSwappingL()
|
sl@0
|
604 |
{
|
sl@0
|
605 |
if(iImpl2 != NULL)
|
sl@0
|
606 |
{
|
sl@0
|
607 |
iImpl2->StartColorSwapping();
|
sl@0
|
608 |
}
|
sl@0
|
609 |
else
|
sl@0
|
610 |
{
|
sl@0
|
611 |
User::Leave(KErrNotSupported);
|
sl@0
|
612 |
}
|
sl@0
|
613 |
}
|
sl@0
|
614 |
|
sl@0
|
615 |
/**
|
sl@0
|
616 |
Cancel the color swapping process.
|
sl@0
|
617 |
|
sl@0
|
618 |
@leave May leave as a result of some error.
|
sl@0
|
619 |
|
sl@0
|
620 |
@note Used to cancel the color swapping process which might have been just started.
|
sl@0
|
621 |
If the issued StartColorSwappingL() gets cancelled, its event should report KErrCancel.
|
sl@0
|
622 |
|
sl@0
|
623 |
*/
|
sl@0
|
624 |
EXPORT_C void CCamera::CCameraImageProcessing::CancelColorSwappingL()
|
sl@0
|
625 |
{
|
sl@0
|
626 |
if(iImpl2 != NULL)
|
sl@0
|
627 |
{
|
sl@0
|
628 |
iImpl2->CancelColorSwappingL();
|
sl@0
|
629 |
}
|
sl@0
|
630 |
else
|
sl@0
|
631 |
{
|
sl@0
|
632 |
User::Leave(KErrNotSupported);
|
sl@0
|
633 |
}
|
sl@0
|
634 |
}
|
sl@0
|
635 |
|
sl@0
|
636 |
/**
|
sl@0
|
637 |
Retrieves the maximum number of color entries on which simultaneous color accent process is possible.
|
sl@0
|
638 |
|
sl@0
|
639 |
@param aConcurrentColorAccentSupported
|
sl@0
|
640 |
Retrieves the number of color entries on which simultaneous color accent process is possible.
|
sl@0
|
641 |
Retrieves 0 when color accent process is not supported.
|
sl@0
|
642 |
|
sl@0
|
643 |
@leave May leave as a result of some error.
|
sl@0
|
644 |
|
sl@0
|
645 |
*/
|
sl@0
|
646 |
EXPORT_C void CCamera::CCameraImageProcessing::GetConcurrentColorAccentSupportedL(TInt& aConcurrentColorAccentSupported) const
|
sl@0
|
647 |
{
|
sl@0
|
648 |
if(iImpl2 != NULL)
|
sl@0
|
649 |
{
|
sl@0
|
650 |
iImpl2->GetConcurrentColorAccentSupportedL(aConcurrentColorAccentSupported);
|
sl@0
|
651 |
}
|
sl@0
|
652 |
else
|
sl@0
|
653 |
{
|
sl@0
|
654 |
User::Leave(KErrNotSupported);
|
sl@0
|
655 |
}
|
sl@0
|
656 |
}
|
sl@0
|
657 |
|
sl@0
|
658 |
/**
|
sl@0
|
659 |
Retrieves the color accent capabilites per entry, if different entries have different capabilities
|
sl@0
|
660 |
otherwise the same capabilities retrieved for a particular entry can be assumed to be valid for every entry
|
sl@0
|
661 |
|
sl@0
|
662 |
@param aIndex
|
sl@0
|
663 |
This is a value from 0 to numOfSimultaneousColorAccent -1. Color accent capabilities specific to
|
sl@0
|
664 |
a particular entry are retrieved. If uniform capability exists for every entry, then this method need not
|
sl@0
|
665 |
be called per entry.
|
sl@0
|
666 |
|
sl@0
|
667 |
@param aColorAccentCapabilities
|
sl@0
|
668 |
This retrieves the color accent capabilities.
|
sl@0
|
669 |
|
sl@0
|
670 |
@leave May leave as a result of some error.
|
sl@0
|
671 |
|
sl@0
|
672 |
*/
|
sl@0
|
673 |
EXPORT_C void CCamera::CCameraImageProcessing::GetColorAccentCapabilitiesL(TInt aIndex, CCamera::CCameraImageProcessing::TColorOperationCapabilities& aColorAccentCapabilities) const
|
sl@0
|
674 |
{
|
sl@0
|
675 |
if(iImpl2 != NULL)
|
sl@0
|
676 |
{
|
sl@0
|
677 |
iImpl2->GetColorAccentCapabilitiesL(aIndex, aColorAccentCapabilities);
|
sl@0
|
678 |
}
|
sl@0
|
679 |
else
|
sl@0
|
680 |
{
|
sl@0
|
681 |
User::Leave(KErrNotSupported);
|
sl@0
|
682 |
}
|
sl@0
|
683 |
}
|
sl@0
|
684 |
|
sl@0
|
685 |
/**
|
sl@0
|
686 |
Set the color accent entries
|
sl@0
|
687 |
|
sl@0
|
688 |
@param aIndex
|
sl@0
|
689 |
This is a value from 0 to numOfSimultaneousColorAccent -1. This helps in managing the limited no. of
|
sl@0
|
690 |
simultaneous color accent. If parameters are already set for the given entry, then it's up to the implementation
|
sl@0
|
691 |
to replace the existing one or discard it.
|
sl@0
|
692 |
|
sl@0
|
693 |
@param aColorAccentParameters
|
sl@0
|
694 |
The parameters necessary to define clearly the color accent operation for the given entry.
|
sl@0
|
695 |
iEntryStatus has to be updated by the implementation as per the result of the setting operation.
|
sl@0
|
696 |
So, iEntryStatus value is redundant at this point. The parameters defined for target colors in
|
sl@0
|
697 |
TColorOperationEntry are redundant for color accent.
|
sl@0
|
698 |
|
sl@0
|
699 |
@leave KErrNotSupported if implementation is not present.
|
sl@0
|
700 |
|
sl@0
|
701 |
@note Triggers KUidECamEventCIPSetColorAccentEntry to all MCameraObserver2 clients of the camera.
|
sl@0
|
702 |
HandleEvent is used to report the result or any possible error. TECAMEvent2 class should be
|
sl@0
|
703 |
used in order to provide the entry no. of the color being set.
|
sl@0
|
704 |
|
sl@0
|
705 |
*/
|
sl@0
|
706 |
EXPORT_C void CCamera::CCameraImageProcessing::SetColorAccentEntryL(TInt aIndex, const CCamera::CCameraImageProcessing::TColorOperationEntry& aColorAccentParameters)
|
sl@0
|
707 |
{
|
sl@0
|
708 |
if(iImpl2 != NULL)
|
sl@0
|
709 |
{
|
sl@0
|
710 |
iImpl2->SetColorAccentEntry(aIndex, aColorAccentParameters);
|
sl@0
|
711 |
}
|
sl@0
|
712 |
else
|
sl@0
|
713 |
{
|
sl@0
|
714 |
User::Leave(KErrNotSupported);
|
sl@0
|
715 |
}
|
sl@0
|
716 |
}
|
sl@0
|
717 |
|
sl@0
|
718 |
/**
|
sl@0
|
719 |
Removes the color accent entry corresponding to the given index
|
sl@0
|
720 |
|
sl@0
|
721 |
@param aIndex
|
sl@0
|
722 |
This gives the color accent entry to be removed.
|
sl@0
|
723 |
|
sl@0
|
724 |
@leave KErrNotSupported if implementation is not present.
|
sl@0
|
725 |
|
sl@0
|
726 |
@note Triggers KUidECamEventCIPRemoveColorAccentEntry to all MCameraObserver2 clients of the camera.
|
sl@0
|
727 |
HandleEvent is used to report the result or any possible error. TECAMEvent2 class should be
|
sl@0
|
728 |
used in order to provide the entry no. of the color being removed.
|
sl@0
|
729 |
|
sl@0
|
730 |
*/
|
sl@0
|
731 |
EXPORT_C void CCamera::CCameraImageProcessing::RemoveColorAccentEntryL(TInt aIndex)
|
sl@0
|
732 |
{
|
sl@0
|
733 |
if(iImpl2 != NULL)
|
sl@0
|
734 |
{
|
sl@0
|
735 |
iImpl2->RemoveColorAccentEntry(aIndex);
|
sl@0
|
736 |
}
|
sl@0
|
737 |
else
|
sl@0
|
738 |
{
|
sl@0
|
739 |
User::Leave(KErrNotSupported);
|
sl@0
|
740 |
}
|
sl@0
|
741 |
}
|
sl@0
|
742 |
|
sl@0
|
743 |
/**
|
sl@0
|
744 |
Get the details of the color accent entry corresponding to the given index
|
sl@0
|
745 |
|
sl@0
|
746 |
@param aIndex
|
sl@0
|
747 |
This gives the color accent entry whose information has to be retrieved.
|
sl@0
|
748 |
|
sl@0
|
749 |
@param aColorAccentParameters
|
sl@0
|
750 |
This contains the parameters currently being used by the color accent operation for the given entry.
|
sl@0
|
751 |
The parameters defined for target colors in TColorOperationEntry are redundant for color accent.
|
sl@0
|
752 |
|
sl@0
|
753 |
@leave May leave as a result of some error.
|
sl@0
|
754 |
|
sl@0
|
755 |
*/
|
sl@0
|
756 |
EXPORT_C void CCamera::CCameraImageProcessing::GetColorAccentEntryL(TInt aIndex, CCamera::CCameraImageProcessing::TColorOperationEntry& aColorAccentParameters) const
|
sl@0
|
757 |
{
|
sl@0
|
758 |
if(iImpl2 != NULL)
|
sl@0
|
759 |
{
|
sl@0
|
760 |
iImpl2->GetColorAccentEntryL(aIndex, aColorAccentParameters);
|
sl@0
|
761 |
}
|
sl@0
|
762 |
else
|
sl@0
|
763 |
{
|
sl@0
|
764 |
User::Leave(KErrNotSupported);
|
sl@0
|
765 |
}
|
sl@0
|
766 |
}
|
sl@0
|
767 |
|
sl@0
|
768 |
/**
|
sl@0
|
769 |
Starts the color accent process after taking into account the color accent entries updated up to this point.
|
sl@0
|
770 |
|
sl@0
|
771 |
@leave KErrNotSupported if implementation is not present.
|
sl@0
|
772 |
|
sl@0
|
773 |
@note Triggers KUidECamEventCIPStartColorAccent to all MCameraObserver2 clients of the camera.
|
sl@0
|
774 |
HandleEvent is used to report the result or any possible error.
|
sl@0
|
775 |
|
sl@0
|
776 |
*/
|
sl@0
|
777 |
EXPORT_C void CCamera::CCameraImageProcessing::StartColorAccentL()
|
sl@0
|
778 |
{
|
sl@0
|
779 |
if(iImpl2 != NULL)
|
sl@0
|
780 |
{
|
sl@0
|
781 |
iImpl2->StartColorAccent();
|
sl@0
|
782 |
}
|
sl@0
|
783 |
else
|
sl@0
|
784 |
{
|
sl@0
|
785 |
User::Leave(KErrNotSupported);
|
sl@0
|
786 |
}
|
sl@0
|
787 |
}
|
sl@0
|
788 |
|
sl@0
|
789 |
/**
|
sl@0
|
790 |
Cancel the color accent process.
|
sl@0
|
791 |
|
sl@0
|
792 |
@leave May leave as a result of some error.
|
sl@0
|
793 |
|
sl@0
|
794 |
@note Used to cancel the color accent process which might have been just started.
|
sl@0
|
795 |
If the issued StartColorAccentL() gets cancelled, its event should report KErrCancel.
|
sl@0
|
796 |
|
sl@0
|
797 |
*/
|
sl@0
|
798 |
EXPORT_C void CCamera::CCameraImageProcessing::CancelColorAccentL()
|
sl@0
|
799 |
{
|
sl@0
|
800 |
if(iImpl2 != NULL)
|
sl@0
|
801 |
{
|
sl@0
|
802 |
iImpl2->CancelColorAccentL();
|
sl@0
|
803 |
}
|
sl@0
|
804 |
else
|
sl@0
|
805 |
{
|
sl@0
|
806 |
User::Leave(KErrNotSupported);
|
sl@0
|
807 |
}
|
sl@0
|
808 |
}
|
sl@0
|
809 |
|
sl@0
|
810 |
/**
|
sl@0
|
811 |
Retrieves the supported options for a particular orientation reference.
|
sl@0
|
812 |
|
sl@0
|
813 |
@param aOrientationReference
|
sl@0
|
814 |
A TOrientationReference for which supported relative custom orientation have to retrieved.
|
sl@0
|
815 |
|
sl@0
|
816 |
@param aSupportedRelativeRotation
|
sl@0
|
817 |
A bitfield which retrieves the supported TRelativeRotation for 'aOrientationReference'
|
sl@0
|
818 |
|
sl@0
|
819 |
@param aSupportedRelativeMirroring
|
sl@0
|
820 |
A bitfield which retrieves the supported TRelativeMirror for 'aOrientationReference'
|
sl@0
|
821 |
|
sl@0
|
822 |
@param aSupportedRelativeFlipping
|
sl@0
|
823 |
A bitfield which retrieves the supported TRelativeFlipping for 'aOrientationReference'
|
sl@0
|
824 |
|
sl@0
|
825 |
@leave May leave with any error code.
|
sl@0
|
826 |
|
sl@0
|
827 |
@publishedPartner
|
sl@0
|
828 |
@prototype
|
sl@0
|
829 |
*/
|
sl@0
|
830 |
EXPORT_C void CCamera::CCameraImageProcessing::GetSupportedRelativeOrientationOptionsL(CCamera::CCameraImageProcessing::TOrientationReference aOrientationReference,
|
sl@0
|
831 |
TUint& aSupportedRelativeRotation, TUint& aSupportedRelativeMirroring, TUint& aSupportedRelativeFlipping) const
|
sl@0
|
832 |
{
|
sl@0
|
833 |
if(iImpl3 != NULL)
|
sl@0
|
834 |
{
|
sl@0
|
835 |
iImpl3->GetSupportedRelativeOrientationOptionsL(aOrientationReference, aSupportedRelativeRotation,
|
sl@0
|
836 |
aSupportedRelativeMirroring, aSupportedRelativeFlipping);
|
sl@0
|
837 |
}
|
sl@0
|
838 |
else
|
sl@0
|
839 |
{
|
sl@0
|
840 |
User::Leave(KErrNotSupported);
|
sl@0
|
841 |
}
|
sl@0
|
842 |
}
|
sl@0
|
843 |
|
sl@0
|
844 |
/**
|
sl@0
|
845 |
Retrieves the options which is being used for the current orientation reference.
|
sl@0
|
846 |
|
sl@0
|
847 |
@param aOrientationReference
|
sl@0
|
848 |
A TOrientationReference which is the current orientation reference being used.
|
sl@0
|
849 |
|
sl@0
|
850 |
@param aRelativeRotation
|
sl@0
|
851 |
A TRelativeRotation which is the current relative rotation being used with aOrientationReference.
|
sl@0
|
852 |
|
sl@0
|
853 |
@param aRelativeMirror
|
sl@0
|
854 |
A TRelativeMirror which is the current relative mirroring being used with aOrientationReference.
|
sl@0
|
855 |
|
sl@0
|
856 |
@param aRelativeFlipping
|
sl@0
|
857 |
A TRelativeFlipping which is the current relative flipping being used with aOrientationReference.
|
sl@0
|
858 |
|
sl@0
|
859 |
@leave May leave with any error code.
|
sl@0
|
860 |
|
sl@0
|
861 |
@publishedPartner
|
sl@0
|
862 |
@prototype
|
sl@0
|
863 |
*/
|
sl@0
|
864 |
EXPORT_C void CCamera::CCameraImageProcessing::GetCurrentRelativeOrientationOptionsL(CCamera::CCameraImageProcessing::TOrientationReference& aOrientationReference,
|
sl@0
|
865 |
CCamera::CCameraImageProcessing::TRelativeRotation& aRelativeRotation,
|
sl@0
|
866 |
CCamera::CCameraImageProcessing::TRelativeMirror& aRelativeMirror,
|
sl@0
|
867 |
CCamera::CCameraImageProcessing::TRelativeFlipping& aRelativeFlipping) const
|
sl@0
|
868 |
{
|
sl@0
|
869 |
if(iImpl3 != NULL)
|
sl@0
|
870 |
{
|
sl@0
|
871 |
iImpl3->GetCurrentRelativeOrientationOptionsL(aOrientationReference, aRelativeRotation, aRelativeMirror, aRelativeFlipping);
|
sl@0
|
872 |
}
|
sl@0
|
873 |
else
|
sl@0
|
874 |
{
|
sl@0
|
875 |
User::Leave(KErrNotSupported);
|
sl@0
|
876 |
}
|
sl@0
|
877 |
}
|
sl@0
|
878 |
|
sl@0
|
879 |
/**
|
sl@0
|
880 |
Sets the options which would be used with the desired orientation reference.
|
sl@0
|
881 |
|
sl@0
|
882 |
@param aOrientationReference
|
sl@0
|
883 |
The desired TOrientationReference.
|
sl@0
|
884 |
|
sl@0
|
885 |
@param aRelativeRotation
|
sl@0
|
886 |
The desired TRelativeRotation which would be used with 'aOrientationReference'.
|
sl@0
|
887 |
|
sl@0
|
888 |
@param TRelativeMirror
|
sl@0
|
889 |
The desired TRelativeMirror which would be used with 'aOrientationReference'
|
sl@0
|
890 |
|
sl@0
|
891 |
@param TRelativeFlipping
|
sl@0
|
892 |
The desired TRelativeFlipping which would be used with 'aOrientationReference'
|
sl@0
|
893 |
|
sl@0
|
894 |
@leave KErrNotSupported if the implementation of this method is not present.
|
sl@0
|
895 |
|
sl@0
|
896 |
@note Event KUidECamEventImageProcessingTransformRelativeOrientation is used to notify clients about relative
|
sl@0
|
897 |
custom orientation setting operation.
|
sl@0
|
898 |
|
sl@0
|
899 |
@note If the current picture orientation (Refer CCamera::CCameraAdvancedSettings::TPictureOrientation) is not possible
|
sl@0
|
900 |
to be achieved with the relative custom orientation, event KUidECamEventPictureOrientationUnachievable will be
|
sl@0
|
901 |
notified to the client.
|
sl@0
|
902 |
|
sl@0
|
903 |
@note If the dimension of the image gets changed by the desired relative orientation options, notification
|
sl@0
|
904 |
KUidECamEventCameraSettingImageSize will be notified to the client.
|
sl@0
|
905 |
|
sl@0
|
906 |
@publishedPartner
|
sl@0
|
907 |
@prototype
|
sl@0
|
908 |
*/
|
sl@0
|
909 |
EXPORT_C void CCamera::CCameraImageProcessing::SetRelativeOrientationOptionsL(CCamera::CCameraImageProcessing::TOrientationReference aOrientationReference,
|
sl@0
|
910 |
CCamera::CCameraImageProcessing::TRelativeRotation aRelativeRotation,
|
sl@0
|
911 |
CCamera::CCameraImageProcessing::TRelativeMirror aRelativeMirror,
|
sl@0
|
912 |
CCamera::CCameraImageProcessing::TRelativeFlipping aRelativeFlipping)
|
sl@0
|
913 |
{
|
sl@0
|
914 |
if(iImpl3 != NULL)
|
sl@0
|
915 |
{
|
sl@0
|
916 |
iImpl3->SetRelativeOrientationOptions(aOrientationReference, aRelativeRotation, aRelativeMirror, aRelativeFlipping);
|
sl@0
|
917 |
}
|
sl@0
|
918 |
else
|
sl@0
|
919 |
{
|
sl@0
|
920 |
User::Leave(KErrNotSupported);
|
sl@0
|
921 |
}
|
sl@0
|
922 |
}
|
sl@0
|
923 |
|
sl@0
|
924 |
/**
|
sl@0
|
925 |
Constructor for the TColorOperationCapabilities class.
|
sl@0
|
926 |
Sets the size and version of this class.
|
sl@0
|
927 |
*/
|
sl@0
|
928 |
EXPORT_C CCamera::CCameraImageProcessing::TColorOperationCapabilities::TColorOperationCapabilities()
|
sl@0
|
929 |
{
|
sl@0
|
930 |
iSize = sizeof(CCamera::CCameraImageProcessing::TColorOperationCapabilities);
|
sl@0
|
931 |
iVersion = KECamColorOperationCapabilitiesCurrentVersion;
|
sl@0
|
932 |
}
|
sl@0
|
933 |
|
sl@0
|
934 |
/**
|
sl@0
|
935 |
Returns the size of the class. Used for extensibility by deriving from this base class and adding new member variables.
|
sl@0
|
936 |
Intended to be used for implementation of methods where this class reference is passed as function arguments.
|
sl@0
|
937 |
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
|
938 |
is made to run on an old implementation, an error may occur in such cases after the old implementation detects this by getting
|
sl@0
|
939 |
the size information of the T class passed. Also, if old application is made to run on a new implementation, this could be
|
sl@0
|
940 |
properly handled if the derived class variables handling is done in a proper 'if-else' statement.
|
sl@0
|
941 |
|
sl@0
|
942 |
@return The size of the class.
|
sl@0
|
943 |
|
sl@0
|
944 |
@note The size will be modified when the T-class gets updated.
|
sl@0
|
945 |
*/
|
sl@0
|
946 |
EXPORT_C TInt CCamera::CCameraImageProcessing::TColorOperationCapabilities::Size() const
|
sl@0
|
947 |
{
|
sl@0
|
948 |
return static_cast<TInt>(iSize);
|
sl@0
|
949 |
}
|
sl@0
|
950 |
|
sl@0
|
951 |
/**
|
sl@0
|
952 |
Returns the version of the class. Used for extensibility specially when the class members are not added but the Reserved
|
sl@0
|
953 |
members get used at a later stage.
|
sl@0
|
954 |
|
sl@0
|
955 |
@return The version of this class.
|
sl@0
|
956 |
|
sl@0
|
957 |
@note The version will be modified when the T-class gets updated.
|
sl@0
|
958 |
*/
|
sl@0
|
959 |
EXPORT_C TUint CCamera::CCameraImageProcessing::TColorOperationCapabilities::Version() const
|
sl@0
|
960 |
{
|
sl@0
|
961 |
return iVersion;
|
sl@0
|
962 |
}
|
sl@0
|
963 |
|
sl@0
|
964 |
/**
|
sl@0
|
965 |
Constructor for the TBitsIgnore class.
|
sl@0
|
966 |
Sets the size and version of this class.
|
sl@0
|
967 |
*/
|
sl@0
|
968 |
EXPORT_C CCamera::CCameraImageProcessing::TBitsIgnore::TBitsIgnore()
|
sl@0
|
969 |
{
|
sl@0
|
970 |
iSize = sizeof(CCamera::CCameraImageProcessing::TBitsIgnore);
|
sl@0
|
971 |
iVersion = KECamBitsIgnoreCurrentVersion;
|
sl@0
|
972 |
iRedBitsIgnore = 0;
|
sl@0
|
973 |
iGreenBitsIgnore = 0;
|
sl@0
|
974 |
iBlueBitsIgnore = 0;
|
sl@0
|
975 |
iAlphaBitsIgnore = 0;
|
sl@0
|
976 |
}
|
sl@0
|
977 |
|
sl@0
|
978 |
/**
|
sl@0
|
979 |
Returns the size of the class. Used for extensibility by deriving from this base class and adding new member variables.
|
sl@0
|
980 |
Intended to be used for implementation of methods where this class reference is passed as function arguments.
|
sl@0
|
981 |
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
|
982 |
is made to run on an old implementation, an error may occur in such cases after the old implementation detects this by getting
|
sl@0
|
983 |
the size information of the T class passed. Also, if old application is made to run on a new implementation, this could be
|
sl@0
|
984 |
properly handled if the derived class variables handling is done in a proper 'if-else' statement.
|
sl@0
|
985 |
|
sl@0
|
986 |
@return The size of the class.
|
sl@0
|
987 |
|
sl@0
|
988 |
@note The size will be modified when the T-class gets updated.
|
sl@0
|
989 |
*/
|
sl@0
|
990 |
EXPORT_C TInt CCamera::CCameraImageProcessing::TBitsIgnore::Size() const
|
sl@0
|
991 |
{
|
sl@0
|
992 |
return static_cast<TInt>(iSize);
|
sl@0
|
993 |
}
|
sl@0
|
994 |
|
sl@0
|
995 |
/**
|
sl@0
|
996 |
Returns the version of the class. Used for extensibility specially when the class members are not added but the Reserved
|
sl@0
|
997 |
members get used at a later stage.
|
sl@0
|
998 |
|
sl@0
|
999 |
@return The version of this class.
|
sl@0
|
1000 |
|
sl@0
|
1001 |
@note The version will be modified when the T-class gets updated.
|
sl@0
|
1002 |
*/
|
sl@0
|
1003 |
EXPORT_C TUint CCamera::CCameraImageProcessing::TBitsIgnore::Version() const
|
sl@0
|
1004 |
{
|
sl@0
|
1005 |
return iVersion;
|
sl@0
|
1006 |
}
|
sl@0
|
1007 |
|
sl@0
|
1008 |
/**
|
sl@0
|
1009 |
Constructor for the TColorOperationEntry class.
|
sl@0
|
1010 |
Sets the size and version of this class.
|
sl@0
|
1011 |
*/
|
sl@0
|
1012 |
EXPORT_C CCamera::CCameraImageProcessing::TColorOperationEntry::TColorOperationEntry()
|
sl@0
|
1013 |
{
|
sl@0
|
1014 |
iSize = sizeof(CCamera::CCameraImageProcessing::TColorOperationEntry);
|
sl@0
|
1015 |
iVersion = KECamColorOperationEntryCurrentVersion;
|
sl@0
|
1016 |
}
|
sl@0
|
1017 |
|
sl@0
|
1018 |
/**
|
sl@0
|
1019 |
Returns the size of the class. Used for extensibility by deriving from this base class and adding new member variables.
|
sl@0
|
1020 |
Intended to be used for implementation of methods where this class reference is passed as function arguments.
|
sl@0
|
1021 |
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
|
1022 |
is made to run on an old implementation, an error may occur in such cases after the old implementation detects this by getting
|
sl@0
|
1023 |
the size information of the T class passed. Also, if old application is made to run on a new implementation, this could be
|
sl@0
|
1024 |
properly handled if the derived class variables handling is done in a proper 'if-else' statement.
|
sl@0
|
1025 |
|
sl@0
|
1026 |
@return The size of the class.
|
sl@0
|
1027 |
|
sl@0
|
1028 |
@note The size will be modified when the T-class gets updated.
|
sl@0
|
1029 |
*/
|
sl@0
|
1030 |
EXPORT_C TInt CCamera::CCameraImageProcessing::TColorOperationEntry::Size() const
|
sl@0
|
1031 |
{
|
sl@0
|
1032 |
return static_cast<TInt>(iSize);
|
sl@0
|
1033 |
}
|
sl@0
|
1034 |
|
sl@0
|
1035 |
/**
|
sl@0
|
1036 |
Returns the version of the class. Used for extensibility specially when the class members are not added but the Reserved
|
sl@0
|
1037 |
members get used at a later stage.
|
sl@0
|
1038 |
|
sl@0
|
1039 |
@return The version of this class.
|
sl@0
|
1040 |
|
sl@0
|
1041 |
@note The version will be modified when the T-class gets updated.
|
sl@0
|
1042 |
*/
|
sl@0
|
1043 |
EXPORT_C TUint CCamera::CCameraImageProcessing::TColorOperationEntry::Version() const
|
sl@0
|
1044 |
{
|
sl@0
|
1045 |
return iVersion;
|
sl@0
|
1046 |
}
|