-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathskk-cursor.el
80 lines (59 loc) · 2.52 KB
/
skk-cursor.el
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
;;; skk-cursor.el --- SKK cursor control -*- coding: iso-2022-jp -*-
;; Copyright (C) 1996, 1997, 1998, 1999, 2000
;; Masatake YAMATO <[email protected]>
;; Author: Masatake YAMATO <[email protected]>
;; Maintainer: SKK Development Team
;; URL: https://github.com/skk-dev/ddskk
;; Keywords: japanese, mule, input method
;; This file is part of Daredevil SKK.
;; 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 3 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, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;;; Code:
(unless (skk-color-cursor-display-p)
(error "%s" "SKK-CURSOR requires color display"))
(require 'skk-macs)
(require 'skk-vars)
(eval-and-compile
(require 'ccc))
;; Functions.
(defun skk-cursor-default-color ()
(ccc-frame-cursor-color))
;;;###autoload
(defun skk-cursor-current-color ()
;; $B%+%l%s%H%P%C%U%!$N(B SKK $B$N%b!<%I$+$i!"%+!<%=%k$N?'$r<hF@$9$k!#(B
(cond ((not (and skk-use-color-cursor
skk-mode))
(skk-cursor-default-color))
;; `skk-start-henkan' $B$NCf$G$O!"(Bskk-j-mode $B%U%i%0$rN)$F$J$,$i!"(B
;; skk-abbrev-mode $B%U%i%0$bN)$F$F$$$k(B ($BJQ498e!"D>8e$KF~NO$9$kJ8(B
;; $B;z$,85$NF~NO%b!<%I$K$F9T$o$l$k$h$&$K(B)$B!#=>$$!"(Bskk-abbrev-mode
;; $B%U%i%0$N%A%'%C%/$NM%@hEY$r>e$2$k!#(B
(skk-abbrev-mode skk-cursor-abbrev-color)
(skk-jisx0208-latin-mode skk-cursor-jisx0208-latin-color)
(skk-katakana skk-cursor-katakana-color)
(skk-j-mode skk-cursor-hiragana-color)
(skk-jisx0201-mode skk-cursor-jisx0201-color)
(t skk-cursor-latin-color)))
;;;###autoload
(defun skk-cursor-set-1 (color)
(when ccc-default-cursor-color
(ccc-set-buffer-local-cursor-color (or color
(skk-cursor-current-color)))))
;;;###autoload
(defun skk-cursor-off-1 ()
(when ccc-default-cursor-color
(ccc-set-cursor-color-buffer-local nil)))
(provide 'skk-cursor)
;; Local Variables:
;; indent-tabs-mode: nil
;; End:
;;; skk-cursor.el ends here