os/mm/imagingandcamerafws/cameraunittest/src/ECamUnitTestPlugin/AdvancedSettings.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2004-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
#include <ecom/ecom.h>
sl@0
    18
#include <ecom/implementationproxy.h>
sl@0
    19
#include <ecamuids.hrh>
sl@0
    20
#include <ecam.h>
sl@0
    21
#include "ECamUnitTestPluginUids.hrh"
sl@0
    22
#include "AdvancedSettings.h"
sl@0
    23
#include <ecamerrors.h>
sl@0
    24
sl@0
    25
#include <ecamadvsettings.h>
sl@0
    26
#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
    27
#include <ecamadvsettingsconst.h>
sl@0
    28
#include <ecamadvsettingsdef.h>
sl@0
    29
#include <ecamimageprocessingconst.h>
sl@0
    30
#include <ecamconst.h>
sl@0
    31
#endif
sl@0
    32
sl@0
    33
const TInt KContinuousAutoFocusTimeoutValue = 20000;
sl@0
    34
const TInt KBrightnessAdjMinValue			= -50;
sl@0
    35
const TInt KBrightnessAdjMaxValue			= 50;
sl@0
    36
const TInt KDefaultShutterSpeed				= 0;
sl@0
    37
const TInt KDefaultFocusDistance			= 0;
sl@0
    38
const TInt KDefaultAperture					= 280;
sl@0
    39
const TInt KBracketStartIndex				= 0;
sl@0
    40
const TInt KBracketFrames					= 2;
sl@0
    41
const TBool KDefaultRedEyeReduce			= EFalse;
sl@0
    42
const TInt KFlashCompensationStep			= 2;
sl@0
    43
const TInt KFlashCompensationInSteps		= 1;
sl@0
    44
const TBool KExternalFlashPresentState		= EFalse;
sl@0
    45
const TInt KManualFlashPowerLevel			= 0;
sl@0
    46
const TInt KExposureCompensationStep		= 3;
sl@0
    47
const TInt KExposureCompensationInSteps		= 2;
sl@0
    48
const TBool KApertureExposureLockOn         = EFalse;
sl@0
    49
const TBool KShootClickOn					= EFalse;
sl@0
    50
const TInt KTimerInterval					= 0;
sl@0
    51
const TInt KBurstImages						= 0;
sl@0
    52
const TBool KExposureLockOn         		= EFalse;
sl@0
    53
const TBool KAutoFocusLockOn         		= EFalse;
sl@0
    54
const TBool KAutomaticSizeSelectionChangeOn	= EFalse;
sl@0
    55
const TInt KWBColorTemperature				= 6000;
sl@0
    56
const TBool KFlashReadyState				= EFalse;
sl@0
    57
const TInt KSupportedISORateType			= 0x1F;
sl@0
    58
const TBool KCapableActualISOValue			= EFalse;
sl@0
    59
const TInt KAFAssistantLightManual			= 0x01;
sl@0
    60
const TInt KConcurrentColorOpSupported		= 0x01;
sl@0
    61
const TInt KDefault							= 0x01;
sl@0
    62
const TInt KFocusRangeSupported				= 0x7F;
sl@0
    63
const TInt KWhiteBalanceSupported			= 0x0FFF;
sl@0
    64
sl@0
    65
//
sl@0
    66
// CCamPresets
sl@0
    67
//
sl@0
    68
CCamPresets::CCamPresets(CCamUnitTestPlugin& aOwner): iOwner(aOwner)
sl@0
    69
	{
sl@0
    70
	iSupportedPresets[0] = KUidECamPresetOutdoor;
sl@0
    71
	iSupportedPresets[1] = KUidECamPresetBeach;
sl@0
    72
	iSupportedPresets[2] = KUidECamPresetNightPartyIndoor;
sl@0
    73
	iSupportedPresets[3] = KUidECamPresetNone;
sl@0
    74
sl@0
    75
	iCurrentPreset = KUidECamPresetNone;
sl@0
    76
sl@0
    77
	iAffectedSettings[0] = KUidECamEventCameraSettingAperture;
sl@0
    78
	iAffectedSettings[1] = KUidECamEventCameraSettingIsoRateType;
sl@0
    79
	iAffectedSettings[2] = KUidECamEventCameraSettingIsoRate;
sl@0
    80
sl@0
    81
	iRangeRestrictedSettings.Reset();
sl@0
    82
	iIsPresetUnLockSupported = EFalse;
sl@0
    83
	iIsPresetLocked = ETrue;
sl@0
    84
	}
sl@0
    85
	
sl@0
    86
CCamPresets::~CCamPresets()
sl@0
    87
	{
sl@0
    88
	Dll::FreeTls();
sl@0
    89
	iRangeRestrictedSettings.Close();
sl@0
    90
	}
sl@0
    91
	
sl@0
    92
CCamPresets* CCamPresets::NewL(CCamUnitTestPlugin& aOwner)
sl@0
    93
	{
sl@0
    94
	CDataGlobal* globalData = static_cast <CDataGlobal*> (Dll::Tls());
sl@0
    95
	
sl@0
    96
	if(!globalData)
sl@0
    97
		{
sl@0
    98
		globalData = new (ELeave) CDataGlobal;
sl@0
    99
		CleanupStack::PushL(globalData);
sl@0
   100
		
sl@0
   101
		globalData->iReferenceCount = 0;
sl@0
   102
		globalData->iCamPresets = new (ELeave) CCamPresets(aOwner);
sl@0
   103
    	globalData->iCamPresets->iRefCount = 1;
sl@0
   104
    	
sl@0
   105
		TInt error = Dll::SetTls(globalData);
sl@0
   106
		if (error)
sl@0
   107
			{
sl@0
   108
			delete globalData->iCamPresets;
sl@0
   109
			User::Leave(error);
sl@0
   110
			}
sl@0
   111
		
sl@0
   112
		CleanupStack::Pop(globalData);
sl@0
   113
    	
sl@0
   114
		return static_cast <CCamPresets*> (globalData->iCamPresets);
sl@0
   115
		}
sl@0
   116
	else
sl@0
   117
		{
sl@0
   118
		CCamPresets* self = globalData->iCamPresets;
sl@0
   119
		
sl@0
   120
		globalData->iReferenceCount++;
sl@0
   121
		self->iRefCount = globalData->iReferenceCount + 1;
sl@0
   122
		if (globalData->iReferenceCount == 1 )
sl@0
   123
			{
sl@0
   124
			delete globalData;
sl@0
   125
			Dll::FreeTls();
sl@0
   126
			}
sl@0
   127
		else
sl@0
   128
			{
sl@0
   129
			TInt error = Dll::SetTls(globalData);
sl@0
   130
			if (error)
sl@0
   131
				{
sl@0
   132
				delete globalData->iCamPresets;
sl@0
   133
				User::Leave(error);
sl@0
   134
				}	
sl@0
   135
			}
sl@0
   136
		return static_cast <CCamPresets*> (self);		
sl@0
   137
		}
sl@0
   138
	}
sl@0
   139
sl@0
   140
void CCamPresets::Release()
sl@0
   141
	{
sl@0
   142
	iRefCount--; 
sl@0
   143
	if(!iRefCount)
sl@0
   144
		{
sl@0
   145
		delete this;
sl@0
   146
		}
sl@0
   147
	}	
sl@0
   148
	
sl@0
   149
void CCamPresets::GetSupportedPresetsL(RArray<TUid>& aPresets) const
sl@0
   150
	{
sl@0
   151
	aPresets.Reset();
sl@0
   152
	TInt count = sizeof(iSupportedPresets)/sizeof(TUid);
sl@0
   153
	
sl@0
   154
	for (TInt i = 0; i < count; i++)
sl@0
   155
		{
sl@0
   156
		aPresets.AppendL(iSupportedPresets[i]);
sl@0
   157
		}	
sl@0
   158
	}
sl@0
   159
	
sl@0
   160
void CCamPresets::SetPreset(TUid aPreset)
sl@0
   161
	{
sl@0
   162
	TInt response = KErrECamParameterNotInRange;
sl@0
   163
	
sl@0
   164
	for (TInt i = 0; i < KSupportedPresetsNumber; i++)
sl@0
   165
		{
sl@0
   166
		if (iSupportedPresets[i] == aPreset)
sl@0
   167
			{
sl@0
   168
			iCurrentPreset = aPreset;
sl@0
   169
			response = KErrNone;
sl@0
   170
			
sl@0
   171
			switch(aPreset.iUid)
sl@0
   172
				{
sl@0
   173
				case KUidECamPresetOutdoorUidValue:
sl@0
   174
					{
sl@0
   175
					response = iRangeRestrictedSettings.Append(KUidECamEventCameraSettingIsoRate);
sl@0
   176
					if(iOwner.iSupportedISORates.Count() == KNumSupportedIsoRate)
sl@0
   177
						{
sl@0
   178
						iOwner.iSupportedISORates.Remove(KNumSupportedIsoRate-1);
sl@0
   179
						if(iOwner.iIsoRate == KMaxIsoRate)
sl@0
   180
							{
sl@0
   181
							iOwner.iIsoRate = KIsoRate5;
sl@0
   182
							}
sl@0
   183
						}
sl@0
   184
					iIsPresetUnLockSupported = ETrue;
sl@0
   185
					
sl@0
   186
					break;
sl@0
   187
					}
sl@0
   188
				
sl@0
   189
				//fall through
sl@0
   190
				case KUidECamPresetBeachUidValue:
sl@0
   191
				case KUidECamPresetNightPartyIndoorUidValue:
sl@0
   192
				case KUidECamPresetNoneUidValue:
sl@0
   193
				default:
sl@0
   194
					{
sl@0
   195
					if(iOwner.iSupportedISORates.Count() == KNumSupportedIsoRate-1)
sl@0
   196
						{
sl@0
   197
						iOwner.iSupportedISORates.AppendL(KMaxIsoRate);
sl@0
   198
						}
sl@0
   199
					iIsPresetUnLockSupported = EFalse;
sl@0
   200
					break;	
sl@0
   201
					}
sl@0
   202
				}
sl@0
   203
			
sl@0
   204
			break;
sl@0
   205
			}
sl@0
   206
		}
sl@0
   207
		
sl@0
   208
	iOwner.Notify(aPreset, response);
sl@0
   209
	
sl@0
   210
	if(aPreset == KUidECamPresetOutdoor)
sl@0
   211
		{
sl@0
   212
		iOwner.Notify(KUidECamEventRangeRestricted, KErrNone);
sl@0
   213
		}
sl@0
   214
	}
sl@0
   215
	
sl@0
   216
TUid CCamPresets::Preset() const
sl@0
   217
	{
sl@0
   218
	return iCurrentPreset;
sl@0
   219
	}
sl@0
   220
	
sl@0
   221
void CCamPresets::GetAffectedSettingsL(RArray<TUid>& aSettings) const
sl@0
   222
	{
sl@0
   223
	aSettings.Reset();
sl@0
   224
		
sl@0
   225
	if (iCurrentPreset!=KUidECamPresetNone)
sl@0
   226
		{
sl@0
   227
		TInt count = sizeof(iAffectedSettings)/sizeof(TUid);
sl@0
   228
		for (TInt i = 0; i < count; i++)
sl@0
   229
			{
sl@0
   230
			aSettings.AppendL(iAffectedSettings[i]);
sl@0
   231
			}
sl@0
   232
		}
sl@0
   233
	}
sl@0
   234
	
sl@0
   235
void CCamPresets::GetAssociatedSettingsL(TUid aPreset, RArray<TUid>& aSettings) const
sl@0
   236
	{
sl@0
   237
	aSettings.Reset();
sl@0
   238
	if (aPreset == KUidECamPresetNone)
sl@0
   239
		{
sl@0
   240
		User::Leave(KErrArgument);
sl@0
   241
		}
sl@0
   242
	TInt count = sizeof(iAffectedSettings)/sizeof(TUid);
sl@0
   243
	for (TInt i = 0; i < count; i++)
sl@0
   244
		{
sl@0
   245
		aSettings.AppendL(iAffectedSettings[i]);
sl@0
   246
		}
sl@0
   247
	}
sl@0
   248
	
sl@0
   249
void CCamPresets::GetRangeRestrictedSettingsL(RArray<TUid>& aRangeRestrictedSettings) const
sl@0
   250
	{
sl@0
   251
	for(TInt index=0; index<iRangeRestrictedSettings.Count(); index++)
sl@0
   252
		{
sl@0
   253
		aRangeRestrictedSettings.AppendL(iRangeRestrictedSettings[index]);
sl@0
   254
		}
sl@0
   255
	}
sl@0
   256
sl@0
   257
void CCamPresets::GetFeatureRestrictedSettingsL(RArray<TUid>& aFeatureRestrictedSettings) const
sl@0
   258
	{
sl@0
   259
	aFeatureRestrictedSettings.Reset();
sl@0
   260
	}
sl@0
   261
	
sl@0
   262
void CCamPresets::IsPresetUnlockSupportedL(TBool& aUnlockSupported) const
sl@0
   263
	{
sl@0
   264
	aUnlockSupported = iIsPresetUnLockSupported;	
sl@0
   265
	}
sl@0
   266
sl@0
   267
void CCamPresets::LockPreset()
sl@0
   268
	{
sl@0
   269
	iIsPresetLocked = ETrue;
sl@0
   270
	iOwner.Notify(KUidECamEventPresetLocked, KErrNone);
sl@0
   271
	}
sl@0
   272
	
sl@0
   273
void CCamPresets::UnlockPreset()
sl@0
   274
	{
sl@0
   275
	TInt error = KErrNotSupported;
sl@0
   276
	if(iIsPresetUnLockSupported)
sl@0
   277
		{
sl@0
   278
		iIsPresetLocked = EFalse;
sl@0
   279
		error = KErrNone;
sl@0
   280
		}
sl@0
   281
	iOwner.Notify(KUidECamEventPresetUnlocked, error);
sl@0
   282
	}
sl@0
   283
	
sl@0
   284
//
sl@0
   285
// CCamImgProc
sl@0
   286
//
sl@0
   287
CCamImgProc::CCamImgProc(CCamUnitTestPlugin& aOwner): iOwner(aOwner)
sl@0
   288
	{
sl@0
   289
	}
sl@0
   290
	
sl@0
   291
