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 |
|
sl@0
|
22 |
#ifndef CAMERAOVERLAY_CONST_H
|
sl@0
|
23 |
#define CAMERAOVERLAY_CONST_H
|
sl@0
|
24 |
|
sl@0
|
25 |
/**
|
sl@0
|
26 |
The current Version for the TOverlaySupportInfo class.
|
sl@0
|
27 |
@publishedPartner
|
sl@0
|
28 |
@prototype
|
sl@0
|
29 |
*/
|
sl@0
|
30 |
static const TUint KECamOverlaySupportInfoCurrentVersion = 1;
|
sl@0
|
31 |
|
sl@0
|
32 |
/**
|
sl@0
|
33 |
The current Version for the TOverlayParameters class.
|
sl@0
|
34 |
@publishedPartner
|
sl@0
|
35 |
@prototype
|
sl@0
|
36 |
*/
|
sl@0
|
37 |
static const TUint KECamOverlayParametersCurrentVersion = 1;
|
sl@0
|
38 |
|
sl@0
|
39 |
/**
|
sl@0
|
40 |
Constant used to specify that no specific viewfinder of the given type (either direct or client based) shall be considered.
|
sl@0
|
41 |
Rather, every viewfinder should be taken into consideration.
|
sl@0
|
42 |
@publishedPartner
|
sl@0
|
43 |
@prototype
|
sl@0
|
44 |
*/
|
sl@0
|
45 |
static const TInt KECamOverlayNoSpecificViewFinderHandle = -1;
|
sl@0
|
46 |
|
sl@0
|
47 |
/**
|
sl@0
|
48 |
Special handle value used for TOverlaySupportInfo::iViewFinderHandle when TOverlaySupportInfo::iDesiredCameraMode is other
|
sl@0
|
49 |
than viewfinder mode but not EModeNone.
|
sl@0
|
50 |
If TOverlaySupportInfo::iDesiredCameraMode is EModeNone, this indicates that OverlaySupportInfo should be used
|
sl@0
|
51 |
as default, where support information was being provided to the client without distinguishing between different camera modes.
|
sl@0
|
52 |
Also used as default value for TOverlayParameters::iViewFinderHandle, when TOverlayParameters::iCurrentModes is not
|
sl@0
|
53 |
neglected.
|
sl@0
|
54 |
@publishedPartner
|
sl@0
|
55 |
@prototype
|
sl@0
|
56 |
*/
|
sl@0
|
57 |
static const TInt KECamOverlayInvalidViewFinderHandle = -2;
|
sl@0
|
58 |
|
sl@0
|
59 |
|
sl@0
|
60 |
#endif //CAMERAOVERLAY_CONST_H
|