sl@0
|
1 |
|
sl@0
|
2 |
// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
// All rights reserved.
|
sl@0
|
4 |
// This component and the accompanying materials are made available
|
sl@0
|
5 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
// which accompanies this distribution, and is available
|
sl@0
|
7 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
//
|
sl@0
|
9 |
// Initial Contributors:
|
sl@0
|
10 |
// Nokia Corporation - initial contribution.
|
sl@0
|
11 |
//
|
sl@0
|
12 |
// Contributors:
|
sl@0
|
13 |
//
|
sl@0
|
14 |
// Description:
|
sl@0
|
15 |
//
|
sl@0
|
16 |
|
sl@0
|
17 |
#ifndef ECAMUNITTESTPlUGIN_H
|
sl@0
|
18 |
#define ECAMUNITTESTPlUGIN_H
|
sl@0
|
19 |
|
sl@0
|
20 |
#include <ecam/ecamplugin.h>
|
sl@0
|
21 |
#include <ecam/ecaminfoplugin.h>
|
sl@0
|
22 |
#include <ecamadvsettings.h>
|
sl@0
|
23 |
#include <f32file.h>
|
sl@0
|
24 |
|
sl@0
|
25 |
_LIT(KECamUnitTestPluginName, "C:\\102070CF.txt");
|
sl@0
|
26 |
_LIT(KTestCameraPluginName, "C:\102070cc.txt");
|
sl@0
|
27 |
|
sl@0
|
28 |
#ifdef SYMBIAN_MULTIMEDIA_THREEPLANEARCH
|
sl@0
|
29 |
_LIT(KMMCameraPluginName, "C:\\mmcameraclientplugin.txt");
|
sl@0
|
30 |
#endif //SYMBIAN_MULTIMEDIA_THREEPLANEARCH
|
sl@0
|
31 |
|
sl@0
|
32 |
const TInt KECamSetAvailableCameras = 3;
|
sl@0
|
33 |
|
sl@0
|
34 |
// Implementations of the ECam plugin classes
|
sl@0
|
35 |
class CCamUnitTestPlugin : public CCameraPlugin
|
sl@0
|
36 |
{
|
sl@0
|
37 |
friend class CCamPresets;
|
sl@0
|
38 |
friend class CCamAdvSet;
|
sl@0
|
39 |
friend class CCamImgProc;
|
sl@0
|
40 |
friend class CCamManagement;
|
sl@0
|
41 |
|
sl@0
|
42 |
public:
|
sl@0
|
43 |
static CCamUnitTestPlugin* NewL();
|
sl@0
|
44 |
~CCamUnitTestPlugin();
|
sl@0
|
45 |
|
sl@0
|
46 |
protected:
|
sl@0
|
47 |
// from CCameraPlugin
|
sl@0
|
48 |
void Construct2L(MCameraObserver& aObserver,TInt aCameraIndex);
|
sl@0
|
49 |
void Construct2DupL(MCameraObserver& aObserver,TInt aCameraHandle);
|
sl@0
|
50 |
|
sl@0
|
51 |
void Construct2L(MCameraObserver2& aObserver,TInt aCameraIndex,TInt aPriority);
|
sl@0
|
52 |
void Construct2DupL(MCameraObserver2& aObserver,TInt aCameraHandle);
|
sl@0
|
53 |
|
sl@0
|
54 |
// from CCamera itself
|
sl@0
|
55 |
void CameraInfo(TCameraInfo& aInfo) const;
|
sl@0
|
56 |
void Reserve();
|
sl@0
|
57 |
void Release();
|
sl@0
|
58 |
void PowerOn();
|
sl@0
|
59 |
void PowerOff();
|
sl@0
|
60 |
TInt Handle();
|
sl@0
|
61 |
void SetZoomFactorL(TInt aZoomFactor = 0);
|
sl@0
|
62 |
TInt ZoomFactor() const;
|
sl@0
|
63 |
void SetDigitalZoomFactorL(TInt aDigitalZoomFactor = 0);
|
sl@0
|
64 |
TInt DigitalZoomFactor() const;
|
sl@0
|
65 |
void SetContrastL(TInt aContrast);
|
sl@0
|
66 |
TInt Contrast() const;
|
sl@0
|
67 |
void SetBrightnessL(TInt aBrightness);
|
sl@0
|
68 |
TInt Brightness() const;
|
sl@0
|
69 |
void SetFlashL(TFlash aFlash = EFlashNone);
|
sl@0
|
70 |
TFlash Flash() const;
|
sl@0
|
71 |
void SetExposureL(TExposure aExposure = EExposureAuto);
|
sl@0
|
72 |
TExposure Exposure() const;
|
sl@0
|
73 |
void SetWhiteBalanceL(TWhiteBalance aWhiteBalance = EWBAuto);
|
sl@0
|
74 |
TWhiteBalance WhiteBalance() const;
|
sl@0
|
75 |
void StartViewFinderDirectL(RWsSession& aWs,CWsScreenDevice& aScreenDevice,RWindowBase& aWindow,TRect& aScreenRect);
|
sl@0
|
76 |
void StartViewFinderDirectL(RWsSession& aWs,CWsScreenDevice& aScreenDevice,RWindowBase& aWindow,TRect& aScreenRect,TRect& aClipRect);
|
sl@0
|
77 |
void StartViewFinderBitmapsL(TSize& aSize);
|
sl@0
|
78 |
void StartViewFinderBitmapsL(TSize& aSize,TRect& aClipRect);
|
sl@0
|
79 |
|
sl@0
|
80 |
void StartViewFinderL(TFormat aImageFormat,TSize& aSize);
|
sl@0
|
81 |
void StartViewFinderL(TFormat aImageFormat,TSize& aSize,TRect& aClipRect);
|
sl@0
|
82 |
|
sl@0
|
83 |
void StopViewFinder();
|
sl@0
|
84 |
TBool ViewFinderActive() const;
|
sl@0
|
85 |
void SetViewFinderMirrorL(TBool aMirror);
|
sl@0
|
86 |
TBool ViewFinderMirror() const;
|
sl@0
|
87 |
void PrepareImageCaptureL(TFormat aImageFormat,TInt aSizeIndex);
|
sl@0
|
88 |
void PrepareImageCaptureL(TFormat aImageFormat,TInt aSizeIndex,const TRect& aClipRect);
|
sl@0
|
89 |
void CaptureImage();
|
sl@0
|
90 |
void CancelCaptureImage();
|
sl@0
|
91 |
void EnumerateCaptureSizes(TSize& aSize,TInt aSizeIndex,TFormat aFormat) const;
|
sl@0
|
92 |
void PrepareVideoCaptureL(TFormat aFormat,TInt aSizeIndex,TInt aRateIndex,TInt aBuffersToUse,TInt aFramesPerBuffer);
|
sl@0
|
93 |
void PrepareVideoCaptureL(TFormat aFormat,TInt aSizeIndex,TInt aRateIndex,TInt aBuffersToUse,TInt aFramesPerBuffer,const TRect& aClipRect);
|
sl@0
|
94 |
void StartVideoCapture();
|
sl@0
|
95 |
void StopVideoCapture();
|
sl@0
|
96 |
TBool VideoCaptureActive() const;
|
sl@0
|
97 |
void EnumerateVideoFrameSizes(TSize& aSize,TInt aSizeIndex,TFormat aFormat) const;
|
sl@0
|
98 |
void EnumerateVideoFrameRates(TReal32& aRate,TInt aRateIndex,TFormat aFormat,TInt aSizeIndex,TExposure aExposure = EExposureAuto) const;
|
sl@0
|
99 |
void GetFrameSize(TSize& aSize) const;
|
sl@0
|
100 |
TReal32 FrameRate() const;
|
sl@0
|
101 |
TInt BuffersInUse() const;
|
sl@0
|
102 |
TInt FramesPerBuffer() const;
|
sl@0
|
103 |
void SetJpegQuality(TInt aQuality);
|
sl@0
|
104 |
TInt JpegQuality() const;
|
sl@0
|
105 |
TAny* CustomInterface(TUid aInterface);
|
sl@0
|
106 |
|
sl@0
|
107 |
public:
|
sl@0
|
108 |
void Notify(TUid aMessageId, TInt aError);
|
sl@0
|
109 |
void Notify2(TUid aMessageId, TInt aError, TInt aParam);
|
sl@0
|
110 |
|
sl@0
|
111 |
void GenerateVFHandle(TInt& aVFHandle);
|
sl@0
|
112 |
// set presets
|
sl@0
|
113 |
//void InitPresetsL(RArray<TUid>& aPresets);
|
sl@0
|
114 |
private:
|
sl@0
|
115 |
CCamUnitTestPlugin();
|
sl@0
|
116 |
|
sl@0
|
117 |
private:
|
sl@0
|
118 |
MCameraObserver* iObserver; // not owned
|
sl@0
|
119 |
MCameraObserver2* iObserver2; // not owned
|
sl@0
|
120 |
|
sl@0
|
121 |
TInt iCameraIndex;
|
sl@0
|
122 |
TInt iCameraHandle;
|
sl@0
|
123 |
TInt iPriority;
|
sl@0
|
124 |
|
sl@0
|
125 |
RArray<TInt> iSupportedISORates;
|
sl@0
|
126 |
TInt iIsoRate;
|
sl@0
|
127 |
TInt iVFHandleGenerater;
|
sl@0
|
128 |
|
sl@0
|
129 |
public:
|
sl@0
|
130 |
// additional info
|
sl@0
|
131 |
RArray<TUid> iPresets;
|
sl@0
|
132 |
TBool iCameras[KECamSetAvailableCameras];
|
sl@0
|
133 |
CCamera::CCameraAdvancedSettings::TCameraType iCameraTypes[KECamSetAvailableCameras];
|
sl@0
|
134 |
};
|
sl@0
|
135 |
|
sl@0
|
136 |
class CCamUnitTestPluginInfo : public CCameraInfoPlugin
|
sl@0
|
137 |
{
|
sl@0
|
138 |
public:
|
sl@0
|
139 |
static CCamUnitTestPluginInfo* NewL();
|
sl@0
|
140 |
|
sl@0
|
141 |
~CCamUnitTestPluginInfo();
|
sl@0
|
142 |
|
sl@0
|
143 |
// from CCameraInfoPlugin
|
sl@0
|
144 |
TInt CamerasAvailable();
|
sl@0
|
145 |
private:
|
sl@0
|
146 |
CCamUnitTestPluginInfo();
|
sl@0
|
147 |
};
|
sl@0
|
148 |
|
sl@0
|
149 |
class CCamUnitTestPluginSecureId : public MSecureIdPlugin
|
sl@0
|
150 |
{
|
sl@0
|
151 |
public:
|
sl@0
|
152 |
static CCamUnitTestPluginSecureId* NewL();
|
sl@0
|
153 |
|
sl@0
|
154 |
~CCamUnitTestPluginSecureId();
|
sl@0
|
155 |
|
sl@0
|
156 |
// from CCameraInfoPlugin
|
sl@0
|
157 |
void Release();
|
sl@0
|
158 |
void GetSecureIdL(TInt& aSecureId) const;
|
sl@0
|
159 |
|
sl@0
|
160 |
private:
|
sl@0
|
161 |
CCamUnitTestPluginSecureId();
|
sl@0
|
162 |
};
|
sl@0
|
163 |
|
sl@0
|
164 |
enum TSetPanicReasons
|
sl@0
|
165 |
{
|
sl@0
|
166 |
EPanicUnimplemented=1
|
sl@0
|
167 |
};
|
sl@0
|
168 |
|
sl@0
|
169 |
class FileDependencyUtil
|
sl@0
|
170 |
{
|
sl@0
|
171 |
public:
|
sl@0
|
172 |
static void CheckFileDependencyL();
|
sl@0
|
173 |
};
|
sl@0
|
174 |
|
sl@0
|
175 |
#endif // ECAMUNITTESTPlUGIN_H
|