60
|
1 |
/*
|
|
2 |
* Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
3 |
* All rights reserved.
|
|
4 |
* This component and the accompanying materials are made available
|
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
|
6 |
* which accompanies this distribution, and is available
|
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
8 |
*
|
|
9 |
* Initial Contributors:
|
|
10 |
* Nokia Corporation - initial contribution.
|
|
11 |
*
|
|
12 |
* Contributors:
|
|
13 |
*
|
|
14 |
* Description: Definition of TV Out constants
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
|
|
19 |
|
|
20 |
/**
|
|
21 |
* @internal reviewed 24/08/2007 by D Holland
|
|
22 |
*/
|
|
23 |
|
|
24 |
|
|
25 |
#ifndef __GLXTVCONSTANTS_H__
|
|
26 |
#define __GLXTVCONSTANTS_H__
|
|
27 |
|
|
28 |
/** The TV change type notifications */
|
|
29 |
enum TTvChangeType
|
|
30 |
{
|
|
31 |
ETvConnectionChanged = 0,
|
|
32 |
ETvDisplayIsVisible,
|
|
33 |
ETvDisplayNotVisible,
|
|
34 |
EDisconnected
|
|
35 |
};
|
|
36 |
|
|
37 |
/** TV size constants */
|
|
38 |
namespace glxTvOut
|
|
39 |
{
|
|
40 |
// Constants TV Size Values
|
|
41 |
const TInt KGlxTvAspectNormal = 0;
|
|
42 |
const TInt KGlxTvAspectWide = 1;
|
|
43 |
|
|
44 |
//For tv display buffer
|
|
45 |
const TInt KGlxTvOutWidth = 640;
|
|
46 |
const TInt KGlxTvOutHeight = 480;
|
|
47 |
const TInt KGlxTvOutWidthWide = 640;
|
|
48 |
const TInt KGlxTvOutHeightWide = 360;
|
|
49 |
}
|
|
50 |
|
|
51 |
#endif //__GLXTVCONSTANTS_H__ |