tamago-4.0.6
[elisp/tamago.git] / leim-list-egg.el
1 ;;; leim-list-egg.el --- Egg setup for leim API
2
3 ;; Copyright (C) 1999, 2000 Free Software Foundation, Inc
4
5 ;; Author: NIIBE Yutaka <gniibe@chroot.org>
6 ;;         KATAYAMA Yoshio <kate@pfu.co.jp>
7
8 ;; Maintainer: TOMURA Satoru <tomura@etl.go.jp>
9
10 ;; Keywords: mule, multilingual, input method
11
12 ;; This file is part of EGG.
13
14 ;; EGG is free software; you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation; either version 2, or (at your option)
17 ;; any later version.
18
19 ;; EGG is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22 ;; GNU General Public License for more details.
23
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
26 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
27 ;; Boston, MA 02111-1307, USA.
28
29 ;;; Commentary:
30
31 ;;; Code:
32
33 ;;; leim-list-egg.el --- Egg setup for leim API
34 ;;; CAUTION: Don't delete the above line.
35
36 (autoload 'egg-activate-wnn "egg/wnn" "Activate Wnn backend of Tamagotchy." t)
37 (autoload 'egg-activate-sj3 "egg/sj3" "Activate SJ3 backend of Tamagotchy." t)
38
39 (register-input-method
40  "japanese-egg-wnn" "Japanese" 'egg-activate-wnn
41  "\e$B$"\e(B.."  "Romaji -> Hiragana -> Kanji&Kana"
42  'its-select-hiragana)
43
44 (register-input-method
45  "japanese-egg-sj3" "Japanese" 'egg-activate-sj3
46  "\e$B$"\e(B.."  "Romaji -> Hiragana -> Kanji&Kana"
47  'its-select-hiragana)
48
49 (register-input-method
50  "chinese-gb-egg-wnn-py" "Chinese-GB" 'egg-activate-wnn
51  "\e$AF4\e(BG"  "Pinyin -> Simplified Hanzi"
52  'its-select-pinyin-cn)
53
54 (register-input-method
55  "chinese-gb-egg-wnn-zy" "Chinese-GB" 'egg-activate-wnn
56  "\e$AW"\e(BG"  "Zhunyin -> Simplified Hanzi"
57  'its-select-zhuyin-cn)
58
59 (register-input-method
60  "chinese-gb-egg-wnn-qm" "Chinese-GB" 'egg-activate-wnn
61  "\e$AG.\e(B"  "QianMa Simplified Hanzi inputmethod"
62  'its-select-qianma)
63
64 (register-input-method
65  "chinese-gb-egg-wnn-wb" "Chinese-GB" 'egg-activate-wnn
66  "\e$ANe\e(B"  "WuBi Simplified Hanzi inputmethod"
67  'its-select-wubi)
68
69 (register-input-method
70  "chinese-cns-egg-wnn-py" "Chinese-CNS" 'egg-activate-wnn
71  "\e$(GQ;\e(BC"  "Pinyin -> Traditional Hanzi"
72  'its-select-pinyin-tw)
73
74 (register-input-method
75  "chinese-cns-egg-wnn-zy" "Chinese-CNS" 'egg-activate-wnn
76  "\e$(GNC\e(BC"  "Zhunyin -> Traditional Hanzi"
77  'its-select-zhuyin-tw)
78
79 (register-input-method
80  "korean-egg-wnn" "Korean" 'egg-activate-wnn
81  "\e$(CGQ\e(B"  "Hangul -> Hanja"
82  'its-select-hangul)
83
84 (autoload 'egg-mode "egg" "Toggle EGG  mode." t)