textinput/GSLangPlugin/src/PredictiveSettingData.cpp
branchRCL_3
changeset 21 ecbabf52600f
parent 0 eb1f2e154e89
equal deleted inserted replaced
20:ebd48d2de13c 21:ecbabf52600f
       
     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 /*
       
    18  * ============================================================================
       
    19  *  Name     : CGSPredictiveSettingData from AknFepPredictiveSettingData 
       
    20  * ============================================================================
       
    21  */
       
    22 
       
    23 #include "PredictiveSettingData.h"
       
    24 
       
    25 CGSPredictiveSettingData *CGSPredictiveSettingData::NewL()
       
    26 	{
       
    27 	CGSPredictiveSettingData *self = CGSPredictiveSettingData::NewLC();
       
    28 	CleanupStack::Pop(self);
       
    29 	return self;
       
    30 	}
       
    31 
       
    32 CGSPredictiveSettingData *CGSPredictiveSettingData::NewLC()
       
    33 	{
       
    34 	CGSPredictiveSettingData *self = new (ELeave) CGSPredictiveSettingData();
       
    35 	CleanupStack::PushL(self);
       
    36 	return self;
       
    37 	}
       
    38 
       
    39 CGSPredictiveSettingData::~CGSPredictiveSettingData()
       
    40 	{
       
    41 	}
       
    42 
       
    43 CGSPredictiveSettingData::CGSPredictiveSettingData()
       
    44 	{
       
    45 	}
       
    46 
       
    47 
       
    48 
       
    49 void CGSPredictiveSettingData::LoadL(TInt aAutoWordCompl,
       
    50 										 TInt aTypingCorrection,
       
    51 										 TInt aNumberCandidates,
       
    52 										 TInt aPrimaryCandidate,
       
    53 										 TInt aPhysicalKeyboards,
       
    54 										 TInt aAWCBitmask)
       
    55     {
       
    56     iAutoWordCompl = aAutoWordCompl;
       
    57     iTypingCorrection = aTypingCorrection;
       
    58     iNumberCandidates = aNumberCandidates;
       
    59     iPrimaryCandidate = aPrimaryCandidate;
       
    60     iPhysicalKeyboards = aPhysicalKeyboards;
       
    61     iAWCBitmask = aAWCBitmask;
       
    62     }
       
    63     
       
    64 void CGSPredictiveSettingData::SaveL() const
       
    65     {
       
    66     }
       
    67 //EOF