sdkcreationmw/sdkruntimes/MIDP/DebugAgent/src/JavaDebugAgentFullScreenLogView.h
changeset 0 b26acd06ea60
equal deleted inserted replaced
-1:000000000000 0:b26acd06ea60
       
     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: 
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef __JAVA_DEBUG_AGENT_FULL_SCREEN_LOG_VIEW_H_
       
    20 #define __JAVA_DEBUG_AGENT_FULL_SCREEN_LOG_VIEW_H_
       
    21 
       
    22 #include "JavaDebugAgentBasicLogView.h"
       
    23 
       
    24 class CJavaDebugAgentFullScreenLogView : public CJavaDebugAgentBasicLogView
       
    25 {
       
    26 public:
       
    27     static CJavaDebugAgentFullScreenLogView* NewLC();
       
    28 
       
    29 private:
       
    30     CJavaDebugAgentFullScreenLogView();
       
    31     void ConstructL();
       
    32 
       
    33 public:
       
    34     // CJavaDebugAgentBasicLogView
       
    35     virtual TRect LogScreenRect();
       
    36 
       
    37 protected:
       
    38     // CAknView
       
    39     virtual void DoActivateL(const TVwsViewId& aPrevViewId,TUid aMsgId,
       
    40                              const TDesC8& aMsg);
       
    41 };
       
    42 
       
    43 #endif // __JAVA_DEBUG_AGENT_FULL_SCREEN_LOG_VIEW_H_
       
    44 
       
    45 /**
       
    46  * Local Variables:
       
    47  * mode: c++
       
    48  * c-basic-offset: 4
       
    49  * indent-tabs-mode: nil
       
    50  * End:
       
    51  */