2001-11-04 16:59:37 +00:00
|
|
|
|
;;; viqr.el --- Quail packages for inputting Vietnamese with VIQR system -*-coding: iso-2022-7bit;-*-
|
1997-07-08 01:48:20 +00:00
|
|
|
|
|
2007-01-16 08:40:03 +00:00
|
|
|
|
;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
|
|
|
|
|
;; 2006, 2007
|
2005-12-19 06:02:52 +00:00
|
|
|
|
;; National Institute of Advanced Industrial Science and Technology (AIST)
|
|
|
|
|
;; Registration Number H14PRO021
|
1997-07-08 01:48:20 +00:00
|
|
|
|
|
|
|
|
|
;; Keywords: multilingual, input method, latin
|
|
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
|
|
;; GNU Emacs 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.
|
|
|
|
|
|
|
|
|
|
;; GNU Emacs 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 GNU Emacs; see the file COPYING. If not, write to the
|
2005-07-04 15:47:28 +00:00
|
|
|
|
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
|
;; Boston, MA 02110-1301, USA.
|
1997-07-08 01:48:20 +00:00
|
|
|
|
|
2001-07-16 20:22:24 +00:00
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
1997-07-08 01:48:20 +00:00
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
|
|
(require 'quail)
|
|
|
|
|
(require 'viet-util)
|
|
|
|
|
|
|
|
|
|
;; `viet-viqr-alist' is an alist of Vietnamese characters vs
|
|
|
|
|
;; corresponding VIQR strings. We create Quail map which maps VIQR
|
|
|
|
|
;; strings to corresponding Vietnamese characters.
|
|
|
|
|
|
|
|
|
|
(defmacro viet-quail-define-rules ()
|
|
|
|
|
(cons 'quail-define-rules
|
|
|
|
|
(let ((l viet-viqr-alist)
|
|
|
|
|
rules)
|
|
|
|
|
(while l
|
|
|
|
|
(setq rules (cons (list (cdr (car l)) (car (car l))) rules))
|
|
|
|
|
(setq l (cdr l)))
|
|
|
|
|
rules)))
|
|
|
|
|
|
|
|
|
|
(quail-define-package
|
|
|
|
|
"vietnamese-viqr" "Vietnamese" "VQ" t
|
|
|
|
|
"Vietnamese input method with VIQR mnemonic system
|
|
|
|
|
|
|
|
|
|
effect | postfix | examples
|
|
|
|
|
------------+---------+----------
|
|
|
|
|
breve | ( | a( -> ,1e(B
|
|
|
|
|
circumflex | ^ | a^ -> ,1b(B
|
|
|
|
|
horn | + | o+ -> ,1=(B
|
|
|
|
|
------------+---------+----------
|
|
|
|
|
acute | ' | a' -> ,1a(B
|
|
|
|
|
grave | ` | a` -> ,1`(B
|
|
|
|
|
hook above | ? | a? -> ,1d(B
|
|
|
|
|
tilde | ~ | a~ -> ,1c(B
|
|
|
|
|
dot below | . | a. -> ,1U(B
|
|
|
|
|
------------+---------+----------
|
|
|
|
|
d bar | dd | dd -> ,1p(B
|
|
|
|
|
------------+---------+----------
|
1997-09-15 20:00:03 +00:00
|
|
|
|
no compose | \\ | a\\. -> a.
|
1997-07-08 01:48:20 +00:00
|
|
|
|
------------+---------+----------
|
|
|
|
|
combination| (~ | a(~ -> ,1G(B
|
1997-09-03 05:46:07 +00:00
|
|
|
|
" nil t t nil nil t nil nil nil nil t)
|
1997-07-08 01:48:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(viet-quail-define-rules)
|
|
|
|
|
|
2003-09-01 15:45:59 +00:00
|
|
|
|
;;; arch-tag: d2c29221-5a2e-46b2-898b-0e56bc4eb858
|
2001-07-16 20:22:24 +00:00
|
|
|
|
;;; viqr.el ends here
|