wmdrm/camese/wmdrmdlaapp/inc/wmdrmdlaappui.h
changeset 0 95b198f216e5
child 18 8a03a285ab14
equal deleted inserted replaced
-1:000000000000 0:95b198f216e5
       
     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 "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:  Interface class for WMDRM DLA App Ui
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef C_WMDRMDLAAPPUI_H
       
    20 #define C_WMDRMDLAAPPUI_H
       
    21 
       
    22 // INCLUDES
       
    23 #include <aknviewappui.h>
       
    24 #include <aknserverapp.h>
       
    25 
       
    26 class CWmDrmDlaBrowserView;
       
    27 
       
    28 class CWmDrmDlaAppUi : public CAknViewAppUi
       
    29     {
       
    30 
       
    31     public:     // Constructors and destructor
       
    32 
       
    33         /**
       
    34         * Constructor.
       
    35         */      
       
    36         CWmDrmDlaAppUi();
       
    37         
       
    38         /**
       
    39         * Second phase constructor. Leaves on failure.
       
    40         */      
       
    41         void ConstructL();
       
    42 
       
    43         /**
       
    44         * Destructor.
       
    45         */      
       
    46         virtual ~CWmDrmDlaAppUi();
       
    47         
       
    48         /**
       
    49          * Get browser view
       
    50          */
       
    51         CWmDrmDlaBrowserView* BrowserView();
       
    52 
       
    53     private: // From CEikAppUi
       
    54 
       
    55         /**
       
    56          * From CEikAppUi, takes care of command handling.
       
    57          * @param aCommand command to be handled
       
    58          */
       
    59         void HandleCommandL( TInt aCommand );    
       
    60         
       
    61     private:    // data
       
    62 
       
    63         //Not owned
       
    64         CWmDrmDlaBrowserView* iBrowserView;
       
    65         
       
    66     };
       
    67 
       
    68 #endif // C_WMDRMDLAAPPUI_H