CCamImgProc::~CCamImgProc()
sl@0
   292
	{
sl@0
   293
	Dll::FreeTls();
sl@0
   294
	iActiveSequence.Close();
sl@0
   295
	iSupportedTransformations.Close();
sl@0
   296
	}
sl@0
   297
	
sl@0
   298
CCamImgProc* CCamImgProc::NewL(CCamUnitTestPlugin& aOwner)
sl@0
   299
	{
sl@0
   300
	CDataGlobal* globalData = static_cast <CDataGlobal*> (Dll::Tls());
sl@0
   301
	
sl@0
   302
	if(!globalData)
sl@0
   303
		{
sl@0
   304
		globalData = new (ELeave) CDataGlobal;
sl@0
   305
		CleanupStack::PushL(globalData);
sl@0
   306
		
sl@0
   307
		globalData->iReferenceCount = 0;
sl@0
   308
		globalData->iCamImgProc = new (ELeave) CCamImgProc(aOwner);
sl@0
   309
		CleanupStack::PushL(globalData->iCamImgProc);
sl@0
   310
		globalData->iCamImgProc->ConstructL();
sl@0
   311
    	globalData->iCamImgProc->iRefCount = 1;
sl@0
   312
    	CleanupStack::Pop(globalData->iCamImgProc);
sl@0
   313
		TInt error = Dll::SetTls(globalData);
sl@0
   314
		if (error)
sl@0
   315
			{
sl@0
   316
			delete globalData->iCamImgProc;
sl@0
   317
			User::Leave(error);
sl@0
   318
			}
sl@0
   319
		CleanupStack::Pop(globalData);
sl@0
   320
		
sl@0
   321
		return static_cast <CCamImgProc*> (globalData->iCamImgProc);
sl@0
   322
		}
sl@0
   323
	else
sl@0
   324
		{
sl@0
   325
		CCamImgProc* self = globalData->iCamImgProc;
sl@0
   326
		
sl@0
   327
		globalData->iReferenceCount++;
sl@0
   328
		self->iRefCount = globalData->iReferenceCount + 1;
sl@0
   329
		if (globalData->iReferenceCount == 2 )
sl@0
   330
			{
sl@0
   331
			delete globalData;
sl@0
   332
			Dll::FreeTls();
sl@0
   333
			}
sl@0
   334
		else
sl@0
   335
			{
sl@0
   336
			TInt error = Dll::SetTls(globalData);
sl@0
   337
			if (error)
sl@0
   338
				{
sl@0
   339
				delete globalData->iCamImgProc;
sl@0
   340
				User::Leave(error);
sl@0
   341
				}	
sl@0
   342
			}
sl@0
   343
		return static_cast <CCamImgProc*> (self);		
sl@0
   344
		}
sl@0
   345
	}
sl@0
   346
	
sl@0
   347
void CCamImgProc::Release()
sl@0
   348
	{
sl@0
   349
	iRefCount--; 
sl@0
   350
	if(!iRefCount)
sl@0
   351
		{
sl@0
   352
		delete this;
sl@0
   353
		}
sl@0
   354
	}	
sl@0
   355
	
sl@0
   356
void CCamImgProc::ConstructL()
sl@0
   357
	{
sl@0
   358
	iSupportedTransformations.AppendL(KUidECamEventImageProcessingAdjustBrightness);
sl@0
   359
	iSupportedTransformations.AppendL(KUidECamEventImageProcessingAdjustContrast);
sl@0
   360
	iSupportedTransformations.AppendL(KUidECamEventImageProcessingEffect);
sl@0
   361
	iBrightnessRange[0] = KBrightnessAdjMinValue; // min 
sl@0
   362
	iBrightnessRange[1] = KBrightnessAdjMaxValue; // max value, step assumed 1
sl@0
   363
	
sl@0
   364
	iSupportedColorSwapCapabilities.iSupportedSourceRepresentation  = KDefault;
sl@0
   365
	iSupportedColorSwapCapabilities.iSupportedTargetRepresentation  = KDefault;	
sl@0
   366
	iSupportedColorSwapCapabilities.iSupportedSourceRgbGroupingMode = KDefault;
sl@0
   367
	iSupportedColorSwapCapabilities.iSupportedTargetRgbGroupingMode = KDefault;
sl@0
   368
	iSupportedColorSwapCapabilities.iIsCapabilityUniform = ETrue;
sl@0
   369
	
sl@0
   370
	iSupportedColorAccentCapabilities.iSupportedSourceRepresentation   = KDefault;
sl@0
   371
	iSupportedColorAccentCapabilities.iSupportedSourceRgbGroupingMode  = KDefault;
sl@0
   372
	iSupportedColorAccentCapabilities.iIsCapabilityUniform = ETrue;
sl@0
   373
	}
sl@0
   374
	
sl@0
   375
void CCamImgProc::GetSupportedTransformationsL(RArray<TUid>& aTransformations) const
sl@0
   376
	{
sl@0
   377
	aTransformations.Reset();
sl@0
   378
	if (iOwner.iCameras[iOwner.iCameraIndex])
sl@0
   379
		{
sl@0
   380
		for (TInt i=0; i<iSupportedTransformations.Count(); i++)
sl@0
   381
			{
sl@0
   382
			aTransformations.AppendL(iSupportedTransformations[i]);
sl@0
   383
			}
sl@0
   384
		}
sl@0
   385
	}
sl@0
   386
	
sl@0
   387
void CCamImgProc::GetActiveTransformationsL(RArray<TUid>& aTransformations) const
sl@0
   388
	{
sl@0
   389
	aTransformations.Reset();
sl@0
   390
	if (iOwner.iCameras[iOwner.iCameraIndex])
sl@0
   391
		{
sl@0
   392
		for (TInt i=0; i<iSupportedTransformations.Count(); i++)
sl@0
   393
			{
sl@0
   394
			aTransformations.AppendL(iSupportedTransformations[i]);
sl@0
   395
			}
sl@0
   396
		}
sl@0
   397
	}
sl@0
   398
	
sl@0
   399
void CCamImgProc::GetTransformationSupportedValuesL(TUid aTransformation, RArray<TInt>& aValues, TValueInfo& aInfo) const
sl@0
   400
	{
sl@0
   401
	if (iSupportedTransformations.Find(aTransformation)==KErrNotFound)
sl@0
   402
		{
sl@0
   403
		aValues.Reset();
sl@0
   404
		aInfo = ENotActive;
sl@0
   405
		}
sl@0
   406
	else
sl@0
   407
		{
sl@0
   408
		if (aTransformation == KUidECamEventImageProcessingAdjustBrightness)
sl@0
   409
			{
sl@0
   410
			aValues.AppendL(iBrightnessRange[0]);
sl@0
   411
			aValues.AppendL(iBrightnessRange[1]);
sl@0
   412
			aInfo = EContinuousRangeMinMax;
sl@0
   413
			}
sl@0
   414
		else
sl@0
   415
			{
sl@0
   416
			if(aTransformation == KUidECamEventImageProcessingEffect)
sl@0
   417
				{
sl@0
   418
				aValues.AppendL(CCamera::CCameraImageProcessing::EEffectColorSwap | CCamera::CCameraImageProcessing::EEffectColorAccent);
sl@0
   419
				aInfo = EBitField;
sl@0
   420
				}
sl@0
   421
			else
sl@0
   422
				{
sl@0
   423
				aInfo = EDiscreteSteps;
sl@0
   424
				if (aTransformation == iTransformation)
sl@0
   425
					{
sl@0
   426
					aValues.AppendL(iValue);
sl@0
   427
					}
sl@0
   428
				else
sl@0
   429
					{
sl@0
   430
					aValues.AppendL(KECamImageProcessingDefaultValue);
sl@0
   431
					}	
sl@0
   432
				}
sl@0
   433
			}
sl@0
   434
		}
sl@0
   435
	}
sl@0
   436
sl@0
   437
TInt CCamImgProc::TransformationValue(TUid aTransformation) const
sl@0
   438
	{
sl@0
   439
	if (iSupportedTransformations.Find(aTransformation) == KErrNotFound)
sl@0
   440
		{
sl@0
   441
		return KErrNotFound;
sl@0
   442
		}
sl@0
   443
	else
sl@0
   444
		{
sl@0
   445
		if (aTransformation == iTransformation)
sl@0
   446
			{
sl@0
   447
			return iValue;
sl@0
   448
			}
sl@0
   449
		else
sl@0
   450
			{
sl@0
   451
			return KECamImageProcessingDefaultValue;
sl@0
   452
			}
sl@0
   453
		}
sl@0
   454
	}
sl@0
   455
	
sl@0
   456
TInt CCamImgProc::GetTransformationValue(TUid aTransformation, TInt& aTransformationValue) const
sl@0
   457
	{
sl@0
   458
	if (iSupportedTransformations.Find(aTransformation) == KErrNotFound)
sl@0
   459
		{
sl@0
   460
		return KErrNotFound;
sl@0
   461
		}
sl@0
   462
	else
sl@0
   463
		{
sl@0
   464
		if (aTransformation == iTransformation)
sl@0
   465
			{
sl@0
   466
			aTransformationValue = iValue;
sl@0
   467
			}
sl@0
   468
		else
sl@0
   469
			{
sl@0
   470
			aTransformationValue = KECamImageProcessingDefaultValue;
sl@0
   471
			}
sl@0
   472
			
sl@0
   473
		return KErrNone;
sl@0
   474
		}
sl@0
   475
	}
sl@0
   476
	
sl@0
   477
void CCamImgProc::SetTransformationValue(TUid aTransformation, TInt aValue)
sl@0
   478
	{
sl@0
   479
	TInt response;
sl@0
   480
	
sl@0
   481
	if (iSupportedTransformations.Find(aTransformation) == KErrNotFound)
sl@0
   482
		{
sl@0
   483
		response = KErrECamSettingDisabled;
sl@0
   484
		}
sl@0
   485
	else
sl@0
   486
		{
sl@0
   487
		if (aTransformation == KUidECamEventImageProcessingAdjustBrightness)
sl@0
   488
			{
sl@0
   489
			// if outside the range 
sl@0
   490
			if (aValue < iBrightnessRange[0] || aValue > iBrightnessRange[1])
sl@0
   491
				{
sl@0
   492
				response = KErrECamParameterNotInRange;
sl@0
   493
				}
sl@0
   494
			else
sl@0
   495
				{
sl@0
   496
				response = KErrNone;
sl@0
   497
				}
sl@0
   498
			}
sl@0
   499
		else
sl@0
   500
			{
sl@0
   501
			response = KErrNone;
sl@0
   502
			if(aTransformation == KUidECamEventImageProcessingEffect)
sl@0
   503
				{
sl@0
   504
				if(aValue == CCamera::CCameraImageProcessing::EEffectColorSwap)
sl@0
   505
					{
sl@0
   506
					iColorSwapParameter.iEntryStatus = ENotActive;
sl@0
   507
					}
sl@0
   508
				else
sl@0
   509
					{
sl@0
   510
					if(aValue == CCamera::CCameraImageProcessing::EEffectColorAccent)	
sl@0
   511
						{
sl@0
   512
						iColorAccentParameter.iEntryStatus = ENotActive;
sl@0
   513
						}
sl@0
   514
					else
sl@0
   515
						{
sl@0
   516
						response = KErrArgument;	
sl@0
   517
						}
sl@0
   518
					}
sl@0
   519
				}
sl@0
   520
			}
sl@0
   521
				
sl@0
   522
		if (response == KErrNone)
sl@0
   523
			{
sl@0
   524
			iTransformation = aTransformation;
sl@0
   525
			iValue = aValue;
sl@0
   526
			}
sl@0
   527
		}
sl@0
   528
	iOwner.Notify(aTransformation, response);
sl@0
   529
	}
sl@0
   530
	
sl@0
   531
void CCamImgProc::GetActiveTransformSequenceL(RArray<TUid>& aTransformSequence) const
sl@0
   532
	{
sl@0
   533
	aTransformSequence.Reset();
sl@0
   534
	if (iOwner.iCameras[iOwner.iCameraIndex])
sl@0
   535
		{
sl@0
   536
		for (TInt i = 0; i < iActiveSequence.Count(); i++)
sl@0
   537
			{
sl@0
   538
			aTransformSequence.AppendL(iActiveSequence[i]);
sl@0
   539
			}
sl@0
   540
		}		
sl@0
   541
	}
sl@0
   542
	
sl@0
   543
void CCamImgProc::SetActiveTransformSequenceL(RArray<TUid>& aNewTransformSequence)
sl@0
   544
	{
sl@0
   545
	iActiveSequence.Reset();
sl@0
   546
	if (iOwner.iCameras[iOwner.iCameraIndex])
sl@0
   547
		{
sl@0
   548
		for (TInt i=0; i<aNewTransformSequence.Count(); i++)
sl@0
   549
			{
sl@0
   550
			iActiveSequence.AppendL(aNewTransformSequence[i]);
sl@0
   551
			}
sl@0
   552
		}	
sl@0
   553
	}
sl@0
   554
sl@0
   555
void CCamImgProc::SetSourceRect( const TRect& aRect)
sl@0
   556
	{
sl@0
   557
	iSourceRect = aRect;	
sl@0
   558
	}
sl@0
   559
void CCamImgProc::GetSourceRect(TRect& aRect) const
sl@0
   560
	{
sl@0
   561
	aRect = iSourceRect;	
sl@0
   562
	}
sl@0
   563
	
sl@0
   564
void CCamImgProc::GetConcurrentColorSwappingsSupportedL(TInt& aConcurrentColorSwappingSupported) const
sl@0
   565
	{
sl@0
   566
	aConcurrentColorSwappingSupported = KConcurrentColorOpSupported;
sl@0
   567
	}
sl@0
   568
	
sl@0
   569
void CCamImgProc::GetColorSwapCapabilitiesL(TInt aIndex, CCamera::CCameraImageProcessing::TColorOperationCapabilities& aColorSwapCapabilities) const
sl@0
   570
	{
sl@0
   571
	if(aIndex <0 || aIndex > KConcurrentColorOpSupported-1)
sl@0
   572
		{
sl@0
   573
		User::Leave(KErrArgument);
sl@0
   574
		}
sl@0
   575
			
sl@0
   576
	if(aColorSwapCapabilities.Size() != sizeof(CCamera::CCameraImageProcessing::TColorOperationCapabilities) ||
sl@0
   577
	   aColorSwapCapabilities.Version() != KECamColorOperationCapabilitiesCurrentVersion)
sl@0
   578
		{
sl@0
   579
		// new app. running on old impl.
sl@0
   580
		User::Leave(KErrNotSupported);
sl@0
   581
		}
sl@0
   582
	else
sl@0
   583
		{
sl@0
   584
		aColorSwapCapabilities = iSupportedColorSwapCapabilities;
sl@0
   585
		}	
sl@0
   586
	}
