0
|
1 /*
|
|
2 * $Id: SEP_README.j,v 1.1.2.1 1999/02/08 08:08:36 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 SEP - SpotLocation拡張プロトコル
|
|
38
|
|
39 SEPは、スポットロケーションの高速移動を実現するプロトコルです。
|
|
40
|
|
41 通常、アプリケーションにおけるカーソル移動の処理は以下ようになります。
|
|
42
|
|
43 nested_list = XVaCreateNestedList(dummy, XNSpotLocation, spot NULL);
|
|
44 XSetICValues(ic, XNPreeditAttributes, nested_list, NULL);
|
|
45 XFree(dpy, nested_list);
|
|
46
|
|
47 ターミナルエミュレータのようなアプリケーションの場合、頻繁にカーソルを移動する
|
|
48 必要があります。それゆえ、このような処理は、アプリケーションの性能を著しく落して
|
|
49 しまいます。
|
|
50 SEPは、この問題を解決します。アプリケーションは、SEPを使うか、以下の関数を呼ぶ
|
|
51 だけです。
|
|
52
|
|
53 _XipChangeSpot(ic, spot_x, spot_y);
|
|
54
|
|
55 _XipChangeSpot()の詳細は、xwnmoのマニュアルのSEP部分を参照下さい。
|
|
56
|
|
57 -------------------------------------------------------------------------
|
|
58 XIMライブラリとXWNMO間のソケットを使った通信データ
|
|
59
|
|
60 要求
|
|
61 バイト数 値 内容
|
|
62 XIM -> XWNMO (ximChangeSpotReq)
|
|
63 1 XIM_ChangeSpot(20) リクエストタイプ
|
|
64 1 未使用
|
|
65 2 12 データの長さ
|
|
66 4 CARD32 xic
|
|
67 2 INT16 spot location x
|
|
68 2 INT16 spot location y
|
|
69
|
|
70 応答
|
|
71 バイト数 値 内容
|
|
72 XIM <- XWNMO (sz_ximEventReply)
|
|
73 2 応答
|
|
74 0 正常
|
|
75 -1 異常
|
|
76 6 未使用
|
|
77
|