Mercurial > emacs
view lisp/language/mlm-util.el @ 83004:7900111db01c
Converted display hooks to be display-local. Plus many bugfixes.
lib-src/emacsclient.c (window_change_signal): Renamed to pass_signal_to_emacs.
(init_signal): Pass SIGINT and SIGQUIT to the emacs process.
lisp/faces.el (face-valid-attribute-values): Use the window-system
function, not the variable.
(read-face-attribute, face-spec-set-match-display, frame-set-background-mode)
(face-set-after-frame-default): Ditto.
lisp/frame.el (make-frame-on-tty): Added interactive declaration
(suggested by Robert J. Chassell). Use tty-create-frame-with-faces,
not make-terminal-frame.
src/termhooks.h (struct display_method): Renamed to display for brevity.
(struct display): Added all display hook variables as members of this structure.
Added next_display, reference_count, type and display_info components.
(FRAME_MUST_WRITE_SPACES, FRAME_FAST_CLEAR_END_OF_LINE, FRAME_LINE_INS_DEL_OK)
(FRAME_CHAR_INS_DEL_OK, FRAME_SCROLL_REGION_OK, FRAME_SCROLL_REGION_COST)
(FRAME_MEMORY_BELOW_FRAME, FRAME_RIF): Updated for struct display.
(FRAME_DISPLAY): New macro.
(create_display, delete_display): New prototypes.
src/frame.h (struct frame): Added `display' member, removed display_method.
(FRAME_LIVE_P): Look at f->display, not f->output_data.
src/termchar.h (struct tty_display_info): Removed display_method component.
(FRAME_TTY): Use the display structure, not output_data.
src/term.c (display_list): New variable.
(cursor_to_hook, raw_cursor_to_hook, clear_to_end_hook, clear_frame_hook)
(clear_end_of_line_hook, ins_del_lines_hook, delete_glyphs_hook)
(ring_bell_hook, reset_terminal_modes_hook, set_terminal_modes_hook)
(update_begin_hook, update_end_hook, set_terminal_window_hook)
(insert_glyphs_hook, write_glyphs_hook, delete_glyphs_hoo, read_socket_hook)
(frame_up_to_date_hook, mouse_position_hook, frame_rehighlight_hook)
(frame_raise_lower_hook, set_vertical_scroll_bar_hook, condemn_scroll_bars_hook)
(redeem_scroll_bar_hook, judge_scroll_bars_hook): Moved to struct display.
(tty_display_method_template): Removed.
(syms_of_term): Don't initialize tty_display_method_template.
(ring_bell, set_terminal_modes, reset_terminal_modes, update_begin)
(update_end, set_terminal_window, cursor_to, raw_cursor_to, clear_to_end)
(clear_frame, clear_end_of_line, write_glyphs, insert_glyphs)
(delete_glyphs, ins_del_lines): Access display hooks through the frame pointer.
(Ftty_display_color_p): Use the frame given as a parameter, or else return nil.
(Ftty_display_color_cells): Ditto.
(get_named_tty): Renamed to get_named_tty_display, changed return type to struct display.
(term_dummy_init): Renamed to initial_term_init. Create and return an initial display.
(term_init): Initialize a new struct display and return a pointer to
it instead of tty_display_info. Removed frame initialization kludge.
(Fdelete_tty): Updated for struct display.
(delete_tty): The parameter type is now struct display, not tty_display_info.
Delete the display, too.
(create_tty_output): New function for creating tty_output structures.
(delete_tty_output): New function for deleting tty_output structures.
(create_display): New function for creating and registering display structures.
(delete_display): New function for deleting and unregistering display structures.
src/dispextern.h: Updated prototypes.
src/dispnew.c: Include frame.h before termhooks.h.
(init_display): Updated term_init call to new signature.
src/emacs.c: Include frame.h (for termhooks.h).
src/keymap.c: Ditto.
src/lread.c: Ditto.
src/xsmfns.c: Ditto.
src/process.c: Include frame.h before termhooks.h.
src/frame.c (Fwindow_system): New function.
(syms_of_frame): Initialize it.
(make_terminal_frame): Open the terminal device before creating the new frame.
Disable scrollbars here, term_init cannot do that anymore.
(Fdelete_frame): Use the new delete_frame_hook, don't do display-specific
frame deletion here. Ditto for delete_display_hook.
(Fmouse_position, Fmouse_pixel_position, Fraise_frame, Flower_frame)
(Fredirect_frame_focus): Access display hooks through the frame pointer.
src/keyboard.c: Include frame.h before termhooks.h.
(start_polling, input_polling_used, stop_polling, gobble_input): Ignore read_socket_hook.
(kbd_buffer_get_event, Fset_input_mode): Access display hooks through the frame pointer.
(read_avail_input): Loop through all display devices for and call all read_socket_hook functions. Check ttys even if read_socket_hook returned an error.
src/sysdep.c (discard_tty_input): Ignore read_socket_hook.
(stuff_char): Don't do anything if the current frame is not on a termcap display.
(request_sigio, unrequest_sigio): Ignore read_socket_hook.
(init_sys_modes): Always call narrow_foreground_group. Set up terminal modes and sigio even under X.
src/xdisp.c (message2_nolog, message3_nolog, redisplay_internal)
(set_vertical_scroll_bar, redisplay_window): Access display hooks through the frame pointer.
(echo_area_display): Don't be afraid of termcap frames during an X+tty combo session.
src/xfaces.c: Include termhooks.h.
(Ftty_supports_face_attributes_p): Use the given frame, not selected_frame.
src/xfns.c (x_set_scroll_bar_foreground, x_set_scroll_bar_background): Access display hooks through the frame pointer.
(Fx_create_frame, x_create_tip_frame): Initialize the frame's display structure.
src/xmenu.c: Include termhooks.h after frame.h.
src/xselect.c (x_own_selection, some_frame_on_display, x_get_foreign_selection)
(Fx_disown_selection_internal, Fx_get_cut_buffer_internal)
(Fx_store_cut_buffer_internal, Fx_rotate_cut_buffers_internal): Don't do anything
if the selected frame is not an X frame.
src/xterm.c (x_display_method): Removed.
(x_create_frame_display, x_delete_frame_display): New functions for handling struct display objects.
(x_term_init): Set up a new struct display object, too.
(x_delete_display): Delete the struct display corresponding to the X display.
(x_initialize): Moved hook initialization to x_create_frame_display.
src/xterm.h (x_display_method): Removed.
(struct x_display_info): Added frame_display component.
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-44
author | Karoly Lorentey <lorentey@elte.hu> |
---|---|
date | Mon, 05 Jan 2004 05:54:35 +0000 |
parents | 88807cd5407c |
children | 18a818a2ee7c |
line wrap: on
line source
;;; mlm-util.el --- support for composing malayalam characters -*-coding: iso-2022-7bit;-*- ;; Copyright (C) 2003 Free Software Foundation, Inc. ;; Maintainer: KAWABATA, Taichi <kawabata@m17n.org> ;; Keywords: multilingual, Malayalam ;; 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 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, ;; Boston, MA 02111-1307, USA. ;; Created: Feb. 11. 2003 ;;; Commentary: ;; This file provides character(Unicode) to glyph(CDAC) conversion and ;; composition of Malayalam script characters. ;;; Code: ;; Malayalam Composable Pattern ;; C .. Consonants ;; V .. Vowel ;; H .. Halant ;; M .. Matra ;; V .. Vowel ;; A .. Anuswar ;; D .. Chandrabindu ;; (N .. Zerowidth Non Joiner) ;; (J .. Zerowidth Joiner. ) ;; 1. vowel ;; V(A|visargam)? ;; 2. syllable : maximum of 5 consecutive consonants. (e.g. kartsnya) ;; ((CH)?(CH)?(CH)?CH)?C(H|M?(A|D)?)? (defconst malayalam-consonant "[$,1@5(B-$,1@Y(B]") (defconst malayalam-composable-pattern (concat "\\([$,1@%(B-$,1@4(B][$,1@"(B]?\\)\\|$,1@#(B" "\\|\\(" "\\(?:\\(?:[$,1@5(B-$,1@Y(B]$,1@m(B\\)?\\(?:[$,1@5(B-$,1@Y(B]$,1@m(B\\)?\\(?:[$,1@5(B-$,1@Y(B]$,1@m(B\\)?[$,1@5(B-$,1@Y(B]$,1@m(B\\)?" "[$,1@5(B-$,1@Y(B]\\(?:$,1@m(B\\|[$,1@^(B-$,1@c@f@g@h@j@j@k@l(B]?[$,1@"@m(B]?\\)?" "\\)") "Regexp matching a composable sequence of Malayalam characters.") ;;;###autoload (defun malayalam-compose-region (from to) (interactive "r") (save-excursion (save-restriction (narrow-to-region from to) (goto-char (point-min)) (while (re-search-forward malayalam-composable-pattern nil t) (malayalam-compose-syllable-region (match-beginning 0) (match-end 0)))))) (defun malayalam-compose-string (string) (with-temp-buffer (insert (decompose-string string)) (malayalam-compose-region (point-min) (point-max)) (buffer-string))) ;;;###autoload (defun malayalam-post-read-conversion (len) (save-excursion (save-restriction (let ((buffer-modified-p (buffer-modified-p))) (narrow-to-region (point) (+ (point) len)) (malayalam-compose-region (point-min) (point-max)) (set-buffer-modified-p buffer-modified-p) (- (point-max) (point-min)))))) (defun malayalam-range (from to) "Make the list of the integers of range FROM to TO." (let (result) (while (<= from to) (setq result (cons to result) to (1- to))) result)) (defun malayalam-regexp-of-hashtbl-keys (hashtbl) "Return a regular expression that matches all keys in hashtable HASHTBL." (let ((max-specpdl-size 1000)) (regexp-opt (sort (let (dummy) (maphash (function (lambda (key val) (setq dummy (cons key dummy)))) hashtbl) dummy) (function (lambda (x y) (> (length x) (length y)))))))) ;;;###autoload (defun malayalam-composition-function (from to pattern &optional string) "Compose Malayalam characters in REGION, or STRING if specified. Assume that the REGION or STRING must fully match the composable PATTERN regexp." (if string (malayalam-compose-syllable-string string) (malayalam-compose-syllable-region from to)) (- to from)) ;; Register a function to compose Malayalam characters. (mapc (function (lambda (ucs) (aset composition-function-table (decode-char 'ucs ucs) (list (cons malayalam-composable-pattern 'malayalam-composition-function))))) (nconc '(#x0d02 #x0d03) (malayalam-range #x0d05 #x0d39))) ;; Notes on conversion steps. ;; 1. chars to glyphs ;; ;; Simple replacement of characters to glyphs is done. ;; 2. glyphs reordering. ;; ;; Two special reordering rule takes place. ;; a. following "$,46[(B" goes to the front. ;; b. following "$,46S6S(B", "$,46S(B" or "$,46T(B" goes to the front. ;; This reordering occurs only to the last cluster of consonants. ;; Preceding consonants with halant characters are not affected. ;; 3. Composition. ;; ;; left modifiers will be attached at the left. ;; others will be attached right. (defvar mlm-char-glyph '(;; various signs ("$,1@"(B" . "$,46W(B") ("$,1@#(B" . "$,46X(B") ;; Independent Vowels ("$,1@%(B" . "$,46!(B") ("$,1@&(B" . "$,46"(B") ("$,1@'(B" . "$,46#(B") ("$,1@((B" . "$,46#6U(B") ("$,1@)(B" . "$,46$(B") ("$,1@*(B" . "$,46$6U(B") ("$,1@+(B" . "$,46%(B") ("$,1@,(B" . "nil") ;; not in present use, not supported. ("$,1@.(B" . "$,46&(B") ("$,1@/(B" . "$,46'(B") ("$,1@0(B" . "$,46S6&(B") ("$,1@2(B" . "$,46((B") ("$,1@3(B" . "$,46(6M(B") ("$,1@4(B" . "$,46(6U(B") ;; Consonants ("$,1@5(B" . "$,46)(B") ("$,1@5@m@5(B" . "$,47!(B") ("$,1@5@m@S(B" . "$,47"(B") ("$,1@5@m@W(B" . "$,47#(B") ("$,1@5@m@?(B" . "$,47N(B") ("$,1@5@m@D(B" . "$,47`(B") ("$,1@5@a(B" . "$,47f(B") ("$,1@5@m@5@a(B" . "$,47g(B") ("$,1@5@a(B" . "$,47f(B") ("$,1@5@m@5@a(B" . "$,47g(B") ("$,1@6(B" . "$,46*(B") ("$,1@7(B" . "$,46+(B") ("$,1@7@m@7(B" . "$,47$(B") ("$,1@7@m@R(B" . "$,47%(B") ("$,1@7@m@N(B" . "$,47\(B") ("$,1@7@m@H(B" . "$,47a(B") ("$,1@8(B" . "$,46,(B") ("$,1@9(B" . "$,46-(B") ("$,1@9@m@5(B" . "$,47&(B") ("$,1@9@m@9(B" . "$,47'(B") ("$,1@9@m@5@a(B" . "$,47h(B") ("$,1@:(B" . "$,46.(B") ("$,1@:@m@:(B" . "$,47((B") ;; duplicate ("$,1@:@m@;(B" . "$,47Q(B") ("$,1@;(B" . "$,46/(B") ("$,1@<(B" . "$,460(B") ("$,1@<@m@<(B" . "$,47V(B") ("$,1@<@m@>(B" . "$,47Z(B") ("$,1@=(B" . "$,461(B") ("$,1@>(B" . "$,462(B") ("$,1@>@m@:(B" . "$,47)(B") ("$,1@>@m@>(B" . "$,47*(B") ("$,1@?(B" . "$,463(B") ("$,1@?@m@?(B" . "$,47+(B") ("$,1@@(B" . "$,464(B") ("$,1@A(B" . "$,465(B") ("$,1@A@m@A(B" . "$,47M(B") ("$,1@B(B" . "$,466(B") ("$,1@C(B" . "$,467(B") ("$,1@C@a@m(B" . "$,47,(B") ;; half consonant ("$,1@C@m@?(B" . "$,47-(B") ("$,1@C@m@C(B" . "$,47.(B") ("$,1@C@m@N(B" . "$,47W(B") ("$,1@C@m@A(B" . "$,47^(B") ("$,1@C@a(B" . "$,47i(B") ("$,1@D(B" . "$,468(B") ("$,1@D@m@D(B" . "$,47/(B") ("$,1@D@m@E(B" . "$,470(B") ("$,1@D@m@X(B" . "$,47U(B") ("$,1@D@m@M(B" . "$,47[(B") ("$,1@D@m@N(B" . "$,47_(B") ("$,1@E(B" . "$,469(B") ("$,1@F(B" . "$,46:(B") ("$,1@F@m@F(B" . "$,471(B") ("$,1@F@m@G(B" . "$,472(B") ("$,1@G(B" . "$,46;(B") ("$,1@H(B" . "$,46<(B") ("$,1@H@a@m(B" . "$,473(B") ;; half consonant ("$,1@H@m@D(B" . "$,474(B") ("$,1@H@m@F(B" . "$,475(B") ("$,1@H@m@H(B" . "$,476(B") ("$,1@H@m@N(B" . "$,477(B") ("$,1@H@m@G(B" . "$,47T(B") ("$,1@H@m@E(B" . "$,47Y(B") ("$,1@H@m@Q(B" . "$,47b(B") ("$,1@H@a(B" . "$,47k(B") ("$,1@H@m@H@a(B" . "$,47l(B") ("$,1@J(B" . "$,46=(B") ("$,1@J@m@J(B" . "$,478(B") ;; duplicate ("$,1@J@m@R(B" . "$,479(B") ;; lakar ("$,1@K(B" . "$,46>(B") ("$,1@L(B" . "$,46?(B") ("$,1@L@m@L(B" . "$,47:(B") ;; duplicate ("$,1@L@m@R(B" . "$,47;(B") ;; lakar ("$,1@L@m@G(B" . "$,47O(B") ("$,1@L@m@F(B" . "$,47P(B") ("$,1@M(B" . "$,46@(B") ("$,1@N(B" . "$,46A(B") ("$,1@N@m@J(B" . "$,47<(B") ("$,1@N@m@N(B" . "$,47=(B") ("$,1@N@m@R(B" . "$,47>(B") ;; lakar ("$,1@O(B" . "$,46B(B") ("$,1@O@m@O(B" . "$,47?(B") ;; duplicate ("$,1@O@m@5@m@5(B" . "$,47m(B") ("$,1@P(B" . "$,46C(B") ("$,1@P@a@m(B" . "$,47@(B") ("$,1@P@a(B" . "$,47j(B") ("$,1@Q(B" . "$,46D(B") ("$,1@Q@m(B" . "$,47@(B") ;; same glyph as "$,1@P@m(B" ("$,1@Q@a@m(B" . "$,47@(B") ;; same glyph as "$,1@P@m(B" ;;("$,1@Q@m@Q(B" . "$,47A(B") ("$,1@Q@m@Q(B" . "$,47d(B") ("$,1@R(B" . "$,46E(B") ("$,1@R@a@m(B" . "$,47B(B") ("$,1@R@m@R(B" . "$,47C(B") ;; lakar ("$,1@R@m@J(B" . "$,47e(B") ("$,1@S(B" . "$,46F(B") ("$,1@S@a@m(B" . "$,47D(B") ("$,1@S@m@S(B" . "$,47E(B") ("$,1@T(B" . "$,46G(B") ("$,1@U(B" . "$,46H(B") ("$,1@U@m@U(B" . "$,47F(B") ("$,1@V(B" . "$,46I(B") ("$,1@V@m@R(B" . "$,47G(B") ("$,1@V@m@V(B" . "$,47H(B") ("$,1@V@m@:(B" . "$,47](B") ("$,1@W(B" . "$,46J(B") ("$,1@W@m@?(B" . "$,47c(B") ("$,1@X(B" . "$,46K(B") ("$,1@X@m@R(B" . "$,47I(B") ("$,1@X@m@X(B" . "$,47J(B") ("$,1@X@m@Q@m@Q(B" . "$,47L(B") ("$,1@X@m@E(B" . "$,47X(B") ("$,1@Y(B" . "$,46L(B") ("$,1@Y@m@R(B" . "$,47K(B") ("$,1@Y@m@N(B" . "$,47R(B") ("$,1@Y@m@H(B" . "$,47S(B") ;; Dependent vowel signs ("$,1@^(B" . "$,46M(B") ("$,1@_(B" . "$,46N(B") ("$,1@`(B" . "$,46O(B") ("$,1@a(B" . "$,46P(B") ("$,1@b(B" . "$,46Q(B") ("$,1@c(B" . "$,46R(B") ("$,1@f(B" . "$,46S(B") ("$,1@g(B" . "$,46T(B") ("$,1@h(B" . "$,46S6S(B") ("$,1@j(B" . "$,46S6M(B") ("$,1@k(B" . "$,46T6M(B") ("$,1@l(B" . "$,46U(B") ;; Various signs ("$,1@m(B" . "$,46V(B") ("$,1@m@O(B" . "$,46Y(B") ;; yakar ("$,1@m@O@a(B" . "$,46\(B") ;; yakar + u ("$,1@m@O@b(B" . "$,46](B") ;; yakar + uu ("$,1@m@U(B" . "$,46Z(B") ;; vakar modifier ("$,1@m@P(B" . "$,46[(B") ;; rakar modifier is the same to rra modifier. ("$,1@m@P@m(B" . "$,46R(B") ;; halant + rakar + halant ("$,1@m@Q(B" . "$,46[(B") ;; rrakar modifier ("$,1@m@Q@m(B" . "$,46R(B") ;; halant + rrakar + halant ("$,1@m@m(B" . "$,46V(B") ;; double omission sign to stop forming half consonant. ("$,1@w(B" . "$,46U(B") ;; not in present use, already at 0D4C. )) (defvar mlm-char-glyph-hash (let* ((hash (make-hash-table :test 'equal))) (mapc (function (lambda (x) (puthash (car x) (cdr x) hash))) mlm-char-glyph) hash)) (defvar mlm-char-glyph-regexp (malayalam-regexp-of-hashtbl-keys mlm-char-glyph-hash)) ;; Malayalam languages needed to be reordered in a complex mannar. (defvar mlm-consonants (concat "$,46)6*6+6,6-6.6/606162636465666768696:6;6<6=6>6?6@6A6B6C6D6E6F6G6H6I6J6K6L(B" "$,47!7"7#7$7%7&7'7(7)7*7+7,7-7.7/707172737475767778797:7;7<7=7>7?7@7A7B7C7D7E7F7G7H7I7J7K7L7M7N7O7P7Q7R7S7T7U7V7W7X7Y7Z7[7\7]7^7_7`7a7b7c7d7e(B" )) (defvar mlm-consonants-regexp (concat "\\($,46[(B?[" mlm-consonants "][$,46Y6Z(B]?\\)")) (defvar mlm-glyph-reorder-key-glyphs "[$,46[6S6T(B]") (defvar mlm-glyph-reordering-regexp-list `((,(concat "\\([" mlm-consonants "][$,46Y6Z(B]?\\)$,46[(B") . "$,46[(B\\1") (,(concat mlm-consonants-regexp "$,46S6S(B") . "$,46S6S(B\\1") (,(concat mlm-consonants-regexp "$,46S(B") . "$,46S(B\\1") (,(concat mlm-consonants-regexp "$,46T(B") . "$,46T(B\\1"))) (defun malayalam-compose-syllable-string (string) (with-temp-buffer (insert (decompose-string string)) (malayalam-compose-syllable-region (point-min) (point-max)) (buffer-string))) (defun malayalam-compose-syllable-region (from to) "Compose malayalam syllable in region FROM to TO." (let (glyph-str match-str glyph-reorder-regexps glyph-reorder-replace glyph-reorder-regexp) (save-excursion (save-restriction (narrow-to-region from to) (goto-char (point-min)) ;; char-glyph-conversion (while (re-search-forward mlm-char-glyph-regexp nil t) (setq match-str (match-string 0)) (setq glyph-str (concat glyph-str (gethash match-str mlm-char-glyph-hash)))) (when (string-match mlm-glyph-reorder-key-glyphs glyph-str) ;; glyph reordering (setq glyph-reorder-regexps mlm-glyph-reordering-regexp-list) (while glyph-reorder-regexps (setq glyph-reorder-regexp (caar glyph-reorder-regexps)) (setq glyph-reorder-replace (cdar glyph-reorder-regexps)) (setq glyph-reorder-regexps (cdr glyph-reorder-regexps)) (if (string-match glyph-reorder-regexp glyph-str) (setq glyph-str (replace-match glyph-reorder-replace nil nil glyph-str))))) ;; concatenate and attach reference-points. (setq glyph-str (cdr (apply 'nconc (mapcar (function (lambda (x) (list '(5 . 3) x))) ;; default ref. point. glyph-str)))) (compose-region from to glyph-str))))) (provide 'mlm-util) ;;; arch-tag: 7f25ee67-8f9d-49f2-837b-35c412c00eba ;;; devan-util.el ends here