videditor/VideoEditorCommon/inc/VideoEditorInternalCRKeys.h
changeset 0 951a5db380a0
equal deleted inserted replaced
-1:000000000000 0:951a5db380a0
       
     1 /*
       
     2 * Copyright (c) 2010 Ixonos Plc.
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of the "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 * Ixonos Plc
       
    14 *
       
    15 * Description:
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef VIDEOEDITORINTERNALCRKEYS_H
       
    21 #define VIDEOEDITORINTERNALCRKEYS_H
       
    22 
       
    23 const TUid KCRUidVideoEditor = {0xE3341234}; // test uid
       
    24 
       
    25 /**
       
    26 * KVedSaveQuality 
       
    27 * Defines the quality of saved video clip.
       
    28 * Possible values are 	0 ( TVeiSettings::EAuto ) 
       
    29 * 						1 ( TVeiSettings::EMmsCompatible ) 
       
    30 *						2 ( TVeiSettings::EMedium )
       
    31 *						2 ( TVeiSettings::EBest )
       
    32 * Default value is 0.
       
    33 */
       
    34 const TUint32 KVedSaveQuality 					= 0x0000001;
       
    35 
       
    36 /**
       
    37 * KVedMemoryInUse 
       
    38 * Defines where to same the video clip.
       
    39 * Possible values are 	0 ( CAknMemorySelectionDialog::EPhoneMemory ) 
       
    40 * 						1 ( CAknMemorySelectionDialog::EMemoryCard ) 
       
    41 * Default value is 1.
       
    42 */
       
    43 const TUint32 KVedMemoryInUse 					= 0x0000002;
       
    44 
       
    45 /** Default file name for saved video
       
    46 *
       
    47 * Text type
       
    48 *
       
    49 * Default value: ""
       
    50 **/
       
    51 const TUint32 KVedDefaultVideoName				= 0x00000003;
       
    52 
       
    53 /** Default file name for snapshot image
       
    54 *
       
    55 * Text type
       
    56 *
       
    57 * Default value: ""
       
    58 **/
       
    59 const TUint32 KVedDefaultSnapshotName			= 0x00000004;
       
    60 
       
    61 
       
    62 #endif      // VIDEOEDITORINTERNALCRKEYS_H
       
    63