os/mm/imagingandcamerafws/camerafw/source/ecamviewfinder.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) 2007-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 <ecamviewfinder.h>
sl@0
    17
#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
    18
#include <ecamviewfinderdef.h>
sl@0
    19
#endif
sl@0
    20
#include <ecam/camerahistogram.h>
sl@0
    21
#include <ecam/ecamviewfinderintf.h>
sl@0
    22
#include <ecam/implementationfactoryintf.h>
sl@0
    23
#include "ecamversion.h"
sl@0
    24
sl@0
    25
/**	
sl@0
    26
CCameraViewFinder Constructor.
sl@0
    27
sl@0
    28
@param aOwner
sl@0
    29
       a reference to a CCamera object providing the settings. 
sl@0
    30
sl@0
    31
@internalComponent
sl@0
    32
@prototype
sl@0
    33
*/
sl@0
    34
CCameraViewFinder::CCameraViewFinder(CCamera& aOwner): iOwner(aOwner), iImplBase(NULL)
sl@0
    35
	{
sl@0
    36
	}
sl@0
    37
sl@0
    38
/**
sl@0
    39
Destructor
sl@0
    40
*/	
sl@0
    41
CCameraViewFinder::~CCameraViewFinder()
sl@0
    42
	{
sl@0
    43
	}
sl@0
    44
sl@0
    45
/**
sl@0
    46
Retrieves the fading capabilites for a particular viewfinder.
sl@0
    47
sl@0
    48
@param  aVFFadingCapabilities
sl@0
    49
		Retrieves the fading capabilities associated with the given viewfinder.
sl@0
    50
		
sl@0
    51
@leave  May leave with any error code.
sl@0
    52
sl@0
    53
@internalTechnology
sl@0
    54
*/
sl@0
    55
EXPORT_C void CCameraViewFinder::GetViewFinderFadingCapabilitiesL(CCameraViewFinder::TViewFinderFadingCapabilities& aVFFadingCapabilities) const
sl@0
    56
	{
sl@0
    57
	if(iImplBase != NULL)
sl@0
    58
		{
sl@0
    59
		iImplBase->GetViewFinderFadingCapabilitiesL(aVFFadingCapabilities);	
sl@0
    60
		}
sl@0
    61
	else
sl@0
    62
		{
sl@0
    63
		User::Leave(KErrNotSupported);	
sl@0
    64
		}	
sl@0
    65
	}
sl@0
    66
sl@0
    67
/**
sl@0
    68
Retrieves the current fading effect/control being used for a particular viewfinder.
sl@0
    69
sl@0
    70
@param  aCurrentVFFadingEffect
sl@0
    71
		Retrieves the fading effects associated with the given viewfinder.
sl@0
    72
		
sl@0
    73
@leave  May leave with any error code.
sl@0
    74
sl@0
    75
@internalTechnology
sl@0
    76
*/
sl@0
    77
EXPORT_C void CCameraViewFinder::GetViewFinderFadingEffectL(CCameraViewFinder::TViewFinderFadingEffect& aCurrentVFFadingEffect) const
sl@0
    78
	{
sl@0
    79
	if(iImplBase != NULL)
sl@0
    80
		{
sl@0
    81
		iImplBase->GetViewFinderFadingEffectL(aCurrentVFFadingEffect);	
sl@0
    82
		}
sl@0
    83
	else
sl@0
    84
		{
sl@0
    85
		User::Leave(KErrNotSupported);	
sl@0
    86
		}
sl@0
    87
	}
sl@0
    88
sl@0
    89
/**
sl@0
    90
Sets the fading effect/control for a particular viewfinder.
sl@0
    91
sl@0
    92
@param  aVFFadingEffect
sl@0
    93
		The desired fading effects associated with the given viewfinder.
sl@0
    94
	
sl@0
    95
@leave  KErrNotSupported if the implementation of this method is not present.
sl@0
    96
		
sl@0
    97
@note   Event KUidECamEvent2ViewFinderFadingEffect is used to notify the requesting client about the setting of the 
sl@0
    98
		fading effect.
sl@0
    99
		
sl@0
   100
@internalTechnology
sl@0
   101
*/
sl@0
   102
EXPORT_C void CCameraViewFinder::SetViewFinderFadingEffectL(const CCameraViewFinder::TViewFinderFadingEffect& aVFFadingEffect)
sl@0
   103
	{
sl@0
   104
	if(iImplBase != NULL)
sl@0
   105
		{
sl@0
   106
		iImplBase->SetViewFinderFadingEffect(aVFFadingEffect);	
sl@0
   107
		}
sl@0
   108
	else
sl@0
   109
		{
sl@0
   110
		User::Leave(KErrNotSupported);	
sl@0
   111
		}
sl@0
   112
	}
sl@0
   113
	
sl@0
   114
/**
sl@0
   115
Retrieves the handle number which represents the given viewfinder object. 
sl@0
   116
sl@0
   117
@param  aVFHandle
sl@0
   118
		The viewfinder handle
sl@0
   119
		
sl@0
   120
@leave  May leave with any error code.
sl@0
   121
sl@0
   122
@note   KECamDefaultViewFinderHandle is used to refer to the viewfinder started using CCamera methods. 
sl@0
   123
*/
sl@0
   124
EXPORT_C void CCameraViewFinder::GetViewFinderHandleL(TInt& aVFHandle) const
sl@0
   125
	{
sl@0
   126
	if(iImplBase != NULL)
sl@0
   127
		{
sl@0
   128
		iImplBase->GetViewFinderHandleL(aVFHandle);	
sl@0
   129
		}
sl@0
   130
	else
sl@0
   131
		{
sl@0
   132
		User::Leave(KErrNotSupported);	
sl@0
   133
		}
sl@0
   134
	}
sl@0
   135
sl@0
   136
/**
sl@0
   137
Constructor for the TViewFinderFadingCapabilities class.
sl@0
   138
Sets the size and version of this class.
sl@0
   139
sl@0
   140
@internalTechnology
sl@0
   141
*/
sl@0
   142
EXPORT_C CCameraViewFinder::TViewFinderFadingCapabilities::TViewFinderFadingCapabilities()
sl@0
   143
	{
sl@0
   144
	iSize = sizeof(CCameraViewFinder::TViewFinderFadingCapabilities);
sl@0
   145
	iVersion = KECamViewFinderFadingCapabilitiesCurrentVersion;
sl@0
   146
	}
sl@0
   147
	
sl@0
   148
/** 
sl@0
   149
Returns the size of the class. Used for extensibility by deriving from this base class and adding new member variables.
sl@0
   150
Intended to be used for implementation of methods where this class reference is passed as function arguments. 
sl@0
   151
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
   152
is made to run on an old implementation, an error may occur once the old implementation detects this by getting 
sl@0
   153
the size information of the T class passed. Also, if old application is made to run on a new implementation, this can be 
sl@0
   154
handled correctly if the derived class variables handling is done in a proper 'if-else' statement.
sl@0
   155
sl@0
   156
@return The size of the class.
sl@0
   157
sl@0
   158
@note The size will be modified when the T-class gets updated.
sl@0
   159
sl@0
   160
@internalTechnology
sl@0
   161
*/
sl@0
   162
EXPORT_C TUint CCameraViewFinder::TViewFinderFadingCapabilities::Size() const
sl@0
   163
	{
sl@0
   164
	return iSize;
sl@0
   165
	}
sl@0
   166
	
sl@0
   167
