photosgallery/viewframework/inc/glxtvconstants.h
changeset 0 4e91876724a2
child 32 78ad99c24f08
equal deleted inserted replaced
-1:000000000000 0:4e91876724a2
       
     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     };
       
    35 
       
    36 /** TV size constants */
       
    37 namespace glxTvOut
       
    38     {
       
    39     // Constants TV Size Values
       
    40     const TInt KGlxTvAspectNormal   = 0;
       
    41     const TInt KGlxTvAspectWide     = 1;
       
    42     
       
    43     //For tv display buffer
       
    44     const TInt KGlxTvOutWidth 	    = 640;
       
    45     const TInt KGlxTvOutHeight      = 480;
       
    46     const TInt KGlxTvOutWidthWide 	= 640;
       
    47     const TInt KGlxTvOutHeightWide  = 360;
       
    48     }
       
    49 
       
    50 #endif //__GLXTVCONSTANTS_H__