textinput/peninputhwrboxcn/inc/peninputhwrevent.h
author Simon Howkins <simonh@symbian.org>
Mon, 15 Nov 2010 14:00:51 +0000
branchRCL_3
changeset 59 7febbd162ded
parent 0 eb1f2e154e89
permissions -rw-r--r--
Removed unnecessary #ifdef guards around an inclusion - the included file has them anyway.

/*
* 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:  Enum values of events broadcasted by control to observers
*
*/


#ifndef T_TAKNFEPHWRBXEVENT_H
#define T_TAKNFEPHWRBXEVENT_H

#include <peninputlayoutbasecontrol.h>

/**
 *  TAknFepHwrBxEvent
 *
 *  defines the events from internal controls. Those events are sent 
 *  by controls via calling ReportEvent() 
 *
 *  @lib peninputhwrboxcn.lib
 *  @since S60 v3.2
 */
enum TAknFepHwrBxEvent
    {
    //This definition is user close hwrwnd manully,
    //and must be reopened by EHwrCmdWindowOpen
    EHwrEventWindowClose = EEventControlUserBase,
    
    //This definition is user begin writing on box
    EHwrEventBeginWriting,
    
    //This definition is user begin writing on a non-active box
    EHwrEventNewWriting,

    //This definition is one stroke writing end on box
    EHwrEventEndStroke,

    //This definition is user finish writing on box for a while
    EHwrEventEndWriting,
    
    //This definition is user select a candidate
    EHwrEventCandidateSelected,
    
    //This definition is user click the backspace key
    EHwrEventKeyBack,
        
    //This definition is user click the space key
    EHwrEventKeySpace,
    
    //This definition is user click the input language swithch button
    EHwrEventInputLangSwitch,
    
    //This definition is user click the vkb button
    EHwrEventVkb,
    
    //This definition is user click the option button
    EHwrEventTouchInputOption,
    
    //This definition is user click somewhere outside the hwr window
    //EHwrEventPointerOutsideWnd,
    
    //This definition is user click the range button
    EHwrEventSetRange,
    
    //This definition is user click the english button when it is current range
    EHwrEventSetCase,
    
    //This definition is user click out of window
    EHwrEventPointerOutsideWnd,
    
    //This defintion is user click arrow-down of drop down list
    EHwrEventGetNextCandidatePage,
    
    //This defintion is user click arrow-up of drop down list
    EHwrEventGetPreviousCandidatePage,

    //This defintion is judge candidate exist
    EHwrEventCandidateExisted,

    //This definition is the last event
    EHwrEventLast
    };

#endif //T_TAKNFEPHWRBXEVENT_H

// End Of File