/**	
sl@0
   168
Returns the version of the class. Used for extensibility specially when the class members are not added but the Reserved 
sl@0
   169
members get used at a later stage.
sl@0
   170
sl@0
   171
@return The version of the class.
sl@0
   172
sl@0
   173
@note The version will be modified when the T-class gets updated.
sl@0
   174
sl@0
   175
@internalTechnology
sl@0
   176
*/
sl@0
   177
EXPORT_C TUint CCameraViewFinder::TViewFinderFadingCapabilities::Version() const
sl@0
   178
	{
sl@0
   179
	return iVersion;
sl@0
   180
	}
sl@0
   181
	
sl@0
   182
/**
sl@0
   183
Constructor for the TViewFinderFadingEffect class.
sl@0
   184
Sets the size and version of this class.
sl@0
   185
sl@0
   186
@internalTechnology
sl@0
   187
*/
sl@0
   188
EXPORT_C CCameraViewFinder::TViewFinderFadingEffect::TViewFinderFadingEffect()
sl@0
   189
	{
sl@0
   190
	iSize = sizeof(CCameraViewFinder::TViewFinderFadingEffect);
sl@0
   191
	iVersion = KECamViewFinderFadingEffectCurrentVersion;
sl@0
   192
	}
sl@0
   193
	
sl@0
   194
/** 
sl@0
   195
Returns the size of the class. Used for extensibility by deriving from this base class and adding new member variables.
sl@0
   196
Intended to be used for implementation of methods where this class reference is passed as function arguments. 
sl@0
   197
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
   198
is made to run on an old implementation, an error may occur once the old implementation detects this by getting 
sl@0
   199
the size information of the T class passed. Also, if old application is made to run on a new implementation, this can be 
sl@0
   200
handled correctly if the derived class variables handling is done in a proper 'if-else' statement.
sl@0
   201
sl@0
   202
@return The size of the class.
sl@0
   203
sl@0
   204
@note The size will be modified when the T-class gets updated.
sl@0
   205
sl@0
   206
@internalTechnology
sl@0
   207
*/
sl@0
   208
EXPORT_C TUint CCameraViewFinder::TViewFinderFadingEffect::Size() const
sl@0
   209
	{
sl@0
   210
	return iSize;
sl@0
   211
	}
sl@0
   212
	
sl@0
   213
/**	
sl@0
   214
Returns the version of the class. Used for extensibility specially when the class members are not added but the Reserved 
sl@0
   215
members get used at a later stage.
sl@0
   216
sl@0
   217
@return The version of the class.
sl@0
   218
sl@0
   219
@note The version will be modified when the T-class gets updated.
sl@0
   220
sl@0
   221
@internalTechnology
sl@0
   222
*/
sl@0
   223
EXPORT_C TUint CCameraViewFinder::TViewFinderFadingEffect::Version() const
sl@0
   224
	{
sl@0
   225
	return iVersion;
sl@0
   226
	}
sl@0
   227
	
sl@0
   228
/**
sl@0
   229
Retrieves the position of spots for a given spot combination which is to be displayed on a particular viewfinder.
sl@0
   230
sl@0
   231
@param  aSpotCombination
sl@0
   232
		A given spot combination. It is a bitfield where every bit represents the presence or absence of a particular spot.
sl@0
   233
		
sl@0
   234
@param  aSpotsPosition
sl@0
   235
		An array of TRect which represents the position of every spot present in the given spot combination. 
sl@0
   236
		The first member of this array maps the first spot present in the given spot combination from the least significant bit side.
sl@0
   237
		The position of a spot is relative to the top-left corner of viewfinder.
sl@0
   238
sl@0
   239
@leave  May leave with any error code.
sl@0
   240
		
sl@0
   241
@note   These TRect specify the position of the spots relative to the targeted viewfinder space. Note 
sl@0
   242
        that spots could also be represented as points since point is a special case of rectangle.
sl@0
   243
		
sl@0
   244
@see 	CCamera::CCameraImageCaptureControl::GetMaximumSpotsL
sl@0
   245
@see	CCamera::CCameraImageCaptureControl::GetSupportedSpotsCombinationL
sl@0
   246
@see    CCamera::CCameraImageCaptureControl::GetSpotsCombinationL
sl@0
   247
@see    CCamera::CCameraImageCaptureControl::SetSpotsCombination
sl@0
   248
*/
sl@0
   249
void CCameraViewFinder::GetSpotsPositionL(TUint /*aSpotCombination*/, RArray<TRect>& /*aSpotsPosition*/) const
sl@0
   250
	{
sl@0
   251
	User::Leave(KErrNotSupported);	
sl@0
   252
	}
sl@0
   253
sl@0
   254
/**
sl@0
   255
Retrieves the supported image enhancements.
sl@0
   256
sl@0
   257
@param  aSupportedImageEnhancement
sl@0
   258
		A bitfield of all supported TImageEnhancement to be provided to the client.
sl@0
   259
sl@0
   260
@leave  May leave with any error code.
sl@0
   261
*/
sl@0
   262
void CCameraViewFinder::GetSupportedImageEnhancementL(TUint& /*aSupportedImageEnhancement*/) const
sl@0
   263
	{
sl@0
   264
	User::Leave(KErrNotSupported);	
sl@0
   265
	}
sl@0
   266
sl@0
   267
/**
sl@0
   268
Get the current image enhancement for the particular viewfinder.
sl@0
   269
sl@0
   270
@param  aImageEnhancement
sl@0
   271
		Currently used TImageEnhancement for the viewfinder display.
sl@0
   272
		
sl@0
   273
@leave  May leave with any error code. 
sl@0
   274
*/
sl@0
   275
void CCameraViewFinder::GetImageEnhancementL(CCameraViewFinder::TImageEnhancement& /*aImageEnhancement*/) const
sl@0
   276
	{
sl@0
   277
	User::Leave(KErrNotSupported);	
sl@0
   278
	}
sl@0
   279
	
sl@0
   280
/**
sl@0
   281
Set the image enhancement for a particular viewfinder.
sl@0
   282
sl@0
   283
@param  aImageEnhancement 
sl@0
   284
		The TImageEnhancement value to be set
sl@0
   285
		
sl@0
   286
@leave  KErrNotSupported If the implementation of this method is not present.
sl@0
   287
sl@0
   288
@note   Event KUidECamEvent2ViewFinderImageEnhancement is used to notify clients about the image enhancement setting operation.
sl@0
   289
*/
sl@0
   290
void CCameraViewFinder::SetImageEnhancementL(CCameraViewFinder::TImageEnhancement /*aImageEnhancement*/)
sl@0
   291
	{
sl@0
   292
	User::Leave(KErrNotSupported);
sl@0
   293
	}
sl@0
   294
sl@0
   295
/**
sl@0
   296
Retrieves the supported viewfinder magnification factor in terms of percentage. Changing the magnification factor allows 
sl@0
   297
the user to view more or less area than what would normally appear on the captured image.
sl@0
   298
sl@0
   299
@param	aSupportedVFMagnification
sl@0
   300
		An array of TUint which retrieves the supported magnification factor. Every member of this array is a 
sl@0
   301
		magnification factor and represents a percentage unit. Note that every array member is multiplied by 
sl@0
   302
		KECamFineResolutionFactor to support fractional percentages as well. For example, 90.5% will be represented by 9050.
sl@0
   303
		
sl@0
   304
@leave  May leave with any error code.
sl@0
   305
*/
sl@0
   306
void CCameraViewFinder::GetSupportedVFMagnificationL(RArray<TUint>& /*aSupportedVFMagnification*/) const
sl@0
   307
	{
sl@0
   308
	User::Leave(KErrNotSupported);	
sl@0
   309
	}