sl@0
   587
	
sl@0
   588
void CCamImgProc::SetColorSwapEntry(TInt aIndex, const CCamera::CCameraImageProcessing::TColorOperationEntry& aColorSwapParameters)
sl@0
   589
	{
sl@0
   590
	TInt response = KErrNone;
sl@0
   591
sl@0
   592
	if(aColorSwapParameters.Size() != sizeof(CCamera::CCameraImageProcessing::TColorOperationEntry) ||
sl@0
   593
	aColorSwapParameters.iNumBitsIgnored.Size() != sizeof(CCamera::CCameraImageProcessing::TBitsIgnore) ||
sl@0
   594
	aColorSwapParameters.Version() != KECamColorOperationEntryCurrentVersion ||
sl@0
   595
	aColorSwapParameters.iNumBitsIgnored.Version() != KECamBitsIgnoreCurrentVersion
sl@0
   596
	)
sl@0
   597
		{
sl@0
   598
		// new app. running on old impl.
sl@0
   599
		iOwner.Notify2(KUidECamEvent2CIPSetColorSwapEntry, KErrNotSupported, aIndex);
sl@0
   600
		}
sl@0
   601
	else
sl@0
   602
		{
sl@0
   603
		if(aIndex <0 || aIndex > KConcurrentColorOpSupported-1)
sl@0
   604
			{
sl@0
   605
			iOwner.Notify2(KUidECamEvent2CIPSetColorSwapEntry, KErrArgument, aIndex);
sl@0
   606
			}
sl@0
   607
		else
sl@0
   608
			{
sl@0
   609
			if(!CheckColorSwapEntry(aColorSwapParameters))
sl@0
   610
				{
sl@0
   611
				// if color operation entry is different from what is supported....
sl@0
   612
				iOwner.Notify2(KUidECamEvent2CIPSetColorSwapEntry, KErrArgument, aIndex);
sl@0
   613
				}
sl@0
   614
			else
sl@0
   615
				{
sl@0
   616
				iColorSwapParameter = aColorSwapParameters;
sl@0
   617
				iColorSwapParameter.iEntryStatus = EDiscreteSteps;
sl@0
   618
				
sl@0
   619
				iOwner.Notify2(KUidECamEvent2CIPSetColorSwapEntry, response, aIndex);	
sl@0
   620
				}
sl@0
   621
			}
sl@0
   622
		}
sl@0
   623
	}
sl@0
   624
	
sl@0
   625
void CCamImgProc::RemoveColorSwapEntry(TInt aIndex)
sl@0
   626
	{
sl@0
   627
	TInt response = KErrNone;
sl@0
   628
sl@0
   629
	if(aIndex <0 || aIndex > KConcurrentColorOpSupported-1)
sl@0
   630
		{
sl@0
   631
		iOwner.Notify2(KUidECamEventCIPRemoveColorSwapEntry, KErrArgument, aIndex);
sl@0
   632
		}
sl@0
   633
	else
sl@0
   634
		{
sl@0
   635
		iColorSwapParameter.iEntryStatus = ENotActive;
sl@0
   636
		iOwner.Notify2(KUidECamEventCIPRemoveColorSwapEntry, response, aIndex);	
sl@0
   637
		}
sl@0
   638
	}
sl@0
   639
	
sl@0
   640
void CCamImgProc::GetColorSwapEntryL(TInt aIndex, CCamera::CCameraImageProcessing::TColorOperationEntry& aColorSwapParameters) const
sl@0
   641
	{
sl@0
   642
	if(aIndex <0 || aIndex > KConcurrentColorOpSupported-1)
sl@0
   643
		{
sl@0
   644
		User::Leave(KErrArgument);
sl@0
   645
		}
sl@0
   646
		
sl@0
   647
	if(aColorSwapParameters.Size() != sizeof(CCamera::CCameraImageProcessing::TColorOperationEntry) ||
sl@0
   648
	aColorSwapParameters.iNumBitsIgnored.Size() != sizeof(CCamera::CCameraImageProcessing::TBitsIgnore))
sl@0
   649
		{
sl@0
   650
		// new app. running on old impl.
sl@0
   651
		User::Leave(KErrNotSupported);
sl@0
   652
		}	
sl@0
   653
	else
sl@0
   654
		{
sl@0
   655
		aColorSwapParameters = iColorSwapParameter;
sl@0
   656
		}		
sl@0
   657
	}
sl@0
   658
	
sl@0
   659
void CCamImgProc::StartColorSwapping()
sl@0
   660
	{
sl@0
   661
	TInt response = KErrNone;
sl@0
   662
	iOwner.Notify(KUidECamEventCIPStartColorSwap, response);
sl@0
   663
	}
sl@0
   664
	
sl@0
   665
void CCamImgProc::CancelColorSwappingL()
sl@0
   666
	{
sl@0
   667
	}
sl@0
   668
	
sl@0
   669
void CCamImgProc::GetConcurrentColorAccentSupportedL(TInt& aConcurrentColorAccentSupported) const
sl@0
   670
	{
sl@0
   671
	aConcurrentColorAccentSupported = KConcurrentColorOpSupported;
sl@0
   672
	}
sl@0
   673
	
sl@0
   674
void CCamImgProc::GetColorAccentCapabilitiesL(TInt aIndex, CCamera::CCameraImageProcessing::TColorOperationCapabilities& aColorAccentCapabilities) const
sl@0
   675
	{
sl@0
   676
	if(aIndex <0 || aIndex > KConcurrentColorOpSupported-1)
sl@0
   677
		{
sl@0
   678
		User::Leave(KErrArgument);
sl@0
   679
		}
sl@0
   680
			
sl@0
   681
	if(aColorAccentCapabilities.Size() != sizeof(CCamera::CCameraImageProcessing::TColorOperationCapabilities))
sl@0
   682
		{
sl@0
   683
		// new app. running on old impl.
sl@0
   684
		User::Leave(KErrNotSupported);
sl@0
   685
		}
sl@0
   686
	else
sl@0
   687
		{
sl@0
   688
		aColorAccentCapabilities = iSupportedColorAccentCapabilities;
sl@0
   689
		}	
sl@0
   690
	}
sl@0
   691
	
sl@0
   692
void CCamImgProc::SetColorAccentEntry(TInt aIndex, const CCamera::CCameraImageProcessing::TColorOperationEntry& aColorAccentParameters)
sl@0
   693
	{
sl@0
   694
	TInt response = KErrNone;
sl@0
   695
sl@0
   696
	if(aColorAccentParameters.Size() != sizeof(CCamera::CCameraImageProcessing::TColorOperationEntry) ||
sl@0
   697
	aColorAccentParameters.iNumBitsIgnored.Size() != sizeof(CCamera::CCameraImageProcessing::TBitsIgnore))
sl@0
   698
		{
sl@0
   699
		// new app. running on old impl.
sl@0
   700
		iOwner.Notify2(KUidECamEventCIPSetColorAccentEntry, KErrNotSupported, aIndex);
sl@0
   701
		}
sl@0
   702
	else
sl@0
   703
		{
sl@0
   704
		if(aIndex <0 || aIndex > KConcurrentColorOpSupported-1)
sl@0
   705
			{
sl@0
   706
			iOwner.Notify2(KUidECamEventCIPSetColorAccentEntry, KErrArgument, aIndex);
sl@0
   707
			}
sl@0
   708
		else
sl@0
   709
			{
sl@0
   710
			if(!CheckColorAccentEntry(aColorAccentParameters))
sl@0
   711
				{
sl@0
   712
				// if color operation entry is different from what is supported....
sl@0
   713
				iOwner.Notify2(KUidECamEventCIPSetColorAccentEntry, KErrArgument, aIndex);
sl@0
   714
				}
sl@0
   715
			else
sl@0
   716
				{
sl@0
   717
				iColorAccentParameter = aColorAccentParameters;
sl@0
   718
				iColorAccentParameter.iEntryStatus = EDiscreteSteps;
sl@0
   719
				
sl@0
   720
				iOwner.Notify2(KUidECamEventCIPSetColorAccentEntry, response, aIndex);	
sl@0
   721
				}
sl@0
   722
			}
sl@0
   723
		}
sl@0
   724
	}
sl@0
   725
	
sl@0
   726
void CCamImgProc::RemoveColorAccentEntry(TInt aIndex)
sl@0
   727
	{
sl@0
   728
	TInt response = KErrNone;
sl@0
   729
sl@0
   730
	if(aIndex <0 || aIndex > KConcurrentColorOpSupported-1)
sl@0
   731
		{
sl@0
   732
		iOwner.Notify2(KUidECamEventCIPRemoveColorAccentEntry, KErrArgument, aIndex);
sl@0
   733
		}
sl@0
   734
	else
sl@0
   735
		{
sl@0
   736
		iColorAccentParameter.iEntryStatus = ENotActive;
sl@0
   737
		iOwner.Notify2(KUidECamEventCIPRemoveColorAccentEntry, response, aIndex);	
sl@0
   738
		}
sl@0
   739
	}
sl@0
   740
	
sl@0
   741
void CCamImgProc::GetColorAccentEntryL(TInt aIndex, CCamera::CCameraImageProcessing::TColorOperationEntry& aColorAccentParameters) const
sl@0
   742
	{
sl@0
   743
	if(aIndex <0 || aIndex > KConcurrentColorOpSupported-1)
sl@0
   744
		{
sl@0
   745
		User::Leave(KErrArgument);
sl@0
   746
		}
sl@0
   747
		
sl@0
   748
	if(aColorAccentParameters.Size() != sizeof(CCamera::CCameraImageProcessing::TColorOperationEntry) ||
sl@0
   749
	aColorAccentParameters.iNumBitsIgnored.Size() != sizeof(CCamera::CCameraImageProcessing::TBitsIgnore))
sl@0
   750
		{
sl@0
   751
		// new app. running on old impl.
sl@0
   752
		User::Leave(KErrNotSupported);
sl@0
   753
		}	
sl@0
   754
	else
sl@0
   755
		{
sl@0
   756
		aColorAccentParameters = iColorAccentParameter;
sl@0
   757
		}
sl@0
   758
	}
sl@0
   759
	
sl@0
   760
void CCamImgProc::StartColorAccent()
sl@0
   761
	{
sl@0
   762
	TInt response = KErrNone;
sl@0
   763
	iOwner.Notify(KUidECamEventCIPStartColorAccent, response);
sl@0
   764
	}
sl@0
   765
	
sl@0
   766
void CCamImgProc::CancelColorAccentL()
sl@0
   767
	{
sl@0
   768
	}
sl@0
   769
	
sl@0
   770
TBool CCamImgProc::CheckColorSwapEntry(const CCamera::CCameraImageProcessing::TColorOperationEntry& aColorSwapParameters) const
sl@0
   771
	{
sl@0
   772
	if(aColorSwapParameters.iSourceColorRepresentation != KDefault)
sl@0
   773
		{
sl@0
   774
		return EFalse;
sl@0
   775
		}
sl@0
   776
		
sl@0
   777
	if(aColorSwapParameters.iTargetColorRepresentation != KDefault)
sl@0
   778
		{
sl@0
   779
		return EFalse;
sl@0
   780
		}
sl@0
   781
	
sl@0
   782
	if(aColorSwapParameters.iColorOperationSourceRgbGroupingMode != KDefault)
sl@0
   783
		{
sl@0
   784
		return EFalse;
sl@0
   785
		}
sl@0
   786
	
sl@0
   787
	if(aColorSwapParameters.iColorOperationTargetRgbGroupingMode != KDefault)
sl@0
   788
		{
sl@0
   789
		return EFalse;
sl@0
   790
		}
sl@0
   791
		
sl@0
   792
	if(aColorSwapParameters.iNumBitsIgnored.iRedBitsIgnore != 0)
sl@0
   793
		{
sl@0
   794
		return EFalse;
sl@0
   795
		}	
sl@0
   796
	 
sl@0
   797
	if(aColorSwapParameters.iNumBitsIgnored.iGreenBitsIgnore != 0)
sl@0
   798
		{
sl@0
   799
		return EFalse;
sl@0
   800
		}	
sl@0
   801
		
sl@0
   802
	if(aColorSwapParameters.iNumBitsIgnored.iBlueBitsIgnore != 0)
sl@0
   803
		{
sl@0
   804
		return EFalse;
sl@0
   805
		}		  	
sl@0
   806
		
sl@0
   807
	if(aColorSwapParameters.iNumBitsIgnored.iAlphaBitsIgnore != 0)
sl@0
   808
		{
sl@0
   809
		return EFalse;
sl@0
   810
		}	   
sl@0
   811
	
sl@0
   812
	return ETrue;		 
sl@0
   813
	}
sl@0
   814
sl@0
   815
TBool CCamImgProc::CheckColorAccentEntry(const CCamera::CCameraImageProcessing::TColorOperationEntry& aColorAccentParameters) const
sl@0
   816
	{
sl@0
   817
	if(aColorAccentParameters.iSourceColorRepresentation != KDefault)
sl@0
   818
		{
sl@0
   819
		return EFalse;
sl@0
   820
		}
sl@0
   821
		
sl@0
   822
	if(aColorAccentParameters.iColorOperationSourceRgbGroupingMode != KDefault)
sl@0
   823
		{
sl@0
   824
		return EFalse;
sl@0
   825
		}
sl@0
   826
	
sl@0
   827
	if(aColorAccentParameters.iNumBitsIgnored.iRedBitsIgnore != 0)
sl@0
   828
		{
sl@0
   829
		return EFalse;
sl@0
   830
		}	
sl@0
   831
	 
sl@0
   832
	if(aColorAccentParameters.iNumBitsIgnored.iGreenBitsIgnore != 0)
sl@0
   833
		{
sl@0
   834
		return EFalse;
sl@0
   835
		}	
sl@0
   836
		
sl@0
   837
	if(aColorAccentParameters.iNumBitsIgnored.iBlueBitsIgnore != 0)
sl@0
   838
		{
sl@0
   839
		return EFalse;
sl@0
   840
		}		  	
sl@0
   841
		
sl@0
   842
	if(aColorAccentParameters.iNumBitsIgnored.iAlphaBitsIgnore != 0)
sl@0
   843
		{
sl@0
   844
		return EFalse;
sl@0
   845
		}	   
sl@0
   846
	
sl@0
   847
	return ETrue;		 
sl@0
   848
	}
