textinput/peninputfingerhwrar/inc/peninputfingerhwrarengine.h
branchRCL_3
changeset 3 f5a1e66df979
child 5 a47de9135b21
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/textinput/peninputfingerhwrar/inc/peninputfingerhwrarengine.h	Fri Feb 19 23:09:27 2010 +0200
@@ -0,0 +1,350 @@
+/*
+* Copyright (c) 2005-2008 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:  HWR Engine
+*
+*/
+
+
+#ifndef C_PENINPUTFINGERHWRARENGINE_H
+#define C_PENINPUTFINGERHWRARENGINE_H
+
+//  INCLUDES
+#include <e32cmn.h>
+#include <eikon.hrh>
+#include <PtiEngine.h>
+
+class CPeninputFingerHwrArDataStore;
+
+/**
+ *  CPeninputFingerHwrArEngine
+ *
+ *  @lib peninputfingerhwrar.lib
+ *  @since S60 v3.2
+ */
+class CPeninputFingerHwrArEngine: public CBase
+    {
+public:
+
+    /**
+     * Symbian constructor.
+     *
+     * @since S60 v3.2
+     * @return Pointer to created CPeninputFingerHwrArEngine object
+     */
+    static CPeninputFingerHwrArEngine* NewL( CPtiEngine* aPtiEngine, 
+        CPeninputFingerHwrArDataStore* aOwner );
+
+    /**
+     * destructor
+     *
+     * @since S60 v3.2
+     * @return None
+     */
+    virtual ~CPeninputFingerHwrArEngine();
+
+    /**
+     * Do recoginize by engine
+     *
+     * @since S60 v3.2
+     * @param aTraceData The trace data.
+     * @param aCandidates The candidates recognized.
+     * @param aRangeStartPos The range index of candidates.
+     * @return None
+     */            
+    void DoRecognizeL( const RArray<TPoint>& aTraceData, RPointerArray<HBufC>& aCandidates );
+
+
+    
+    /**
+     * Notify hwr engine to set primary range and auxiliary ranges
+     *
+     * @since S60 v3.2
+     * @param aPermittedRanges The permitted ranges and the first range is primary range.
+     * @return None
+     */
+    void SetRanges( const RArray<TInt>& aPermittedRanges );
+    
+    /**
+     * Notify hwr engine to set primary range and auxiliary ranges
+     * 
+     * @since S60 v3.2
+     * @param aPermittedRanges The permitted ranges and the first range is primary range.
+     * @return None
+     */    
+    void SetRangesL( const RArray<TInt>& aPermittedRanges );
+
+    /**
+     * Set case
+     *
+     * @since S60 v3.2
+     * @param aCase The case
+     * @return None
+     */            
+    void SetCase( const TInt aCase );
+
+    /**
+     * Set number mode
+     *
+     * @since S60 v3.2
+     * @param aNumberMode Given number mode
+     * @return None
+     */
+    void SetNumberMode( const TAknEditorNumericKeymap& aNumberMode );
+
+    /**
+     * Get stroke end mark from hwr engine
+     *
+     * @since S60 v3.2
+     * @return Stroke end mark
+     */
+    TPoint StrokeEndMark() const ;
+
+    /**
+     * Set primary candidate num that hwr engine should return each time
+     *
+     * @since S60 v3.2
+     * @param aNum The primary candidate num to be set
+     * @return KErrNone if operation successfully,otherwise system wide error codes
+     */
+    TInt SetPrimaryCandidateNum( const TInt aNum );
+
+    /**
+     * Set total candidate number that can be shown
+     *
+     * @since S60 v3.2
+     * @param aNum The total candidate number that should be shown
+     * @return None
+     */
+    void SetCandidatesMaxCount( const TInt aCount );       
+    
+    /**
+     * Set language
+     *
+     * @since S60 v3.2
+     * @param aLanguage The language
+     * @return None
+     */            
+    void SetLanguageL( const TInt aLanguage );
+    
+    /**
+     * Set custom key mapping
+     *
+     * @since S60 v3.2
+     * @param aKeyMap The key mapping
+     * @return None
+     */            
+    void SetCustomKeymapL( const TDesC& aKeyMap );
+    
+    /**
+     * Clear custom key mapping
+     *
+     * @since S60 v3.2
+     * @return None
+     */            
+    void ResetCustomKeyMap();
+    
+    /**
+     * Do background construct
+     *
+     * @since S60 v3.2
+     * @return None
+     */            
+    static TBool BackgroundTaskL( TAny* aPtr );
+    
+    /**
+     * Set hand writing area size
+     *
+     * @since S60 v3.2
+     * @param aSize The area size.
+     * @return None
+     */            
+    TInt SetInputAreaSize(TSize& aSize);
+    
+    /**
+     * Set hand screen size
+     *
+     * @since S60 v3.2
+     * @param aSize The screen size.
+     * @return None
+     */            
+    TInt SetScreenSize(TSize& aSize);
+    
+    /**
+     * Reset keyboard type
+     *
+     * @since S60 v3.2
+     * @return None
+     */            
+    void ResetKeyboardType();
+    
+    /**
+     * Set keyboard to Qwerty
+     *
+     * @since S60 v3.2
+     * @return None
+     */            
+    void SetKeyboardToQwerty();
+    
+    /**
+     * Get current keyboard
+     *
+     * @since S60 v3.2
+     * @return None
+     */            
+    void GetKeyboardType();
+    
+    void GetTopGuideLinePos(TInt& aPos);
+    
+    void GetBottomGuideLinePos(TInt& aPos);
+    
+private:
+    
+    /**
+     * C++ constructor
+     *
+     * @since S60 v3.2
+     * @return None
+     */            
+    CPeninputFingerHwrArEngine();
+
+    /**
+     * Second phase constructor
+     *
+     * @since S60 v3.2
+     * @return None
+     */
+    void ConstructL( CPtiEngine* aPtiEngine, CPeninputFingerHwrArDataStore* aOwner );
+    
+    /**
+     * Notify hwr engine to set correct range by language
+     *
+     * @since S60 v3.2
+     * @param aRange Current range need to be set
+     * @param aRecognitionRange Recognition range need to be set for hwr engine
+     * @return None
+     */
+    void SetRecognitionRange( const TInt aRange, TRecognitionRange& aRecognitionRange );
+    
+    /**
+     * Do background construct
+     *
+     * @since S60 v3.2
+     * @return None
+     */            
+    void DoIdleConstructL();
+    
+    /**
+     * Convert the stroke end mark of point array to another point
+     *
+     * @since S60 v3.2
+     * @param aTraceData Point array
+     * @param aPnt1 Stroke end mark to be replaced
+     * @param aPnt2 Stroke end mark to be used
+     * @return None
+     */
+    void ConvertStrokeEndMark( RArray<TPoint>& aTraceData, TPoint aPnt1, TPoint aPnt2 );
+     
+
+private: //data
+
+    /**
+     * Engine
+     * Ownership is determined by flag
+     */
+    CPtiEngine* iPtiEngine;
+    
+    /**
+     * iPtiEngine ownership flag
+     */
+    TBool iOwnPtiEngine;
+
+    /**
+     * Hwr recognizer (Now own)
+     */
+    MPtiHwrRecognizer* iRecognizer;
+    
+    /**
+     * Total candidate number that can be shown
+     */
+    TInt iTotalCandidateNum;
+
+    /**
+     * Current case
+     */
+    TInt iCase;
+
+    /**
+     * Current language
+     */
+    TInt iLanguage;
+    
+    /**
+     * Range count
+     */
+    TInt iRangeCount;
+    
+    /**
+     * Premary range
+     */
+    TInt iPremaryRange;
+
+    /**
+     * Custom key mapping
+     */
+    HBufC* iCustomKeymap;
+    
+    /**
+     * Idle (own)
+     */
+    CIdle* iIdle;
+    
+    /**
+     * Data store (Not own)
+     */
+    CPeninputFingerHwrArDataStore* iOwner;
+    
+    /**
+     * Set number mode flag
+     */
+    TBool iNeedSetNumberMode;
+    
+    /**
+     * Set case flag
+     */
+    TBool iNeedSetCase;
+    
+    /**
+     * Set range flag
+     */
+    TBool iNeedSetRange;
+    
+    /**
+     * Permitted range array
+     */
+    RArray<TInt> iNeedPermittedRanges;
+    
+    /**
+     * The number mode
+     */
+    TInt iNumberMode;
+ 
+    /**
+     * Key board type
+     */
+    TInt iKeyboardType;
+    };
+
+#endif //C_PENINPUTFINGERHWRARENGINE_H
+
+//End Of File