textinput/peninputhwrboxcn/inc/peninputhwrpropertysubscriber.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:  subscribers interface
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef M_AKNFEPHWRPROPERTYSUBSCRIBER_H
       
    20 #define M_AKNFEPHWRPROPERTYSUBSCRIBER_H
       
    21 
       
    22 /**
       
    23  *  Class MAknFepHwrPropertySubscriber
       
    24  *  Interface for get property
       
    25  *
       
    26  *  @lib peninputhwrboxcn.lib
       
    27  *  @since S60 v3.2
       
    28 */
       
    29 class MAknFepHwrPropertySubscriber
       
    30     {
       
    31 
       
    32 public:
       
    33 
       
    34     /**
       
    35      * TAknFepHwrProperty defines the property names of datasotre
       
    36      */
       
    37     enum TAknFepHwrProperty
       
    38         {
       
    39         EAknFepHwrPropertyCase,
       
    40         EAknFepHwrPropertyRange,
       
    41         EAknFepHwrPropertyPermittedRange,
       
    42         EAknFepHwrPropertyLanguage,
       
    43         EAknFepHwrPropertyWriteSpeed,
       
    44         EAknFepHwrPropertyPenSize,
       
    45         EAknFepHwrPropertyPenColor,
       
    46         EAknFepHwrPropertyCandidates,
       
    47         EAknFepHwrPropertyPredictives,
       
    48         EAknFepHwrPropertySizeChanged,
       
    49         EAknFepHwrPropertyStrokeEndMark,
       
    50         EAknFepHwrPropertyPermittedCases,
       
    51         EAknFepHwrPropertyAddPredictives
       
    52         };
       
    53 
       
    54     /**
       
    55      * Set property 
       
    56      *
       
    57      * @since S60 v3.2
       
    58      * @param aPropertyName The properyt name
       
    59      * @param aPropertyValue The properyt value
       
    60      * @return None
       
    61      */
       
    62     virtual void SetPropertyL(const TAknFepHwrProperty aPropertyName, 
       
    63                               const TDesC& aPropertyValue) = 0;
       
    64     
       
    65     /**
       
    66      * Return stroke end mark
       
    67      *
       
    68      * @since S60 v3.2
       
    69      * @return None
       
    70      */
       
    71     virtual TPoint StrokeEndMark() = 0;
       
    72     };
       
    73 
       
    74 #endif //M_AKNFEPHWRPROPERTYSUBSCRIBER_H
       
    75 
       
    76 //  End Of File