sl@0
   310
sl@0
   311
/**
sl@0
   312
Retrieves the current magnification factor for a particular viewfinder.
sl@0
   313
sl@0
   314
@param  aVFMagnification
sl@0
   315
		The current magnification factor used for the given viewfinder. It represents a percentage unit. 
sl@0
   316
		Note that the magnification factor is multiplied by KECamFineResolutionFactor to support fractional 
sl@0
   317
		percentages as well. For example, 90.5% will be represented by 9050.
sl@0
   318
		
sl@0
   319
@leave  May leave with any error code.
sl@0
   320
*/
sl@0
   321
void CCameraViewFinder::GetViewfinderMagnificationL(TUint& /*aVFMagnification*/) const
sl@0
   322
	{
sl@0
   323
	User::Leave(KErrNotSupported);	
sl@0
   324
	}
sl@0
   325
sl@0
   326
/**
sl@0
   327
Set a particular magnification factor for the given viewfinder.
sl@0
   328
sl@0
   329
@param  aVFMagnification
sl@0
   330
		The magnification factor to be set. It represents a percentage unit. 
sl@0
   331
		Note that the magnification factor is multiplied by KECamFineResolutionFactor to support fractional 
sl@0
   332
		percentages as well. For example, 90.5% will be represented by 9050.
sl@0
   333
		
sl@0
   334
@leave  KErrNotSupported If the implementation of this method is not present.
sl@0
   335
sl@0
   336
@note   Event KUidECamEvent2ViewFinderMagnification is used to notify the requesting client about the setting of the 
sl@0
   337
		magnification factor.
sl@0
   338
*/
sl@0
   339
void CCameraViewFinder::SetViewfinderMagnificationL(TUint /*aVFMagnification*/)
sl@0
   340
	{
sl@0
   341
	User::Leave(KErrNotSupported);
sl@0
   342
	}
sl@0
   343
sl@0
   344
/**
sl@0
   345
Factory function for creating the CCameraV2DirectViewFinder object.
sl@0
   346
sl@0
   347
@param aCamera 
sl@0
   348
	   A reference to a CCamera object providing the settings.
sl@0
   349
	   
sl@0
   350
@param aDirectViewFinderObserver
sl@0
   351
	   Reference to the direct view finder observer.
sl@0
   352
sl@0
   353
@return A pointer to a fully constructed CCameraV2DirectViewFinder object.
sl@0
   354
sl@0
   355
@leave KErrNoMemory Out of memory Or any other system-wide error code.
sl@0
   356
sl@0
   357
@leave KErrExtensionNotSupported When NewL/NewDuplicateL used instead of New2L/NewDuplicate2L.
sl@0
   358
*/
sl@0
   359
EXPORT_C CCamera::CCameraV2DirectViewFinder* CCamera::CCameraV2DirectViewFinder::NewL(CCamera& aCamera, MDirectViewFinderObserver& aDirectViewFinderObserver)
sl@0
   360
	{
sl@0
   361
 	if(aCamera.CameraVersion() == KCameraDefaultVersion)
sl@0
   362
 		{
sl@0
   363
 		User::Leave(KErrExtensionNotSupported);
sl@0
   364
 		}
sl@0
   365
 		
sl@0
   366
	CCamera::CCameraV2DirectViewFinder* self = new (ELeave)CCamera::CCameraV2DirectViewFinder(aCamera); 
sl@0
   367
	CleanupStack::PushL(self);
sl@0
   368
	self->ConstructL(aDirectViewFinderObserver);
sl@0
   369
	CleanupStack::Pop(self);
sl@0
   370
	return self; 
sl@0
   371
	}
sl@0
   372
	
sl@0
   373
	
sl@0
   374
void CCamera::CCameraV2DirectViewFinder::ConstructL(MDirectViewFinderObserver& aDirectViewFinderObserver)
sl@0
   375
	{
sl@0
   376
	SetImplHandle();
sl@0
   377
	if(iImpl == NULL)
sl@0
   378
		{
sl@0
   379
		User::LeaveIfError(KErrNotSupported);		
sl@0
   380
		}
sl@0
   381
	SetImplBaseHandle();
sl@0
   382
	
sl@0
   383
	iImpl->SetDirectViewFinderObserver(aDirectViewFinderObserver);
sl@0
   384
	iImpl->SetDirectViewFinderHandle(this);
sl@0
   385
	}
sl@0
   386
	
sl@0
   387
/**	
sl@0
   388
CCameraV2DirectViewFinder Constructor.
sl@0
   389
sl@0
   390
@param aOwner
sl@0
   391
       A reference to a CCamera object providing the settings. 
sl@0
   392
*/
sl@0
   393
CCamera::CCameraV2DirectViewFinder::CCameraV2DirectViewFinder(CCamera& aOwner): CCameraViewFinder(aOwner),iImpl(NULL)
sl@0
   394
	{
sl@0
   395
	}
sl@0
   396
sl@0
   397
/**
sl@0
   398
Destructor
sl@0
   399
@note  The child objects created out of this direct viewfinder class object shall be delete beforehand. Various child 
sl@0
   400
	   objects are snapshot and histograms.
sl@0
   401
*/	
sl@0
   402
EXPORT_C CCamera::CCameraV2DirectViewFinder::~CCameraV2DirectViewFinder()
sl@0
   403
	{
sl@0
   404
	if (iImpl != NULL)
sl@0
   405
		{
sl@0
   406
		iImpl->Release(this);
sl@0
   407
		}
sl@0
   408
		
sl@0
   409
	if (iImplBase != NULL)
sl@0
   410
		{
sl@0
   411
		iImplBase->Release();
sl@0
   412
		}
sl@0
   413
	}	
sl@0
   414
	
sl@0
   415
/**
sl@0
   416
Retrieve pointer to histogram API in order to use it specifically for a particular viewfinder.
sl@0
   417
sl@0
   418
@return Pointer to use histogram API specifically for the given viewfinder.
sl@0
   419
		
sl@0
   420
@leave  May leave with any error code.
sl@0
   421
sl@0
   422
@note   Different types of histogram may be used for a specific viewfinder. Every time this method will be called
sl@0
   423
		on the CCameraV2DirectViewFinder class object, a new type of histogram will be created.
sl@0
   424
*/	
sl@0
   425
EXPORT_C CCamera::CCameraV2Histogram* CCamera::CCameraV2DirectViewFinder::CreateHistogramHandleL() const
sl@0
   426
	{
sl@0
   427
	MImplementationFactory* implFactory = NULL;
sl@0
   428
	
sl@0
   429
	iImpl->CreateHistogramImplFactoryL(implFactory);
sl@0
   430
	
sl@0
   431
	CleanupReleasePushL(*implFactory);
sl@0
   432
	CCamera::CCameraV2Histogram* histogram = CCamera::CCameraV2Histogram::CreateL(iOwner, *implFactory);
sl@0
   433
	CleanupStack::Pop(implFactory);
sl@0
   434
	
sl@0
   435
	implFactory->Release();
sl@0
   436
	return histogram;	
sl@0
   437
	}
sl@0
   438
sl@0
   439
/**
sl@0
   440
Retrieve pointer to image processing API in order to use it specifically for a particular viewfinder.
sl@0
   441
sl@0
   442
@return Pointer to use image processing API specifically for the given viewfinder.
sl@0
   443
		
sl@0
   444
@leave  May leave with any error code.
sl@0
   445
*/
sl@0
   446