sl@0
   849
sl@0
   850
void CCamImgProc::GetSupportedRelativeOrientationOptionsL(CCamera::CCameraImageProcessing::TOrientationReference /*aOrientationReference*/, 
sl@0
   851
			TUint& /*aSupportedRelativeRotation*/, TUint& /*aSupportedRelativeMirroring*/, TUint& /*aSupportedRelativeFlipping*/) const
sl@0
   852
	{
sl@0
   853
	User::Leave(KErrNotSupported);	
sl@0
   854
	}
sl@0
   855
	
sl@0
   856
void CCamImgProc::GetCurrentRelativeOrientationOptionsL(CCamera::CCameraImageProcessing::TOrientationReference& /*aOrientationReference*/, 
sl@0
   857
			CCamera::CCameraImageProcessing::TRelativeRotation& /*aRelativeRotation*/, CCamera::CCameraImageProcessing::
sl@0
   858
			TRelativeMirror& /*aRelativeMirror*/, CCamera::CCameraImageProcessing::TRelativeFlipping& /*aRelativeFlipping*/) const
sl@0
   859
	{
sl@0
   860
	User::Leave(KErrNotSupported);	
sl@0
   861
	}
sl@0
   862
sl@0
   863
void CCamImgProc::SetRelativeOrientationOptions(CCamera::CCameraImageProcessing::TOrientationReference /*aOrientationReference*/, 
sl@0
   864
			CCamera::CCameraImageProcessing::TRelativeRotation /*aRelativeRotation*/, CCamera::CCameraImageProcessing::
sl@0
   865
			TRelativeMirror /*aRelativeMirror*/, CCamera::CCameraImageProcessing::TRelativeFlipping /*aRelativeFlipping*/) const
sl@0
   866
	{
sl@0
   867
	iOwner.Notify(KUidECamEventImageProcessingTransformRelativeOrientation, KErrNotSupported);
sl@0
   868
	}
sl@0
   869
	
sl@0
   870
//
sl@0
   871
// CCamAdvSet
sl@0
   872
//
sl@0
   873
sl@0
   874
CCamAdvSet::CCamAdvSet(CCamUnitTestPlugin& aOwner): iOwner(aOwner)
sl@0
   875
	{
sl@0
   876
	Init();
sl@0
   877
	}
sl@0
   878
	
sl@0
   879
CCamAdvSet::~CCamAdvSet()
sl@0
   880
	{
sl@0
   881
	Dll::FreeTls();
sl@0
   882
	}
sl@0
   883
		
sl@0
   884
CCamAdvSet* CCamAdvSet::NewL(CCamUnitTestPlugin& aOwner)
sl@0
   885
	{
sl@0
   886
	CDataGlobal* globalData = static_cast <CDataGlobal*> (Dll::Tls());
sl@0
   887
	
sl@0
   888
	if(!globalData)
sl@0
   889
		{
sl@0
   890
		globalData = new (ELeave) CDataGlobal;
sl@0
   891
		CleanupStack::PushL(globalData);
sl@0
   892
		
sl@0
   893
		globalData->iReferenceCount = 0;
sl@0
   894
		globalData->iCamAdvSet = new (ELeave) CCamAdvSet(aOwner);
sl@0
   895
		globalData->iCamAdvSet->iRefCount = 1;
sl@0
   896
		TInt error =  Dll::SetTls(globalData);
sl@0
   897
		if(error)
sl@0
   898
			{
sl@0
   899
			delete globalData->iCamAdvSet;
sl@0
   900
			User::Leave(error);
sl@0
   901
			}
sl@0
   902
		CleanupStack::Pop(globalData);
sl@0
   903
		return static_cast <CCamAdvSet*> (globalData->iCamAdvSet);
sl@0
   904
		}
sl@0
   905
	else
sl@0
   906
		{
sl@0
   907
		CCamAdvSet* self = globalData->iCamAdvSet;
sl@0
   908
		
sl@0
   909
		globalData->iReferenceCount++;
sl@0
   910
		self->iRefCount = globalData->iReferenceCount + 1;
sl@0
   911
		if (globalData->iReferenceCount == 3 )
sl@0
   912
			{
sl@0
   913
			delete globalData;
sl@0
   914
			Dll::FreeTls();
sl@0
   915
			}
sl@0
   916
		else
sl@0
   917
			{
sl@0
   918
			TInt error =  Dll::SetTls(globalData);
sl@0
   919
			if(error)
sl@0
   920
				{
sl@0
   921
				delete globalData->iCamAdvSet;
sl@0
   922
				User::Leave(error);
sl@0
   923
				}
sl@0
   924
			}
sl@0
   925
		return static_cast <CCamAdvSet*> (self);		
sl@0
   926
		}
sl@0
   927
	}
sl@0
   928
sl@0
   929
void CCamAdvSet::Release()
sl@0
   930
	{
sl@0
   931
	iRefCount--; 
sl@0
   932
	if(!iRefCount)
sl@0
   933
		{
sl@0
   934
		delete this;
sl@0
   935
		}
sl@0
   936
	}	
sl@0
   937
	
sl@0
   938
void CCamAdvSet::Init()
sl@0
   939
	{
sl@0
   940
	iShutterSpeed = KDefaultShutterSpeed;
sl@0
   941
	iFocusDistance = KDefaultFocusDistance;
sl@0
   942
	iAperture = KDefaultAperture;
sl@0
   943
	iFocusRange = CCamera::CCameraAdvancedSettings::EFocusRangeAuto;
sl@0
   944
	iWhiteBalance = CCamera::EWBAuto;
sl@0
   945
	
sl@0
   946
	iISORateType = CCamera::CCameraAdvancedSettings::EISOManual;
sl@0
   947
	iSupportedISORateType = KSupportedISORateType;
sl@0
   948
	iIsCapableActualISOValue = KCapableActualISOValue;
sl@0
   949
	iAutoISOIndex = -1;
sl@0
   950
	iSupportedAFAssistantLight = KAFAssistantLightManual;
sl@0
   951
	iAFAssistantLight = CCamera::CCameraAdvancedSettings::EAFAssistantLightOff;
sl@0
   952
	iPixelAspectRatio = CCamera::CCameraAdvancedSettings::EPixelAspect1To1;
sl@0
   953
	iFlashMode = CCamera::EFlashNone;
sl@0
   954
sl@0
   955
	iSupportedDriveModes |= CCamera::CCameraAdvancedSettings::EDriveModeSingleShot;
sl@0
   956
	iSupportedDriveModes |= CCamera::CCameraAdvancedSettings::EDriveModeBurst;
sl@0
   957
	iSupportedDriveModes |= CCamera::CCameraAdvancedSettings::EDriveModeTimeNudgeCapture;
sl@0
   958
	
sl@0
   959
	iDriveMode = CCamera::CCameraAdvancedSettings::EDriveModeAuto;
sl@0
   960
	}
sl@0
   961
sl@0
   962
CCamera::CCameraAdvancedSettings::TCameraType CCamAdvSet::CameraType() const
sl@0
   963
	{
sl@0
   964
	return iOwner.iCameraTypes[iOwner.iCameraIndex];	
sl@0
   965
	}
sl@0
   966
sl@0
   967
CCamera::CCameraAdvancedSettings::TCameraType CCamAdvSet::CameraType(TInt aCameraIndex) const
sl@0
   968
	{
sl@0
   969
	if (aCameraIndex >= KECamSetAvailableCameras)
sl@0
   970
		{
sl@0
   971
		return CCamera::CCameraAdvancedSettings::ECameraUnknown;	
sl@0
   972
		}
sl@0
   973
	else 
sl@0
   974
		{
sl@0
   975
		return iOwner.iCameraTypes[aCameraIndex];	
sl@0
   976
		}
sl@0
   977
	}
sl@0
   978
	
sl@0
   979
TBool CCamAdvSet::IsCameraPresent() const
sl@0
   980
	{
sl@0
   981
	return iOwner.iCameras[iOwner.iCameraIndex];
sl@0
   982
	}
sl@0
   983
sl@0
   984
TBool CCamAdvSet::IsCameraPresent(TInt aCameraIndex) const
sl@0
   985
	{
sl@0
   986
	if (aCameraIndex >= KECamSetAvailableCameras)
sl@0
   987
		{
sl@0
   988
		return EFalse;
sl@0
   989
		}
sl@0
   990
	else
sl@0
   991
		{
sl@0
   992
		return iOwner.iCameras[aCameraIndex];
sl@0
   993
		}
sl@0
   994
	}
sl@0
   995
	
sl@0
   996
TInt CCamAdvSet::CameraIndex() const
sl@0
   997
	{
sl@0
   998
	return iOwner.iCameraIndex;
sl@0
   999
	}
sl@0
  1000
	
sl@0
  1001
TInt CCamAdvSet::SupportedStabilizationModes() const
sl@0
  1002
	{
sl@0
  1003
	return 0;
sl@0
  1004
	}
sl@0
  1005
CCamera::CCameraAdvancedSettings::TStabilizationMode CCamAdvSet::StabilizationMode() const
sl@0
  1006
	{
sl@0
  1007
	return CCamera::CCameraAdvancedSettings::EStabilizationModeOff;
sl@0
  1008
	}
sl@0
  1009
	
sl@0
  1010
void CCamAdvSet::SetStabilizationMode(CCamera::CCameraAdvancedSettings::TStabilizationMode /*aStabilizationMode*/)
sl@0
  1011
	{
sl@0
  1012
	}
sl@0
  1013
	
sl@0
  1014
TInt CCamAdvSet::SupportedFocusModes() const
sl@0
  1015
	{
sl@0
  1016
	return 0;
sl@0
  1017
	}
sl@0
  1018
	
sl@0
  1019
CCamera::CCameraAdvancedSettings::TFocusMode CCamAdvSet::FocusMode() const
sl@0
  1020
	{
sl@0
  1021
	return CCamera::CCameraAdvancedSettings::EFocusModeAuto;	
sl@0
  1022
	}
sl@0
  1023
	
sl@0
  1024
void CCamAdvSet::SetFocusMode(CCamera::CCameraAdvancedSettings::TFocusMode /*aFocusMode*/)
sl@0
  1025
	{
sl@0
  1026
	TInt response = KErrNone;
sl@0
  1027
	
sl@0
  1028
	RetrieveResult(response);
sl@0
  1029
	
sl@0
  1030
	iOwner.Notify(KUidECamEventCameraSettingFocusMode, response);
sl@0
  1031
	}
sl@0
  1032
	
sl@0
  1033
TInt CCamAdvSet::SupportedFocusRanges() const
sl@0
  1034
	{
sl@0
  1035
	return KFocusRangeSupported;
sl@0
  1036
	}
sl@0
  1037
	
sl@0
  1038
CCamera::CCameraAdvancedSettings::TFocusRange CCamAdvSet::FocusRange() const
sl@0
  1039
	{
sl@0
  1040
	return iFocusRange;
sl@0
  1041
	}
sl@0
  1042
	
sl@0
  1043
void CCamAdvSet::SetFocusRange(CCamera::CCameraAdvancedSettings::TFocusRange aFocusRange )
sl@0
  1044
	{
sl@0
  1045
	TInt response = KErrNone;
sl@0
  1046
	
sl@0
  1047
	RetrieveResult(response);
sl@0
  1048
	
sl@0
  1049
	iFocusRange = aFocusRange;
sl@0
  1050
	iOwner.Notify(KUidECamEventCameraSettingFocusRange2, response);
sl@0
  1051
	iOwner.Notify(KUidECamEventCameraSettingFocusRange, response);
sl@0
  1052
	}
sl@0
  1053
	
sl@0
  1054
TInt CCamAdvSet::SupportedAutoFocusTypes() const
sl@0
  1055
	{
sl@0
  1056
	return 0;
sl@0
  1057
	}
sl@0
  1058
	
sl@0
  1059
CCamera::CCameraAdvancedSettings::TAutoFocusType CCamAdvSet::AutoFocusType() const
sl@0
  1060
	{
sl@0
  1061
    return CCamera::CCameraAdvancedSettings::EAutoFocusTypeOff;
sl@0
  1062
	}
sl@0
  1063
	
sl@0
  1064
void CCamAdvSet::SetAutoFocusType(CCamera::CCameraAdvancedSettings::TAutoFocusType /*aAutoFocusType*/)
sl@0
  1065
	{
sl@0
  1066
	TInt response = KErrNone;
sl@0
  1067
	
sl@0
  1068
	RetrieveResult(response);
sl@0
  1069
	
sl@0
  1070
	iOwner.Notify(KUidECamEventCameraSettingAutoFocusType2, response);
sl@0
  1071
	iOwner.Notify(KUidECamEventCameraSettingAutoFocusType, response);
sl@0
  1072
	}
sl@0
  1073
	
sl@0
  1074
TInt CCamAdvSet::SupportedAutoFocusAreas() const
sl@0
  1075
	{
sl@0
  1076
	return 0;
sl@0
  1077
	}
sl@0
  1078
	
sl@0
  1079
CCamera::CCameraAdvancedSettings::TAutoFocusArea CCamAdvSet::AutoFocusArea() const
sl@0
  1080
	{
sl@0
  1081
	return CCamera::CCameraAdvancedSettings::EAutoFocusTypeAuto;
sl@0
  1082
	}
sl@0
  1083
	
sl@0
  1084
void CCamAdvSet::SetAutoFocusArea(CCamera::CCameraAdvancedSettings::TAutoFocusArea /*aAutoFocusArea*/)
sl@0
  1085
	{
sl@0
  1086
	TInt response = KErrNone;
sl@0
  1087
	
sl@0
  1088
	RetrieveResult(response);
sl@0
  1089
	
sl@0
  1090
	iOwner.Notify(KUidECamEventCameraSettingAutoFocusArea, response);
sl@0
  1091
	}
sl@0
  1092
	
sl@0
  1093
TInt CCamAdvSet::FocusDistance() const
sl@0
  1094
	{
sl@0
  1095
	return iFocusDistance;
sl@0
  1096
	}
sl@0
  1097
	
sl@0
  1098
