fep/aknfep/src/AknFepUiInputStateEntryQwertyBaseChinesePhrase.cpp
changeset 36 a7632c26d895
parent 35 0f326f2e628e
child 42 b3eaa440ab06
--- a/fep/aknfep/src/AknFepUiInputStateEntryQwertyBaseChinesePhrase.cpp	Fri Jul 23 16:49:01 2010 +0800
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,164 +0,0 @@
-/*
-* Copyright (c) 2002-2005 Nokia Corporation and/or its subsidiary(-ies). 
-* All rights reserved.
-* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0""
-* which accompanies this distribution, and is available
-* at the URL "http://www.eclipse.org/legal/epl-v10.html".
-*
-* Initial Contributors:
-* Nokia Corporation - initial contribution.
-*
-* Contributors:
-*
-* Description:            Implementation of entry qwertybase chinese phrase state
-*
-*/
-
-
-
-
-
-
-
-
-
-
-
-
-#include "AknFepUIManagerStateInterface.h"  //MAknFepUIManagerStateInterface
-#include "AknFepUiCtrlContainerChinese.h"
-#include "AknFepManagerUIInterface.h"       //MAknFepManagerUIInterface
-#include "AknFepUICtrlCandidatePane.h"
-#include "AknFepUICtrlInputPane.h"
-#include "AknFepUiInputStateEntryQwertyBaseChinesePhrase.h"
-
-#include <PtiEngine.h>      //CPtiEngine
-#include <e32keys.h>        //keys  
-#include <avkon.rsg>
-
-const TInt KMaxPhraseCount = 50;
-
-TAknFepInputStateEntryQwertyBaseChinesePhrase::TAknFepInputStateEntryQwertyBaseChinesePhrase(
-    MAknFepUIManagerStateInterface* aOwner,
-    MAknFepUICtrlContainerChinese* aUIContainer)
-    :TAknFepInputStateCandidateQwertyChinesePhrase(aOwner,aUIContainer)                           
-    {
-    iState = EEntry;
-
-    MAknFepUICtrlContainerChinese* uiContainer = UIContainer();
-    MAknFepUICtrlCandidatePane* candidatePane = uiContainer->CandidatePane();
-    TBool multiplePages = !(uiContainer->CandidatePane()->IsLastPage() &&
-                            uiContainer->CandidatePane()->IsFirstPage());
-    TInt bufLength = iOwner->PtiEngine()->CandidatePage().Length();
-    TBool showHorizontalScrollArrows = multiplePages || bufLength>1;
-
-    iOwner->PtiEngine()->SetCandidatePageLength(KMaxPhraseCount);
-    uiContainer->ShowHorizontalScrollArrows(showHorizontalScrollArrows); 
-    uiContainer->ShowVerticalScrollArrows(multiplePages);
-    uiContainer->FocusCandidatePane(ETrue);
-    candidatePane->SetHighlighted(ETrue);
-    candidatePane->SelectFirstPhrase();
-    candidatePane->ShowCandidateOrdinals(ETrue);
-    uiContainer->SetLayout(MAknFepUICtrlContainerChinese::ELayoutInput);
-    UpdateIndicator();
-    }
-
-TBool TAknFepInputStateEntryQwertyBaseChinesePhrase::HandleKeyL(TInt aKey, TKeyPressLength aLength)
-    {
-    CPtiEngine* ptiengine = iOwner->PtiEngine();
-    MAknFepUICtrlContainerChinese* uiContainer = UIContainer();
-    MAknFepUICtrlInputPane* inputPane = uiContainer->InputPane();
-    
-    TBool ret = ETrue;
-
-    if(aKey == EStdKeyBackspace)
-        {
-        if (iOwner->PtiEngine()->DeleteKeyPress().Length())
-            {
-            uiContainer->ShowVerticalScrollArrows(!(uiContainer->CandidatePane()->IsLastPage() &&
-                                                    uiContainer->CandidatePane()->IsFirstPage()));
-            SetInputPaneToneMark();
-            inputPane->SetFlag(MAknFepUICtrlInputPane::EPhoneticChanged);
-            RefreshUI();
-            }
-        else
-            {
-            iOwner->FepMan()->TryCloseUiL();
-            }
-        }
-    else if(aLength == EShortKeyPress && iOwner->IsValidChineseInputKeyQwerty(aKey) )
-        {
-        ptiengine->AppendKeyPress((TPtiKey)aKey);
-        uiContainer->ShowVerticalScrollArrows(!(uiContainer->CandidatePane()->IsLastPage() &&
-                                                uiContainer->CandidatePane()->IsFirstPage()));
-        SetInputPaneToneMark();
-        inputPane->SetFlag(MAknFepUICtrlInputPane::EPhoneticChanged);
-        RefreshUI();
-        }
-    else
-        {
-        ret = TAknFepInputStateCandidateQwertyBaseChinesePhrase::HandleKeyL(aKey,aLength);
-        }
-
-    return ret;
-    }
-
-void TAknFepInputStateEntryQwertyBaseChinesePhrase::RefreshUI()
-    {
-    CPtiEngine* ptiengine = iOwner->PtiEngine();
-    MAknFepUICtrlContainerChinese* uiContainer = UIContainer();
-    MAknFepUICtrlInputPane* inputPane = uiContainer->InputPane();
-    
-    // get cursor position
-    TPoint baseLine = TPoint(0,0);
-    TInt height = 0;
-    TInt ascent = 0;
-    TRAPD(ret,iOwner->FepMan()->GetScreenCoordinatesL(baseLine,height,ascent));
-    if (ret == KErrNone)
-        {
-        uiContainer->SetContainerPosition(baseLine, height);    
-        }
-
-    // layout candidate and fill candidate buffer for first display page
-    TInt candidateCount = 0;
-    if(inputPane->IsFlagSet(MAknFepUICtrlInputPane::EPhoneticChanged))
-        {
-        inputPane->ClearFlag(MAknFepUICtrlInputPane::EPhoneticChanged);
-        TRAPD(ignore,
-              candidateCount = ptiengine->GetChinesePhraseCandidatesL(
-                    *(uiContainer->CandidatePane()->CandidateArray())));
-        if(candidateCount == 0 || ignore != KErrNone)
-            {
-            return;
-            }    
-        uiContainer->CandidatePane()->SplitPhraseCandidatesIntoPages();
-        }
- 
-    uiContainer->Enable(ETrue);
-    uiContainer->CandidatePane()->SetCandidateBuffer();
- 
-    TBool multiplePages = !(uiContainer->CandidatePane()->IsLastPage() &&
-                            uiContainer->CandidatePane()->IsFirstPage());
-    TInt bufLength = ptiengine->CandidatePage().Length();
-    TBool showHorizontalScrollArrows = multiplePages || bufLength>1;
-        
-    UIContainer()->ShowHorizontalScrollArrows(showHorizontalScrollArrows);
-    UIContainer()->ShowVerticalScrollArrows(multiplePages);
-    uiContainer->CandidatePane()->SelectFirstPhrase();
-    
-    TPtrC ptr = ptiengine->GetPhoneticSpelling(1);
-    inputPane->SetText(ptr);
-    UpdateIndicator();
-    }
-
-void TAknFepInputStateEntryQwertyBaseChinesePhrase::SetInputPaneToneMark()
-    {
-    }
-
-void TAknFepInputStateEntryQwertyBaseChinesePhrase::InitializeStateL(void)
-    {
-    iOwner->FepMan()->UpdateCbaL(R_AVKON_SOFTKEYS_EMPTY);
-    }
-
-// End of file