0
|
1 /*
|
|
2 * $Id: buffer.h,v 1.3 2001/06/14 18:16:06 ura 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 * Copyright FreeWnn Project 1999, 2000
|
|
14 *
|
|
15 * Maintainer: FreeWnn Project <freewnn@tomo.gr.jp>
|
|
16 *
|
|
17 * This program is free software; you can redistribute it and/or modify
|
|
18 * it under the terms of the GNU General Public License as published by
|
|
19 * the Free Software Foundation; either version 2 of the License, or
|
|
20 * (at your option) any later version.
|
|
21 *
|
|
22 * This program is distributed in the hope that it will be useful,
|
|
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
25 * GNU General Public License for more details.
|
|
26 *
|
|
27 * You should have received a copy of the GNU General Public License
|
|
28 * along with this program; if not, write to the Free Software
|
|
29 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
30 */
|
|
31
|
|
32 /* bufferの表示のされ方は、hantenによって決定される。
|
|
33 反転するか、下線状態にするかを各独立に、
|
|
34 バッファーの内で、文頭からmarkまで、markからcursorまで、
|
|
35 cursorからbufferの最後までの状態を独立に設定することができる。
|
|
36 when mark is set
|
|
37 hanten bit0(0x01),bit1(0x02): --- mark
|
|
38 bit2(0x04),bit3(0x08): mark --- cursor
|
|
39 bit4(0x10),bit5(0x20): cursor ---
|
|
40 when mark is not set(-1)
|
|
41 bit4,bit5:
|
|
42 bit6(0x40): t_b_st --- t_b_end ボールド表示
|
|
43 first one....hanten
|
|
44 second one...under_line
|
|
45 */
|
|
46 struct buf
|
|
47 {
|
|
48 w_char *buffer; /* 登録用バッファ */
|
|
49 char *buf_msg; /** 仮名を入力する時のバッファーの前に表示する文字列 */
|
|
50 int start_col; /** 仮名入力時の画面上のコラムのスタート位置 */
|
|
51 int t_c_p; /** 仮名入力用バッファー上でのカーソル位置 */
|
|
52 int hanten; /** 仮名入力用バッファーを反転表示させているかどうか */
|
|
53 int maxlen; /**仮名入力用バッファーの中にはいっている文字数 */
|
|
54 int buflen; /** length of the buffer */
|
|
55 int t_m_start; /* -1 : markが設定されていない。 */
|
|
56 /* 0 以上 : マークの位置 */
|
|
57 int t_b_st; /**ボールド表示の開始位置 */
|
|
58 int t_b_end; /**ボールド表示の終了位置 */
|
|
59 int vlen; /*バッファー中でスクリーンに表示される幅 */
|
|
60 int duplicate; /* スクリーンがスクロールする時に、重複して表示する文字数 */
|
|
61
|
|
62 int vst; /* bufferの中で画面に表示されている最初の位置 */
|
|
63 /*これは、勝手に上のルーチンでいじらない方が望ましい。 */
|
|
64 int (*key_in_fun) (); /*ここに関数が設定されていると、key_tableにバインドが
|
|
65 ない文字の入力を
|
|
66 受けた時にバッファーにその文字を入れずに代わりにその関数が呼ばれる */
|
|
67 int (*redraw_fun) (); /* romkan kara redraw ga kaette kitatoki */
|
|
68 int (*ctrl_code_fun) (); /*ここに関数が設定されていると、key_tableにバインドが
|
|
69 ないコントロール文字の入力を受けた時にベルを鳴らす代わりに
|
|
70 その関数が呼ばれる */
|
|
71 int (**key_table) (); /*キーバインドのテーブル */
|
|
72 char *rk_clear_tbl; /* romakn_clear が hituyouka */
|
|
73 };
|
|
74
|
|
75
|
|
76 extern int *bunsetsu;
|
|
77 extern int *bunsetsuend;
|
|
78 extern struct wnn_env **bunsetsu_env; /* 文節の変換に使った env */
|
|
79 extern int *touroku_bnst;
|
|
80 /* extern int bunsetsucnt; */
|
|
81 extern int touroku_bnst_cnt;
|
|
82
|
|
83 extern struct buf *c_b; /* 現在用いられているbufを示すグローバル変数 */
|
|
84 extern w_char *kill_buffer; /* キルバッファー大きさは、maxchgとなっている */
|
|
85 extern int kill_buffer_offset; /* キルバッファー使われている長さ */
|
|
86 extern w_char *remember_buf; /* リメンバァバッファ大きさは、maxchgとなっている */
|