videditor/VideoEditorCommon/inc/VeiVideoEditorSettings.h
changeset 9 d87d32eab1a9
parent 0 951a5db380a0
equal deleted inserted replaced
0:951a5db380a0 9:d87d32eab1a9
     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 * Common settings.
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 #ifndef __VEIVIDEOEDITORSETTINS_H
       
    22 #define __VEIVIDEOEDITORSETTINS_H
       
    23 
       
    24 // INCLUDES
       
    25 // System includes
       
    26 #include    <e32base.h>
       
    27 
       
    28 // CLASS DECLARATION
       
    29 
       
    30 /**
       
    31 *  Common settings handler
       
    32 *
       
    33 *  @lib VideoEditorCommon.lib
       
    34 *  @since ?Series60_version
       
    35 */
       
    36 NONSHARABLE_CLASS( CVeiVideoEditorSettings )
       
    37     {
       
    38     public: // New functions
       
    39         
       
    40         /**
       
    41         * GetMediaPlayerVolumeLevelL.
       
    42         * @since S60
       
    43         * @param aVolumeLevel returns volume level from MediaPlayer settings
       
    44         */
       
    45         IMPORT_C static void GetMediaPlayerVolumeLevelL( TInt& aVolumeLevel );
       
    46         
       
    47         /**
       
    48         * SetMediaPlayerVolumeLevelL.
       
    49         * @since ?Series60_version
       
    50         * @param aVolumeLevel save volume level. See <MPMediaPlayerSettings.h>
       
    51         *        for min / max values               
       
    52         */        
       
    53 		IMPORT_C static void SetMediaPlayerVolumeLevelL( TInt aVolumeLevel );
       
    54         
       
    55         /**
       
    56         * GetMaxMmsSizeL.
       
    57         * @since ?Series60_version
       
    58         * @param aMaxMmsSize returns maximum MMS size
       
    59         */		
       
    60 		IMPORT_C static void GetMaxMmsSizeL( TInt& aMaxMmsSize );
       
    61     };
       
    62 
       
    63 #endif      // __VEIVIDEOEDITORSETTINS_H
       
    64             
       
    65 // End of File