void CCamAdvSet::SetFocusDistance(TInt aDistance) 
sl@0
  1099
	{
sl@0
  1100
	TInt response = KErrNone;
sl@0
  1101
	if (aDistance >=0)
sl@0
  1102
		{
sl@0
  1103
		iFocusDistance = aDistance;
sl@0
  1104
		
sl@0
  1105
		RetrieveResult(response);
sl@0
  1106
		}
sl@0
  1107
	else 
sl@0
  1108
		{
sl@0
  1109
		response = KErrNotSupported;
sl@0
  1110
		}
sl@0
  1111
	
sl@0
  1112
	iOwner.Notify(KUidECamEventCameraSettingFocusDistance, response);
sl@0
  1113
	}
sl@0
  1114
	
sl@0
  1115
TInt CCamAdvSet::GetMinFocalLength() const
sl@0
  1116
	{
sl@0
  1117
	return KErrNotSupported;
sl@0
  1118
	}
sl@0
  1119
	
sl@0
  1120
void CCamAdvSet::GetSupportedIsoRatesL(RArray<TInt>& aSupportedIsoRates) const
sl@0
  1121
	{
sl@0
  1122
	//If no ISO is supported by camera, then leave
sl@0
  1123
	if(!iOwner.iSupportedISORates.Count())
sl@0
  1124
		{
sl@0
  1125
		User::Leave(KErrNotSupported);
sl@0
  1126
		}
sl@0
  1127
	
sl@0
  1128
	for(TInt index=0; index < iOwner.iSupportedISORates.Count(); index++)
sl@0
  1129
		{
sl@0
  1130
		aSupportedIsoRates.AppendL(iOwner.iSupportedISORates[index]);
sl@0
  1131
		}
sl@0
  1132
	}
sl@0
  1133
	
sl@0
  1134
TInt CCamAdvSet::IsoRate() const
sl@0
  1135
	{
sl@0
  1136
	//this returned value may not be true if ISO type is other than manual and camera 
sl@0
  1137
	//has no capability to retrieve actual ISO rate.
sl@0
  1138
	return iOwner.iIsoRate; 
sl@0
  1139
	}
sl@0
  1140
sl@0
  1141
void CCamAdvSet::SetIsoRate(TInt aRate)
sl@0
  1142
	{
sl@0
  1143
	TInt response;
sl@0
  1144
	//check whether the desired rate to be set is being supported or not.
sl@0
  1145
	if(iOwner.iSupportedISORates.Find(aRate) == KErrNotFound)
sl@0
  1146
		{
sl@0
  1147
		response = KErrECamParameterNotInRange;
sl@0
  1148
		}
sl@0
  1149
	else 
sl@0
  1150
		{
sl@0
  1151
		//set the ISO type to Manual
sl@0
  1152
		//this function should be called by SetISORateL as well after doing boundary checkings 
sl@0
  1153
		//SetISORate(CCamera::CCameraAdvancedSettings::EISOManual, aRate); 
sl@0
  1154
		iISORateType = CCamera::CCameraAdvancedSettings::EISOManual;			
sl@0
  1155
		iOwner.iIsoRate = aRate;
sl@0
  1156
		
sl@0
  1157
		RetrieveResult(response);
sl@0
  1158
		}
sl@0
  1159
	iOwner.Notify(KUidECamEventCameraSettingIsoRate, response);
sl@0
  1160
	}
sl@0
  1161
	
sl@0
  1162
void CCamAdvSet::GetSupportedISORateTypeL(TInt& aSupportedISORateTypes) const
sl@0
  1163
	{
sl@0
  1164
	aSupportedISORateTypes = iSupportedISORateType;	
sl@0
  1165
	}
sl@0
  1166
	
sl@0
  1167
void CCamAdvSet::SetISORate(CCamera::CCameraAdvancedSettings::TISORateType aISORateType, TInt aParam)
sl@0
  1168
	{
sl@0
  1169
	TInt response = KErrNone;
sl@0
  1170
	
sl@0
  1171
	if(!(aISORateType & iSupportedISORateType) || iOwner.iSupportedISORates.Count() == 0)
sl@0
  1172
		{
sl@0
  1173
		response = KErrNotSupported;
sl@0
  1174
		}
sl@0
  1175
	else
sl@0
  1176
		{
sl@0
  1177
		switch(aISORateType)
sl@0
  1178
			{
sl@0
  1179
			case CCamera::CCameraAdvancedSettings::EISOManual:
sl@0
  1180
				{
sl@0
  1181
				if(iOwner.iSupportedISORates.Find(aParam) == KErrNotFound)
sl@0
  1182
					{
sl@0
  1183
					response = KErrECamParameterNotInRange;
sl@0
  1184
					}
sl@0
  1185
				else
sl@0
  1186
					{
sl@0
  1187
					RetrieveResult(response);
sl@0
  1188
					}
sl@0
  1189
				break;
sl@0
  1190
				}
sl@0
  1191
			case CCamera::CCameraAdvancedSettings::EISOAutoUnPrioritised:
sl@0
  1192
				{
sl@0
  1193
				RetrieveResult(response);
sl@0
  1194
				break;	
sl@0
  1195
				}
sl@0
  1196
			case CCamera::CCameraAdvancedSettings::EISOAutoISOPrioritised:
sl@0
  1197
				{
sl@0
  1198
				if(iOwner.iSupportedISORates.Find(aParam) == KErrNotFound)
sl@0
  1199
					{
sl@0
  1200
					response = KErrECamParameterNotInRange;
sl@0
  1201
					}
sl@0
  1202
				else
sl@0
  1203
					{
sl@0
  1204
					RetrieveResult(response);
sl@0
  1205
					}
sl@0
  1206
				break;
sl@0
  1207
				}
sl@0
  1208
			case CCamera::CCameraAdvancedSettings::EISOAutoShutterSpeedPrioritised:
sl@0
  1209
				{
sl@0
  1210
				RetrieveResult(response);
sl@0
  1211
				break;	
sl@0
  1212
				}
sl@0
  1213
			case CCamera::CCameraAdvancedSettings::EISOAutoAperturePrioritised:
sl@0
  1214
				{
sl@0
  1215
				RetrieveResult(response);
sl@0
  1216
				break;	
sl@0
  1217
				}
sl@0
  1218
			default:
sl@0
  1219
				response = KErrNotSupported;
sl@0
  1220
			}
sl@0
  1221
			
sl@0
  1222
		// this function should be called by SetISORate ,in old API, as well after doing boundary checkings 
sl@0
  1223
		// SetISORate(aISORateType, aParam); 	
sl@0
  1224
		// In real impl, following code should be handled by RunL when server responds to the setting request. Error may also occur.
sl@0
  1225
		iISORateType = aISORateType;
sl@0
  1226
		if(aISORateType == CCamera::CCameraAdvancedSettings::EISOManual)
sl@0
  1227
			{
sl@0
  1228
			if(response == KErrNone)
sl@0
  1229
				{
sl@0
  1230
				iOwner.iIsoRate = aParam;
sl@0
  1231
				}
sl@0
  1232
			}
sl@0
  1233
		else
sl@0
  1234
			{
sl@0
  1235
			if(response == KErrNone)
sl@0
  1236
				{
sl@0
  1237
				iAutoISOIndex = aParam;
sl@0
  1238
				}
sl@0
  1239
			}	
sl@0
  1240
		}	
sl@0
  1241
	
sl@0
  1242
	iOwner.Notify(KUidECamEventCameraSettingIsoRateType, response);
sl@0
  1243
	}
sl@0
  1244
sl@0
  1245
void CCamAdvSet::GetISORateL(CCamera::CCameraAdvancedSettings::TISORateType& aISORateType, TInt& aParam, TInt& aISORate) const
sl@0
  1246
	{
sl@0
  1247
	//If camera has no ISO rate supported, then leave
sl@0
  1248
	if(iOwner.iSupportedISORates.Count() == 0)	
sl@0
  1249
		{
sl@0
  1250
		User::Leave(KErrNotSupported);
sl@0
  1251
		}
sl@0
  1252
		
sl@0
  1253
	if(iISORateType == CCamera::CCameraAdvancedSettings::EISONone)
sl@0
  1254
		{
sl@0
  1255
		aISORateType = iISORateType;
sl@0
  1256
		}
sl@0
  1257
	else
sl@0
  1258
		{
sl@0
  1259
		if(iISORateType != CCamera::CCameraAdvancedSettings::EISOManual)
sl@0
  1260
			{
sl@0
  1261
			aParam = iAutoISOIndex;
sl@0
  1262
			
sl@0
  1263
			//if camera is not capable to retrieve actual ISO value in auto ISO modes, KErrNotFound is returned in aISORate.
sl@0
  1264
			if(!iIsCapableActualISOValue)
sl@0
  1265
				{
sl@0
  1266
				aISORate = KErrNotFound;
sl@0
  1267
				}
sl@0
  1268
			else
sl@0
  1269
				{
sl@0
  1270
				aISORate = iOwner.iIsoRate;	
sl@0
  1271
				}
sl@0
  1272
			}
sl@0
  1273
		else
sl@0
  1274
			{
sl@0
  1275
			aISORate = iOwner.iIsoRate;	
sl@0
  1276
			}
sl@0
  1277
		
sl@0
  1278
		aISORateType = iISORateType;	
sl@0
  1279
		}	
sl@0
  1280
	}
sl@0
  1281
sl@0
  1282
void CCamAdvSet::GetAperturesL(RArray<TInt>& /*aFStops*/, TValueInfo& /*aInfo*/) const
sl@0
  1283
	{
sl@0
  1284
	
sl@0
  1285
	}
sl@0
  1286
	
sl@0
  1287
TInt CCamAdvSet::Aperture() const
sl@0
  1288
	{
sl@0
  1289
	return iAperture;
sl@0
  1290
	}
sl@0
  1291
sl@0
  1292
void CCamAdvSet::SetAperture(TInt aFStop)
sl@0
  1293
	{
sl@0
  1294
	TInt response = KErrNone;
sl@0
  1295
	
sl@0
  1296
	iAperture = aFStop;
sl@0
  1297
	RetrieveResult(response);
sl@0
  1298
	
sl@0
  1299
	iOwner.Notify(KUidECamEventCameraSettingAperture, response);
sl@0
  1300
	}	
sl@0
  1301
	
sl@0
  1302
void CCamAdvSet::GetShutterSpeedsL(RArray<TInt>& aShutterSpeeds, TValueInfo& aInfo) const
sl@0
  1303
	{
sl@0
  1304
	aShutterSpeeds.Reset();
sl@0
  1305
	aInfo =  ENotActive;
sl@0
  1306
	}
sl@0
  1307
	
sl@0
  1308
TInt CCamAdvSet::ShutterSpeed() const
sl@0
  1309
	{
sl@0
  1310
	return iShutterSpeed;
sl@0
  1311
	}
sl@0
  1312
	
sl@0
  1313
void CCamAdvSet::SetShutterSpeed(TInt aShutterSpeed)
sl@0
  1314
	{
sl@0
  1315
	TInt response = KErrNone;
sl@0
  1316
	if (aShutterSpeed >=0)
sl@0
  1317
		{
sl@0
  1318
		iShutterSpeed = aShutterSpeed;
sl@0
  1319
		
sl@0
  1320
		RetrieveResult(response);
sl@0
  1321
		}
sl@0
  1322
	else 
sl@0
  1323
		{
sl@0
  1324
		response = KErrNotSupported;
sl@0
  1325
		}
sl@0
  1326
	
sl@0
  1327
	iOwner.Notify(KUidECamEventCameraSettingShutterSpeed, response);
sl@0
  1328
	}
sl@0
  1329
	
sl@0
  1330
TInt CCamAdvSet::SupportedMeteringModes() const
sl@0
  1331
	{
sl@0
  1332
	return CCamera::CCameraAdvancedSettings::EMeteringModeAuto;
sl@0
  1333
	}
sl@0
  1334
	
sl@0
  1335
CCamera::CCameraAdvancedSettings::TMeteringMode CCamAdvSet::MeteringMode() const
sl@0
  1336
	{
sl@0
  1337
	return CCamera::CCameraAdvancedSettings::EMeteringModeAuto;
sl@0
  1338
	}
sl@0
  1339
	
sl@0
  1340
void CCamAdvSet::SetMeteringMode(CCamera::CCameraAdvancedSettings::TMeteringMode /*aMeteringMode*/)
sl@0
  1341
	{
sl@0
  1342
	TInt response = KErrNone;
sl@0
  1343
	
sl@0
  1344
	RetrieveResult(response);
sl@0
  1345
	
sl@0
  1346
	iOwner.Notify(KUidECamEventCameraSettingMeteringMode, response);
sl@0
  1347
	}
sl@0
  1348
	
sl@0
  1349
TInt CCamAdvSet::SupportedDriveModes() const
sl@0
  1350
	{
sl@0
  1351
	return iSupportedDriveModes;
sl@0
  1352
	}
sl@0
  1353
	
sl@0
  1354
CCamera::CCameraAdvancedSettings::TDriveMode CCamAdvSet::DriveMode() const
sl@0
  1355
	{
sl@0
  1356
	return iDriveMode;
sl@0
  1357
	}
sl@0
  1358
	
sl@0
  1359
void CCamAdvSet::SetDriveMode(CCamera::CCameraAdvancedSettings::TDriveMode aDriveMode)
sl@0
  1360
	{
sl@0
  1361
	TInt response = KErrNone;
sl@0
  1362
	
sl@0
  1363
	iDriveMode = aDriveMode;
sl@0
  1364
	
sl@0
  1365
	RetrieveResult(response);
sl@0
  1366
	
sl@0
  1367
	iOwner.Notify(KUidECamEventCameraSettingDriveMode, response);
sl@0
  1368
	}
sl@0
  1369
	
sl@0
  1370
TInt CCamAdvSet::SupportedBracketModes() const
sl@0
  1371
	{
sl@0
  1372
	return CCamera::CCameraAdvancedSettings::EBracketModeOff;
sl@0
  1373
	}
sl@0
  1374
	
sl@0
  1375
CCamera::CCameraAdvancedSettings::TBracketMode CCamAdvSet::BracketMode() const
sl@0
  1376
	{
sl@0
  1377
	return CCamera::CCameraAdvancedSettings::EBracketModeOff;
sl@0
  1378
	}
sl@0
  1379
	
sl@0
  1380
