textinput/peninputhwrboxcn/inc/peninputhwrevent.h
changeset 0 eb1f2e154e89
equal deleted inserted replaced
-1:000000000000 0:eb1f2e154e89
       
     1 /*
       
     2 * Copyright (c) 2002-2005 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:  Enum values of events broadcasted by control to observers
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef T_TAKNFEPHWRBXEVENT_H
       
    20 #define T_TAKNFEPHWRBXEVENT_H
       
    21 
       
    22 #include <peninputlayoutbasecontrol.h>
       
    23 
       
    24 /**
       
    25  *  TAknFepHwrBxEvent
       
    26  *
       
    27  *  defines the events from internal controls. Those events are sent 
       
    28  *  by controls via calling ReportEvent() 
       
    29  *
       
    30  *  @lib peninputhwrboxcn.lib
       
    31  *  @since S60 v3.2
       
    32  */
       
    33 enum TAknFepHwrBxEvent
       
    34     {
       
    35     //This definition is user close hwrwnd manully,
       
    36     //and must be reopened by EHwrCmdWindowOpen
       
    37     EHwrEventWindowClose = EEventControlUserBase,
       
    38     
       
    39     //This definition is user begin writing on box
       
    40     EHwrEventBeginWriting,
       
    41     
       
    42     //This definition is user begin writing on a non-active box
       
    43     EHwrEventNewWriting,
       
    44 
       
    45     //This definition is one stroke writing end on box
       
    46     EHwrEventEndStroke,
       
    47 
       
    48     //This definition is user finish writing on box for a while
       
    49     EHwrEventEndWriting,
       
    50     
       
    51     //This definition is user select a candidate
       
    52     EHwrEventCandidateSelected,
       
    53     
       
    54     //This definition is user click the backspace key
       
    55     EHwrEventKeyBack,
       
    56         
       
    57     //This definition is user click the space key
       
    58     EHwrEventKeySpace,
       
    59     
       
    60     //This definition is user click the input language swithch button
       
    61     EHwrEventInputLangSwitch,
       
    62     
       
    63     //This definition is user click the vkb button
       
    64     EHwrEventVkb,
       
    65     
       
    66     //This definition is user click the option button
       
    67     EHwrEventTouchInputOption,
       
    68     
       
    69     //This definition is user click somewhere outside the hwr window
       
    70     //EHwrEventPointerOutsideWnd,
       
    71     
       
    72     //This definition is user click the range button
       
    73     EHwrEventSetRange,
       
    74     
       
    75     //This definition is user click the english button when it is current range
       
    76     EHwrEventSetCase,
       
    77     
       
    78     //This definition is user click out of window
       
    79     EHwrEventPointerOutsideWnd,
       
    80     
       
    81     //This defintion is user click arrow-down of drop down list
       
    82     EHwrEventGetNextCandidatePage,
       
    83     
       
    84     //This defintion is user click arrow-up of drop down list
       
    85     EHwrEventGetPreviousCandidatePage,
       
    86 
       
    87     //This defintion is judge candidate exist
       
    88     EHwrEventCandidateExisted,
       
    89 
       
    90     //This definition is the last event
       
    91     EHwrEventLast
       
    92     };
       
    93 
       
    94 #endif //T_TAKNFEPHWRBXEVENT_H
       
    95 
       
    96 // End Of File