author | William Roberts <williamr@symbian.org> |
Tue, 16 Mar 2010 16:12:26 +0000 | |
branch | Symbian2 |
changeset 2 | 2fe1408b6811 |
child 4 | 837f303aceeb |
permissions | -rw-r--r-- |
williamr@2 | 1 |
// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). |
williamr@2 | 2 |
// All rights reserved. |
williamr@2 | 3 |
// This component and the accompanying materials are made available |
williamr@2 | 4 |
// under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members |
williamr@2 | 5 |
// which accompanies this distribution, and is available |
williamr@2 | 6 |
// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html". |
williamr@2 | 7 |
// |
williamr@2 | 8 |
// Initial Contributors: |
williamr@2 | 9 |
// Nokia Corporation - initial contribution. |
williamr@2 | 10 |
// |
williamr@2 | 11 |
// Contributors: |
williamr@2 | 12 |
// |
williamr@2 | 13 |
// Description: |
williamr@2 | 14 |
// Camera specific errors |
williamr@2 | 15 |
// |
williamr@2 | 16 |
// |
williamr@2 | 17 |
|
williamr@2 | 18 |
|
williamr@2 | 19 |
|
williamr@2 | 20 |
/** |
williamr@2 | 21 |
@publishedAll |
williamr@2 | 22 |
@released |
williamr@2 | 23 |
@file |
williamr@2 | 24 |
*/ |
williamr@2 | 25 |
|
williamr@2 | 26 |
#ifndef ECAMERRORS_H |
williamr@2 | 27 |
#define ECAMERRORS_H |
williamr@2 | 28 |
|
williamr@2 | 29 |
/** The camera has been disabled, hence calls do not succeed */ |
williamr@2 | 30 |
static const TInt KErrECamCameraDisabled = -12100; |
williamr@2 | 31 |
|
williamr@2 | 32 |
/** This parameter or operation is supported, but presently is disabled. */ |
williamr@2 | 33 |
static const TInt KErrECamSettingDisabled = -12101; |
williamr@2 | 34 |
|
williamr@2 | 35 |
/** This value is out of range. */ |
williamr@2 | 36 |
static const TInt KErrECamParameterNotInRange = -12102; |
williamr@2 | 37 |
|
williamr@2 | 38 |
/** |
williamr@2 | 39 |
@deprecated Use sysytem wide error code KErrNotSupported, since there is no clear cut difference between the two |
williamr@2 | 40 |
*/ |
williamr@2 | 41 |
static const TInt KErrECamSettingNotSupported = -12103; |
williamr@2 | 42 |
|
williamr@2 | 43 |
/** The optimum focus is lost */ |
williamr@2 | 44 |
static const TInt KErrECamNotOptimalFocus = -12104; |
williamr@2 | 45 |
|
williamr@2 | 46 |
/** The flash is not charged */ |
williamr@2 | 47 |
static const TInt KErrECamFlashNotCharged = -12105; |
williamr@2 | 48 |
|
williamr@2 | 49 |
/** |
williamr@2 | 50 |
This error code is supposed to be used with new event KUidECamEventCIPSetColorSwapEntry |
williamr@2 | 51 |
and KUidECamEventCIPRemoveColorSwapEntry. |
williamr@2 | 52 |
This would occur when the particular color is being targetted by 2 color entries for |
williamr@2 | 53 |
conversion to different colors. |
williamr@2 | 54 |
|
williamr@2 | 55 |
*/ |
williamr@2 | 56 |
static const TInt KErrECamColorOperationConflict = -12106; |
williamr@2 | 57 |
|
williamr@2 | 58 |
/** |
williamr@2 | 59 |
This error code is supposed to be used with new event KUidECamEvent2CameraRequestForcedTimedTakeOver |
williamr@2 | 60 |
and KUidECamEvent2CameraRequestTimedTakeOver. |
williamr@2 | 61 |
This would mean that another such reserve request is outstanding and has higher priority than this client. |
williamr@2 | 62 |
|
williamr@2 | 63 |
@internalTechnology |
williamr@2 | 64 |
*/ |
williamr@2 | 65 |
static const TInt KErrECamHighPriorityReserveRequesterExists = -12107; |
williamr@2 | 66 |
|
williamr@2 | 67 |
/** |
williamr@2 | 68 |
This error code is supposed to be used whenever any fatal error occurs from which the client cannot recover. |
williamr@2 | 69 |
|
williamr@2 | 70 |
@publishedPartner |
williamr@2 | 71 |
@prototype |
williamr@2 | 72 |
*/ |
williamr@2 | 73 |
static const TInt KErrECamFatalError = -12108; |
williamr@2 | 74 |
|
williamr@2 | 75 |
/** |
williamr@2 | 76 |
If error is KErrECamImageResourceNotReleased and client wants to successfully call the Prepare method again, |
williamr@2 | 77 |
client needs to delete all CCameraImageCapture objects and any Snapshot and Histogram objects associated with |
williamr@2 | 78 |
it as well. |
williamr@2 | 79 |
|
williamr@2 | 80 |
@publishedPartner |
williamr@2 | 81 |
@prototype |
williamr@2 | 82 |
*/ |
williamr@2 | 83 |
static const TInt KErrECamImageResourceNotReleased = -12109; |
williamr@2 | 84 |
|
williamr@2 | 85 |
/** |
williamr@2 | 86 |
If error is KErrECamVideoResourceNotReleased and client wants to successfully call the Prepare method again, |
williamr@2 | 87 |
client needs to call ReleaseVideoResource to unprepare video and then delete any Snapshot and Histogram |
williamr@2 | 88 |
objects associated with it as well. |
williamr@2 | 89 |
|
williamr@2 | 90 |
@publishedPartner |
williamr@2 | 91 |
@prototype |
williamr@2 | 92 |
*/ |
williamr@2 | 93 |
static const TInt KErrECamVideoResourceNotReleased = -12110; |
williamr@2 | 94 |
|
williamr@2 | 95 |
#endif // ECAMERRORS_H |