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
|
;;; jabber-keymap.el --- common keymap for many modes -*- lexical-binding: t; -*-
;; Copyright (C) 2003, 2004, 2007, 2008 - Magnus Henoch - mange@freemail.hu
;; Copyright (C) 2002, 2003, 2004 - tom berger - object@intelectronica.net
;; This file is a part of jabber.el.
;; 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 2 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, write to the Free Software
;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
;;; Code:
(require 'jabber-menu)
(require 'button t nil)
;; Global reference declarations
(declare-function jabber-send-presence "jabber-presence.el" (show status priority))
(declare-function jabber-send-xa-presence "jabber-presence.el" (&optional status))
(declare-function jabber-send-default-presence "jabber-presence.el" (&optional _ignore))
(declare-function jabber-send-away-presence "jabber-presence.el" (&optional status))
(declare-function jabber-activity-switch-to "lisp/jabber-activity.el" (&optional jid-param))
(declare-function jabber-chat-with "jabber-chat.el" (jc jid &optional other-window))
(declare-function jabber-switch-to-roster-buffer "jabber-roster.el" (&optional _jc))
(declare-function jabber-disconnect "jabber-core.el" (&optional arg interactivep))
(declare-function jabber-connect-all "jabber-core.el" (&optional arg))
(declare-function jabber-chat-buffer-switch "jabber-chat.el")
;;
(defvar jabber-common-keymap
(let ((map (make-sparse-keymap)))
(define-key map "\C-c\C-c" #'jabber-popup-chat-menu)
(define-key map "\C-c\C-r" #'jabber-popup-roster-menu)
(define-key map "\C-c\C-i" #'jabber-popup-info-menu)
(define-key map "\C-c\C-m" #'jabber-popup-muc-menu)
(define-key map "\C-c\C-s" #'jabber-popup-service-menu)
;; note that {forward,backward}-button are not autoloaded.
;; thus the `require' above.
(when (fboundp 'forward-button)
(define-key map [?\t] #'forward-button)
(define-key map [backtab] #'backward-button))
map))
;;;###autoload
(defvar jabber-global-keymap
(let ((map (make-sparse-keymap)))
(define-key map "\C-c" #'jabber-connect-all)
(define-key map "\C-d" #'jabber-disconnect)
(define-key map "\C-r" #'jabber-switch-to-roster-buffer)
(define-key map "\C-j" #'jabber-chat-with)
(define-key map "\C-l" #'jabber-activity-switch-to)
(define-key map "\C-a" #'jabber-send-away-presence)
(define-key map "\C-o" #'jabber-send-default-presence)
(define-key map "\C-x" #'jabber-send-xa-presence)
(define-key map "\C-p" #'jabber-send-presence)
(define-key map "\C-b" #'jabber-chat-buffer-switch)
map)
"Global Jabber keymap (usually under C-x C-j).")
;;;###autoload
(define-key ctl-x-map "\C-j" jabber-global-keymap)
(provide 'jabber-keymap)
;;; jabber-keymap.el ends here
|