os/mm/imagingandcamerafws/cameraunittest/src/ECamUnitTestPlugin/ECamUnitTestPlugin.h
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/imagingandcamerafws/cameraunittest/src/ECamUnitTestPlugin/ECamUnitTestPlugin.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,175 @@
1.4 +
1.5 +// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
1.6 +// All rights reserved.
1.7 +// This component and the accompanying materials are made available
1.8 +// under the terms of "Eclipse Public License v1.0"
1.9 +// which accompanies this distribution, and is available
1.10 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +//
1.12 +// Initial Contributors:
1.13 +// Nokia Corporation - initial contribution.
1.14 +//
1.15 +// Contributors:
1.16 +//
1.17 +// Description:
1.18 +//
1.19 +
1.20 +#ifndef ECAMUNITTESTPlUGIN_H
1.21 +#define ECAMUNITTESTPlUGIN_H
1.22 +
1.23 +#include <ecam/ecamplugin.h>
1.24 +#include <ecam/ecaminfoplugin.h>
1.25 +#include <ecamadvsettings.h>
1.26 +#include <f32file.h>
1.27 +
1.28 +_LIT(KECamUnitTestPluginName, "C:\\102070CF.txt");
1.29 +_LIT(KTestCameraPluginName, "C:\102070cc.txt");
1.30 +
1.31 +#ifdef SYMBIAN_MULTIMEDIA_THREEPLANEARCH
1.32 +_LIT(KMMCameraPluginName, "C:\\mmcameraclientplugin.txt");
1.33 +#endif //SYMBIAN_MULTIMEDIA_THREEPLANEARCH
1.34 +
1.35 +const TInt KECamSetAvailableCameras = 3;
1.36 +
1.37 +// Implementations of the ECam plugin classes
1.38 +class CCamUnitTestPlugin : public CCameraPlugin
1.39 + {
1.40 + friend class CCamPresets;
1.41 + friend class CCamAdvSet;
1.42 + friend class CCamImgProc;
1.43 + friend class CCamManagement;
1.44 +
1.45 +public:
1.46 + static CCamUnitTestPlugin* NewL();
1.47 + ~CCamUnitTestPlugin();
1.48 +
1.49 +protected:
1.50 + // from CCameraPlugin
1.51 + void Construct2L(MCameraObserver& aObserver,TInt aCameraIndex);
1.52 + void Construct2DupL(MCameraObserver& aObserver,TInt aCameraHandle);
1.53 +
1.54 + void Construct2L(MCameraObserver2& aObserver,TInt aCameraIndex,TInt aPriority);
1.55 + void Construct2DupL(MCameraObserver2& aObserver,TInt aCameraHandle);
1.56 +
1.57 + // from CCamera itself
1.58 + void CameraInfo(TCameraInfo& aInfo) const;
1.59 + void Reserve();
1.60 + void Release();
1.61 + void PowerOn();
1.62 + void PowerOff();
1.63 + TInt Handle();
1.64 + void SetZoomFactorL(TInt aZoomFactor = 0);
1.65 + TInt ZoomFactor() const;
1.66 + void SetDigitalZoomFactorL(TInt aDigitalZoomFactor = 0);
1.67 + TInt DigitalZoomFactor() const;
1.68 + void SetContrastL(TInt aContrast);
1.69 + TInt Contrast() const;
1.70 + void SetBrightnessL(TInt aBrightness);
1.71 + TInt Brightness() const;
1.72 + void SetFlashL(TFlash aFlash = EFlashNone);
1.73 + TFlash Flash() const;
1.74 + void SetExposureL(TExposure aExposure = EExposureAuto);
1.75 + TExposure Exposure() const;
1.76 + void SetWhiteBalanceL(TWhiteBalance aWhiteBalance = EWBAuto);
1.77 + TWhiteBalance WhiteBalance() const;
1.78 + void StartViewFinderDirectL(RWsSession& aWs,CWsScreenDevice& aScreenDevice,RWindowBase& aWindow,TRect& aScreenRect);
1.79 + void StartViewFinderDirectL(RWsSession& aWs,CWsScreenDevice& aScreenDevice,RWindowBase& aWindow,TRect& aScreenRect,TRect& aClipRect);
1.80 + void StartViewFinderBitmapsL(TSize& aSize);
1.81 + void StartViewFinderBitmapsL(TSize& aSize,TRect& aClipRect);
1.82 +
1.83 + void StartViewFinderL(TFormat aImageFormat,TSize& aSize);
1.84 + void StartViewFinderL(TFormat aImageFormat,TSize& aSize,TRect& aClipRect);
1.85 +
1.86 + void StopViewFinder();
1.87 + TBool ViewFinderActive() const;
1.88 + void SetViewFinderMirrorL(TBool aMirror);
1.89 + TBool ViewFinderMirror() const;
1.90 + void PrepareImageCaptureL(TFormat aImageFormat,TInt aSizeIndex);
1.91 + void PrepareImageCaptureL(TFormat aImageFormat,TInt aSizeIndex,const TRect& aClipRect);
1.92 + void CaptureImage();
1.93 + void CancelCaptureImage();
1.94 + void EnumerateCaptureSizes(TSize& aSize,TInt aSizeIndex,TFormat aFormat) const;
1.95 + void PrepareVideoCaptureL(TFormat aFormat,TInt aSizeIndex,TInt aRateIndex,TInt aBuffersToUse,TInt aFramesPerBuffer);
1.96 + void PrepareVideoCaptureL(TFormat aFormat,TInt aSizeIndex,TInt aRateIndex,TInt aBuffersToUse,TInt aFramesPerBuffer,const TRect& aClipRect);
1.97 + void StartVideoCapture();
1.98 + void StopVideoCapture();
1.99 + TBool VideoCaptureActive() const;
1.100 + void EnumerateVideoFrameSizes(TSize& aSize,TInt aSizeIndex,TFormat aFormat) const;
1.101 + void EnumerateVideoFrameRates(TReal32& aRate,TInt aRateIndex,TFormat aFormat,TInt aSizeIndex,TExposure aExposure = EExposureAuto) const;
1.102 + void GetFrameSize(TSize& aSize) const;
1.103 + TReal32 FrameRate() const;
1.104 + TInt BuffersInUse() const;
1.105 + TInt FramesPerBuffer() const;
1.106 + void SetJpegQuality(TInt aQuality);
1.107 + TInt JpegQuality() const;
1.108 + TAny* CustomInterface(TUid aInterface);
1.109 +
1.110 +public:
1.111 + void Notify(TUid aMessageId, TInt aError);
1.112 + void Notify2(TUid aMessageId, TInt aError, TInt aParam);
1.113 +
1.114 + void GenerateVFHandle(TInt& aVFHandle);
1.115 + // set presets
1.116 + //void InitPresetsL(RArray<TUid>& aPresets);
1.117 +private:
1.118 + CCamUnitTestPlugin();
1.119 +
1.120 +private:
1.121 + MCameraObserver* iObserver; // not owned
1.122 + MCameraObserver2* iObserver2; // not owned
1.123 +
1.124 + TInt iCameraIndex;
1.125 + TInt iCameraHandle;
1.126 + TInt iPriority;
1.127 +
1.128 + RArray<TInt> iSupportedISORates;
1.129 + TInt iIsoRate;
1.130 + TInt iVFHandleGenerater;
1.131 +
1.132 +public:
1.133 + // additional info
1.134 + RArray<TUid> iPresets;
1.135 + TBool iCameras[KECamSetAvailableCameras];
1.136 + CCamera::CCameraAdvancedSettings::TCameraType iCameraTypes[KECamSetAvailableCameras];
1.137 + };
1.138 +
1.139 +class CCamUnitTestPluginInfo : public CCameraInfoPlugin
1.140 + {
1.141 +public:
1.142 + static CCamUnitTestPluginInfo* NewL();
1.143 +
1.144 + ~CCamUnitTestPluginInfo();
1.145 +
1.146 + // from CCameraInfoPlugin
1.147 + TInt CamerasAvailable();
1.148 +private:
1.149 + CCamUnitTestPluginInfo();
1.150 + };
1.151 +
1.152 +class CCamUnitTestPluginSecureId : public MSecureIdPlugin
1.153 + {
1.154 +public:
1.155 + static CCamUnitTestPluginSecureId* NewL();
1.156 +
1.157 + ~CCamUnitTestPluginSecureId();
1.158 +
1.159 + // from CCameraInfoPlugin
1.160 + void Release();
1.161 + void GetSecureIdL(TInt& aSecureId) const;
1.162 +
1.163 +private:
1.164 + CCamUnitTestPluginSecureId();
1.165 + };
1.166 +
1.167 +enum TSetPanicReasons
1.168 + {
1.169 + EPanicUnimplemented=1
1.170 + };
1.171 +
1.172 +class FileDependencyUtil
1.173 + {
1.174 +public:
1.175 + static void CheckFileDependencyL();
1.176 + };
1.177 +
1.178 +#endif // ECAMUNITTESTPlUGIN_H