void CCamAdvSet::SetBracketMode(CCamera::CCameraAdvancedSettings::TBracketMode /*aBracketMode*/)
sl@0
  1381
	{
sl@0
  1382
	TInt response = KErrNone;
sl@0
  1383
	
sl@0
  1384
	RetrieveResult(response);
sl@0
  1385
	
sl@0
  1386
	iOwner.Notify(KUidECamEventCameraSettingBracketMode, response);
sl@0
  1387
	}
sl@0
  1388
	
sl@0
  1389
TInt CCamAdvSet::SupportedBracketParameters() const
sl@0
  1390
	{
sl@0
  1391
	return CCamera::CCameraAdvancedSettings::EBracketParameterNone;
sl@0
  1392
	}
sl@0
  1393
	
sl@0
  1394
CCamera::CCameraAdvancedSettings::TBracketParameter CCamAdvSet::BracketParameter() const
sl@0
  1395
	{
sl@0
  1396
	return CCamera::CCameraAdvancedSettings::EBracketParameterNone;
sl@0
  1397
	}
sl@0
  1398
	
sl@0
  1399
void CCamAdvSet::SetBracketParameter(CCamera::CCameraAdvancedSettings::TBracketParameter /*aBracketParameter*/)
sl@0
  1400
	{
sl@0
  1401
	}
sl@0
  1402
	
sl@0
  1403
TInt CCamAdvSet::SupportedBracketSteps() const
sl@0
  1404
	{
sl@0
  1405
	return CCamera::CCameraAdvancedSettings::EBracketStepSmall;
sl@0
  1406
	}
sl@0
  1407
	
sl@0
  1408
CCamera::CCameraAdvancedSettings::TBracketStep CCamAdvSet::BracketStep() const
sl@0
  1409
	{
sl@0
  1410
	return CCamera::CCameraAdvancedSettings::EBracketStepSmall;
sl@0
  1411
	}
sl@0
  1412
	
sl@0
  1413
void CCamAdvSet::SetBracketStep(CCamera::CCameraAdvancedSettings::TBracketStep /*aBracketStep*/)
sl@0
  1414
	{
sl@0
  1415
	
sl@0
  1416
	}
sl@0
  1417
void CCamAdvSet::GetBracketMerge(TInt& aStartIndex, TInt& aFrames) const
sl@0
  1418
	{
sl@0
  1419
	aStartIndex = KBracketStartIndex;
sl@0
  1420
	aFrames     = KBracketFrames;
sl@0
  1421
	}
sl@0
  1422
	
sl@0
  1423
void CCamAdvSet::SetBracketMerge(TInt /*aStartIndex = 0*/, TInt /*aFrames = 2*/)
sl@0
  1424
	{
sl@0
  1425
	
sl@0
  1426
	}
sl@0
  1427
TInt CCamAdvSet::SupportedFlashModes() const
sl@0
  1428
	{
sl@0
  1429
	return (CCamera::EFlashVideoLight << 1) - 1;
sl@0
  1430
	}
sl@0
  1431
	
sl@0
  1432
CCamera::TFlash CCamAdvSet::FlashMode() const
sl@0
  1433
	{
sl@0
  1434
	return CCamera::TFlash(iFlashMode);
sl@0
  1435
	}
sl@0
  1436
	
sl@0
  1437
void CCamAdvSet::SetFlashMode(CCamera::TFlash aMode)
sl@0
  1438
	{
sl@0
  1439
    iFlashMode = aMode;
sl@0
  1440
	}
sl@0
  1441
	
sl@0
  1442
TBool CCamAdvSet::RedEyeReduceOn() const
sl@0
  1443
	{
sl@0
  1444
	return KDefaultRedEyeReduce;
sl@0
  1445
	}
sl@0
  1446
	
sl@0
  1447
void CCamAdvSet::SetRedEyeReduceOn(TBool /*aState*/)
sl@0
  1448
	{
sl@0
  1449
	}
sl@0
  1450
	
sl@0
  1451
void CCamAdvSet::GetFlashCompensationStepsL(RArray<TInt>& /*aFlashCompensationSteps*/, TValueInfo& /*aInfo*/) const
sl@0
  1452
	{
sl@0
  1453
	
sl@0
  1454
	}
sl@0
  1455
	
sl@0
  1456
TInt CCamAdvSet::FlashCompensationStep() const
sl@0
  1457
	{
sl@0
  1458
	return KFlashCompensationStep;
sl@0
  1459
	}
sl@0
  1460
sl@0
  1461
TInt CCamAdvSet::GetFlashCompensationStep(TInt& aFlashCompensationStep) const
sl@0
  1462
	{
sl@0
  1463
	aFlashCompensationStep = KFlashCompensationStep;
sl@0
  1464
	return KErrNone;
sl@0
  1465
	}
sl@0
  1466
	
sl@0
  1467
void CCamAdvSet::GetFlashCompensationRangeInSteps(TInt& /*aNegativeCompensation*/, TInt& /*aPositiveCompensation*/) const
sl@0
  1468
	{
sl@0
  1469
	
sl@0
  1470
	}
sl@0
  1471
void CCamAdvSet::SetFlashCompensationStep(TInt /*aFlashCompensationStep*/)
sl@0
  1472
	{
sl@0
  1473
	
sl@0
  1474
	}
sl@0
  1475
	
sl@0
  1476
TInt CCamAdvSet::FlashCompensation() const
sl@0
  1477
	{
sl@0
  1478
	return KFlashCompensationInSteps;
sl@0
  1479
	}
sl@0
  1480
	
sl@0
  1481
TInt CCamAdvSet::GetFlashCompensation(TInt& aFlashCompensation) const
sl@0
  1482
	{
sl@0
  1483
	aFlashCompensation = KFlashCompensationInSteps;
sl@0
  1484
	return KErrNone;
sl@0
  1485
	}
sl@0
  1486
	
sl@0
  1487
void CCamAdvSet::SetFlashCompensation(TInt /*aFlashCompensation*/)
sl@0
  1488
	{
sl@0
  1489
	}
sl@0
  1490
	
sl@0
  1491
TBool CCamAdvSet::IsExternalFlashPresent() const
sl@0
  1492
	{
sl@0
  1493
	return KExternalFlashPresentState;
sl@0
  1494
	}
sl@0
  1495
	
sl@0
  1496
void CCamAdvSet::GetManualFlashPowerLevelsL(RArray<TInt>& /*aManualFlashPowerLevels*/, TValueInfo& /*aInfo*/) const
sl@0
  1497
	{
sl@0
  1498
	
sl@0
  1499
	}
sl@0
  1500
	
sl@0
  1501
TInt CCamAdvSet::ManualFlashPowerLevel() const
sl@0
  1502
	{
sl@0
  1503
	return KManualFlashPowerLevel;
sl@0
  1504
	}
sl@0
  1505
	
sl@0
  1506
void CCamAdvSet::SetManualFlashPowerLevel(TInt /*aManualFlashPowerLevel*/)
sl@0
  1507
	{
sl@0
  1508
	
sl@0
  1509
	}
sl@0
  1510
	
sl@0
  1511
TInt CCamAdvSet::SupportedExposureModes() const
sl@0
  1512
	{
sl@0
  1513
	return CCamera::EExposureAuto;
sl@0
  1514
	}
sl@0
  1515
	
sl@0
  1516
CCamera::TExposure CCamAdvSet::ExposureMode() const
sl@0
  1517
	{
sl@0
  1518
	return CCamera::EExposureAuto;
sl@0
  1519
	}
sl@0
  1520
	
sl@0
  1521
void CCamAdvSet::SetExposureMode(CCamera::TExposure /*aExposureMode = CCamera::EExposureAuto*/)
sl@0
  1522
	{
sl@0
  1523
	}
sl@0
  1524
	
sl@0
  1525
void CCamAdvSet::GetExposureCompensationStepsL(RArray<TInt>& /*aExposureCompensationSteps*/, TValueInfo& /*aInfo*/) const
sl@0
  1526
	{
sl@0
  1527
	}
sl@0
  1528
sl@0
  1529
void CCamAdvSet::GetExposureCompensationRangeInSteps(TInt& /*aNegativeCompensation*/, TInt& /*aPositiveCompensation*/) const
sl@0
  1530
	{
sl@0
  1531
	}
sl@0
  1532
	
sl@0
  1533
TInt CCamAdvSet::ExposureCompensationStep() const
sl@0
  1534
	{
sl@0
  1535
	return KExposureCompensationStep;
sl@0
  1536
	}
sl@0
  1537
	
sl@0
  1538
TInt CCamAdvSet::GetExposureCompensationStep(TInt& aExposureCompensationStep) const
sl@0
  1539
	{
sl@0
  1540
	aExposureCompensationStep = KExposureCompensationStep;
sl@0
  1541
	return KErrNone;
sl@0
  1542
	}
sl@0
  1543
	
sl@0
  1544
void CCamAdvSet::SetExposureCompensationStep(TInt /*aExposureCompensationStep*/)
sl@0
  1545
	{
sl@0
  1546
	}
sl@0
  1547
	
sl@0
  1548
TInt CCamAdvSet::ExposureCompensation() const
sl@0
  1549
	{
sl@0
  1550
	return KExposureCompensationInSteps;
sl@0
  1551
	}
sl@0
  1552
	
sl@0
  1553
TInt CCamAdvSet::GetExposureCompensation(TInt& aExposureCompensation) const
sl@0
  1554
	{
sl@0
  1555
	aExposureCompensation = KExposureCompensationInSteps;
sl@0
  1556
	return KErrNone;
sl@0
  1557
	}
sl@0
  1558
	
sl@0
  1559
void CCamAdvSet::SetExposureCompensation(TInt /*aExposureCompensation*/)
sl@0
  1560
	{
sl@0
  1561
	}
sl@0
  1562
	
sl@0
  1563
TInt CCamAdvSet::SupportedWhiteBalanceModes() const
sl@0
  1564
	{
sl@0
  1565
	return KWhiteBalanceSupported;
sl@0
  1566
	}
sl@0
  1567
	
sl@0
  1568
CCamera::TWhiteBalance CCamAdvSet::WhiteBalanceMode() const
sl@0
  1569
	{
sl@0
  1570
	return iWhiteBalance;
sl@0
  1571
	}
sl@0
  1572
	
sl@0
  1573
void CCamAdvSet::SetWhiteBalanceMode(CCamera::TWhiteBalance aWhiteBalanceMode)
sl@0
  1574
	{
sl@0
  1575
	TInt response = KErrNone;
sl@0
  1576
	
sl@0
  1577
	iWhiteBalance = aWhiteBalanceMode;
sl@0
  1578
	RetrieveResult(response);
sl@0
  1579
	
sl@0
  1580
	iOwner.Notify(KUidECamEventCameraSettingsWBValue, response);
sl@0
  1581
	}
sl@0
  1582
	
sl@0
  1583
TBool CCamAdvSet::ApertureExposureLockOn() const
sl@0
  1584
	{
sl@0
  1585
	return KApertureExposureLockOn;
sl@0
  1586
	}
sl@0
  1587
	
sl@0
  1588
void CCamAdvSet::SetApertureExposureLockOn(TBool /*aAELock*/)
sl@0
  1589
	{
sl@0
  1590
	}
sl@0
  1591
	
sl@0
  1592
TBool CCamAdvSet::ShootClickOn() const
sl@0
  1593
	{
sl@0
  1594
	return KShootClickOn;
sl@0
  1595
	}
sl@0
  1596
	
sl@0
  1597
void CCamAdvSet::SetShootClickOn(TBool /*aShootClickOn*/)
sl@0
  1598
	{
sl@0
  1599
	}
sl@0
  1600
	
sl@0
  1601
void CCamAdvSet::GetTimerIntervalsL(RArray<TInt>& /*aTimerIntervals*/, TValueInfo& /*aInfo*/) const
sl@0
  1602
	{
sl@0
  1603
	}
sl@0
  1604
sl@0
  1605
TInt CCamAdvSet::TimerInterval() const
sl@0
  1606
	{
sl@0
  1607
	return KTimerInterval;
sl@0
  1608
	}
sl@0
  1609
	
sl@0
  1610
void CCamAdvSet::SetTimerInterval(TInt /*aTimerInterval*/)
sl@0
  1611
	{
sl@0
  1612
	}
sl@0
  1613
	
sl@0
  1614
void CCamAdvSet::GetTimeLapsePeriodRange(TTime& /*aTimeLapseMin*/, TTime& /*aTimeLapseMax*/) const
sl@0
  1615
	{
sl@0
  1616
	}
sl@0
  1617
	
sl@0
  1618
void CCamAdvSet::GetTimeLapse(TTime& /*aStart*/, TTime& /*aEnd*/, TTime& /*aInterval*/) const
sl@0
  1619
	{
sl@0
  1620
	}
sl@0
  1621
	
sl@0
  1622
void CCamAdvSet::SetTimeLapse(const TTime& /*aStart*/, const TTime& /*aEnd*/, const TTime& /*aInterval*/)
sl@0
  1623
	{
sl@0
  1624
	}
sl@0
  1625
	
sl@0
  1626
CCamera::CCameraAdvancedSettings::TPictureOrientation CCamAdvSet::PictureOrientation() const
sl@0
  1627
	{
sl@0
  1628
	return CCamera::CCameraAdvancedSettings::EPictureOrientationUnknown;
sl@0
  1629
	}
sl@0
  1630
	
sl@0
  1631
void CCamAdvSet::SetPictureOrientation(CCamera::CCameraAdvancedSettings::TPictureOrientation /*aOrientation*/)
sl@0
  1632
	{
sl@0
  1633
	}
sl@0
  1634
	
sl@0
  1635
TInt CCamAdvSet::SupportedPixelAspectRatios() const
sl@0
  1636
	{
sl@0
  1637
	return (CCamera::CCameraAdvancedSettings::EEPixelAspect40To33 << 1) - 1;
sl@0
  1638
	}
sl@0
  1639
	
sl@0
  1640
CCamera::CCameraAdvancedSettings::TPixelAspectRatio CCamAdvSet::PixelAspectRatio() const
sl@0
  1641
	{
sl@0
  1642
	return CCamera::CCameraAdvancedSettings::TPixelAspectRatio(iPixelAspectRatio);
sl@0
  1643
	}
sl@0
  1644
	
sl@0
  1645
void CCamAdvSet::SetPixelAspectRatio(CCamera::CCameraAdvancedSettings::TPixelAspectRatio aPixelAspectRatio)
sl@0
  1646
	{
sl@0
  1647
	iPixelAspectRatio = aPixelAspectRatio;
sl@0
  1648
	}