EXPORT_C CCamera::CCameraImageProcessing* CCamera::CCameraV2DirectViewFinder::GetTransformationHandleL() const
sl@0
   447
	{
sl@0
   448
	MImplementationFactory* implFactory = NULL;
sl@0
   449
	
sl@0
   450
	iImpl->GetImageProcessingImplFactoryL(implFactory);
sl@0
   451
	
sl@0
   452
	CleanupReleasePushL(*implFactory);
sl@0
   453
	CCamera::CCameraImageProcessing* imgProc = CCamera::CCameraImageProcessing::CreateL(iOwner, *implFactory);
sl@0
   454
	CleanupStack::Pop(implFactory);
sl@0
   455
	
sl@0
   456
	implFactory->Release();
sl@0
   457
	return imgProc;	
sl@0
   458
	}
sl@0
   459
sl@0
   460
/**
sl@0
   461
Retrieve pointer to direct snapshot API in order to use it for displaying the snapshots for still images directly on the 
sl@0
   462
given direct viewfinder screen. 
sl@0
   463
sl@0
   464
@return Pointer to use direct snapshot API specifically for the given viewfinder.
sl@0
   465
		
sl@0
   466
@leave  May leave with any error code.
sl@0
   467
sl@0
   468
@note  Direct snapshot API is not supposed to be used for snapshots for video.
sl@0
   469
*/
sl@0
   470
EXPORT_C CCamera::CCameraDirectSnapshot* CCamera::CCameraV2DirectViewFinder::GetDirectSnapshotHandleL() const
sl@0
   471
	{
sl@0
   472
	return CCamera::CCameraDirectSnapshot::CreateL(const_cast<CCamera::CCameraV2DirectViewFinder&>(*this));
sl@0
   473
	}
sl@0
   474
sl@0
   475
/** 
sl@0
   476
Creates a new viewfinder and starts transfer of view finder data to the given portion of the screen using direct 
sl@0
   477
screen access.
sl@0
   478
sl@0
   479
The aScreenRect parameter is in screen coordinates and may be modified if,
sl@0
   480
for example, the camera requires the destination to have a certain byte alignment, and so on.
sl@0
   481
sl@0
   482
@param  aWs 
sl@0
   483
        Window server session.
sl@0
   484
@param  aScreenDevice 
sl@0
   485
        Screen device.
sl@0
   486
@param  aWindow 
sl@0
   487
        Displayable window.
sl@0
   488
@param  aScreenRect 
sl@0
   489
        Portion of the screen to which view finder data is to be
sl@0
   490
        transferred. This is in screen co-ordinates and may be modified if, for example,
sl@0
   491
        the camera requires the destination to have a certain byte alignment.
sl@0
   492
sl@0
   493
@leave  KErrInUse if another direct viewfinder is running with the same set of window parameters. May leave with any other error code.
sl@0
   494
sl@0
   495
@note   MDirectViewFinderObserver::DirectViewFinderFirstFrameDisplayed() will be used to notify clients that the first 
sl@0
   496
		frame has been displayed.
sl@0
   497
*/
sl@0
   498
EXPORT_C void CCamera::CCameraV2DirectViewFinder::StartViewFinderDirectL(RWsSession& aWs, CWsScreenDevice& aScreenDevice, 
sl@0
   499
										RWindowBase& aWindow, TRect& aScreenRect)
sl@0
   500
	{
sl@0
   501
	iImpl->StartViewFinderDirectL(aWs, aScreenDevice, aWindow, aScreenRect);	
sl@0
   502
	}
sl@0
   503
sl@0
   504
/** 
sl@0
   505
Creates a new viewfinder and starts transfer of view finder data to the given portion of the screen using direct screen
sl@0
   506
access and also clips to the specified portion of the screen.
sl@0
   507
sl@0
   508
The view finder has the same size and position as aScreenRect but is only
sl@0
   509
visible in the intersection of aScreenRect and aClipRect. May leave with KErrNotSupported
sl@0
   510
or KErrNotReady if Reserve() has not been called, or has not yet completed.
sl@0
   511
sl@0
   512
@param  aWs 
sl@0
   513
        Window server session.
sl@0
   514
@param  aScreenDevice 
sl@0
   515
        Screen device.
sl@0
   516
@param  aWindow 
sl@0
   517
        Displayable window.
sl@0
   518
@param  aScreenRect 
sl@0
   519
        Portion of the screen to which view finder data is to be
sl@0
   520
        transferred. This is in screen coordinates and may be modified if, for example,
sl@0
   521
        the camera requires the destination to have a certain byte alignment.
sl@0
   522
@param  aClipRect
sl@0
   523
        The rectangle to which the screen will be clipped.
sl@0
   524
sl@0
   525
@leave  KErrInUse if another direct viewfinder is running with the same set of window parameters. May leave with any other error code.
sl@0
   526
sl@0
   527
@note   MDirectViewFinderObserver::DirectViewFinderFirstFrameDisplayed() will be used to notify clients that the first 
sl@0
   528
		frame has been displayed.
sl@0
   529
*/									
sl@0
   530
EXPORT_C void CCamera::CCameraV2DirectViewFinder::StartViewFinderDirectL(RWsSession& aWs, CWsScreenDevice& aScreenDevice,
sl@0
   531
										RWindowBase& aWindow, TRect& aScreenRect, TRect& aClipRect)
sl@0
   532
	{
sl@0
   533
	iImpl->StartViewFinderDirectL(aWs, aScreenDevice, aWindow, aScreenRect, aClipRect);	
sl@0
   534
	}
sl@0
   535
sl@0
   536
/**
sl@0
   537
Retrieves the parameters associated with the direct viewfinder.
sl@0
   538
sl@0
   539
@param  aScreenNumber
sl@0
   540
		Retrieves the screen number on which the direct viewfinder is supposed to run.
sl@0
   541
		
sl@0
   542
@param  aScreenRect
sl@0
   543
		Retrieves the TRect which identifies the portion of the screen to which view finder data is to be transferred.
sl@0
   544
sl@0
   545
@param  aClipRect
sl@0
   546
		Retrieves the TRect which identifies the rectangle to which the screen will be clipped.
sl@0
   547
		
sl@0
   548
@leave  May leave with any error code.
sl@0
   549
*/
sl@0
   550
EXPORT_C void CCamera::CCameraV2DirectViewFinder::GetDirectViewFinderPropertiesL(TInt& aScreenNumber, TRect& aScreenRect, 
sl@0
   551
																						TRect& aClipRect) const
sl@0
   552
	{
sl@0
   553
	iImpl->GetDirectViewFinderPropertiesL(aScreenNumber, aScreenRect, aClipRect);	
sl@0
   554
	}
sl@0
   555
sl@0
   556
/**
sl@0
   557
Pauses the direct viewfinder.
sl@0
   558
*/
sl@0
   559
EXPORT_C void CCamera::CCameraV2DirectViewFinder::PauseViewFinderDirect()
sl@0
   560
	{
sl@0
   561
	iImpl->PauseViewFinderDirect();	
sl@0
   562
	}
sl@0
   563
sl@0
   564
/**
sl@0
   565
Resumes the direct viewfinder
sl@0
   566
sl@0
   567
@note   MDirectViewFinderObserver::DirectViewFinderFirstFrameDisplayed() will be used to notify clients that the first
sl@0
   568
		frame has been displayed.
sl@0
   569
*/
sl@0
   570
