9aa95c41afbff43e77fcaf12d1c8d8db5f833f15
[riece] / lisp / riece-skk-kakutei.el
1 ;;; riece-skk-kakutei.el --- add-on skk-kakutei
2 ;; Copyright (C) 2003 TAKAHASHI Kaoru
3
4 ;; Author: TAKAHASHI "beatmaria" Kaoru <kaoru@kaisei.org>
5 ;; Keywords: IRC, riece
6
7 ;; This file is part of Riece.
8
9 ;; This program is free software; you can redistribute it and/or
10 ;; modify it under the terms of the GNU General Public License as
11 ;; published by the Free Software Foundation; either version 2, or (at
12 ;; your option) any later version.
13
14 ;; This program is distributed in the hope that it will be useful, but
15 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 ;; General Public License for more details.
18
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 ;; Boston, MA 02111-1307, USA.
23
24 ;;; Commentary:
25
26 ;; This add-on deny SKK's sankaku send.
27
28 ;; To use, add the following line to your ~/.riece/init.el:
29 ;; (add-to-list 'riece-addons 'riece-skk-kakutei)
30
31 ;;; Code:
32
33 (defun riece-skk-kakutei-command-enter-message ()
34   "Send the current line to the current channel."
35   (interactive)
36   (when (riece-skk-kakutei)
37     (riece-command-enter-message)))
38
39 (defun riece-skk-kakutei-command-enter-message-as-notice ()
40   "Send the current line to the current channel as NOTICE."
41   (interactive)
42   (when (riece-skk-kakutei)
43     (riece-command-enter-message-ad-notice)))
44
45 (defun riece-skk-kakutei ()
46   "When required after-follow return `t'."
47   (interactive)
48   (cond ((or (not (boundp 'skk-mode)) (not skk-mode))
49          t)
50         ((and (boundp 'skk-henkan-mode) (not skk-henkan-mode))
51          t)
52         ((and (boundp 'skk-henkan-on) (not skk-henkan-on))
53          t)
54         (skk-egg-like-newline
55          (skk-kakutei)
56          nil)
57         (t
58          (skk-kakutei)
59          t)))
60
61 (defun riece-skk-kakutei-insinuate ()
62   (riece-define-keys riece-command-mode-map
63     "\r" riece-skk-kakutei-command-enter-message
64     [(control return)] riece-skk-kakutei-command-enter-message-as-notice))
65
66 (provide 'riece-skk-kakutei)
67
68 ;;; riece-skk-kakutei.el ends here