uifw/AknGlobalUI/AknCapServer/inc/AknKeyFilter.h
author William Roberts <williamr@symbian.org>
Wed, 10 Nov 2010 12:08:34 +0000
branchRCL_3
changeset 76 5c9f0ba5102a
parent 56 d48ab3b357f1
permissions -rw-r--r--
Improve debug tracing of AknGlobalNote::StartL - Bug 2673

/*
* Copyright (c) 2005-2007 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:  Translates key events for different UI related situations.
*
*/

#ifndef __AKN_KEY_FILTER__
#define __AKN_KEY_FILTER__

#include <coecntrl.h>
#ifdef RD_INTELLIGENT_TEXT_INPUT
#include <centralrepository.h>
#endif
#include "AknCapServerEntry.h"
#include "aknslidestatusnotifier.h"

const TInt KHomeHoldDelay = 600000;   // 0.6 sec

class CAknServKeyFilter : public CCoeControl,
                          public MAknSlideStatusObserver
    {
public:
    CAknServKeyFilter();
    void ConstructL(CAknCapAppServerAppUi& aAppUi);
    ~CAknServKeyFilter();
    
    /**
     * From MAknSlideStatusObserver
     */
    void SlideStatusChangedL( const TInt& aValue );
    
private: // framework
    TKeyResponse OfferKeyEventL(const TKeyEvent& aKeyEvent, TEventCode aType);
    
private: // new functions
    TKeyResponse HandleHomeKeyEventL(TEventCode aType);
    void HandleFlipKeyEvent(TInt aCode);
    static TInt HomeTickL(TAny* aThis);
    void DoHomeTickL();
    void ToggleShellL();
    void ActivateViewL( const TVwsViewId& aViewId, TUid aCustomMessageId );
    void CaptureHardwareStateKeysL();
    void InitHardwareStateL();
    TBool HandleHardwareStateKeyL(TInt aCode);
    void FreeHardwareStateKeys();
    void SetHardwareStateL(TInt aState, TBool& aChanged);
#ifdef RD_INTELLIGENT_TEXT_INPUT
    TInt CAknServKeyFilter::HwKeyToKeyBoardType(TInt aKeyCode);
#endif
    void RotateScreenL( TInt aState );
    void UpdateStateAndNotifyL( TInt aState );
    void UpdateKeyboardLayout( TInt aKeyboardLayout );
    
private:
    CAknCapAppServerAppUi* iAppUi; // not owned
    CPeriodic* iHomeTimer;
    TInt iSuppressAppSwitch;
    TInt iHomeKeyHandle;
    TVwsViewId iHomeViewId;
    RArray<TInt32> iHardwareStateKeyCaptures;
#ifdef RD_INTELLIGENT_TEXT_INPUT
    CRepository* iAvkonRepository;
#endif
    
    TBool iSlideOpen;
    TInt iSensorOrientation;
    CAknSlideStatusNotifier* iSlideStatusObserver;
    };

#endif // __AKN_KEY_FILTER__