idlehomescreen/xmluirendering/renderingplugins/xnnppluginfactory/src/xnnpplugincontroladapter.cpp
changeset 0 f72a12da539e
equal deleted inserted replaced
-1:000000000000 0:f72a12da539e
       
     1 /*
       
     2 * Copyright (c) 2002-2004 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:  The plugin can use this interface to communicate with the browser.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 // INCLUDE FILES
       
    21 #include    "xnnpplugincontroladapter.h"
       
    22 
       
    23 // ============================ MEMBER FUNCTIONS ===============================
       
    24 
       
    25 // -----------------------------------------------------------------------------
       
    26 // CXnNPPluginControlAdapter::PluginConstructedL
       
    27 // Other items were commented in header.
       
    28 // -----------------------------------------------------------------------------
       
    29 //
       
    30 void CXnNPPluginControlAdapter::PluginConstructedL( CCoeControl* aControl )
       
    31     {
       
    32     iNPPControlAdapter = aControl;
       
    33     }
       
    34 
       
    35 // -----------------------------------------------------------------------------
       
    36 // CXnNPPluginControlAdapter::PluginFinishedL
       
    37 // Other items were commented in header.
       
    38 // -----------------------------------------------------------------------------
       
    39 //
       
    40 void CXnNPPluginControlAdapter::PluginFinishedL()
       
    41     {
       
    42     }
       
    43     
       
    44 // -----------------------------------------------------------------------------
       
    45 // CXnNPPluginControlAdapter::GetParentControl
       
    46 // Other items were commented in header.
       
    47 // -----------------------------------------------------------------------------
       
    48 //
       
    49 CCoeControl* CXnNPPluginControlAdapter::GetParentControl()
       
    50     {
       
    51     return iParentControlAdapter;
       
    52     }
       
    53 
       
    54 // -----------------------------------------------------------------------------
       
    55 // CXnNPPluginControlAdapter::GetParentControlObserver
       
    56 // Other items were commented in header.
       
    57 // -----------------------------------------------------------------------------
       
    58 //      
       
    59 MCoeControlObserver* CXnNPPluginControlAdapter::GetParentControlObserver()
       
    60     {
       
    61     return iParentControlAdapter->Observer();
       
    62     }
       
    63 
       
    64 // -----------------------------------------------------------------------------
       
    65 // CXnNPPluginControlAdapter::SetPluginNotifier
       
    66 // Other items were commented in header.
       
    67 // -----------------------------------------------------------------------------
       
    68 //
       
    69 void CXnNPPluginControlAdapter::SetPluginNotifier( MPluginNotifier* aNotifier )
       
    70     {
       
    71     iPluginNotifier = aNotifier;    
       
    72     }
       
    73 // -----------------------------------------------------------------------------
       
    74 // CXnNPPluginControlAdapter::SetContentInteractive
       
    75 // Other items were commented in header.
       
    76 // -----------------------------------------------------------------------------
       
    77 //
       
    78 void CXnNPPluginControlAdapter::SetContentInteractive(TBool /*aInteractive*/ )
       
    79     {
       
    80     }
       
    81 
       
    82     
       
    83 //  End of File