resourcemgmt/hwresourcesmgr/test/multiclient/HWRMLightTestF/inc/HWRMLightTestFappui.h
changeset 0 4e1aa6a622a0
equal deleted inserted replaced
-1:000000000000 0:4e1aa6a622a0
       
     1 /*
       
     2 * Copyright (c) 2003-2009 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 
       
    19 
       
    20 
       
    21 #ifndef __HWRMLightTestF_APPUI_H__
       
    22 #define __HWRMLightTestF_APPUI_H__
       
    23 
       
    24 #include <eikappui.h>
       
    25 #include "HWRMLightTestF.hrh"
       
    26 #include "tc_log.h"
       
    27 #include "testcasecontroller.h"
       
    28 
       
    29 
       
    30 class CHWRMLightTestFAppView;
       
    31 
       
    32 /*! 
       
    33   @class CHWRMLightTestFAppUi
       
    34   
       
    35   @discussion An instance of class CHWRMLightTestFAppUi is the UserInterface part of the AVKON
       
    36   application framework for the HWRMLightTestF example application
       
    37   * * Nokia Core OS *
       
    38   */
       
    39 class CHWRMLightTestFAppUi : public CEikAppUi, public MHwrmTestCaseObserver
       
    40     {
       
    41 public:
       
    42     ~CHWRMLightTestFAppUi();
       
    43 	CHWRMLightTestFAppUi();
       
    44 	
       
    45 private:
       
    46     void ConstructL();
       
    47      
       
    48 private: // from CAknAppUi
       
    49   	void HandleCommandL(TInt aCommand);
       
    50 
       
    51 private: // from MHwrmTestCaseObserver
       
    52 	void InfoMessage(const TDesC& aMessage);
       
    53 	void LogMessage(const TDesC& aMessage);
       
    54 	void DebugMessage(const TDesC& aMessage);
       
    55 	
       
    56 private:
       
    57 	CHwrmTestCaseController* iTestCaseController;	
       
    58     CHWRMLightTestFAppView* iAppView;
       
    59     Log iLog;
       
    60     };
       
    61 
       
    62 
       
    63 #endif // __HWRMLightTestF_APPUI_H__
       
    64