-
Notifications
You must be signed in to change notification settings - Fork 4
/
kanchokujs.html
428 lines (347 loc) · 10.9 KB
/
kanchokujs.html
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
<!--
:: KANCHOKU/JS (KANCHOKU input on JavaScript)
::
:: Copyright (C) 2007, 2012, 2013 YUSE Yosihiro
::
:: This program is free software; you can redistribute it and/or modify
:: it under the terms of the GNU General Public License as published by
:: the Free Software Foundation; either version 2 of the License, or
:: (at your option) any later version.
::
:: This program is distributed in the hope that it will be useful,
:: but WITHOUT ANY WARRANTY; without even the implied warranty of
:: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
:: GNU General Public License for more details.
::
:: You should have received a copy of the GNU General Public License
:: along with this program; if not, write to the Free Software
:: Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="author" content="YUSE Yosihiro">
<meta name="description" content="KANCHOKU/JS (KANCHOKU input on JavaScript)">
<meta name="keywords" content="T-Code,TUT-Code,漢直,入力">
<!-- ============================================================= -->
<!-- Title -->
<title>漢直/JS</title>
<!-- ============================================================= -->
<!-- Style -->
<link rel="stylesheet" href="css/eljs.css" charset="UTF-8">
<!-- ============================================================= -->
<!-- Related -->
<!--
<link rel="alternate stylesheet" href="" title="">
<link rel="alternate" href="">
<link rel="start" href="">
<link rel="next" href="">
<link rel="previous" href="">
<link rel="glossary" href="">
<link rel="chapter" href="">
<link rel="section" href="">
<link rel="subsection" href="">
<link rel="bookmark" href="">
<link rel="index" href="">
<link rel="help" href="">
-->
<link rel="contents" href="index.html">
<link rel="copyright" href="gpl.txt" type="text/plain">
<link rev="made" href="mailto:yoyuse@gmail.com">
<link rel="previous" href="kansakujs.html">
<link rel="shortcut icon" href="img/kcjs.ico" type="image/vnd.microsoft.icon">
<link rel="icon" href="img/kcjs.png" type="image/png">
<!-- ============================================================= -->
<!-- External scripts -->
<!-- main -->
<script type="text/javascript" src="js/utils.js"></script>
<script type="text/javascript" src="js/cookie.js"></script>
<script type="text/javascript" src="js/kansaku.js"></script>
<script type="text/javascript" src="js/kanchoku.js"></script>
<script type="text/javascript" src="js/kcjsmain.js"></script>
<!-- kb -->
<script type="text/javascript" src="js/kb/qwerty_jis.js"></script>
<script type="text/javascript" src="js/kb/qwerty.js"></script>
<script type="text/javascript" src="js/kb/dvorak.js"></script>
<!-- ============================================================= -->
<!-- input methods -->
<!-- T-Code -->
<script type="text/javascript" src="js/im/t.js"></script>
<!-- TUT-Code -->
<!--
<script type="text/javascript" src="js/im/tut.js"></script>
-->
<script type="text/javascript" src="js/im/tut-shiftkana.js"></script>
<!-- G-Code -->
<script type="text/javascript" src="js/im/g.js"></script>
<!-- chou -->
<!--
<script type="text/javascript" src="js/im/chou.js"></script>
-->
<!-- Try-Code -->
<script type="text/javascript" src="js/im/try.js"></script>
<!-- TT-Code -->
<script type="text/javascript" src="js/im/tt.js"></script>
<!-- phoenix -->
<script type="text/javascript" src="js/im/phoenix.js"></script>
<!-- L-code -->
<script type="text/javascript" src="js/im/l.js"></script>
<script type="text/javascript" src="js/im/lshort.js"></script>
<!-- ASCII -->
<script type="text/javascript" src="js/im/ascii.js" charset="utf-8"></script>
<!-- ============================================================= -->
<!-- script -->
<script type="text/javascript">
<!--
// -->
</script>
<style type="text/css">
<!--
-->
</style>
</head>
<!-- ============================================================= -->
<!-- 本体 -->
<body class="eljs" id="bd_kanchokujs"
onload="do_init();"
onunload="watch_end();">
<!-- ============================================================= -->
<noscript>
<p>このページでは JavaScript が使われています。</p>
<p>JavaScript を ON にしてごらんください。</p>
</noscript>
<!-- ============================================================= -->
<!-- 設定 -->
<div class="field" id="dv_field_config">
<!-- タイトル -->
<div class="fieldhead" id="dv_config_head">
<a href="#fd_config" name="fd_config"
class="fieldtitle" title="設定を行います"
onclick="div_togglevisible(elm.dv_config); return false;"
accesskey="c">設定(<span class="accesskey">C</span>)</a>
</div>
<!-- 本体 -->
<!-- 詳細 -->
<div id="dv_config" style="display: block;" class="fieldbody">
<form action="#" method="post" id="fm_config"
onsubmit="return do_set_config();">
<table class="layout">
<tbody>
<tr>
<td>
<!-- 入力方式 -->
<label for="sl_im" title="入力方式を指定します"
accesskey="i">入力方式(<span class="accesskey">I</span>)</label>
</td>
<td>
<select id="sl_im" title="入力方式を指定します">
<option></option>
</select>
</td>
<td>
</td>
</tr>
<tr>
<td>
<!-- キーボード -->
<label for="sl_kb" title="キーボードを指定します"
accesskey="q">キーボード(<span class="accesskey">Q</span>)</label>
</td>
<td>
<select id="sl_kb" title="キーボードを指定します">
<option></option>
</select>
</td>
<td>
<a href="#fd_debug" name="fd_debug"
title="デバッグ情報を表示します"
onclick="div_togglevisible(elm.dv_debug); return false;"
>デバッグ</a>
</td>
</tr>
<tr>
<td>
<label for="bt_ok" title="設定">設定</label>
</td>
<td colspan="2">
<!-- 設定・キャンセル -->
<!-- OK -->
<input type="button" value="OK(O)" style="width: 6em;"
accesskey="o" id="bt_ok"
onclick="do_set_config(); div_visible(elm.dv_config, false);">
<!-- キャンセル -->
<input type="button" value="キャンセル"
style="width: 7em;"
onclick="do_cancel_config();">
<!-- 適用 -->
<input type="submit" value="適用" style="width: 5em;">
<!-- ヘルプ -->
<input type="button" value="ヘルプ" style="width: 5em;" disabled>
</td>
</tr>
</tbody>
</table>
</form>
<!-- 詳細 -->
<div id="dv_debug" style="display: block;">
<!-- class="fieldbody" -->
<hr>
<!-- クッキー -->
<div>
<a href="#fd_ck" name="fd_ck"
title="クッキー情報を表示します"
onclick="div_togglevisible(elm.dv_ck); return false;">Cookie</a></div>
<div id="dv_ck" style="display: none;">
<textarea cols="80" rows="8" id="ta_ck" name="ta_ck" readonly class="stdio"
></textarea>
<div>
<!-- 更新 -->
<input type="button" value="更新" onclick="do_ck_refresh();">
<!-- 消去 -->
<input type="button" value="クッキーを消去" onclick="do_ck_remove();">
</div>
<hr>
</div>
<!-- デバッグ -->
<div>
<a href="#fd_dbg" name="fd_dbg" title="デバッグ情報を表示します"
onclick="div_togglevisible(elm.dv_dbg); return false;"
>Debug</a></div>
<div id="dv_dbg" style="display: none;">
<textarea cols="80" rows="8" id="ta_dbg" readonly class="stdio"></textarea>
<div>
<!-- 更新 -->
<input type="button" value="更新" onclick="io.dbg.refresh();">
<!-- クリア -->
<input type="button" value="クリア" onclick="do_dbg_clear();">
</div>
<hr>
</div>
</div>
</div>
</div>
<!-- ============================================================= -->
<!-- 入力 -->
<div class="field" id="dv_field_query">
<!-- タイトル -->
<div class="fieldhead" id="dv_main_head">
<a href="#fd_main" name="fd_main"
title="入力を行います"
class="fieldtitle"
onclick="div_togglevisible(elm.dv_main); return false;"
accesskey="l">入力(<span class="accesskey">L</span>)</a>
</div>
<div class="fieldbody" id="dv_main">
<form action="#" method="post" id="fm_query" onsubmit="return do_input();">
<table class="layout">
<tbody>
<tr>
<td style="width: 4em;">
<!-- 入力欄 -->
<label for="tx_stdin" title="コードを入力します"
>入力(<span class="accesskey">J</span>)</label>
</td>
<td
style="width: 800px; padding-right: 10px;"> <!-- XXX -->
<input type="text" value="" size="200"
lang="en"
spellcheck="false"
id="tx_stdin" name="input" class="stdio"
placeholder="ここに入力します"
title="コードを入力します"
accesskey="j"
style="width: 100%; margin-right: 10px;"> <!-- XXX -->
</td>
<td>
<input type="reset" value="クリア(R)"
title="入力欄の内容を消去します"
accesskey="r"
onclick="do_focus_input(); return true;">
</td>
</tr>
<tr>
<td>
<label for="tx_stdout" title="変換結果を表示します"
>変換</label>
</td>
<td
style="width: 800px; padding-right: 10px;"> <!-- XXX -->
<input type="text" value="" size="200"
id="tx_stdout" name="output" class="stdio"
title="変換結果を表示します"
style="width: 100%; pading-right: 0px"
>
</td>
<td>
<input type="submit" value="確定(M)"
title="確定入力します"
accesskey="m">
</td>
</tr>
</tbody>
</table>
</form>
</div>
<div class="fieldbody">
<!-- 出力欄 -->
<form action="#" method="post" id="fm_result"
onsubmit="getelm('ta_stdout').select(); return false;">
<table class="layout">
<tbody>
<tr>
<td class="vtop" style="width: 4em;">
<label for="ta_stdout" title="出力結果を表示します"
accesskey="t"
>出力(<span class="accesskey">T</span>)</label>
</td>
<td class="vtop"
style="width: 800px; padding-right: 10px;"> <!-- XXX -->
<textarea cols="200" rows="25" id="ta_stdout" class="stdio"
title="出力結果を表示します"
style="width: 100%;"
></textarea>
</td>
<td class="vtop">
<!-- -->
<input type="button" value="全選択(S)"
accesskey="s"
onclick="getelm('ta_stdout').select();">
<br>
<!-- -->
<input type="reset" value="全消去(X)"
title="出力欄の内容を消去します"
accesskey="x"
onclick="do_focus_input(); return confirm('全消去しますか?');">
</td>
</tr>
</tbody>
</table>
</form>
</div>
</div>
<!-- ============================================================= -->
<!-- フッタ -->
<hr>
<div class="version">
KANCHOKU/JS
version
<!-- version -->0.3<!-- /version -->
<!-- time-stamp-start -->2013-12-10<!-- time-stamp-end -->
</div>
</body>
</html>
<!-- ============================================================= -->
<!--
:: Local Variables:
:: time-stamp-line-limit: -24
:: time-stamp-start: "<!-\\- *time-stamp-start *-\\-."
:: time-stamp-end: "<!-\\- *time-stamp-end *-\\-."
:: time-stamp-format: "%:y-%02m-%02d"
:: End:
-->