sl@0
  1649
	
sl@0
  1650
TInt CCamAdvSet::SupportedYuvRanges() const
sl@0
  1651
	{
sl@0
  1652
	return CCamera::CCameraAdvancedSettings::EYuvRangeFull;
sl@0
  1653
	}
sl@0
  1654
	
sl@0
  1655
CCamera::CCameraAdvancedSettings::TYuvRange CCamAdvSet::YuvRange() const
sl@0
  1656
	{
sl@0
  1657
	return CCamera::CCameraAdvancedSettings::EYuvRangeFull;
sl@0
  1658
	}
sl@0
  1659
	
sl@0
  1660
void CCamAdvSet::SetYuvRange(CCamera::CCameraAdvancedSettings::TYuvRange /*aYuvRange*/)
sl@0
  1661
	{
sl@0
  1662
	
sl@0
  1663
	}
sl@0
  1664
TInt CCamAdvSet::BurstImages() const
sl@0
  1665
	{
sl@0
  1666
	return KBurstImages;
sl@0
  1667
	}
sl@0
  1668
	
sl@0
  1669
void CCamAdvSet::SetBurstImages(TInt /*aImages*/)
sl@0
  1670
	{
sl@0
  1671
	}
sl@0
  1672
	
sl@0
  1673
void CCamAdvSet::GetOpticalZoomStepsL(RArray<TInt>& /*aOpticalZoomSteps*/, TValueInfo& /*aInfo*/)  const
sl@0
  1674
	{
sl@0
  1675
	}
sl@0
  1676
	
sl@0
  1677
TInt CCamAdvSet::OpticalZoom() const
sl@0
  1678
	{
sl@0
  1679
	return KECamFineResolutionFactor;
sl@0
  1680
	}
sl@0
  1681
	
sl@0
  1682
void CCamAdvSet::SetOpticalZoom(TInt /*aOpticalZoom*/)
sl@0
  1683
	{
sl@0
  1684
	}
sl@0
  1685
	
sl@0
  1686
void CCamAdvSet::GetDigitalZoomStepsL(RArray<TInt>& /*aDigitalZoomSteps*/,
sl@0
  1687
								 TValueInfo& /*aInfo*/) const
sl@0
  1688
	{
sl@0
  1689
	}
sl@0
  1690
	
sl@0
  1691
void CCamAdvSet::GetDigitalZoomStepsForStillL(RArray<TInt>& /*aDigitalZoomSteps*/, TValueInfo& /*aInfo*/, TInt /*aSizeIndex*/,
sl@0
  1692
								 CCamera::TFormat /*aFormat*/, TBool& /*aIsInfluencePossible*/) const
sl@0
  1693
	{
sl@0
  1694
	}
sl@0
  1695
sl@0
  1696
void CCamAdvSet::GetDigitalZoomStepsForVideoL(RArray<TInt>& /*aDigitalZoomSteps*/, TValueInfo& /*aInfo*/, TInt /*aFrameRateIndex*/,
sl@0
  1697
								 TInt /*aSizeIndex*/, CCamera::TFormat /*aFormat*/, TBool& /*aIsInfluencePossible*/, CCamera::TExposure /*aExposure*/) const
sl@0
  1698
	{
sl@0
  1699
	}
sl@0
  1700
sl@0
  1701
TInt CCamAdvSet::DigitalZoom() const
sl@0
  1702
	{
sl@0
  1703
	return KECamFineResolutionFactor;
sl@0
  1704
	}
sl@0
  1705
sl@0
  1706
void CCamAdvSet::SetDigitalZoom(TInt /*aDigitalZoom*/)
sl@0
  1707
	{
sl@0
  1708
	}
sl@0
  1709
	
sl@0
  1710
TBool CCamAdvSet::ExposureLockOn() const
sl@0
  1711
	{
sl@0
  1712
	return KExposureLockOn;		
sl@0
  1713
	}
sl@0
  1714
sl@0
  1715
void CCamAdvSet::SetExposureLockOn(TBool /*aState*/)
sl@0
  1716
	{
sl@0
  1717
	}
sl@0
  1718
		
sl@0
  1719
TBool CCamAdvSet::AutoFocusLockOn() const
sl@0
  1720
	{
sl@0
  1721
	return KAutoFocusLockOn;
sl@0
  1722
	}
sl@0
  1723
sl@0
  1724
void CCamAdvSet::SetAutoFocusLockOn(TBool /*aState*/)
sl@0
  1725
	{	
sl@0
  1726
	}
sl@0
  1727
sl@0
  1728
void CCamAdvSet::GetSupportedSettingsL(RArray<TUid>& aSettings) const
sl@0
  1729
	{
sl@0
  1730
	aSettings.Reset();
sl@0
  1731
	// if camera is present 
sl@0
  1732
	if (iOwner.iCameras[iOwner.iCameraIndex])
sl@0
  1733
		{
sl@0
  1734
		aSettings.AppendL(KUidECamEventCameraSettingStabilizationMode);
sl@0
  1735
		aSettings.AppendL(KUidECamEventCameraSettingFocusMode);
sl@0
  1736
		aSettings.AppendL(KUidECamEventCameraSettingIsoRateType);
sl@0
  1737
		}
sl@0
  1738
	}
sl@0
  1739
    
sl@0
  1740
void CCamAdvSet::GetActiveSettingsL(RArray<TUid>& aActiveSettings) const
sl@0
  1741
	{
sl@0
  1742
	aActiveSettings.Reset();
sl@0
  1743
	if (iOwner.iCameras[iOwner.iCameraIndex])
sl@0
  1744
		{
sl@0
  1745
		aActiveSettings.AppendL(KUidECamEventCameraSettingFocusMode);
sl@0
  1746
		aActiveSettings.AppendL(KUidECamEventCameraSettingAFAssistantLight);
sl@0
  1747
		}
sl@0
  1748
	}
sl@0
  1749
    
sl@0
  1750
 
sl@0
  1751
void CCamAdvSet::GetDisabledSettingsL(RArray<TUid>& aDisbledSettings) const
sl@0
  1752
	{
sl@0
  1753
	aDisbledSettings.Reset();
sl@0
  1754
	if (iOwner.iCameras[iOwner.iCameraIndex])
sl@0
  1755
		{
sl@0
  1756
		aDisbledSettings.AppendL(KUidECamEventCameraSettingStabilizationMode);
sl@0
  1757
		aDisbledSettings.AppendL(KUidECamEventCameraSettingReferenceScreen);
sl@0
  1758
		}
sl@0
  1759
	}
sl@0
  1760
	    
sl@0
  1761
void CCamAdvSet::SetAutomaticSizeSelectionChangeOn(TBool /*aSetOn = EFalse*/)
sl@0
  1762
	{
sl@0
  1763
	}
sl@0
  1764
	
sl@0
  1765
TBool CCamAdvSet::AutomaticSizeSelectionChangeOn() const
sl@0
  1766
	{
sl@0
  1767
	return KAutomaticSizeSelectionChangeOn;
sl@0
  1768
	}
sl@0
  1769
sl@0
  1770
void CCamAdvSet::GetSupportedContinuousAutoFocusTimeoutsL(RArray<TInt>& /*aTimeouts*/, TValueInfo& /*aInfo*/) const
sl@0
  1771
	{
sl@0
  1772
	}
sl@0
  1773
	
sl@0
  1774
void CCamAdvSet::SetContinuousAutoFocusTimeout(TInt /*aTimeout*/)
sl@0
  1775
	{
sl@0
  1776
	}
sl@0
  1777
	
sl@0
  1778
void CCamAdvSet::SetStabilizationEffect(CCamera::CCameraAdvancedSettings::TStabilizationEffect /*aEffect*/)
sl@0
  1779
	{
sl@0
  1780
	}
sl@0
  1781
	
sl@0
  1782
CCamera::CCameraAdvancedSettings::TStabilizationEffect CCamAdvSet::StabilizationEffect() const
sl@0
  1783
	{
sl@0
  1784
	return CCamera::CCameraAdvancedSettings::EStabilizationOff;
sl@0
  1785
	}
sl@0
  1786
sl@0
  1787
TInt CCamAdvSet::SupportedStabilizationEffects() const
sl@0
  1788
	{
sl@0
  1789
	return CCamera::CCameraAdvancedSettings::EStabilizationOff;
sl@0
  1790
	}
sl@0
  1791
sl@0
  1792
TInt CCamAdvSet::SupportedStabilizationComplexityValues() const
sl@0
  1793
	{
sl@0
  1794
	return CCamera::CCameraAdvancedSettings::EStabilizationComplexityAuto;
sl@0
  1795
	}
sl@0
  1796
	
sl@0
  1797
CCamera::CCameraAdvancedSettings::TStabilizationAlgorithmComplexity CCamAdvSet::StabilizationComplexity() const
sl@0
  1798
	{
sl@0
  1799
	return CCamera::CCameraAdvancedSettings::EStabilizationComplexityAuto;
sl@0
  1800
	}
sl@0
  1801
	
sl@0
  1802
void CCamAdvSet::SetStabilizationComplexity(CCamera::CCameraAdvancedSettings::TStabilizationAlgorithmComplexity /*aComplexity*/)
sl@0
  1803
	{
sl@0
  1804
	}
sl@0
  1805
	
sl@0
  1806
CCamera::CCameraAdvancedSettings::TWBUnits CCamAdvSet::SupportedWBUnits() const
sl@0
  1807
	{
sl@0
  1808
	return CCamera::CCameraAdvancedSettings::EWBColorTemperature;
sl@0
  1809
	}
sl@0
  1810
	
sl@0
  1811
void CCamAdvSet::SetWBRgbValue(const TRgb& /*aValue*/)
sl@0
  1812
	{
sl@0
  1813
	}
sl@0
  1814
	
sl@0
  1815
void CCamAdvSet::GetWBRgbValue(TRgb& /*aValue*/) const
sl@0
  1816
	{
sl@0
  1817
	}
sl@0
  1818
	
sl@0
  1819
void CCamAdvSet::GetWBSupportedColorTemperaturesL(RArray<TInt>& /*aWBColorTemperatures*/, TValueInfo& /*aInfo*/) const
sl@0
  1820
	{
sl@0
  1821
	}
sl@0
  1822
	
sl@0
  1823
void CCamAdvSet::SetWBColorTemperature(TInt /*aColorTemperature*/)
sl@0
  1824
	{
sl@0
  1825
	}
sl@0
  1826
sl@0
  1827
TInt CCamAdvSet::WBColorTemperature() const
sl@0
  1828
	{
sl@0
  1829
	return KWBColorTemperature;
sl@0
  1830
	}
sl@0
  1831
sl@0
  1832
TInt CCamAdvSet::ContinuousAutoFocusTimeout() const
sl@0
  1833
	{
sl@0
  1834
	return KContinuousAutoFocusTimeoutValue;
sl@0
  1835
	}
sl@0
  1836
sl@0
  1837
TInt CCamAdvSet::IsFlashReady(TBool& aReady) const
sl@0
  1838
	{
sl@0
  1839
	aReady = KFlashReadyState;
sl@0
  1840
	return KErrNone;
sl@0
  1841
	}
sl@0
  1842
sl@0
  1843
void CCamAdvSet::GetCurrentFocusModeStepsL(RArray<TInt>& /*aFocusModeSteps*/, TValueInfo& /*aInfo*/) const
sl@0
  1844
	{
sl@0
  1845
	}
sl@0
  1846
	
sl@0
  1847
void CCamAdvSet::SetReferenceScreen(CWsScreenDevice& /*aScreenDevice*/)
sl@0
  1848
	{
sl@0
  1849
	TInt error = KErrNone;
sl@0
  1850
	
sl@0
  1851
	RetrieveResult(error);
sl@0
  1852
	
sl@0
  1853
	iOwner.Notify(KUidECamEventCameraSettingReferenceScreen, error);
sl@0
  1854
	}
sl@0
  1855
	
sl@0
  1856
void CCamAdvSet::GetPreCaptureWarningSupportedL(CCamera::CCameraAdvancedSettings::TCameraMode /*aCameraMode*/, TInt& /*aPreCaptureWarningSupported*/) const
sl@0
  1857
	{
sl@0
  1858
	}
sl@0
  1859
sl@0
  1860
void CCamAdvSet::SubscribeToPreCaptureWarningL(TInt /*aPreCaptureWarning*/)
sl@0
  1861
	{
sl@0
  1862
	}
sl@0
  1863
	
sl@0
  1864
void CCamAdvSet::UnSubscribePreCaptureWarningL()
sl@0
  1865
	{
sl@0
  1866
	}
sl@0
  1867
	
sl@0
  1868
void CCamAdvSet::GetPreCaptureWarningL(TInt& /*aPreCaptureWarning*/) const
sl@0
  1869
	{
sl@0
  1870
	}
sl@0
  1871
	
sl@0
  1872
void CCamAdvSet::GetSupportedAFAssistantLightL(TInt& aSupportedAFAssistantLight) const
sl@0
  1873
	{
sl@0
  1874
	aSupportedAFAssistantLight = iSupportedAFAssistantLight;
sl@0
  1875
	}
sl@0
  1876
sl@0
  1877
void CCamAdvSet::GetAFAssistantLightL(CCamera::CCameraAdvancedSettings::TAFAssistantLight& aAFAssistantLight) const
sl@0
  1878
	{
sl@0
  1879
	aAFAssistantLight = iAFAssistantLight;
sl@0
  1880
	}
sl@0
  1881
sl@0
  1882
void CCamAdvSet::SetAFAssistantLight(CCamera::CCameraAdvancedSettings::TAFAssistantLight aAFAssistantLight)
sl@0
  1883
	{
sl@0
  1884
	TInt error = KErrNone;
sl@0
  1885
	
sl@0
  1886
	iAFAssistantLight = aAFAssistantLight;
sl@0
  1887
	RetrieveResult(error);
sl@0
  1888
	
sl@0
  1889
	iOwner.Notify(KUidECamEventCameraSettingAFAssistantLight, error);
sl@0
  1890
	}
sl@0
  1891
sl@0
  1892
void CCamAdvSet::GetSupportedContinuousZoomTypeL(TUint& aSupportedContinuousZoomType) const
sl@0
  1893
	{
sl@0
  1894
	aSupportedContinuousZoomType = KSupportedContinuousZoomType;	
sl@0
  1895
	}
