camera_plat/camcorder_ui_constants_api/inc/CcorUiConstants.h
branchRCL_3
changeset 24 bac7acad7cb3
parent 0 1ddebce53859
equal deleted inserted replaced
23:61bc0f252b2b 24:bac7acad7cb3
       
     1 /*
       
     2 * Copyright (c) 2003 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:  Constants for controlling Camcorder.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef CCORUICONSTANTS_H
       
    20 #define CCORUICONSTANTS_H
       
    21 
       
    22 // INCLUDES
       
    23 #include <e32std.h>
       
    24 
       
    25 // CONSTANTS
       
    26 const TUid KUidCamcorder = { 0x101F857A };
       
    27 const TInt KCcorMsk = 3; 
       
    28 const TInt KCcorLsk = 0;
       
    29 
       
    30 const TInt KSilentProfile = 1;
       
    31 const TInt KMeetingProfile = 2;
       
    32 
       
    33 /**
       
    34 * Constants for use in embedding.
       
    35 */
       
    36 enum TCcorAppData
       
    37     {
       
    38     ECcorNormal = 0,
       
    39     ECcorEmbedStartUp,       // Starting embed mode
       
    40     ECcorForceStillMode,     // Force still image mode
       
    41     ECcorForceVideoMode,     // Force video mode
       
    42     ECcorForceMMSVideoMode   // Force video mode with MMS size limit for videos
       
    43     };
       
    44 
       
    45 /**
       
    46 * Image/video storage constants
       
    47 */
       
    48 enum TCcorMemory
       
    49     {
       
    50     ECcorPhoneMemory,
       
    51     ECcorMemoryCard
       
    52     };
       
    53 
       
    54 #endif
       
    55 
       
    56 // End of File
       
    57