ncdengine/debuglogger/inc/catalogsloggerappui.h
changeset 0 ba25891c3a9e
equal deleted inserted replaced
-1:000000000000 0:ba25891c3a9e
       
     1 /*
       
     2 * Copyright (c) 2006 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:   ?description
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef C_CATALOGSLOGGERAPPUI_H
       
    20 #define C_CATALOGSLOGGERAPPUI_H
       
    21 
       
    22 #include <aknappui.h>
       
    23 
       
    24 class CCatalogsLoggerAppView;
       
    25 class CCatalogsLoggerMsgQueueObserver;
       
    26 class COsmDelay;
       
    27 
       
    28 class CCatalogsLoggerAppUi : public CAknAppUi
       
    29     {
       
    30 public:
       
    31     void ConstructL();
       
    32 
       
    33     CCatalogsLoggerAppUi();
       
    34 
       
    35     ~CCatalogsLoggerAppUi();
       
    36 
       
    37     void TimerEvent();
       
    38     
       
    39     void StartupTimerEvent();
       
    40     
       
    41 public: // from CAknAppUi
       
    42     void HandleCommandL(TInt aCommand);
       
    43 
       
    44     void DynInitMenuPaneL(TInt aResourceId, CEikMenuPane *aMenuPane);
       
    45 
       
    46 private:
       
    47     CCatalogsLoggerAppView* iAppView;
       
    48     CCatalogsLoggerMsgQueueObserver* iMsgObserver;
       
    49     COsmDelay* iDelay;
       
    50     COsmDelay* iStartupActionDelay;
       
    51     };
       
    52 
       
    53 
       
    54 #endif // C_CATALOGSLOGGERAPPUI_H
       
    55