classicui_plat/personalisation_framework_api/tsrc/inc/testdompslnfwappui.h
changeset 21 558113899881
parent 14 3320e4e6e8bb
child 22 75713bee6484
child 33 b3425bf29f82
equal deleted inserted replaced
14:3320e4e6e8bb 21:558113899881
     1 /*
       
     2 * Copyright (c) 2002 - 2007 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:  
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef C_TESTDOMPSLNFWAPPUI_H
       
    19 #define C_TESTDOMPSLNFWAPPUI_H
       
    20 
       
    21 #include <aknviewappui.h>
       
    22 
       
    23 class CTestPslnFWBaseView;
       
    24 
       
    25 class CTestDOMPslnFWAppUi : public CAknViewAppUi
       
    26     {
       
    27 public: 
       
    28     // constructor and destructor
       
    29     CTestDOMPslnFWAppUi();
       
    30     virtual ~CTestDOMPslnFWAppUi();
       
    31     /**
       
    32      * Symbian 2nd static constructor
       
    33      */
       
    34     void ConstructL();
       
    35 
       
    36 public:
       
    37     // from CCoeAppUi
       
    38     TKeyResponse HandleKeyEventL(
       
    39                 const TKeyEvent& aKeyEvent,
       
    40                 TEventCode aType );
       
    41 
       
    42     // from CEikAppUi
       
    43     void HandleCommandL( TInt aCommand );
       
    44     void HandleResourceChangeL( TInt aType );
       
    45 
       
    46     // from CAknAppUi
       
    47     void HandleViewDeactivation( 
       
    48             const TVwsViewId& aViewIdToBeDeactivated, 
       
    49             const TVwsViewId& aNewlyActivatedViewId );
       
    50 
       
    51 private:
       
    52     void InitializeContainersL();
       
    53 
       
    54 private: 
       
    55     CTestPslnFWBaseView* iFWBView;
       
    56     };
       
    57 
       
    58 #endif /*C_TESTDOMPSLNFWAPPUI_H*/