sl@0
  1896
sl@0
  1897
void CCamAdvSet::GetFocalLengthInfoL(TInt& /*aMinFocalLength*/, TInt& /*aCurrentFocalLength*/, TInt& /*aMaxFocalLength*/) const
sl@0
  1898
	{
sl@0
  1899
	User::Leave(KErrNotSupported);	
sl@0
  1900
	}
sl@0
  1901
	
sl@0
  1902
void CCamAdvSet::GetNumOperationPreferenceL(TUint& /*aNumOperationPreferenceSupported*/) const
sl@0
  1903
	{
sl@0
  1904
	User::Leave(KErrNotSupported);		
sl@0
  1905
	}
sl@0
  1906
	
sl@0
  1907
void CCamAdvSet::EnumerateOperationPreferenceL(TUint /*aOperationPreferenceIndex*/, CCamera::CCameraAdvancedSettings::
sl@0
  1908
						TPerformanceLevel& /*aSpeedLevel*/, CCamera::CCameraAdvancedSettings::TPerformanceLevel& /*aQualityLevel*/, 
sl@0
  1909
						CCamera::CCameraAdvancedSettings::TPerformanceLevel& /*aLowMemoryConsumptionLevel*/, 
sl@0
  1910
						CCamera::CCameraAdvancedSettings::TPerformanceLevel& /*aLowPowerConsumptionLevel*/) const
sl@0
  1911
	{
sl@0
  1912
	User::Leave(KErrNotSupported);	
sl@0
  1913
	}
sl@0
  1914
	
sl@0
  1915
void CCamAdvSet::SetOperationPreference(TUint /*aOperationPreferenceIndex*/)
sl@0
  1916
	{
sl@0
  1917
	iOwner.Notify(KUidECamEventCameraSettingOperationPreference, KErrNotSupported);
sl@0
  1918
	}
sl@0
  1919
	
sl@0
  1920
	
sl@0
  1921
void CCamAdvSet::GetOperationPreferenceL(TInt& /*aOperationPreferenceIndex*/) const
sl@0
  1922
	{
sl@0
  1923
	User::Leave(KErrNotSupported);		
sl@0
  1924
	}
sl@0
  1925
sl@0
  1926
void CCamAdvSet::GetSupportedEventsL(RArray<TUid>& aSupportedEvents) const
sl@0
  1927
	{
sl@0
  1928
	aSupportedEvents.Reset();
sl@0
  1929
	}
sl@0
  1930
	
sl@0
  1931
void CCamAdvSet::GetIndirectFeatureChangesL(TUid /*aRequestedSetting*/, RArray<TUid>& aIndirectFeatureChanges) const
sl@0
  1932
	{
sl@0
  1933
	aIndirectFeatureChanges.Reset();
sl@0
  1934
	}
sl@0
  1935
sl@0
  1936
void CCamAdvSet::CreateContinuousZoomImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const
sl@0
  1937
	{
sl@0
  1938
	aImplFactoryPtr = CContinuousZoomFactory::NewL();
sl@0
  1939
	}
sl@0
  1940
sl@0
  1941
void CCamAdvSet::RetrieveResult(TInt& aError)
sl@0
  1942
	{
sl@0
  1943
	//It is assumed that hardware retrieves this error
sl@0
  1944
	//Assumed that it returns no error
sl@0
  1945
	aError = KErrNone;
sl@0
  1946
	}
sl@0
  1947
/******************************************************/
sl@0
  1948
sl@0
  1949
CCamManagement::CCamManagement(CCamUnitTestPlugin& aOwner): iOwner(aOwner)
sl@0
  1950
	{
sl@0
  1951
	}
sl@0
  1952
	
sl@0
  1953
CCamManagement::~CCamManagement()
sl@0
  1954
	{
sl@0
  1955
	}
sl@0
  1956
	
sl@0
  1957
void CCamManagement::Release()
sl@0
  1958
	{
sl@0
  1959
	delete this;
sl@0
  1960
	}
sl@0
  1961
	
sl@0
  1962
CCamManagement* CCamManagement::NewL(CCamUnitTestPlugin& aOwner)
sl@0
  1963
	{
sl@0
  1964
	return new (ELeave) CCamManagement(aOwner);
sl@0
  1965
	}
sl@0
  1966
	
sl@0
  1967
TBool CCamManagement::PlugCameraIn(TInt aIndex)
sl@0
  1968
	{
sl@0
  1969
	if (aIndex >= KECamSetAvailableCameras)
sl@0
  1970
		{
sl@0
  1971
		return EFalse;
sl@0
  1972
		}
sl@0
  1973
	else
sl@0
  1974
		{
sl@0
  1975
		TInt response = KErrNone;
sl@0
  1976
		TUid uid;
sl@0
  1977
		uid.iUid = (KUidECamEventGlobalCamera00PluggedInUidValue + aIndex);
sl@0
  1978
		iOwner.iCameras[aIndex] = ETrue;
sl@0
  1979
		iOwner.Notify(uid, response);
sl@0
  1980
		}
sl@0
  1981
	return ETrue;
sl@0
  1982
	}
sl@0
  1983
sl@0
  1984
TBool CCamManagement::PlugCameraOut(TInt aIndex)
sl@0
  1985
	{
sl@0
  1986
	if (aIndex >= KECamSetAvailableCameras)
sl@0
  1987
		{
sl@0
  1988
		return EFalse;
sl@0
  1989
		}
sl@0
  1990
	else
sl@0
  1991
		{
sl@0
  1992
		TInt response = KErrNone;
sl@0
  1993
		TUid uid;
sl@0
  1994
		uid.iUid  = KUidECamEventGlobalCamera00PluggedOutUidValue + aIndex;
sl@0
  1995
		iOwner.iCameras[aIndex] = EFalse;
sl@0
  1996
		iOwner.Notify(uid, response);
sl@0
  1997
		}
sl@0
  1998
	return ETrue;
sl@0
  1999
	}
sl@0
  2000
sl@0
  2001
sl@0
  2002
//
sl@0
  2003
//Snapshot factory for Image
sl@0
  2004
CContinuousZoomFactory* CContinuousZoomFactory::NewL()
sl@0
  2005
	{
sl@0
  2006
	CContinuousZoomFactory* self = new(ELeave) CContinuousZoomFactory();
sl@0
  2007
	
sl@0
  2008
	CleanupStack::PushL(self);
sl@0
  2009
	self->ConstructL();
sl@0
  2010
	CleanupStack::Pop();
sl@0
  2011
	
sl@0
  2012
	return self;
sl@0
  2013
	}
sl@0
  2014
	
sl@0
  2015
void CContinuousZoomFactory::ConstructL()
sl@0
  2016
	{
sl@0
  2017
	}
sl@0
  2018
sl@0
  2019
CContinuousZoomFactory::CContinuousZoomFactory() : iCamContinuousZoomImp(NULL)
sl@0
  2020
	{
sl@0
  2021
	}
sl@0
  2022
	
sl@0
  2023
CContinuousZoomFactory::~CContinuousZoomFactory()
sl@0
  2024
	{
sl@0
  2025
	}
sl@0
  2026
	
sl@0
  2027
TInt CContinuousZoomFactory::GetImpl(TAny*& /*aIfPtr*/, TUid /*aIfaceUid*/) const
sl@0
  2028
	{
sl@0
  2029
	return KErrNotSupported;
sl@0
  2030
	}
sl@0
  2031
	
sl@0
  2032
TInt CContinuousZoomFactory::GetImpl1(TAny*& aIfPtr, TUid aIfaceUid, TECamImplFactoryParam aParam1) const
sl@0
  2033
	{
sl@0
  2034
	switch(aIfaceUid.iUid)	
sl@0
  2035
		{
sl@0
  2036
		case KECamMCameraContinuousZoomUidValue:
sl@0
  2037
			{
sl@0
  2038
			CCamera::CCameraAdvancedSettings::TContinuousZoomType zoomType = static_cast<CCamera::CCameraAdvancedSettings::TContinuousZoomType>(aParam1.iIntParam);
sl@0
  2039
			iCamContinuousZoomImp = CCamContinuousZoom::NewL(zoomType);
sl@0
  2040
			aIfPtr = static_cast<MCameraContinuousZoom*>(iCamContinuousZoomImp);
sl@0
  2041
			return KErrNone;	
sl@0
  2042
			}
sl@0
  2043
		default:
sl@0
  2044
			{
sl@0
  2045
			aIfPtr = NULL;
sl@0
  2046
			return KErrNotSupported;	
sl@0
  2047
			}
sl@0
  2048
		}	
sl@0
  2049
	}
sl@0
  2050
	
sl@0
  2051
TInt CContinuousZoomFactory::GetImpl2(TAny*& /*aIfPtr*/, TUid /*aIfaceUid*/, TECamImplFactoryParam /*aParam1*/, TECamImplFactoryParam /*aParam2*/) const
sl@0
  2052
	{
sl@0
  2053
	return KErrNotSupported;	
sl@0
  2054
	}
sl@0
  2055
	
sl@0
  2056
void CContinuousZoomFactory::Release()
sl@0
  2057
	{
sl@0
  2058
	delete this;
sl@0
  2059
	}
sl@0
  2060
sl@0
  2061
sl@0
  2062
CCamContinuousZoom* CCamContinuousZoom::NewL(CCamera::CCameraAdvancedSettings::TContinuousZoomType aContinuousZoomType)
sl@0
  2063
	{
sl@0
  2064
	CCamContinuousZoom* self = new (ELeave) CCamContinuousZoom(aContinuousZoomType);
sl@0
  2065
	return self;
sl@0
  2066
	}
sl@0
  2067
sl@0
  2068
CCamContinuousZoom::CCamContinuousZoom(CCamera::CCameraAdvancedSettings::TContinuousZoomType aContinuousZoomType)
sl@0
  2069
	: iZoomType(aContinuousZoomType)
sl@0
  2070
	{
sl@0
  2071
	iInfo.iMaxSpeedSupported = 10;
sl@0
  2072
	iInfo.iMinAccelerationSupported = 0;
sl@0
  2073
	iInfo.iMaxAccelerationSupported = 0;
sl@0
  2074
	iInfo.iContinuousZoomMinLimit = 0;
sl@0
  2075
	iInfo.iContinuousZoomMaxLimit = 10;
sl@0
  2076
	}
sl@0
  2077
sl@0
  2078
CCamContinuousZoom::~CCamContinuousZoom()
sl@0
  2079
	{
sl@0
  2080
	}
sl@0
  2081
sl@0
  2082
void CCamContinuousZoom::SetContinuousZoomObserverAndHandle(MContinuousZoomObserver& aObserver, CCamera::CCameraContinuousZoom* aContinuousZoomHandle)
sl@0
  2083
	{
sl@0
  2084
	iObserver = &aObserver;
sl@0
  2085
	iContinuousZoomHandle = aContinuousZoomHandle;
sl@0
  2086
	}
sl@0
  2087
sl@0
  2088
void CCamContinuousZoom::StartContinuousZoomL(CCamera::CCameraAdvancedSettings::TContinuousZoomParameters aContinuousZoomParameters)
sl@0
  2089
	{
sl@0
  2090
	if(aContinuousZoomParameters.Size() != sizeof(CCamera::CCameraAdvancedSettings::TContinuousZoomParameters) ||
sl@0
  2091
			aContinuousZoomParameters.Version() != KContinuousZoomParametersCurrentVersion)
sl@0
  2092
		{
sl@0
  2093
		User::Leave(KErrNotSupported);
sl@0
  2094
		}
sl@0
  2095
sl@0
  2096
	if(aContinuousZoomParameters.iContinuousZoomSpeed > iInfo.iMaxSpeedSupported || 
sl@0
  2097
			aContinuousZoomParameters.iContinuousZoomAcceleration < iInfo.iMinAccelerationSupported || 
sl@0
  2098
			aContinuousZoomParameters.iContinuousZoomAcceleration > iInfo.iMaxAccelerationSupported || 
sl@0
  2099
			aContinuousZoomParameters.iContinuousZoomLimit < iInfo.iContinuousZoomMinLimit ||
sl@0
  2100
			aContinuousZoomParameters.iContinuousZoomLimit > iInfo.iContinuousZoomMaxLimit)
sl@0
  2101
		{
sl@0
  2102
		User::Leave(KErrArgument);
sl@0
  2103
		}
sl@0
  2104
	
sl@0
  2105
	iParameters = aContinuousZoomParameters;
sl@0
  2106
	for(TInt i = 0; i < iParameters.iContinuousZoomLimit; i++)
sl@0
  2107
		{
sl@0
  2108
		iObserver->ContinuousZoomProgress(*iContinuousZoomHandle, i, KErrNone);
sl@0
  2109
		}
sl@0
  2110
	
sl@0
  2111
	iObserver->ContinuousZoomCompleted(*iContinuousZoomHandle, iParameters.iContinuousZoomLimit, KErrNone);
sl@0
  2112
	}
sl@0
  2113
sl@0
  2114
void CCamContinuousZoom::StopContinuousZoom()
sl@0
  2115
	{
sl@0
  2116
	return;
sl@0
  2117
	}
sl@0
  2118
sl@0
  2119
void CCamContinuousZoom::GetContinuousZoomSupportInfoL(CCamera::CCameraAdvancedSettings::TContinuousZoomSupportInfo& aContinuousZoomInfo) const
sl@0
  2120
	{
sl@0
  2121
	if(aContinuousZoomInfo.Size() != sizeof(CCamera::CCameraAdvancedSettings::TContinuousZoomSupportInfo) ||
sl@0
  2122
			aContinuousZoomInfo.Version() != KContinuousZoomSupportInfoCurrentVersion)
sl@0
  2123
		{
sl@0
  2124
		User::Leave(KErrNotSupported);
sl@0
  2125
		}
sl@0
  2126
sl@0
  2127
	aContinuousZoomInfo = iInfo;
sl@0
  2128
	}
sl@0
  2129
sl@0
  2130
void CCamContinuousZoom::GetContinuousZoomId(TInt& aZoomId) const
sl@0
  2131
	{
sl@0
  2132
	aZoomId = (TInt)(this);
sl@0
  2133
	}
sl@0
  2134
sl@0
  2135
void CCamContinuousZoom::Release()
sl@0
  2136
	{
sl@0
  2137
	delete this;
sl@0
  2138
	}