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 |
/**
|
sl@0
|
17 |
@file
|
sl@0
|
18 |
@publishedPartner
|
sl@0
|
19 |
@prototype
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
#ifndef ECAMVIEWFINDERINTF_H
|
sl@0
|
23 |
#define ECAMVIEWFINDERINTF_H
|
sl@0
|
24 |
|
sl@0
|
25 |
#include <ecamviewfinder.h>
|
sl@0
|
26 |
#include <ecam/ecamadvsettingsintfuids.hrh>
|
sl@0
|
27 |
|
sl@0
|
28 |
class MImplementationFactory;
|
sl@0
|
29 |
|
sl@0
|
30 |
/** This is the UID which is used to obtain the interface MCameraV2DirectViewFinder, via the
|
sl@0
|
31 |
CCamera::CustomInterface() call. */
|
sl@0
|
32 |
static const TUid KECamMCameraV2DirectViewFinderUid = {KECamMCameraV2DirectViewFinderUidValue};
|
sl@0
|
33 |
|
sl@0
|
34 |
/** This is the UID which is used to obtain the interface MCameraClientViewFinder, via the
|
sl@0
|
35 |
CCamera::CustomInterface() call. */
|
sl@0
|
36 |
static const TUid KECamMCameraClientViewFinderUid = {KECamMCameraClientViewFinderUidValue};
|
sl@0
|
37 |
|
sl@0
|
38 |
/** This is the UID which is used to obtain the interface MCameraViewFinder for v2 direct viewfinder, via the
|
sl@0
|
39 |
CCamera::CustomInterface() call. */
|
sl@0
|
40 |
static const TUid KECamMCameraBaseV2DirectViewFinderUid = {KECamMCameraBaseV2DirectViewFinderUidValue};
|
sl@0
|
41 |
|
sl@0
|
42 |
/** This is the UID which is used to obtain the interface MCameraViewFinder for client viewfinder, via the
|
sl@0
|
43 |
CCamera::CustomInterface() call. */
|
sl@0
|
44 |
static const TUid KECamMCameraBaseClientViewFinderUid = {KECamMCameraBaseClientViewFinderUidValue};
|
sl@0
|
45 |
|
sl@0
|
46 |
/**
|
sl@0
|
47 |
This is the UID which is used to obtain the MCameraDirectSnapshot interface,
|
sl@0
|
48 |
via a call to CCamera::CustomInterface(), which provides implementation of the M-class interface.
|
sl@0
|
49 |
|
sl@0
|
50 |
@see KECamMCameraDirectSnapshotUidValue
|
sl@0
|
51 |
|
sl@0
|
52 |
@publishedPartner
|
sl@0
|
53 |
@prototype
|
sl@0
|
54 |
*/
|
sl@0
|
55 |
static const TUid KECamMCameraDirectSnapshotUid = {KECamMCameraDirectSnapshotUidValue};
|
sl@0
|
56 |
|
sl@0
|
57 |
/** Mixin class for implementation of viewfinder methods common to both client and direct viewfinder. These methods will
|
sl@0
|
58 |
be called in the context of either client viewfinder or direct viewfinder.
|
sl@0
|
59 |
*/
|
sl@0
|
60 |
class MCameraViewFinder
|
sl@0
|
61 |
{
|
sl@0
|
62 |
|
sl@0
|
63 |
public:
|
sl@0
|
64 |
/**
|
sl@0
|
65 |
Releases the interface.
|
sl@0
|
66 |
*/
|
sl@0
|
67 |
virtual void Release()=0;
|
sl@0
|
68 |
|
sl@0
|
69 |
/**
|
sl@0
|
70 |
Retrieves the fading capabilites for a particular viewfinder.
|
sl@0
|
71 |
|
sl@0
|
72 |
@param aVFFadingCapabilities
|
sl@0
|
73 |
Retrieves the fading capabilities associated with the given viewfinder.
|
sl@0
|
74 |
|
sl@0
|
75 |
@leave May leave with any error code.
|
sl@0
|
76 |
|
sl@0
|
77 |
@internalTechnology
|
sl@0
|
78 |
*/
|
sl@0
|
79 |
virtual void GetViewFinderFadingCapabilitiesL(CCameraViewFinder::TViewFinderFadingCapabilities& aVFFadingCapabilities) const=0;
|
sl@0
|
80 |
|
sl@0
|
81 |
/**
|
sl@0
|
82 |
Retrieves the current fading effect/control being used for a particular viewfinder.
|
sl@0
|
83 |
|
sl@0
|
84 |
@param aCurrentVFFadingEffect
|
sl@0
|
85 |
Retrieves the fading effects associated with the given viewfinder.
|
sl@0
|
86 |
|
sl@0
|
87 |
@leave May leave with any error code.
|
sl@0
|
88 |
|
sl@0
|
89 |
@internalTechnology
|
sl@0
|
90 |
*/
|
sl@0
|
91 |
virtual void GetViewFinderFadingEffectL(CCameraViewFinder::TViewFinderFadingEffect& aCurrentVFFadingEffect) const=0;
|
sl@0
|
92 |
|
sl@0
|
93 |
/**
|
sl@0
|
94 |
Sets the fading effect/control for a particular viewfinder.
|
sl@0
|
95 |
|
sl@0
|
96 |
@param aVFFadingEffect
|
sl@0
|
97 |
The desired fading effects associated with the given viewfinder.
|
sl@0
|
98 |
|
sl@0
|
99 |
@note Event KUidECamEvent2ViewFinderFadingEffect is used to notify the requesting client about setting of the
|
sl@0
|
100 |
fading effect.
|
sl@0
|
101 |
|
sl@0
|
102 |
@internalTechnology
|
sl@0
|
103 |
*/
|
sl@0
|
104 |
virtual void SetViewFinderFadingEffect(const CCameraViewFinder::TViewFinderFadingEffect& aVFFadingEffect)=0;
|
sl@0
|
105 |
|
sl@0
|
106 |
/**
|
sl@0
|
107 |
Retrieves the handle number which represents the given viewfinder object.
|
sl@0
|
108 |
|
sl@0
|
109 |
@param aVFHandle
|
sl@0
|
110 |
The viewfinder handle
|
sl@0
|
111 |
|
sl@0
|
112 |
@leave May leave with any error code.
|
sl@0
|
113 |
|
sl@0
|
114 |
@note KECamDefaultViewFinderHandle is used to refer to the viewfinder started using CCamera methods.
|
sl@0
|
115 |
*/
|
sl@0
|
116 |
virtual void GetViewFinderHandleL(TInt& aVFHandle) const=0;
|
sl@0
|
117 |
};
|
sl@0
|
118 |
|
sl@0
|
119 |
/**
|
sl@0
|
120 |
Mixin class for implementation of CCameraV2DirectViewFinder methods.
|
sl@0
|
121 |
*/
|
sl@0
|
122 |
class MCameraV2DirectViewFinder
|
sl@0
|
123 |
{
|
sl@0
|
124 |
|
sl@0
|
125 |
public:
|
sl@0
|
126 |
|
sl@0
|
127 |
/**
|
sl@0
|
128 |
Releases the interface.
|
sl@0
|
129 |
|
sl@0
|
130 |
@param aDirectViewFinderHandle
|
sl@0
|
131 |
The pointer to the direct viewfinder class object which would be destroyed by the client.
|
sl@0
|
132 |
*/
|
sl@0
|
133 |
virtual void Release(CCamera::CCameraV2DirectViewFinder* aDirectViewFinderHandle)=0;
|
sl@0
|
134 |
|
sl@0
|
135 |
/**
|
sl@0
|
136 |
Retrieves the concrete factory handle for the histogram implementation in order to
|
sl@0
|
137 |
use it specifically for a particular viewfinder.
|
sl@0
|
138 |
|
sl@0
|
139 |
@param aImplFactoryPtr
|
sl@0
|
140 |
The concrete factory handle for the histogram implementation specific to the given view finder.
|
sl@0
|
141 |
|
sl@0
|
142 |
@leave May leave with any error code.
|
sl@0
|
143 |
*/
|
sl@0
|
144 |
virtual void CreateHistogramImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const=0;
|
sl@0
|
145 |
|
sl@0
|
146 |
/**
|
sl@0
|
147 |
Retrieves the concrete factory handle for the image processing implementation in order to
|
sl@0
|
148 |
use it specifically for a particular viewfinder.
|
sl@0
|
149 |
|
sl@0
|
150 |
@param aImplFactoryPtr
|
sl@0
|
151 |
The concrete factory handle for the image processing implementation specific to the given view finder.
|
sl@0
|
152 |
|
sl@0
|
153 |
@leave May leave with any error code.
|
sl@0
|
154 |
*/
|
sl@0
|
155 |
virtual void GetImageProcessingImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const=0;
|
sl@0
|
156 |
|
sl@0
|
157 |
/**
|
sl@0
|
158 |
Provides the interface pointers for the concrete implementation of CCameraDirectSnapshot.
|
sl@0
|
159 |
|
sl@0
|
160 |
@param aInterface
|
sl@0
|
161 |
Interface uid for a particular M-class of direct snapshot.
|
sl@0
|
162 |
|
sl@0
|
163 |
@return Interface pointer.
|
sl@0
|
164 |
*/
|
sl@0
|
165 |
virtual TAny* GetDirectSnapshotImpl(TUid aInterface) const=0;
|
sl@0
|
166 |
|
sl@0
|
167 |
/**
|
sl@0
|
168 |
The observer for the direct view finder is passed to the implementation for passing callbacks on it.
|
sl@0
|
169 |
|
sl@0
|
170 |
@param aDirectViewFinderObserver
|
sl@0
|
171 |
The reference to the direct view finder observer.
|
sl@0
|
172 |
*/
|
sl@0
|
173 |
virtual void SetDirectViewFinderObserver(MDirectViewFinderObserver& aDirectViewFinderObserver)=0;
|
sl@0
|
174 |
|
sl@0
|
175 |
/**
|
sl@0
|
176 |
The pointer to the client view finder class used to pass back to the client via observer callbacks. Implementation is
|
sl@0
|
177 |
not supposed to destroy this object.
|
sl@0
|
178 |
|
sl@0
|
179 |
@param aDirectViewFinderHandle
|
sl@0
|
180 |
The pointer to the direct view finder class object.
|
sl@0
|
181 |
|
sl@0
|
182 |
@see MDirectViewFinderObserver
|
sl@0
|
183 |
*/
|
sl@0
|
184 |
virtual void SetDirectViewFinderHandle(CCamera::CCameraV2DirectViewFinder* aDirectViewFinderHandle)=0;
|
sl@0
|
185 |
|
sl@0
|
186 |
/**
|
sl@0
|
187 |
Creates a new viewfinder and starts transfer of view finder data to the given portion of the screen using direct
|
sl@0
|
188 |
screen access.
|
sl@0
|
189 |
|
sl@0
|
190 |
The aScreenRect parameter is in screen coordinates and may be modified if,
|
sl@0
|
191 |
for example, the camera requires the destination to have a certain byte alignment, and so on.
|
sl@0
|
192 |
|
sl@0
|
193 |
@param aWs
|
sl@0
|
194 |
Window server session.
|
sl@0
|
195 |
@param aScreenDevice
|
sl@0
|
196 |
Screen device.
|
sl@0
|
197 |
@param aWindow
|
sl@0
|
198 |
Displayable window.
|
sl@0
|
199 |
@param aScreenRect
|
sl@0
|
200 |
Portion of the screen to which view finder data is to be
|
sl@0
|
201 |
transferred. This is in screen co-ordinates and may be modified if, for example,
|
sl@0
|
202 |
the camera requires the destination to have a certain byte alignment.
|
sl@0
|
203 |
|
sl@0
|
204 |
@leave KErrInUse if another direct viewfinder is running with the same set of window parameters. May leave with any other error code.
|
sl@0
|
205 |
|
sl@0
|
206 |
@note MDirectViewFinderObserver::DirectViewFinderFirstFrameDisplayed() will be used to notify clients that the first
|
sl@0
|
207 |
frame has been displayed.
|
sl@0
|
208 |
*/
|
sl@0
|
209 |
virtual void StartViewFinderDirectL(RWsSession& aWs, CWsScreenDevice& aScreenDevice, RWindowBase& aWindow, TRect& aScreenRect)=0;
|
sl@0
|
210 |
|
sl@0
|
211 |
/**
|
sl@0
|
212 |
Creates a new viewfinder and starts transfer of view finder data to the given portion of the screen using direct screen
|
sl@0
|
213 |
access and also clips to the specified portion of the screen.
|
sl@0
|
214 |
|
sl@0
|
215 |
The view finder has the same size and position as aScreenRect but is only
|
sl@0
|
216 |
visible in the intersection of aScreenRect and aClipRect. May leave with KErrNotSupported
|
sl@0
|
217 |
or KErrNotReady if Reserve() has not been called, or has not yet completed.
|
sl@0
|
218 |
|
sl@0
|
219 |
@param aWs
|
sl@0
|
220 |
Window server session.
|
sl@0
|
221 |
@param aScreenDevice
|
sl@0
|
222 |
Screen device.
|
sl@0
|
223 |
@param aWindow
|
sl@0
|
224 |
Displayable window.
|
sl@0
|
225 |
@param aScreenRect
|
sl@0
|
226 |
Portion of the screen to which view finder data is to be
|
sl@0
|
227 |
transferred. This is in screen coordinates and may be modified if, for example,
|
sl@0
|
228 |
the camera requires the destination to have a certain byte alignment.
|
sl@0
|
229 |
@param aClipRect
|
sl@0
|
230 |
The rectangle to which the screen will be clipped.
|
sl@0
|
231 |
|
sl@0
|
232 |
@leave KErrInUse if another direct viewfinder is running with the same set of window parameters. May leave with any other error code.
|
sl@0
|
233 |
|
sl@0
|
234 |
@note MDirectViewFinderObserver::DirectViewFinderFirstFrameDisplayed() will be used to notify clients that the first
|
sl@0
|
235 |
frame has been displayed.
|
sl@0
|
236 |
*/
|
sl@0
|
237 |
virtual void StartViewFinderDirectL(RWsSession& aWs, CWsScreenDevice& aScreenDevice,
|
sl@0
|
238 |
RWindowBase& aWindow, TRect& aScreenRect, TRect& aClipRect)=0;
|
sl@0
|
239 |
|
sl@0
|
240 |
/**
|
sl@0
|
241 |
Retrieves the parameters associated with the direct viewfinder.
|
sl@0
|
242 |
|
sl@0
|
243 |
@param aScreenNumber
|
sl@0
|
244 |
Retrieves the screen number on which the direct viewfinder is supposed to run.
|
sl@0
|
245 |
|
sl@0
|
246 |
@param aScreenRect
|
sl@0
|
247 |
Retrieves the TRect which identifies the portion of the screen to which view finder data is to be transferred.
|
sl@0
|
248 |
|
sl@0
|
249 |
@param aClipRect
|
sl@0
|
250 |
Retrieves the TRect which identifies the rectangle to which the screen will be clipped.
|
sl@0
|
251 |
|
sl@0
|
252 |
@leave May leave with any error code.
|
sl@0
|
253 |
*/
|
sl@0
|
254 |
virtual void GetDirectViewFinderPropertiesL(TInt& aScreenNumber, TRect& aScreenRect, TRect& aClipRect) const=0;
|
sl@0
|
255 |
|
sl@0
|
256 |
/**
|
sl@0
|
257 |
Pauses the direct viewfinder.
|
sl@0
|
258 |
*/
|
sl@0
|
259 |
virtual void PauseViewFinderDirect()=0;
|
sl@0
|
260 |
|
sl@0
|
261 |
/**
|
sl@0
|
262 |
Resumes the direct viewfinder
|
sl@0
|
263 |
|
sl@0
|
264 |
@note MDirectViewFinderObserver::DirectViewFinderFirstFrameDisplayed() will be used to notify clients that the first
|
sl@0
|
265 |
frame has been displayed.
|
sl@0
|
266 |
*/
|
sl@0
|
267 |
virtual void ResumeViewFinderDirect()=0;
|
sl@0
|
268 |
|
sl@0
|
269 |
/**
|
sl@0
|
270 |
Retrieves the state of the direct viewfinder.
|
sl@0
|
271 |
|
sl@0
|
272 |
@param aViewFinderState
|
sl@0
|
273 |
Retrieves the state of the direct viewfinder.
|
sl@0
|
274 |
|
sl@0
|
275 |
@leave May leave with any error code.
|
sl@0
|
276 |
*/
|
sl@0
|
277 |
virtual void GetViewFinderStateL(CCamera::CCameraV2DirectViewFinder::TViewFinderState& aViewFinderState) const=0;
|
sl@0
|
278 |
|
sl@0
|
279 |
/**
|
sl@0
|
280 |
Stops the direct viewfinder.
|
sl@0
|
281 |
*/
|
sl@0
|
282 |
virtual void StopDirectViewFinder()=0;
|
sl@0
|
283 |
};
|
sl@0
|
284 |
|
sl@0
|
285 |
/**
|
sl@0
|
286 |
Mixin class for implementation of camera client viewfinder.
|
sl@0
|
287 |
*/
|
sl@0
|
288 |
class MCameraClientViewFinder
|
sl@0
|
289 |
{
|
sl@0
|
290 |
|
sl@0
|
291 |
public:
|
sl@0
|
292 |
|
sl@0
|
293 |
/**
|
sl@0
|
294 |
Releases the interface.
|
sl@0
|
295 |
|
sl@0
|
296 |
@param aClientViewFinderHandle
|
sl@0
|
297 |
The pointer to the client viewfinder class object which would be destroyed by the client.
|
sl@0
|
298 |
*/
|
sl@0
|
299 |
virtual void Release(CCamera::CCameraClientViewFinder* aClientViewFinderHandle)=0;
|
sl@0
|
300 |
|
sl@0
|
301 |
/**
|
sl@0
|
302 |
Retrieves the concrete factory handle for the histogram implementation in order to
|
sl@0
|
303 |
use it specifically for a particular viewfinder.
|
sl@0
|
304 |
|
sl@0
|
305 |
@param aImplFactoryPtr
|
sl@0
|
306 |
The concrete factory handle for the histogram implementation specific to the given view finder.
|
sl@0
|
307 |
|
sl@0
|
308 |
@leave May leave with any error code.
|
sl@0
|
309 |
*/
|
sl@0
|
310 |
virtual void CreateHistogramImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const=0;
|
sl@0
|
311 |
|
sl@0
|
312 |
/**
|
sl@0
|
313 |
Retrieves the concrete factory handle for the image processing implementation in order to
|
sl@0
|
314 |
use it specifically for a particular viewfinder.
|
sl@0
|
315 |
|
sl@0
|
316 |
@param aImplFactoryPtr
|
sl@0
|
317 |
The concrete factory handle for the image processing implementation specific to the given view finder.
|
sl@0
|
318 |
|
sl@0
|
319 |
@leave May leave with any error code.
|
sl@0
|
320 |
*/
|
sl@0
|
321 |
virtual void GetImageProcessingImplFactoryL(MImplementationFactory*& aImplFactoryPtr) const=0;
|
sl@0
|
322 |
|
sl@0
|
323 |
/**
|
sl@0
|
324 |
The observer for the client view finder is passed to the implementation for passing callbacks on it.
|
sl@0
|
325 |
|
sl@0
|
326 |
@param aClientViewFinderObserver
|
sl@0
|
327 |
The reference to the client view finder observer.
|
sl@0
|
328 |
*/
|
sl@0
|
329 |
virtual void SetClientViewFinderObserver(MClientViewFinderObserver& aClientViewFinderObserver)=0;
|
sl@0
|
330 |
|
sl@0
|
331 |
/**
|
sl@0
|
332 |
The pointer to the client view finder class used to pass back to the client via observer callbacks. Implementation is
|
sl@0
|
333 |
not supposed to destroy this object.
|
sl@0
|
334 |
|
sl@0
|
335 |
@param aClientViewFinderObserver
|
sl@0
|
336 |
The pointer to the client view finder class object.
|
sl@0
|
337 |
|
sl@0
|
338 |
@see MClientViewFinderObserver
|
sl@0
|
339 |
*/
|
sl@0
|
340 |
virtual void SetClientViewFinderHandle(CCamera::CCameraClientViewFinder* aClientViewFinderHandle)=0;
|
sl@0
|
341 |
|
sl@0
|
342 |
/**
|
sl@0
|
343 |
Creates a new viewfinder and starts transfer of view finder data.
|
sl@0
|
344 |
|
sl@0
|
345 |
Availability of viewfinder data is notified by MClientViewFinderObserver::ViewFinderBufferReady().
|
sl@0
|
346 |
|
sl@0
|
347 |
@param aScreenNumber
|
sl@0
|
348 |
The screen number on which the client viewfinder is supposed to run.
|
sl@0
|
349 |
@param aImageFormat
|
sl@0
|
350 |
The image format requested by the client.
|
sl@0
|
351 |
@param aSize
|
sl@0
|
352 |
On return, the size used. The size may be modified by the implementation because of hardware constraints and
|
sl@0
|
353 |
byte alignment.
|
sl@0
|
354 |
|
sl@0
|
355 |
@leave May leave with any error code.
|
sl@0
|
356 |
|
sl@0
|
357 |
@note KECamDefaultViewFinderHandle is used to refer to the viewfinder started using CCamera methods.
|
sl@0
|
358 |
|
sl@0
|
359 |
@see CCamera::StartViewFinderL(TFormat aImageFormat,TSize& aSize)
|
sl@0
|
360 |
*/
|
sl@0
|
361 |
virtual void StartClientViewFinderL(TInt aScreenNumber, CCamera::TFormat aImageFormat, TSize& aSize)=0;
|
sl@0
|
362 |
|
sl@0
|
363 |
/**
|
sl@0
|
364 |
Creates a new viewfinder and starts transfer of view finder data. Also, clips the picture to the specified clip rectangle.
|
sl@0
|
365 |
|
sl@0
|
366 |
Availability of viewfinder data is notified by MClientViewFinderObserver::ViewFinderBufferReady().
|
sl@0
|
367 |
|
sl@0
|
368 |
The picture is the size of the intersection of aSize and aClipRect, not simply
|
sl@0
|
369 |
aSize padded with white space.
|
sl@0
|
370 |
|
sl@0
|
371 |
@param aScreenNumber
|
sl@0
|
372 |
The screen number on which the client viewfinder is supposed to run.
|
sl@0
|
373 |
@param aImageFormat
|
sl@0
|
374 |
The image format.
|
sl@0
|
375 |
@param aSize
|
sl@0
|
376 |
On return, the size used. The size may be modified by the implementation because of hardware constraints and
|
sl@0
|
377 |
byte alignment.
|
sl@0
|
378 |
@param aClipRect
|
sl@0
|
379 |
Required clip rectangle. May be modified if, for example,
|
sl@0
|
380 |
the camera only supports certain byte alignments.
|
sl@0
|
381 |
|
sl@0
|
382 |
@leave May leave with any error code.
|
sl@0
|
383 |
|
sl@0
|
384 |
@note KECamDefaultViewFinderHandle is used to refer viewfinder started using CCamera methods.
|
sl@0
|
385 |
|
sl@0
|
386 |
@see CCamera::StartViewFinderL(TFormat aImageFormat,TSize& aSize,TRect& aClipRect)
|
sl@0
|
387 |
*/
|
sl@0
|
388 |
virtual void StartClientViewFinderL(TInt aScreenNumber, CCamera::TFormat aImageFormat, TSize& aSize, TRect& aClipRect)=0;
|
sl@0
|
389 |
|
sl@0
|
390 |
/**
|
sl@0
|
391 |
Retrieves the state of the client viewfinder.
|
sl@0
|
392 |
|
sl@0
|
393 |
@param aIsActive
|
sl@0
|
394 |
ETrue indicates that client viewfinder is active.
|
sl@0
|
395 |
EFalse indicates that client viewfinder is not active.
|
sl@0
|
396 |
|
sl@0
|
397 |
@leave May leave with any error code.
|
sl@0
|
398 |
*/
|
sl@0
|
399 |
virtual void GetClientViewFinderStateL(TBool& aIsActive) const=0;
|
sl@0
|
400 |
|
sl@0
|
401 |
/**
|
sl@0
|
402 |
Retrieves the parameters associated with the client viewfinder.
|
sl@0
|
403 |
|
sl@0
|
404 |
@param aScreenNumber
|
sl@0
|
405 |
Retrieves the screen number on which the client viewfinder is supposed to run.
|
sl@0
|
406 |
|
sl@0
|
407 |
@param aImageFormat
|
sl@0
|
408 |
Retrieves the image format of the client viewfinder.
|
sl@0
|
409 |
|
sl@0
|
410 |
@param aSize
|
sl@0
|
411 |
Retrieves the size used for the client viewfinder.
|
sl@0
|
412 |
|
sl@0
|
413 |
@param aClipRect
|
sl@0
|
414 |
Retrieves the clip rectangle. If not specified, the clipping is retrieved as a TRect having origin as top left
|
sl@0
|
415 |
corner and the size as 'aSize'.
|
sl@0
|
416 |
|
sl@0
|
417 |
@leave May leave with any error code.
|
sl@0
|
418 |
*/
|
sl@0
|
419 |
virtual void GetClientViewFinderPropertiesL(TInt& aScreenNumber, CCamera::TFormat& aImageFormat, TSize& aSize, TRect& aClipRect) const=0;
|
sl@0
|
420 |
|
sl@0
|
421 |
/**
|
sl@0
|
422 |
Stop the client viewfinder.
|
sl@0
|
423 |
*/
|
sl@0
|
424 |
virtual void StopClientViewFinder()=0;
|
sl@0
|
425 |
|
sl@0
|
426 |
/**
|
sl@0
|
427 |
Retrieves the client viewfinder buffer. Client calls this method after being notified about availability of viewfinder
|
sl@0
|
428 |
data via MClientViewFinderObserver::ViewFinderBufferReady().
|
sl@0
|
429 |
|
sl@0
|
430 |
@param aClientViewFinderBuffer
|
sl@0
|
431 |
Reference to MCameraBuffer2 which retrieves the client viewfinder data.
|
sl@0
|
432 |
|
sl@0
|
433 |
@leave May leave with any error code.
|
sl@0
|
434 |
*/
|
sl@0
|
435 |
virtual void GetViewFinderBufferL(MCameraBuffer2& aClientViewFinderBuffer) const=0;
|
sl@0
|
436 |
};
|
sl@0
|
437 |
|
sl@0
|
438 |
/**
|
sl@0
|
439 |
This is a mixin class to be implemented by providers of the extension API for camera direct snapshot.
|
sl@0
|
440 |
|
sl@0
|
441 |
@see CCamera::CCameraDirectSnapshot
|
sl@0
|
442 |
|
sl@0
|
443 |
@publishedPartner
|
sl@0
|
444 |
@prototype
|
sl@0
|
445 |
*/
|
sl@0
|
446 |
class MCameraDirectSnapshot
|
sl@0
|
447 |
{
|
sl@0
|
448 |
|
sl@0
|
449 |
public:
|
sl@0
|
450 |
/**
|
sl@0
|
451 |
Releases the interface.
|
sl@0
|
452 |
*/
|
sl@0
|
453 |
virtual void Release()=0;
|
sl@0
|
454 |
|
sl@0
|
455 |
/**
|
sl@0
|
456 |
Sets the version2 direct viewfinder object out of which this direct snapshot has been created. This is called only
|
sl@0
|
457 |
during the creation time of CCameraDirectSnapshot.
|
sl@0
|
458 |
|
sl@0
|
459 |
@param aDirectViewFinder
|
sl@0
|
460 |
A pointer to the camera version2 direct viewfinder object on which the direct snapshot will be displayed.
|
sl@0
|
461 |
*/
|
sl@0
|
462 |
virtual void SetDirectViewFinder(const CCamera::CCameraV2DirectViewFinder* aDirectViewFinder)=0;
|
sl@0
|
463 |
|
sl@0
|
464 |
/**
|
sl@0
|
465 |
Retrieve the version2 direct viewfinder object out of which this direct snapshot has been created. This information
|
sl@0
|
466 |
may be required by the client in order to map the direct snapshot object with its parent version2 direct viewfinder
|
sl@0
|
467 |
object or also to retrieve properties of its parent version2 direct viewfinder object.
|
sl@0
|
468 |
|
sl@0
|
469 |
@param aDirectViewFinder
|
sl@0
|
470 |
A pointer to the camera version2 direct viewfinder object on which the direct snapshot will be displayed.
|
sl@0
|
471 |
|
sl@0
|
472 |
@leave May leave with any error code.
|
sl@0
|
473 |
*/
|
sl@0
|
474 |
virtual void GetDirectViewFinderL(CCamera::CCameraV2DirectViewFinder*& aDirectViewFinder) const=0;
|
sl@0
|
475 |
|
sl@0
|
476 |
/**
|
sl@0
|
477 |
Enable the direct snapshot. The direct snapshot will be displayed on the parent direct viewfinder screen. The screen
|
sl@0
|
478 |
size of the snapshot will be the same as that of the parent direct viewfinder screen.
|
sl@0
|
479 |
|
sl@0
|
480 |
The direct snapshot can be displayed only for still images.
|
sl@0
|
481 |
|
sl@0
|
482 |
@param aDirectSnapshotParameters
|
sl@0
|
483 |
The desired direct snapshot parameter.
|
sl@0
|
484 |
|
sl@0
|
485 |
@leave MAy leave with any error code.
|
sl@0
|
486 |
*/
|
sl@0
|
487 |
virtual void EnableDirectSnapshotL(CCamera::CCameraDirectSnapshot::TDirectSnapshotParameters& aDirectSnapshotParameters)=0;
|
sl@0
|
488 |
|
sl@0
|
489 |
/**
|
sl@0
|
490 |
Disable the direct snapshot. The direct snapshot will not be displayed on the parent direct viewfinder screen.
|
sl@0
|
491 |
*/
|
sl@0
|
492 |
virtual void DisableDirectSnapshot()=0;
|
sl@0
|
493 |
|
sl@0
|
494 |
/**
|
sl@0
|
495 |
Retrieves the current state for direct snapshot.
|
sl@0
|
496 |
|
sl@0
|
497 |
@param aDirectSnapshotParameters
|
sl@0
|
498 |
Retrieves the current state for direct snapshot.
|
sl@0
|
499 |
|
sl@0
|
500 |
@leave May leave with any error code.
|
sl@0
|
501 |
*/
|
sl@0
|
502 |
virtual void GetDirectSnapshotStateL(CCamera::CCameraDirectSnapshot::TDirectSnapshotState& aDirectSnapshotState) const=0;
|
sl@0
|
503 |
|
sl@0
|
504 |
/**
|
sl@0
|
505 |
Retrieves the direct snapshot parameters.
|
sl@0
|
506 |
|
sl@0
|
507 |
@param aDirectSnapshotParameters
|
sl@0
|
508 |
Retrieves the direct snapshot parameter of type TDirectSnapshotParameters.
|
sl@0
|
509 |
|
sl@0
|
510 |
@leave May leave with any error code.
|
sl@0
|
511 |
*/
|
sl@0
|
512 |
virtual void GetDirectSnapshotParametersL(CCamera::CCameraDirectSnapshot::TDirectSnapshotParameters& aDirectSnapshotParameters) const=0;
|
sl@0
|
513 |
|
sl@0
|
514 |
/**
|
sl@0
|
515 |
Sets the direct snapshot parameters.
|
sl@0
|
516 |
|
sl@0
|
517 |
@param aDirectSnapshotParameters
|
sl@0
|
518 |
The desired direct snapshot parameter of type TDirectSnapshotParameters.
|
sl@0
|
519 |
|
sl@0
|
520 |
@leave May leave with any error code.
|
sl@0
|
521 |
*/
|
sl@0
|
522 |
virtual void SetDirectSnapshotParametersL(const CCamera::CCameraDirectSnapshot::TDirectSnapshotParameters& aDirectSnapshotParameters)=0;
|
sl@0
|
523 |
};
|
sl@0
|
524 |
|
sl@0
|
525 |
#endif // ECAMVIEWFINDERINTF_H
|