sl@0
|
1 |
// Copyright (c) 2005-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 |
@released
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
#ifndef ECAMADVSETTINGS_CONST_H
|
sl@0
|
22 |
#define ECAMADVSETTINGS_CONST_H
|
sl@0
|
23 |
|
sl@0
|
24 |
#include <ecamadvsettingsuids.hrh>
|
sl@0
|
25 |
#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
|
sl@0
|
26 |
#include <ecamadvsettingsuidsconst.hrh>
|
sl@0
|
27 |
#endif
|
sl@0
|
28 |
|
sl@0
|
29 |
|
sl@0
|
30 |
/**
|
sl@0
|
31 |
Notifies the client that continuous zoom limit has been reached.
|
sl@0
|
32 |
|
sl@0
|
33 |
This TUid is available from the following methods only to the API clients using CCamera::New2L() or CCamera::NewDuplicate2L():
|
sl@0
|
34 |
void CCamera::CCameraAdvancedSettings::GetSupportedSettingsL(RArray<TUid>& aSettings) const;
|
sl@0
|
35 |
void CCamera::CCameraAdvancedSettings::GetActiveSettingsL(RArray<TUid>& aActiveSettings) const;
|
sl@0
|
36 |
void CCamera::CCameraAdvancedSettings::GetDisabledSettingsL(RArray<TUid>& aDisabledSettings) const;
|
sl@0
|
37 |
|
sl@0
|
38 |
@publishedPartner
|
sl@0
|
39 |
@prototype
|
sl@0
|
40 |
*/
|
sl@0
|
41 |
static const TUid KUidECamEventCameraSettingContinuousZoomReachedLimit = {KUidECamEventCameraSettingContinuousZoomReachedLimitUidValue};
|
sl@0
|
42 |
|
sl@0
|
43 |
/**
|
sl@0
|
44 |
Notifies the client about the setting of performance operation preference.
|
sl@0
|
45 |
|
sl@0
|
46 |
This TUid is available from the following methods only to the API clients using CCamera::New2L() or CCamera::NewDuplicate2L():
|
sl@0
|
47 |
void CCamera::CCameraAdvancedSettings::GetSupportedSettingsL(RArray<TUid>& aSettings) const;
|
sl@0
|
48 |
void CCamera::CCameraAdvancedSettings::GetActiveSettingsL(RArray<TUid>& aActiveSettings) const;
|
sl@0
|
49 |
void CCamera::CCameraAdvancedSettings::GetDisabledSettingsL(RArray<TUid>& aDisabledSettings) const;
|
sl@0
|
50 |
|
sl@0
|
51 |
@publishedPartner
|
sl@0
|
52 |
@prototype
|
sl@0
|
53 |
*/
|
sl@0
|
54 |
static const TUid KUidECamEventCameraSettingOperationPreference = {KUidECamEventCameraSettingOperationPreferenceUidValue};
|
sl@0
|
55 |
|
sl@0
|
56 |
|
sl@0
|
57 |
|
sl@0
|
58 |
/**
|
sl@0
|
59 |
Used to for video telephony.
|
sl@0
|
60 |
|
sl@0
|
61 |
This uid value is available from the 'supported' or 'getter' methods only to the API clients using CCamera::New2L() or
|
sl@0
|
62 |
CCamera::NewDuplicate2L().
|
sl@0
|
63 |
|
sl@0
|
64 |
@publishedPartner
|
sl@0
|
65 |
@prototype
|
sl@0
|
66 |
*/
|
sl@0
|
67 |
static const TUid KUidECamPresetVideoTelephony = {KUidECamPresetVideoTelephonyUidValue};
|
sl@0
|
68 |
|
sl@0
|
69 |
/**
|
sl@0
|
70 |
Used to clarify that camera is not under any preset mode. Possible scenario: client sets camera in a particular preset
|
sl@0
|
71 |
mode and then makes some setting changes on top of it. Then theoretically camera is out of that preset. Hence,
|
sl@0
|
72 |
KUidECamPresetNone will be used in such cases.
|
sl@0
|
73 |
|
sl@0
|
74 |
This uid value is available from the 'supported' or 'getter' methods only to the API clients using CCamera::New2L() or
|
sl@0
|
75 |
CCamera::NewDuplicate2L().
|
sl@0
|
76 |
|
sl@0
|
77 |
@publishedPartner
|
sl@0
|
78 |
@prototype
|
sl@0
|
79 |
*/
|
sl@0
|
80 |
static const TUid KUidECamPresetNone = {KUidECamPresetNoneUidValue};
|
sl@0
|
81 |
|
sl@0
|
82 |
/** Notifications related to presets */
|
sl@0
|
83 |
/**
|
sl@0
|
84 |
Used to notify clients about possible range restrictions, when camera works under a particular preset mode.
|
sl@0
|
85 |
This is not a particular preset uid.
|
sl@0
|
86 |
|
sl@0
|
87 |
@note Call CCamera::CCameraPresets::GetRangeRestrictedSettingsL(RArray<TUid>& aRangeRestrictedSettings) to retrieve
|
sl@0
|
88 |
the list of settings whose range have been restricted.
|
sl@0
|
89 |
|
sl@0
|
90 |
@publishedPartner
|
sl@0
|
91 |
@prototype
|
sl@0
|
92 |
*/
|
sl@0
|
93 |
static const TUid KUidECamEventRangeRestricted = {KUidECamEventRangeRestrictedUidValue};
|
sl@0
|
94 |
|
sl@0
|
95 |
/**
|
sl@0
|
96 |
Used to notify clients about possible feature restrictions, when camera works under a particular preset mode.
|
sl@0
|
97 |
This is not a particular preset uid.
|
sl@0
|
98 |
|
sl@0
|
99 |
@note Call CCamera::CCameraPresets::GetFeatureRestrictedSettingsL(RArray<TUid>& aFeatureRestrictedSettings) to retrieve
|
sl@0
|
100 |
the list of settings which have been restricted.
|
sl@0
|
101 |
|
sl@0
|
102 |
@publishedPartner
|
sl@0
|
103 |
@prototype
|
sl@0
|
104 |
*/
|
sl@0
|
105 |
static const TUid KUidECamEventFeatureRestricted = {KUidECamEventFeatureRestrictedUidValue};
|
sl@0
|
106 |
|
sl@0
|
107 |
/**
|
sl@0
|
108 |
Used to notify clients that locking of the preset operation has completed, when camera works under a particular preset mode.
|
sl@0
|
109 |
This is not a particular preset uid.
|
sl@0
|
110 |
|
sl@0
|
111 |
@publishedPartner
|
sl@0
|
112 |
@prototype
|
sl@0
|
113 |
*/
|
sl@0
|
114 |
static const TUid KUidECamEventPresetLocked = {KUidECamEventPresetLockedUidValue};
|
sl@0
|
115 |
|
sl@0
|
116 |
/**
|
sl@0
|
117 |
Used to notify clients that unlocking of the preset operation has completed, when camera works under a particular preset mode.
|
sl@0
|
118 |
This is not a particular preset uid.
|
sl@0
|
119 |
|
sl@0
|
120 |
@publishedPartner
|
sl@0
|
121 |
@prototype
|
sl@0
|
122 |
*/
|
sl@0
|
123 |
static const TUid KUidECamEventPresetUnlocked = {KUidECamEventPresetUnlockedUidValue};
|
sl@0
|
124 |
|
sl@0
|
125 |
|
sl@0
|
126 |
#endif // ECAMADVSETTINGS_CONST_H
|
sl@0
|
127 |
|
sl@0
|
128 |
|
sl@0
|
129 |
|