aboutsummaryrefslogtreecommitdiff
path: root/README.txt
blob: f5e7e8dd740d6c958d0d3860884b3417cf194067 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
-------------------------------------------------------------------------------
                                   OpenWnn README

                                   Version 1.3.1
                  
     (C) Copyright OMRON SOFTWARE Co., Ltd. 2008,2009 All Rights Reserved.
-------------------------------------------------------------------------------

1. About OpenWnn

    OpenWnn is a IME(Input Method Editor) package which
    works on Android's IMF(Input Method Framework).  This version
    contains Japanese, Chinese and English IME.

2. Contents

    This package includes the following items.

    o Document
        . Apache license paper              (text)
        . This README                       (text)
        . Change history                    (text)
        . Java docs of the IME              (HTML)

    o Building environment
        . Building control file             (XML, makefile, shell script)
        . IME native library source code    (C)
        . IME resource                      (XML, PNG)
        . IME source code                   (Java)

3. Dictionary Libraries

  [libWnnEngDic.so: English dictionary]
      Index 0: English dictionary for normal prediction (high priority)
      Index 1: English dictionary for normal prediction (middle priority)
      Index 2: English dictionary for normal prediction (low priority)
      Index 3: English dictionary for relative prediction #1
      Index 4: English dictionary for relative prediction #2

  [libWnnJpnDic.so: Japanese dictionary]
      Index 0: Japanese dictionary for normal prediction (high priority)
      Index 1: Japanese dictionary for normal prediction (low priority)
      Index 2: Japanese dictionary for relative prediction #1
      Index 3: Japanese dictionary for relative prediction #2
      Index 4: Japanese dictionary for clause conversion (single Kanji)
      Index 5: Japanese dictionary for clause conversion (basic words)
      Index 6: Japanese dictionary for clause conversion (ancillary words)

  [libWnnZHCNDic.so: Chinese dictionary]
      Index 0: Chinese dictionary for normal prediction/conversion (high priority)
      Index 1: Chinese dictionary for normal prediction/conversion (basic words)
      Index 2: Chinese dictionary for normal prediction/conversion (single Kanji)
      Index 3: Chinese dictionary for relative prediction #1
      Index 4: Chinese dictionary for relative prediction #2

4. File constitution 

    NOTICE                                    Apache license paper
    README.txt                                This README
    ChangeLog.txt                             Change history

    doc/
      *.html                                  Java docs of the IME

    Android.mk                                Building control file
    AndroidManifest.xml                       |

    libs/                                     IME native library source code (C language)
        Android.mk                            |
        libwnnDictionary/                     |
            Android.mk                        |
            *.c                               |
            *.h                               |
            engine/                           |
                *.c                           |
            include/                          |
                *.h                           |
        libwnnEngDic/                         |
            Android.mk                        |
            *.c                               |
        libwnnJpnDic/                         |
            Android.mk                        |
            *.c                               |
        libwnnZHCNDic/                        |
            Android.mk                        |
            *.c                               |

    res/                                      IME resource (XML, PNG)
        drawable/                             |
            *.xml                             |
            *.png                             |
        drawable-ja/                          |
            *.png                             |
        layout/                               |
            *.xml                             |
        raw/                                  |
            type.ogg                          |
        values/                               |
            *.xml                             |
        values-ja/                            |
            *.xml                             |
        values-zh-rCN                         |
            *.xml                             |
        xml/                                  |
            *.xml                             |

    src/                                      IME source code (Java)
        jp/                                   |
            co/                               |
                omronsoft/                    |
                    openwnn/                  |
                        *.java                |
                        EN/                   |
                            *.java            |
                        JAJP/                 |
                            *.java            |
                        ZH/                   |
                            *.java            |
                            CN/               |
                                *.java        |

-------------------------------------------------------------------------------