os/textandloc/charconvfw/charconvplugins/src/shared/PictographObserver.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/textandloc/charconvfw/charconvplugins/src/shared/PictographObserver.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,164 @@
     1.4 +/*
     1.5 +* Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description:         This header file defines functions for conversion of pictograph.*
    1.18 +*/
    1.19 +
    1.20 +
    1.21 +
    1.22 +
    1.23 +
    1.24 +
    1.25 +
    1.26 +
    1.27 +
    1.28 +
    1.29 +
    1.30 +
    1.31 +
    1.32 +#ifndef PICTOGRAPHOBSERVER_H
    1.33 +
    1.34 +#define PICTOGRAPHOBSERVER_H
    1.35 +
    1.36 +#include <e32def.h>
    1.37 +
    1.38 +#include <e32std.h>
    1.39 +
    1.40 +#include <convutils.h>
    1.41 +
    1.42 +
    1.43 +
    1.44 +
    1.45 +
    1.46 +enum TOriginalCharset
    1.47 +
    1.48 +    {
    1.49 +
    1.50 +    ECharsetShiftJis,
    1.51 +
    1.52 +    ECharsetEucJp,
    1.53 +
    1.54 +    ECharsetOthers
    1.55 +
    1.56 +    };
    1.57 +
    1.58 +
    1.59 +
    1.60 +
    1.61 +
    1.62 +_LIT(KLitPictographConverterPath, "z:\\system\\libs\\");
    1.63 +#ifndef KFeatureIdJapanesePicto
    1.64 +#define KFeatureIdJapanesePicto 1079
    1.65 +#endif
    1.66 +_LIT(KLitPictographConverter, "CnvPictographShared.dll");
    1.67 +
    1.68 +
    1.69 +
    1.70 +
    1.71 +
    1.72 +
    1.73 +
    1.74 +/**
    1.75 +
    1.76 +* It sets parameters to SCharacterSet array.
    1.77 +
    1.78 +* It called in ConvertFromUnicode().
    1.79 +
    1.80 +* It makes possible that pictograph conversion is called from other
    1.81 +
    1.82 +* conversion plug-ins.
    1.83 +
    1.84 +* @since 2.6
    1.85 +
    1.86 +* @param aArrayOfCharacterSets The conversion table array
    1.87 +
    1.88 +*/
    1.89 +
    1.90 +IMPORT_C void SetCharacterSetsForPictograph(
    1.91 +
    1.92 +    RArray<CnvUtilities::SCharacterSet>& aArrayOfCharacterSets);
    1.93 +
    1.94 +
    1.95 +
    1.96 +/**
    1.97 +
    1.98 +* It sets parameters to SCharacterSet array.
    1.99 +
   1.100 +* It called in ConvertFromUnicode().
   1.101 +
   1.102 +* It makes possible that pictograph conversion is called from other
   1.103 +
   1.104 +* conversion plug-ins.
   1.105 +
   1.106 +* @since 2.6
   1.107 +
   1.108 +* @param aArrayOfCharacterSets The conversion table array
   1.109 +
   1.110 +* @param aOriginalCharset The character set
   1.111 +
   1.112 +*/
   1.113 +
   1.114 +IMPORT_C void SetCharacterSetsForPictograph(
   1.115 +
   1.116 +    RArray<CnvUtilities::SCharacterSet>& aArrayOfCharacterSets,
   1.117 +
   1.118 +    TOriginalCharset aOriginalCharset);
   1.119 +
   1.120 +
   1.121 +
   1.122 +/**
   1.123 +
   1.124 +* It sets parameters to SMethod array.
   1.125 +
   1.126 +* It called in ConvertToUnicode().
   1.127 +
   1.128 +* It makes possible that pictograph conversion is called from other
   1.129 +
   1.130 +* conversion plug-ins.
   1.131 +
   1.132 +* @since 2.6
   1.133 +
   1.134 +* @param aArrayOfMethods The conversion table array
   1.135 +
   1.136 +* @param aOriginalCharset The character set
   1.137 +
   1.138 +*/
   1.139 +
   1.140 +IMPORT_C void SetMethodsForPictograph(
   1.141 +
   1.142 +    RArray<CnvUtilities::SMethod>& aArrayOfMethods, TOriginalCharset aOriginalCharset);
   1.143 +
   1.144 +
   1.145 +
   1.146 +/**
   1.147 +
   1.148 +* It sets parameters to SState array.
   1.149 +
   1.150 +* It called in ConvertToUnicode().
   1.151 +
   1.152 +* It makes possible that pictograph conversion is called from other
   1.153 +
   1.154 +* conversion plug-ins.
   1.155 +
   1.156 +* @since 2.6
   1.157 +
   1.158 +* @param aArrayOfMethods The conversion table array
   1.159 +
   1.160 +*/
   1.161 +
   1.162 +IMPORT_C void SetStatesForPictograph(RArray<CnvUtilities::SState>& aArrayOfStates);
   1.163 +
   1.164 +
   1.165 +
   1.166 +#endif // PICTOGRAPHOBSERVER_H
   1.167 +