EXPORT_C void CCamera::CCameraV2DirectViewFinder::ResumeViewFinderDirect()
sl@0
   571
	{
sl@0
   572
	iImpl->ResumeViewFinderDirect();	
sl@0
   573
	}
sl@0
   574
sl@0
   575
/**
sl@0
   576
Retrieves the state of the direct viewfinder.
sl@0
   577
sl@0
   578
@param  aViewFinderState
sl@0
   579
		Retrieves the state of the direct viewfinder.
sl@0
   580
		
sl@0
   581
@leave  May leave with any error code.
sl@0
   582
*/
sl@0
   583
EXPORT_C void CCamera::CCameraV2DirectViewFinder::GetViewFinderStateL(CCamera::CCameraV2DirectViewFinder::TViewFinderState& aViewFinderState) const
sl@0
   584
	{
sl@0
   585
	iImpl->GetViewFinderStateL(aViewFinderState);	
sl@0
   586
	}
sl@0
   587
sl@0
   588
/**
sl@0
   589
Stops the direct viewfinder.
sl@0
   590
*/
sl@0
   591
EXPORT_C void CCamera::CCameraV2DirectViewFinder::StopDirectViewFinder()
sl@0
   592
	{
sl@0
   593
	iImpl->StopDirectViewFinder();	
sl@0
   594
	}
sl@0
   595
sl@0
   596
/** 
sl@0
   597
Gets the handle to the implementer's MCameraV2DirectViewFinder derived class.
sl@0
   598
*/	
sl@0
   599
void CCamera::CCameraV2DirectViewFinder::SetImplHandle()
sl@0
   600
	{
sl@0
   601
	if(iImpl == NULL)
sl@0
   602
		{
sl@0
   603
		iImpl = static_cast<MCameraV2DirectViewFinder*>(iOwner.CustomInterface(KECamMCameraV2DirectViewFinderUid));
sl@0
   604
		}
sl@0
   605
	}
sl@0
   606
sl@0
   607
/** 
sl@0
   608
Gets the handle to the implementer's MCameraViewFinder derived class for v2 direct viewfinder.
sl@0
   609
*/	
sl@0
   610
void CCamera::CCameraV2DirectViewFinder::SetImplBaseHandle()
sl@0
   611
	{
sl@0
   612
	if(iImplBase == NULL)
sl@0
   613
		{
sl@0
   614
		iImplBase = static_cast<MCameraViewFinder*>(iOwner.CustomInterface(KECamMCameraBaseV2DirectViewFinderUid));
sl@0
   615
		}
sl@0
   616
	}
sl@0
   617
/**
sl@0
   618
Provides the interface pointer for the MCameraV2DirectViewFinder implementation.
sl@0
   619
sl@0
   620
@return  Interface pointer for MCameraV2DirectViewFinder implementation.
sl@0
   621
*/	
sl@0
   622
MCameraV2DirectViewFinder* CCamera::CCameraV2DirectViewFinder::Impl()
sl@0
   623
	{
sl@0
   624
	return iImpl;
sl@0
   625
	}
sl@0
   626
sl@0
   627
/**
sl@0
   628
Factory function for creating the CCameraClientViewFinder object.
sl@0
   629
sl@0
   630
@param aCamera 
sl@0
   631
	   A reference to a CCamera object providing the settings.
sl@0
   632
	   
sl@0
   633
@param aClientViewFinderObserver
sl@0
   634
	   Reference to the client view finder observer.
sl@0
   635
sl@0
   636
@return A pointer to a fully constructed CCameraClientViewFinder object.
sl@0
   637
sl@0
   638
@leave KErrNoMemory Out of memory or any other system-wide error code.
sl@0
   639
sl@0
   640
@leave KErrExtensionNotSupported When NewL/NewDuplicateL used instead of New2L/NewDuplicate2L.
sl@0
   641
*/
sl@0
   642
EXPORT_C CCamera::CCameraClientViewFinder* CCamera::CCameraClientViewFinder::NewL(CCamera& aCamera, MClientViewFinderObserver& aClientViewFinderObserver)
sl@0
   643
	{
sl@0
   644
 	if(aCamera.CameraVersion() == KCameraDefaultVersion)
sl@0
   645
 		{
sl@0
   646
 		User::Leave(KErrExtensionNotSupported);
sl@0
   647
 		}
sl@0
   648
 		
sl@0
   649
	CCamera::CCameraClientViewFinder* self = new (ELeave)CCamera::CCameraClientViewFinder(aCamera); 
sl@0
   650
	CleanupStack::PushL(self);
sl@0
   651
	self->ConstructL(aClientViewFinderObserver);
sl@0
   652
	CleanupStack::Pop(self);
sl@0
   653
	return self; 
sl@0
   654
	}
sl@0
   655
		
sl@0
   656
void CCamera::CCameraClientViewFinder::ConstructL(MClientViewFinderObserver& aClientViewFinderObserver)
sl@0
   657
	{
sl@0
   658
	SetImplHandle();
sl@0
   659
	if(iImpl == NULL)
sl@0
   660
		{
sl@0
   661
		User::LeaveIfError(KErrNotSupported);		
sl@0
   662
		}
sl@0
   663
	SetImplBaseHandle();
sl@0
   664
	
sl@0
   665
	iImpl->SetClientViewFinderObserver(aClientViewFinderObserver);
sl@0
   666
	iImpl->SetClientViewFinderHandle(this);
sl@0
   667
	}
sl@0
   668
	
sl@0
   669
/**	
sl@0
   670
CCameraClientViewFinder Constructor.
sl@0
   671
sl@0
   672
@param aOwner
sl@0
   673
       a reference to a CCamera object providing the settings. 
sl@0
   674
*/
sl@0
   675
CCamera::CCameraClientViewFinder::CCameraClientViewFinder(CCamera& aOwner): CCameraViewFinder(aOwner), iImpl(NULL)
sl@0
   676
	{
sl@0
   677
	}
sl@0
   678
	
sl@0
   679
/**
sl@0
   680
Retrieve pointer to histogram API in order to use it specifically for a particular viewfinder.
sl@0
   681
sl@0
   682
@return Pointer to use histogram API specifically for the given viewfinder.
sl@0
   683
		
sl@0
   684
@leave  May leave with any error code.
sl@0
   685
sl@0
   686
@note   Different types of histogram may be used for a specific viewfinder. Every time this method will be called
sl@0
   687
		on the CCameraClientViewFinder class object, a new type of histogram will be created.
sl@0
   688
*/	
sl@0
   689
EXPORT_C CCamera::CCameraV2Histogram* CCamera::CCameraClientViewFinder::CreateHistogramHandleL() const
sl@0
   690
	{
sl@0
   691
	MImplementationFactory* implFactory = NULL;
sl@0
   692
	
sl@0
   693
	iImpl->CreateHistogramImplFactoryL(implFactory);
sl@0
   694
	
sl@0
   695
	CleanupReleasePushL(*implFactory);
sl@0
   696
	CCamera::CCameraV2Histogram* histogram = CCamera::CCameraV2Histogram::CreateL(iOwner, *implFactory);
sl@0
   697
	CleanupStack::Pop(implFactory);
sl@0
   698
	
sl@0
   699
	implFactory->Release();
sl@0
   700
	return histogram;	
sl@0
   701
	}
sl@0
   702
sl@0
   703
/**
sl@0
   704
Retrieve pointer to image processing API in order to use it specifically for a particular viewfinder.
sl@0
   705
sl@0
   706
@return Pointer to use image processing API specifically for the given viewfinder.
sl@0
   707
		
sl@0
   708
@leave  May leave with any error code.
sl@0
   709
*/
sl@0
   710
