videocollection/hgmyvideos/src/vcxhgmyvideosvideodetailsdialog.cpp
changeset 0 96612d01cf9f
child 10 ce5ada96ab30
equal deleted inserted replaced
-1:000000000000 0:96612d01cf9f
       
     1 /*
       
     2 * Copyright (c) 2008 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 the License "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:      My Videos Video Details Dialog.*
       
    15 */
       
    16 
       
    17 
       
    18 
       
    19 
       
    20 // INCLUDE FILES
       
    21 #include <aknmessagequerydialog.h>
       
    22 #include <mpxmedia.h>
       
    23 #include <mpxmediageneraldefs.h>
       
    24 #include <vcxmyvideosdefs.h>
       
    25 #include <StringLoader.h>
       
    26 #include <vcxhgmyvideos.rsg>
       
    27 #include "vcxhgmyvideosvideodetailsdialog.h"
       
    28 #include <MPFileDetailsDialog.h>
       
    29 #include <mpxmediageneraldefs.h>
       
    30 #include <mpxmediavideodefs.h>
       
    31 #include <filedetailspluginif.h>
       
    32 
       
    33 
       
    34 const TInt KThousandNotKilobyte = 1000;
       
    35 
       
    36 // ============================ MEMBER FUNCTIONS =============================
       
    37 
       
    38 // ---------------------------------------------------------------------------
       
    39 // TVcxHgMyVideosVideoDetailsDialog::TVcxHgMyVideosVideoDetailsDialog()
       
    40 // ---------------------------------------------------------------------------
       
    41 //
       
    42 TVcxHgMyVideosVideoDetailsDialog::TVcxHgMyVideosVideoDetailsDialog()
       
    43     {
       
    44     }
       
    45 
       
    46 // ---------------------------------------------------------------------------
       
    47 // TVcxHgMyVideosVideoDetailsDialog::ShowVideoDetailsDialogL()
       
    48 // ---------------------------------------------------------------------------
       
    49 //
       
    50 void TVcxHgMyVideosVideoDetailsDialog::ShowVideoDetailsDialogL( const CMPXMedia& aMedia )
       
    51     {
       
    52     CFileDetailsPluginIF* fdPlugin = CFileDetailsPluginIF::NewL();
       
    53     fdPlugin->ShowFileDetails( aMedia );
       
    54     delete fdPlugin;
       
    55     }