0
|
1 /*
|
|
2 * $Id: README,v 1.2.2.1 1999/02/08 08:08:35 yamasita Exp $
|
|
3 */
|
|
4
|
|
5 /*
|
|
6 * FreeWnn is a network-extensible Kana-to-Kanji conversion system.
|
|
7 * This file is part of FreeWnn.
|
|
8 *
|
|
9 * Copyright Kyoto University Research Institute for Mathematical Sciences
|
|
10 * 1987, 1988, 1989, 1990, 1991, 1992
|
|
11 * Copyright OMRON Corporation. 1987, 1988, 1989, 1990, 1991, 1992, 1999
|
|
12 * Copyright ASTEC, Inc. 1987, 1988, 1989, 1990, 1991, 1992
|
|
13 *
|
|
14 * Author: OMRON SOFTWARE Co., Ltd. <freewnn@rd.kyoto.omronsoft.co.jp>
|
|
15 *
|
|
16 * This program is free software; you can redistribute it and/or modify
|
|
17 * it under the terms of the GNU General Public License as published by
|
|
18 * the Free Software Foundation; either version 2, or (at your option)
|
|
19 * any later version.
|
|
20 *
|
|
21 * This program is distributed in the hope that it will be useful,
|
|
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
24 * GNU General Public License for more details.
|
|
25 *
|
|
26 * You should have received a copy of the GNU General Public License
|
|
27 * along with GNU Emacs; see the file COPYING. If not, write to the
|
|
28 * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
29 *
|
|
30 * Commentary:
|
|
31 *
|
|
32 * Change log:
|
|
33 *
|
|
34 * Last modified date: 8,Feb.1999
|
|
35 *
|
|
36 */
|
|
37 XWNMO - X Input Manager
|
|
38
|
|
39 This directory contains XWNMO's sources.
|
|
40
|
|
41 XWNMO is a input manager offers multi-language input to XIM library.
|
|
42
|
|
43 XWNMO support the following inputstyle:
|
|
44
|
|
45 (XIMPreeditArea | XIMStatusArea) : Off-The-Spot
|
|
46 (XIMPreeditPosition | XIMStatusArea) : Over-The-Spot
|
|
47 (XIMPreeditNothing | XIMStatusNothing ) : Root
|
|
48 (XIMPreeditCallbacks | XIMStatusArea ) : On-The-Spot
|
|
49 (XIMPreeditArea | XIMStatusCallbacks ) : On-The-Spot
|
|
50 (XIMPreeditPosition | XIMStatusCallbacks ) : On-The-Spot
|
|
51 (XIMPreeditCallbacks | XIMStatusCallbacks ) : On-The-Spot
|
|
52
|
|
53 But On-The-Spot inputstyle can be select by definition at compiling.
|
|
54 See [How to build XWNMO].
|
|
55
|
|
56 XWNMO uses internationalized Wnn for conversion.
|
|
57 XWNMO selects conversion server in accordance with language of
|
|
58 client(library) and is able to change conversion server on the fly.
|
|
59 XWNMO is able to support multi-client and multi-server.
|
|
60
|
|
61 If you install manauls, the defult is english version.
|
|
62 If your system is able to display japanese manaul(EUC), please
|
|
63 change LOCALMAN from "man.en" to "man.ja" in Imakefile.
|
|
64
|
|
65 [How to build XWNMO]
|
|
66
|
|
67 CAUTION: You couldn't use xmkmf, because Xsi has a private Project.tmpl.
|
|
68
|
|
69 First you must make X11R5 core part.
|
|
70 Next you do the following commands for make XWNMO, XJUTIL and i18n-Wnn:
|
|
71
|
|
72 % cd contrib/im/Xsi
|
|
73 % make World
|
|
74
|
|
75 For installing XWNMO, XJUTIL and i18n-Wnn:
|
|
76
|
|
77 % make install
|
|
78
|
|
79 XWNMO has some difinitions at compiling. These are writed in Imakefile
|
|
80 and all defines are set as default. If you want to delete some one,
|
|
81 modify Imakefile suitably before compiling.
|
|
82 The followings are defines you can select.
|
|
83
|
|
84 USING_XJUTIL : To use XJUTIL (Dictionary utility manager)
|
|
85 CALLBACKS : To support On-The-Spot inputstyle
|
|
86 SPOT : To support SpotLocation Extended Protocol
|
|
87 XJPLIB : To support XJp protocol (Communication Kit part)
|
|
88 XJPLIB_DIRECT : To support XJp protocol (Direct I/F part)
|
|
89
|
|
90 Each detail:
|
|
91 USING_XJUTIL:
|
|
92 If this is defined, XWNMO executes the XJUTIL dictionary utility
|
|
93 manager at run time. You can do various oparations for dictionary
|
|
94 (registry, remove entory, list of dictionaries, etc).
|
|
95 For further infomation about XJUTIL, please see xjutil/README and
|
|
96 man of xjutil.
|
|
97
|
|
98 CALLBACKS:
|
|
99 If this is defined, XWNMO supports On-The-Spot inputstyles.
|
|
100 inputstyles are:
|
|
101 (XIMPreeditCallbacks | XIMStatusArea )
|
|
102 (XIMPreeditArea | XIMStatusCallbacks )
|
|
103 (XIMPreeditPosition | XIMStatusCallbacks )
|
|
104 (XIMPreeditCallbacks | XIMStatusCallbacks )
|
|
105
|
|
106 SPOT:
|
|
107 If this is defined, XWNMO supports SpotLocation Extended Protocol.
|
|
108 You can move spot by using this protocol.
|
|
109 For further infomation about SpotLocation Extended Protocol,
|
|
110 please see SEP_README and SEP part in man of xwnmo.
|
|
111
|
|
112 XJPLIB:
|
|
113 If this is defined, XWNMO supports "Communication Kit" part of
|
|
114 XJp protocol. You can use "Communication Kit Library" of XJp.
|
|
115 (XJp_open(), XJp_begin(), etc)
|
|
116
|
|
117 XJPLIB_DIRECT:
|
|
118 If this is defined, XWNMO supports "Direct Interface" part of
|
|
119 XJp protocol. You can use "Direct Interface" of XJp.
|
|
120 (XLookupKanjiString()) If you define this, you must define
|
|
121 "XJPLIB".
|
|
122
|
|
123 [How to use XWNMO]
|
|
124
|
|
125 Before you run XWNMO, you must run jserver and cserver that are
|
|
126 conversion servers. The jserver is Japanese conversion server and
|
|
127 the cserver is Chinese conversion server.
|
|
128
|
|
129 For running XWNMO
|
|
130
|
|
131 % xwnmo
|
|
132
|
|
133 If you compiled core part with XML define, your application is able
|
|
134 to use multiple language environment. please see XML part in man of xwnmo.
|