EXPORT_C CCamera::CCameraImageProcessing* CCamera::CCameraClientViewFinder::GetTransformationHandleL() const
sl@0
   711
	{
sl@0
   712
	MImplementationFactory* implFactory = NULL;
sl@0
   713
	
sl@0
   714
	iImpl->GetImageProcessingImplFactoryL(implFactory);
sl@0
   715
	
sl@0
   716
	CleanupReleasePushL(*implFactory);
sl@0
   717
	CCamera::CCameraImageProcessing* imgProc = CCamera::CCameraImageProcessing::CreateL(iOwner, *implFactory);
sl@0
   718
	CleanupStack::Pop(implFactory);
sl@0
   719
	
sl@0
   720
	implFactory->Release();
sl@0
   721
	return imgProc;	
sl@0
   722
	}
sl@0
   723
sl@0
   724
/** 
sl@0
   725
Creates a new viewfinder and starts transfer of view finder data.
sl@0
   726
sl@0
   727
Availability of viewfinder data is notified by MClientViewFinderObserver::ViewFinderBufferReady().
sl@0
   728
sl@0
   729
@param  aScreenNumber
sl@0
   730
		The screen number on which the client viewfinder is supposed to run.
sl@0
   731
@param  aImageFormat 
sl@0
   732
        The image format requested by the client.
sl@0
   733
@param  aSize 
sl@0
   734
        On return, the size used. The size may be modified by the implementation because of hardware constraints and 
sl@0
   735
        byte alignment.
sl@0
   736
sl@0
   737
@leave  May leave with any error code.
sl@0
   738
sl@0
   739
@note   KECamDefaultViewFinderHandle is used to refer to the viewfinder started using CCamera methods.
sl@0
   740
sl@0
   741
@see	CCamera::StartViewFinderL(TFormat aImageFormat,TSize& aSize)
sl@0
   742
*/
sl@0
   743
EXPORT_C void CCamera::CCameraClientViewFinder::StartClientViewFinderL(TInt aScreenNumber, CCamera::TFormat aImageFormat, TSize& aSize)
sl@0
   744
	{
sl@0
   745
	iImpl->StartClientViewFinderL(aScreenNumber, aImageFormat, aSize);
sl@0
   746
	}
sl@0
   747
sl@0
   748
/** 
sl@0
   749
Creates a new viewfinder and starts transfer of view finder data. Also, clips the picture to the specified clip	rectangle. 
sl@0
   750
sl@0
   751
Availability of viewfinder data is notified by MClientViewFinderObserver::ViewFinderBufferReady().
sl@0
   752
sl@0
   753
The picture is the size of the intersection of aSize and aClipRect, not simply
sl@0
   754
aSize padded with white space.
sl@0
   755
sl@0
   756
@param  aScreenNumber
sl@0
   757
		The screen number on which the client viewfinder is supposed to run.
sl@0
   758
@param  aImageFormat 
sl@0
   759
        The image format.
sl@0
   760
@param  aSize
sl@0
   761
        On return, the size used. The size may be modified by the implementation because of hardware constraints and
sl@0
   762
        byte alignment.
sl@0
   763
@param  aClipRect 
sl@0
   764
        Required clip rectangle. May be modified if, for example,
sl@0
   765
        the camera only supports certain byte alignments.
sl@0
   766
sl@0
   767
@leave  May leave with any error code.
sl@0
   768
sl@0
   769
@note   KECamDefaultViewFinderHandle is used to refer viewfinder started using CCamera methods.
sl@0
   770
sl@0
   771
@see	CCamera::StartViewFinderL(TFormat aImageFormat,TSize& aSize,TRect& aClipRect)
sl@0
   772
*/
sl@0
   773
EXPORT_C void CCamera::CCameraClientViewFinder::StartClientViewFinderL(TInt aScreenNumber, CCamera::TFormat aImageFormat, TSize& aSize, TRect& aClipRect)
sl@0
   774
	{
sl@0
   775
	iImpl->StartClientViewFinderL(aScreenNumber, aImageFormat, aSize, aClipRect);
sl@0
   776
	}
sl@0
   777
sl@0
   778
/**
sl@0
   779
Retrieves the state of the client viewfinder.
sl@0
   780
sl@0
   781
@param  aIsActive
sl@0
   782
		ETrue indicates that client viewfinder is active.
sl@0
   783
		EFalse indicates that client viewfinder is not active.
sl@0
   784
sl@0
   785
@leave  May leave with any error code.
sl@0
   786
*/
sl@0
   787
EXPORT_C void CCamera::CCameraClientViewFinder::GetClientViewFinderStateL(TBool& aIsActive) const
sl@0
   788
	{
sl@0
   789
	iImpl->GetClientViewFinderStateL(aIsActive);	
sl@0
   790
	}
sl@0
   791
sl@0
   792
/**
sl@0
   793
Retrieves the parameters associated with the client viewfinder.
sl@0
   794
sl@0
   795
@param  aScreenNumber
sl@0
   796
		Retrieves the screen number on which the client viewfinder is supposed to run.
sl@0
   797
		
sl@0
   798
@param  aImageFormat
sl@0
   799
		Retrieves the image format of the client viewfinder.
sl@0
   800
sl@0
   801
@param  aSize
sl@0
   802
		Retrieves the size used for the client viewfinder.
sl@0
   803
		
sl@0
   804
@param	aClipRect
sl@0
   805
		Retrieves the clip rectangle. If not specified, the clipping is retrieved as a TRect having origin as top left 
sl@0
   806
		corner and the size as 'aSize'.
sl@0
   807
		
sl@0
   808
@leave  May leave with any error code.
sl@0
   809
*/
sl@0
   810
EXPORT_C void CCamera::CCameraClientViewFinder::GetClientViewFinderPropertiesL(TInt& aScreenNumber, CCamera::TFormat& aImageFormat, TSize& aSize, TRect& aClipRect) const
sl@0
   811
	{
sl@0
   812
	iImpl->GetClientViewFinderPropertiesL(aScreenNumber, aImageFormat, aSize, aClipRect);
sl@0
   813
	}
sl@0
   814
sl@0
   815
/**
sl@0
   816
Stop the client viewfinder.
sl@0
   817
*/
sl@0
   818
EXPORT_C void CCamera::CCameraClientViewFinder::StopClientViewFinder()
sl@0
   819
	{
sl@0
   820
	iImpl->StopClientViewFinder();
sl@0
   821
	}
sl@0
   822
sl@0
   823
/**
sl@0
   824
Retrieves the client viewfinder buffer. Client calls this method after being notified about availability of viewfinder
sl@0
   825
data via MClientViewFinderObserver::ViewFinderBufferReady().
sl@0
   826
sl@0
   827
@param  aClientViewFinderBuffer
sl@0
   828
		Reference to MCameraBuffer2 which retrieves the client viewfinder data.
sl@0
   829
sl@0
   830
@leave  May leave with any error code.
sl@0
   831
*/	
sl@0
   832
EXPORT_C void CCamera::CCameraClientViewFinder::GetViewFinderBufferL(MCameraBuffer2& aClientViewFinderBuffer) const
sl@0
   833
	{
sl@0
   834
	iImpl->GetViewFinderBufferL(aClientViewFinderBuffer);	
sl@0
   835
	}
sl@0
   836
sl@0
   837
