;;; mule-cne.el --- interface between input methods Canna and EGG. ;; This file is part of XEmacs. ;; XEmacs 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, or (at your option) ;; any later version. ;; XEmacs 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 XEmacs; see the file COPYING. If not, write to the ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, ;; Boston, MA 02111-1307, USA. ;; Canna and Egg on Nemacs/Mule is distributed in the forms of ;; patches to Nemacs under the terms of the GNU EMACS GENERAL ;; PUBLIC LICENSE which is distributed along with GNU Emacs by ;; the Free Software Foundation. ;; Written by Akira Kon, NEC Corporation. ;; E-Mail: kon@d1.bs2.mt.nec.co.jp. ;; -*-mode: emacs-lisp-*- ;; !Id: can-n-egg.el,v 1.7 1994/03/16 07:24:15 kon Exp ! ;; この機能を使うには、 ;; M-x load このファイル ;; M-x can-n-egg ;; を実行します。 (require 'canna) (if (featurep 'mule) (require 'egg) (require 'wnn-egg)) (provide 'can-n-egg) ;;; この関数では、現在のモードが『かんな』の日本語入力モードか ;;; どうかをチェックして、『かんな』の日本語入力モードでないの ;;; であれば、『たまご』の egg-self-insert-command を呼ぶ。『か ;;; んな』の日本語入力モードであれば、『かんな』の ;;; canna-self-insert-command を呼ぶ。 (defvar canna-exec-hook nil) (defvar canna-toggle-key nil) (defvar egg-toggle-key nil) (defun can-n-egg-self-insert-command (arg) "Self insert pressed key and use it to assemble Romaji character." (interactive "p") (if canna:*japanese-mode* (canna-self-insert-command arg) (egg-self-insert-command arg))) ;; かんなだったら再変換、たまごだったら普通のキー入力。 ;; by rtakigaw@jp.oracle.com, 1994.3.16 (defun can-n-egg-henkan-region-or-self-insert (arg) "Do Canna Kana-to-Kanji re-conversion in region or Egg self insert." (interactive "p") (if canna:*japanese-mode* (canna-henkan-region-or-self-insert arg) (egg-self-insert-command arg))) (defun can-n-egg () "Start to use both Canna and Egg." (interactive) (if canna-exec-hook (run-hooks canna-exec-hook) (canna)) (let ((ch 32)) (while (< ch 127) (define-key global-map (make-string 1 ch) 'can-n-egg-self-insert-command) (setq ch (1+ ch)) )) (if canna-use-space-key-as-henkan-region (progn (global-set-key "\C-@" 'canna-set-mark-command) (global-set-key " " 'can-n-egg-henkan-region-or-self-insert))) (global-set-key (if canna-toggle-key canna-toggle-key "\C-o") 'canna-toggle-japanese-mode) (global-set-key (if egg-toggle-key egg-toggle-key "\C-\\") 'toggle-egg-mode) )