textinput/peninputvkbjp/src/peninputvkblayoutimp.cpp
changeset 0 eb1f2e154e89
equal deleted inserted replaced
-1:000000000000 0:eb1f2e154e89
       
     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:  Implementation of the vkb layout
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // system includes
       
    20 
       
    21 // user includes
       
    22 #include "peninputvkblayoutimp.h"
       
    23 #include "peninputvkblayout.h"
       
    24 
       
    25 
       
    26 // ======== MEMBER FUNCTIONS ========
       
    27 
       
    28 // ---------------------------------------------------------------------------
       
    29 // CPeninputVkbLayoutImp::NewL
       
    30 // (other items were commented in a header).
       
    31 // ---------------------------------------------------------------------------
       
    32 //
       
    33 CPeninputVkbLayoutImp* CPeninputVkbLayoutImp::NewL( TAny* /*aInitParams*/ )
       
    34     {
       
    35     CPeninputVkbLayoutImp* self = new(ELeave) CPeninputVkbLayoutImp();
       
    36     CleanupStack::PushL(self);
       
    37     self->ConstructL();
       
    38     CleanupStack::Pop(self);
       
    39 
       
    40     return self;
       
    41     }
       
    42 
       
    43 // ---------------------------------------------------------------------------
       
    44 // CPeninputVkbLayoutImp::~CPeninputVkbLayoutImp
       
    45 // (other items were commented in a header).
       
    46 // ---------------------------------------------------------------------------
       
    47 //
       
    48 CPeninputVkbLayoutImp::~CPeninputVkbLayoutImp()
       
    49     {
       
    50     }
       
    51 
       
    52 // ---------------------------------------------------------------------------
       
    53 // CPeninputVkbLayoutImp::CreateFepUiLayoutL
       
    54 // (other items were commented in a header).
       
    55 // ---------------------------------------------------------------------------
       
    56 //
       
    57 CFepUiLayout* CPeninputVkbLayoutImp::CreateFepUiLayoutL(MLayoutOwner* aLayoutOwner,const TAny* aData)
       
    58     {
       
    59     CPeninputVkbLayout* aUiLayout = CPeninputVkbLayout::NewL( aLayoutOwner, aData );
       
    60 
       
    61     return aUiLayout;
       
    62     }
       
    63 
       
    64 // ---------------------------------------------------------------------------
       
    65 // CPeninputVkbLayoutImp::CPeninputVkbLayoutImp
       
    66 // (other items were commented in a header).
       
    67 // ---------------------------------------------------------------------------
       
    68 //
       
    69 CPeninputVkbLayoutImp::CPeninputVkbLayoutImp()
       
    70     {
       
    71     // See ConstructL() for initialisation completion.
       
    72     }
       
    73 
       
    74 // ---------------------------------------------------------------------------
       
    75 // CPeninputVkbLayoutImp::ConstructL
       
    76 // (other items were commented in a header).
       
    77 // ---------------------------------------------------------------------------
       
    78 //
       
    79 void CPeninputVkbLayoutImp::ConstructL()
       
    80     {
       
    81     }
       
    82 
       
    83 // End Of File