/**
sl@0
   838
Destructor
sl@0
   839
@note  The child objects created out of this client viewfinder class object shall be delete beforehand. Various child 
sl@0
   840
	   objects are snapshot and histograms.
sl@0
   841
*/	
sl@0
   842
EXPORT_C CCamera::CCameraClientViewFinder::~CCameraClientViewFinder()
sl@0
   843
	{
sl@0
   844
	if (iImpl != NULL)
sl@0
   845
		{
sl@0
   846
		iImpl->Release(this);
sl@0
   847
		}
sl@0
   848
		
sl@0
   849
	if (iImplBase != NULL)
sl@0
   850
		{
sl@0
   851
		iImplBase->Release();
sl@0
   852
		}
sl@0
   853
	}
sl@0
   854
sl@0
   855
/** 
sl@0
   856
Gets the handle to the implementer's MCameraClientViewFinder derived class.
sl@0
   857
*/	
sl@0
   858
void CCamera::CCameraClientViewFinder::SetImplHandle()
sl@0
   859
	{
sl@0
   860
	if(iImpl == NULL)
sl@0
   861
		{
sl@0
   862
		iImpl = static_cast<MCameraClientViewFinder*>(iOwner.CustomInterface(KECamMCameraClientViewFinderUid));
sl@0
   863
		}
sl@0
   864
	}
sl@0
   865
sl@0
   866
/** 
sl@0
   867
Gets the handle to the implementer's MCameraViewFinder derived class for client viewfinder.
sl@0
   868
*/	
sl@0
   869
void CCamera::CCameraClientViewFinder::SetImplBaseHandle()
sl@0
   870
	{
sl@0
   871
	if(iImplBase == NULL)
sl@0
   872
		{
sl@0
   873
		iImplBase = static_cast<MCameraViewFinder*>(iOwner.CustomInterface(KECamMCameraBaseClientViewFinderUid));
sl@0
   874
		}
sl@0
   875
	}
sl@0
   876
sl@0
   877
/**
sl@0
   878
@internalComponent
sl@0
   879
sl@0
   880
Factory function that creates a new camera direct snapshot object.
sl@0
   881
sl@0
   882
@param	aDirectViewFinder
sl@0
   883
		A reference to the camera direct viewfinder object for which a camera direct snapshot object is to be created.
sl@0
   884
		
sl@0
   885
@leave  KErrNoMemory if out of memory; also any system wide error.
sl@0
   886
sl@0
   887
@return A pointer to a fully constructed camera direct snapshot object.
sl@0
   888
*/	
sl@0
   889
EXPORT_C CCamera::CCameraDirectSnapshot* CCamera::CCameraDirectSnapshot::CreateL(CCamera::CCameraV2DirectViewFinder& aDirectViewFinder)
sl@0
   890
	{
sl@0
   891
	CCamera::CCameraDirectSnapshot* self = new (ELeave) CCamera::CCameraDirectSnapshot();
sl@0
   892
	CleanupStack::PushL(self);
sl@0
   893
	self->ConstructL(aDirectViewFinder);
sl@0
   894
	CleanupStack::Pop(self);
sl@0
   895
	return self; 
sl@0
   896
	}
sl@0
   897
sl@0
   898
/**
sl@0
   899
@internalComponent
sl@0
   900
sl@0
   901
CCameraDirectSnapshot second phase constructor 
sl@0
   902
sl@0
   903
Function used to initialise internal state of the object. 
sl@0
   904
sl@0
   905
@param	aDirectViewFinder
sl@0
   906
		A reference to the camera direct viewfinder object on which the direct snapshot will be displayed.
sl@0
   907
sl@0
   908
@leave KErrNoMemory Out of memory; or any other error code as well.
sl@0
   909
sl@0
   910
@note This method is supposed to be used by this class only.
sl@0
   911
*/ 
sl@0
   912
void CCamera::CCameraDirectSnapshot::ConstructL(CCamera::CCameraV2DirectViewFinder& aDirectViewFinder) 
sl@0
   913
	{
sl@0
   914
	iImpl = static_cast<MCameraDirectSnapshot*>(DirectViewFinderImpl(aDirectViewFinder)->GetDirectSnapshotImpl(KECamMCameraDirectSnapshotUid));
sl@0
   915
sl@0
   916
	if (iImpl == NULL)
sl@0
   917
		{
sl@0
   918
		User::Leave(KErrNotSupported);
sl@0
   919
		}
sl@0
   920
		
sl@0
   921
	iImpl->SetDirectViewFinder(&aDirectViewFinder);
sl@0
   922
	}
sl@0
   923
	
sl@0
   924
/**
sl@0
   925
Constructor for the CCameraDirectSnapshot class.
sl@0
   926
*/
sl@0
   927
CCamera::CCameraDirectSnapshot::CCameraDirectSnapshot():iImpl(NULL)
sl@0
   928
	{
sl@0
   929
	}
sl@0
   930
sl@0
   931
/**
sl@0
   932
Provides the interface pointer for the concrete implementation of CCameraV2DirectViewFinder. 
sl@0
   933
sl@0
   934
@param	aDirectViewFinder
sl@0
   935
		A reference to the camera direct viewfinder object
sl@0
   936
sl@0
   937
@return interface pointer for the concrete implementation of CCameraV2DirectViewFinder.
sl@0
   938
*/
sl@0
   939
MCameraV2DirectViewFinder* CCamera::CCameraDirectSnapshot::DirectViewFinderImpl(CCamera::CCameraV2DirectViewFinder& aDirectViewFinder)
sl@0
   940
	{
sl@0
   941
	return aDirectViewFinder.Impl();
sl@0
   942
	}
sl@0
   943
	
sl@0
   944
/**
sl@0
   945
Destructor
sl@0
   946
*/
sl@0
   947
EXPORT_C CCamera::CCameraDirectSnapshot::~CCameraDirectSnapshot()
sl@0
   948
	{
sl@0
   949
	if (iImpl != NULL)
sl@0
   950
		{
sl@0
   951
		iImpl->Release();
sl@0
   952
		}
sl@0
   953
	}
sl@0
   954
sl@0
   955
/**
sl@0
   956
Retrieve the version2 direct viewfinder object out of which this direct snapshot has been created. This information may be
sl@0
   957
required by the client in order to map the direct snapshot object with its parent version2 direct viewfinder object or also
sl@0
   958
to retrieve properties of its parent version2 direct viewfinder object.
sl@0
   959
sl@0
   960
@param	aDirectViewFinder
sl@0
   961
		A pointer to the camera version2 direct viewfinder object on which the direct snapshot will be displayed.
sl@0
   962
sl@0
   963
@leave  May leave with any error code.
sl@0
   964
*/
sl@0
   965
EXPORT_C void CCamera::CCameraDirectSnapshot::GetDirectViewFinderL(CCamera::CCameraV2DirectViewFinder*& aDirectViewFinder) const
sl@0
   966
	{
sl@0
   967
	iImpl->GetDirectViewFinderL(aDirectViewFinder);
sl@0
   968
	}
sl@0
   969
sl@0
   970
/**
sl@0
   971
Enable the direct snapshot. The direct snapshot will be displayed on the parent direct viewfinder screen. The screen size
sl@0
   972
of the snapshot will be the same as that of the parent direct viewfinder screen.
sl@0
   973
sl@0
   974
The direct snapshot can be displayed only for still images.
sl@0
   975
sl@0
   976
@param  aDirectSnapshotParameters
sl@0
   977
		The desired direct snapshot parameter.
sl@0
   978
		
sl@0
   979
@leave  May leave with any error code.
sl@0
   980
*/
sl@0
   981
