|
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 /** |
|
17 @file |
|
18 @internalTechnology |
|
19 @prototype |
|
20 */ |
|
21 #ifndef ECAMCAPTURECONTROL_CONST_H |
|
22 #define ECAMCAPTURECONTROL_CONST_H |
|
23 #ifdef SYMBIAN_ENABLE_SPLIT_HEADERS |
|
24 #include <ecamadvsettingsuidsdef.hrh> |
|
25 #endif |
|
26 /** |
|
27 Maximum number of possible focussing spots |
|
28 |
|
29 @internalTechnology |
|
30 */ |
|
31 static const TInt KMaxNumberOfFocusSpots = sizeof(TUint) * 8; |
|
32 |
|
33 /** |
|
34 Constant used to provide maximum number of total sub-frames which would re-construct the image properly. |
|
35 |
|
36 @internalTechnology |
|
37 */ |
|
38 static const TInt KECamMaxTotalSubFrames = 1024; |
|
39 |
|
40 /** |
|
41 The current Version of the TImageBufferInfo class. |
|
42 |
|
43 @internalTechnology |
|
44 */ |
|
45 static const TUint KECamImageBufferInfoCurrentVersion = 1; |
|
46 |
|
47 /** |
|
48 Notification that streamed image and hence sub-frames scheme has been enabled. |
|
49 |
|
50 @internalTechnology |
|
51 */ |
|
52 static const TUid KUidECamEventImageCaptureControlEnableSubFrames = {KUidECamEventImageCaptureControlEnableSubFramesUidValue}; |
|
53 |
|
54 /** |
|
55 Notification that streamed image and hence sub-frames scheme has been disabled. |
|
56 |
|
57 @internalTechnology |
|
58 */ |
|
59 static const TUid KUidECamEventImageCaptureControlDisableSubFrames = {KUidECamEventImageCaptureControlDisableSubFramesUidValue}; |
|
60 |
|
61 /** |
|
62 Notifies the client about the setting of color space. Camera will print or capture images in given color space. |
|
63 |
|
64 @internalTechnology |
|
65 */ |
|
66 static const TUid KUidECamEventImageCaptureControlColorSpace = {KUidECamEventImageCaptureControlColorSpaceUidValue}; |
|
67 |
|
68 /** |
|
69 Notifies the client that pano mode has been started. |
|
70 |
|
71 @internalTechnology |
|
72 */ |
|
73 static const TUid KUidECamEventImageCaptureControlStartPanoMode = {KUidECamEventImageCaptureControlStartPanoModeUidValue}; |
|
74 |
|
75 /** |
|
76 Notifies the client about the setting of Panorama direction. |
|
77 |
|
78 @internalTechnology |
|
79 */ |
|
80 static const TUid KUidECamEventImageCaptureControlPanoDirection = {KUidECamEventImageCaptureControlPanoDirectionUidValue}; |
|
81 |
|
82 /** |
|
83 Notification informing that some of the embedded still capture settings have failed. |
|
84 To retrieve the list of failed embedded still capture settings, client should use GetFailedEmbeddedStillCaptureSettingsL() |
|
85 |
|
86 @internalTechnology |
|
87 */ |
|
88 static const TUid KUidECamEventFailedEmbeddedStillCaptureSetting = {KUidECamEventFailedEmbeddedStillCaptureSettingUidValue}; |
|
89 |
|
90 /** |
|
91 Notifies the setting of fading effect for the video captured frames. |
|
92 |
|
93 @internalTechnology |
|
94 */ |
|
95 static const TUid KUidECamEventVideoCaptureControlFadingEffect = {KUidECamEventVideoCaptureControlFadingEffectUidValue}; |
|
96 |
|
97 /** |
|
98 Conversion Coefficient setting |
|
99 |
|
100 @internalTechnology |
|
101 */ |
|
102 static const TUid KUidECamEventVideoCaptureControlConversionCoefficient = {KUidECamEventVideoCaptureControlConversionCoefficientUidValue}; |
|
103 |
|
104 |
|
105 #endif //ECAMCAPTURECONTROL_CONST_H |