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 |
@internalTechnology
|
sl@0
|
19 |
@prototype
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
#ifndef ECAMCAPTURECONTROL_CONST_H
|
sl@0
|
22 |
#define ECAMCAPTURECONTROL_CONST_H
|
sl@0
|
23 |
#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
|
sl@0
|
24 |
#include <ecamadvsettingsuidsdef.hrh>
|
sl@0
|
25 |
#endif
|
sl@0
|
26 |
/**
|
sl@0
|
27 |
Maximum number of possible focussing spots
|
sl@0
|
28 |
|
sl@0
|
29 |
@internalTechnology
|
sl@0
|
30 |
*/
|
sl@0
|
31 |
static const TInt KMaxNumberOfFocusSpots = sizeof(TUint) * 8;
|
sl@0
|
32 |
|
sl@0
|
33 |
/**
|
sl@0
|
34 |
Constant used to provide maximum number of total sub-frames which would re-construct the image properly.
|
sl@0
|
35 |
|
sl@0
|
36 |
@internalTechnology
|
sl@0
|
37 |
*/
|
sl@0
|
38 |
static const TInt KECamMaxTotalSubFrames = 1024;
|
sl@0
|
39 |
|
sl@0
|
40 |
/**
|
sl@0
|
41 |
The current Version of the TImageBufferInfo class.
|
sl@0
|
42 |
|
sl@0
|
43 |
@internalTechnology
|
sl@0
|
44 |
*/
|
sl@0
|
45 |
static const TUint KECamImageBufferInfoCurrentVersion = 1;
|
sl@0
|
46 |
|
sl@0
|
47 |
/**
|
sl@0
|
48 |
Notification that streamed image and hence sub-frames scheme has been enabled.
|
sl@0
|
49 |
|
sl@0
|
50 |
@internalTechnology
|
sl@0
|
51 |
*/
|
sl@0
|
52 |
static const TUid KUidECamEventImageCaptureControlEnableSubFrames = {KUidECamEventImageCaptureControlEnableSubFramesUidValue};
|
sl@0
|
53 |
|
sl@0
|
54 |
/**
|
sl@0
|
55 |
Notification that streamed image and hence sub-frames scheme has been disabled.
|
sl@0
|
56 |
|
sl@0
|
57 |
@internalTechnology
|
sl@0
|
58 |
*/
|
sl@0
|
59 |
static const TUid KUidECamEventImageCaptureControlDisableSubFrames = {KUidECamEventImageCaptureControlDisableSubFramesUidValue};
|
sl@0
|
60 |
|
sl@0
|
61 |
/**
|
sl@0
|
62 |
Notifies the client about the setting of color space. Camera will print or capture images in given color space.
|
sl@0
|
63 |
|
sl@0
|
64 |
@internalTechnology
|
sl@0
|
65 |
*/
|
sl@0
|
66 |
static const TUid KUidECamEventImageCaptureControlColorSpace = {KUidECamEventImageCaptureControlColorSpaceUidValue};
|
sl@0
|
67 |
|
sl@0
|
68 |
/**
|
sl@0
|
69 |
Notifies the client that pano mode has been started.
|
sl@0
|
70 |
|
sl@0
|
71 |
@internalTechnology
|
sl@0
|
72 |
*/
|
sl@0
|
73 |
static const TUid KUidECamEventImageCaptureControlStartPanoMode = {KUidECamEventImageCaptureControlStartPanoModeUidValue};
|
sl@0
|
74 |
|
sl@0
|
75 |
/**
|
sl@0
|
76 |
Notifies the client about the setting of Panorama direction.
|
sl@0
|
77 |
|
sl@0
|
78 |
@internalTechnology
|
sl@0
|
79 |
*/
|
sl@0
|
80 |
static const TUid KUidECamEventImageCaptureControlPanoDirection = {KUidECamEventImageCaptureControlPanoDirectionUidValue};
|
sl@0
|
81 |
|
sl@0
|
82 |
/**
|
sl@0
|
83 |
Notification informing that some of the embedded still capture settings have failed.
|
sl@0
|
84 |
To retrieve the list of failed embedded still capture settings, client should use GetFailedEmbeddedStillCaptureSettingsL()
|
sl@0
|
85 |
|
sl@0
|
86 |
@internalTechnology
|
sl@0
|
87 |
*/
|
sl@0
|
88 |
static const TUid KUidECamEventFailedEmbeddedStillCaptureSetting = {KUidECamEventFailedEmbeddedStillCaptureSettingUidValue};
|
sl@0
|
89 |
|
sl@0
|
90 |
/**
|
sl@0
|
91 |
Notifies the setting of fading effect for the video captured frames.
|
sl@0
|
92 |
|
sl@0
|
93 |
@internalTechnology
|
sl@0
|
94 |
*/
|
sl@0
|
95 |
static const TUid KUidECamEventVideoCaptureControlFadingEffect = {KUidECamEventVideoCaptureControlFadingEffectUidValue};
|
sl@0
|
96 |
|
sl@0
|
97 |
/**
|
sl@0
|
98 |
Conversion Coefficient setting
|
sl@0
|
99 |
|
sl@0
|
100 |
@internalTechnology
|
sl@0
|
101 |
*/
|
sl@0
|
102 |
static const TUid KUidECamEventVideoCaptureControlConversionCoefficient = {KUidECamEventVideoCaptureControlConversionCoefficientUidValue};
|
sl@0
|
103 |
|
sl@0
|
104 |
|
sl@0
|
105 |
#endif //ECAMCAPTURECONTROL_CONST_H
|