EXPORT_C void CCamera::CCameraDirectSnapshot::EnableDirectSnapshotL(CCamera::CCameraDirectSnapshot::TDirectSnapshotParameters& aDirectSnapshotParameters)
sl@0
   982
	{
sl@0
   983
	iImpl->EnableDirectSnapshotL(aDirectSnapshotParameters);
sl@0
   984
	}
sl@0
   985
sl@0
   986
/**
sl@0
   987
Disable the direct snapshot. The direct snapshot will not be displayed on the parent direct viewfinder screen.
sl@0
   988
*/
sl@0
   989
EXPORT_C void CCamera::CCameraDirectSnapshot::DisableDirectSnapshot()
sl@0
   990
	{
sl@0
   991
	iImpl->DisableDirectSnapshot();
sl@0
   992
	}
sl@0
   993
sl@0
   994
/**
sl@0
   995
Retrieves the current state for direct snapshot.
sl@0
   996
sl@0
   997
@param  aDirectSnapshotParameters
sl@0
   998
		Retrieves the current state for direct snapshot.
sl@0
   999
		
sl@0
  1000
@leave  May leave with any error code.
sl@0
  1001
*/	
sl@0
  1002
EXPORT_C void CCamera::CCameraDirectSnapshot::GetDirectSnapshotStateL(CCamera::CCameraDirectSnapshot::TDirectSnapshotState& aDirectSnapshotState) const
sl@0
  1003
	{
sl@0
  1004
	iImpl->GetDirectSnapshotStateL(aDirectSnapshotState);
sl@0
  1005
	}
sl@0
  1006
sl@0
  1007
/**
sl@0
  1008
Retrieves the direct snapshot parameters. 
sl@0
  1009
sl@0
  1010
@param  aDirectSnapshotParameters
sl@0
  1011
		Retrieves the direct snapshot parameter of type TDirectSnapshotParameters.
sl@0
  1012
		
sl@0
  1013
@leave  May leave with any error code.
sl@0
  1014
*/
sl@0
  1015
EXPORT_C void CCamera::CCameraDirectSnapshot::GetDirectSnapshotParametersL(CCamera::CCameraDirectSnapshot::TDirectSnapshotParameters& aDirectSnapshotParameters) const
sl@0
  1016
	{
sl@0
  1017
	iImpl->GetDirectSnapshotParametersL(aDirectSnapshotParameters);	
sl@0
  1018
	}
sl@0
  1019
sl@0
  1020
/**
sl@0
  1021
Sets the direct snapshot parameters. 
sl@0
  1022
sl@0
  1023
@param  aDirectSnapshotParameters
sl@0
  1024
		The desired direct snapshot parameter of type TDirectSnapshotParameters.
sl@0
  1025
		
sl@0
  1026
@leave  May leave with any error code.
sl@0
  1027
*/	
sl@0
  1028
EXPORT_C void CCamera::CCameraDirectSnapshot::SetDirectSnapshotParametersL(const CCamera::CCameraDirectSnapshot::TDirectSnapshotParameters& aDirectSnapshotParameters)
sl@0
  1029
	{
sl@0
  1030
	iImpl->SetDirectSnapshotParametersL(aDirectSnapshotParameters);		
sl@0
  1031
	}
sl@0
  1032
sl@0
  1033
/**
sl@0
  1034
Constructor for the TDirectSnapshotParameters class.
sl@0
  1035
Sets the size and version of this class.
sl@0
  1036
*/
sl@0
  1037
EXPORT_C CCamera::CCameraDirectSnapshot::TDirectSnapshotParameters::TDirectSnapshotParameters()
sl@0
  1038
	{
sl@0
  1039
	iSize = sizeof(CCamera::CCameraDirectSnapshot::TDirectSnapshotParameters);
sl@0
  1040
	iVersion = KECamViewFinderFadingEffectCurrentVersion;
sl@0
  1041
	}
sl@0
  1042
	
sl@0
  1043
/** 
sl@0
  1044
Returns the size of the class. Used for extensibility by deriving from this base class and adding new member variables.
sl@0
  1045
Intended to be used for implementation of methods where this class reference is passed as function arguments. 
sl@0
  1046
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
  1047
is made to run on an old implementation, an error may occur once the old implementation detects this by getting 
sl@0
  1048
the size information of the T class passed. Also, if old application is made to run on a new implementation, this can be 
sl@0
  1049
handled correctly if the derived class variables handling is done in a proper 'if-else' statement.
sl@0
  1050
sl@0
  1051
@return The size of the class.
sl@0
  1052
sl@0
  1053
@note The size will be modified when the T-class gets updated.
sl@0
  1054
*/	
sl@0
  1055
EXPORT_C TUint CCamera::CCameraDirectSnapshot::TDirectSnapshotParameters::Size() const
sl@0
  1056
	{
sl@0
  1057
	return iSize;
sl@0
  1058
	};
sl@0
  1059
sl@0
  1060
/**	
sl@0
  1061
Returns the version of the class. Used for extensibility specially when the class members are not added but the Reserved 
sl@0
  1062
members get used at a later stage.
sl@0
  1063
sl@0
  1064
@return The version of the class.
sl@0
  1065
sl@0
  1066
@note The version will be modified when the T-class gets updated.
sl@0
  1067
*/
sl@0
  1068
EXPORT_C TUint CCamera::CCameraDirectSnapshot::TDirectSnapshotParameters::Version() const
sl@0
  1069
	{
sl@0
  1070
	return iVersion;
sl@0
  1071
	};
sl@0
  1072
		
sl@0
  1073
/** 
sl@0
  1074
Indicates whether the aspect ratio of the direct snapshot image has to maintained (if ETrue) or not (if EFalse) 
sl@0
  1075
while scaling down.
sl@0
  1076
sl@0
  1077
@return TBool: ETrue implies aspect ratio has to be maintained, EFalse otherwise.
sl@0
  1078
sl@0
  1079
@see CCamera::CCameraDirectSnapshot::TDirectSnapshotParameters::iIsAspectRatioMaintained
sl@0
  1080
*/
sl@0
  1081
EXPORT_C TBool CCamera::CCameraDirectSnapshot::TDirectSnapshotParameters::IsAspectRatioMaintained() const
sl@0
  1082
	{
sl@0
  1083
	if (iIsAspectRatioMaintained)
sl@0
  1084
		{
sl@0
  1085
		return ETrue;
sl@0
  1086
		}
sl@0
  1087
	else
sl@0
  1088
		{
sl@0
  1089
		return EFalse;
sl@0
  1090
		}	
sl@0
  1091
	}
sl@0
  1092
	
sl@0
  1093
/** 
sl@0
  1094
Sets the state to inform whether the aspect ratio of the direct snapshot image has to be maintained or not while scaling
sl@0
  1095
down.
sl@0
  1096
sl@0
  1097
@param  aIsAspectRatioMaintained
sl@0
  1098
		ETrue implies must be maintained, EFalse otherwise.
sl@0
  1099
		
sl@0
  1100
@see CCamera::CCameraDirectSnapshot::TDirectSnapshotParameters::iIsAspectRatioMaintained
sl@0
  1101
*/
sl@0
  1102
EXPORT_C void CCamera::CCameraDirectSnapshot::TDirectSnapshotParameters::SetAspectRatioState(TBool aIsAspectRatioMaintained)
sl@0
  1103
	{
sl@0
  1104
	iIsAspectRatioMaintained = static_cast<TUint>(aIsAspectRatioMaintained);
sl@0
  1105
	}