videditor/ManualVideoEditor/inc/VeiEditVideoContainer.inl
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 __VEIEDITVIDEOCONTAINER_INL__
       
    21 #define __VEIEDITVIDEOCONTAINER_INL__
       
    22 
       
    23 public:
       
    24   		inline TSelectionMode SelectionMode() { return iSelectionMode; };
       
    25 
       
    26 		inline void SetVideoCursorPosition( TUint aPosition ) { iVideoCursorPos = aPosition; };
       
    27 
       
    28 		inline TCursorLocation CursorLocation() { return iCursorLocation; };
       
    29 
       
    30 		inline TTimeIntervalMicroSeconds RecordedAudioStartTime() const { return iRecordedAudioStartTime; };
       
    31 
       
    32 		inline TTimeIntervalMicroSeconds RecordedAudioDuration() const { return iRecordedAudioDuration; };
       
    33 
       
    34 		inline void SetRecordedAudioStartTime( TTimeIntervalMicroSeconds aStartTime )
       
    35 			{
       
    36 			iRecordedAudioStartTime = aStartTime;
       
    37 			}
       
    38 
       
    39 		inline TPreviewState PreviewState() { return iPreviewState; };
       
    40 
       
    41 		inline void SetRecordedAudio( TBool aRecordedAudio )
       
    42 			{
       
    43 			iRecordedAudio = aRecordedAudio;
       
    44 			}
       
    45 
       
    46 		/**
       
    47 		* Return value of slow motion in container.
       
    48 		*
       
    49 		* @return TInt
       
    50 		*/
       
    51 		inline TInt SlowMotionValue() { return iSlowMotionValue; };
       
    52 
       
    53 #endif //__VEIEDITVIDEOCONTAINER_INL__