textinput/peninputgenericitut/src/peninputgenericitutuistatebase.cpp
changeset 0 eb1f2e154e89
equal deleted inserted replaced
-1:000000000000 0:eb1f2e154e89
       
     1 /*
       
     2 * Copyright (c) 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 #include "peninputgenericitutuistatebase.h"
       
    18 
       
    19 CGenericItutUiStateBase::~CGenericItutUiStateBase()
       
    20     {
       
    21     }
       
    22 
       
    23 void CGenericItutUiStateBase::OnExit()
       
    24     {
       
    25     }
       
    26 
       
    27 void CGenericItutUiStateBase::OnEntryL()
       
    28     {
       
    29     }
       
    30 
       
    31 TBool CGenericItutUiStateBase::HandleCtrlEventL(TInt /*aEventType*/, 
       
    32                                                 CFepUiBaseCtrl* /*aCtrl*/, 
       
    33                                                 const TDesC& /*aEventData*/)
       
    34     {
       
    35     return EFalse;
       
    36     }
       
    37 
       
    38 CGenericItutUiStateBase::CGenericItutUiStateBase(CGenericItutUiMgrBase* aOwner)
       
    39                                                 :iOwner(aOwner)
       
    40     {
       
    41     }
       
    42 
       
    43 void CGenericItutUiStateBase::ConstructL()
       
    44     {
       
    45     }
       
    46 
       
    47 CGenericItutUiMgrBase::TUiState CGenericItutUiStateBase::StateType()
       
    48     {
       
    49     return CGenericItutUiMgrBase::EStateNull;
       
    50     }
       
    51 
       
    52 TBool CGenericItutUiStateBase::HandleKeyL(TInt /*aCmd*/, TInt /*aKey*/)
       
    53     {
       
    54     return EFalse;
       
    55     }
       
    56     
       
    57 TInt CGenericItutUiStateBase::HandleCommandL(TInt /*aCmd*/, TUint8* /*aData*/)
       
    58     {
       
    59     return KErrNotSupported;
       
    60     }
       
    61     
       
    62 // End Of File