;;; riece-display.el --- buffer arrangement ;; Copyright (C) 1998-2003 Daiki Ueno ;; Author: Daiki Ueno ;; Created: 1998-09-28 ;; Keywords: IRC, riece ;; This file is part of Riece. ;; 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, 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 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. ;;; Code: (require 'riece-options) (require 'riece-channel) (require 'riece-misc) (require 'riece-layout) (defvar riece-channel-buffer-format "*Channel:%s*" "Format of channel message buffer.") (defvar riece-channel-buffer-alist nil "An alist mapping identities to channel buffers.") (defvar riece-update-buffer-functions nil "Functions to redisplay the buffer. Local to the buffer in `riece-buffer-list'.") (defvar riece-update-indicator-functions '(riece-update-status-indicators riece-update-channel-indicator riece-update-long-channel-indicator riece-update-channel-list-indicator) "Functions to update modeline indicators.") ;;; Qt like "signal-slot" abstraction for routing display events. (defvar riece-signal-slot-obarray (make-vector 31 0)) (defun riece-make-slot (function &optional filter handback) "Make an instance of slot object. Arguments are corresponding to callback function, filter function, and a handback object, respectively. This function is for internal use only." (vector function filter handback)) (defun riece-slot-function (slot) "Return the callback function of SLOT. This function is for internal use only." (aref slot 0)) (defun riece-slot-filter (slot) "Return the filter function of SLOT. This function is for internal use only." (aref slot 1)) (defun riece-slot-handback (slot) "Return the handback object of SLOT. This function is for internal use only." (aref slot 2)) (defun riece-make-signal (name &rest args) "Make an instance of signal object. The 1st arguments is the name of the signal and the rest of arguments are the data of the signal." (vector name args)) (defun riece-signal-name (signal) "Return the name of SIGNAL." (aref signal 0)) (defun riece-signal-args (signal) "Return the data of SIGNAL." (aref signal 1)) (defun riece-connect-signal (signal-name function &optional filter handback) "Add SLOT as a listener of a signal identified by SIGNAL-NAME." (let ((symbol (intern (symbol-name signal-name) riece-signal-slot-obarray))) (set symbol (cons (riece-make-slot function filter handback) (if (boundp symbol) (symbol-value symbol)))))) (defun riece-emit-signal (signal) "Emit SIGNAL." (let ((symbol (intern-soft (symbol-name (riece-signal-name signal)) riece-signal-slot-obarray)) slots) (when symbol (setq slots (symbol-value symbol)) (while slots (condition-case error (if (or (null (riece-slot-filter (car slots))) (condition-case error (funcall (riece-slot-filter (car slots)) signal) (if riece-debug (message "Error occurred in signal filter for \"%S\": %S" (riece-signal-name signal) error)) nil)) (funcall (riece-slot-function (car slots)) signal (riece-slot-handback (car slots)))) (error (if riece-debug (message "Error occurred in slot function for \"%S\": %S" (riece-signal-name signal) error)))) (setq slots (cdr slots)))))) (defun riece-display-connect-signals () (riece-connect-signal 'riece-switch-to-channel (lambda (signal handback) (riece-update-status-indicators) (riece-update-channel-indicator) (riece-update-long-channel-indicator) (force-mode-line-update t) (save-excursion (set-buffer riece-user-list-buffer) (run-hooks 'riece-update-buffer-functions)) (save-excursion (set-buffer riece-channel-list-buffer) (run-hooks 'riece-update-buffer-functions)) (save-excursion (riece-redraw-layout)))) (riece-connect-signal 'riece-naming-assert-channel-users (lambda (signal handback) (save-excursion (set-buffer riece-user-list-buffer) (run-hooks 'riece-update-buffer-functions)))) (riece-connect-signal 'riece-naming-assert-join (lambda (signal handback) (save-excursion (set-buffer riece-user-list-buffer) (run-hooks 'riece-update-buffer-functions))) (lambda (signal) (and (riece-identity-equal (nth 1 (riece-signal-args signal)) riece-current-channel) (not (riece-identity-equal (car (riece-signal-args signal)) (riece-current-nickname)))))) (riece-connect-signal 'riece-naming-assert-part (lambda (signal handback) (save-excursion (set-buffer riece-user-list-buffer) (run-hooks 'riece-update-buffer-functions))) (lambda (signal) (and (riece-identity-equal (nth 1 (riece-signal-args signal)) riece-current-channel) (not (riece-identity-equal (car (riece-signal-args signal)) (riece-current-nickname)))))) (riece-connect-signal 'riece-naming-assert-rename (lambda (signal handback) (save-excursion (set-buffer riece-user-list-buffer) (run-hooks 'riece-update-buffer-functions))) (lambda (signal) (and (equal (riece-identity-server (nth 1 (riece-signal-args signal))) (riece-identity-server riece-current-channel)) (riece-with-server-buffer (riece-identity-server riece-current-channel) (riece-identity-assoc (riece-identity-prefix (nth 1 (riece-signal-args signal))) (riece-channel-get-users (riece-identity-prefix riece-current-channel)) t))))) (riece-connect-signal 'riece-naming-assert-rename (lambda (signal handback) (riece-update-status-indicators) (riece-update-channel-indicator) (force-mode-line-update t)) (lambda (signal) (riece-identity-equal (nth 1 (riece-signal-args signal)) (riece-current-nickname)))) (riece-connect-signal 'riece-user-toggle-away (lambda (signal handback) (riece-update-status-indicators) (force-mode-line-update t)) (lambda (signal) (riece-identity-equal (nth 1 (riece-signal-args signal)) (riece-current-nickname)))) (riece-connect-signal 'riece-user-toggle-operator (lambda (signal handback) (riece-update-status-indicators) (force-mode-line-update t)) (lambda (signal) (riece-identity-equal (nth 1 (riece-signal-args signal)) (riece-current-nickname)))) (riece-connect-signal 'riece-channel-set-topic (lambda (signal handback) (riece-update-long-channel-indicator) (force-mode-line-update t)) (lambda (signal) (riece-identity-equal (car (riece-signal-args signal)) riece-current-channel))) (riece-connect-signal 'riece-channel-toggle-modes (lambda (signal handback) (riece-update-status-indicators) (force-mode-line-update t)) (lambda (signal) (riece-identity-equal (car (riece-signal-args signal)) riece-current-channel))) (riece-connect-signal 'riece-channel-toggle-operator (lambda (signal handback) (save-excursion (set-buffer riece-user-list-buffer) (run-hooks 'riece-update-buffer-functions))) (lambda (signal) (riece-identity-equal (car (riece-signal-args signal)) riece-current-channel))) (riece-connect-signal 'riece-channel-toggle-speaker (lambda (signal handback) (save-excursion (set-buffer riece-user-list-buffer) (run-hooks 'riece-update-buffer-functions))) (lambda (signal) (riece-identity-equal (car (riece-signal-args signal)) riece-current-channel)))) (defun riece-update-user-list-buffer () (save-excursion (if (and riece-current-channel (riece-channel-p (riece-identity-prefix riece-current-channel))) (let* ((users (riece-with-server-buffer (riece-identity-server riece-current-channel) (riece-channel-get-users (riece-identity-prefix riece-current-channel)))) (inhibit-read-only t) buffer-read-only) (erase-buffer) (riece-kill-all-overlays) (while users (insert (if (memq ?o (cdr (car users))) "@" (if (memq ?v (cdr (car users))) "+" " ")) (riece-format-identity (riece-make-identity (car (car users)) (riece-identity-server riece-current-channel)) t) "\n") (setq users (cdr users))))))) (defun riece-update-channel-list-buffer () (save-excursion (let ((inhibit-read-only t) buffer-read-only (index 1) (channels riece-current-channels)) (erase-buffer) (riece-kill-all-overlays) (while channels (if (car channels) (insert (riece-format-channel-list-line index (car channels)))) (setq index (1+ index) channels (cdr channels)))))) (defun riece-format-channel-list-line (index channel) (or (run-hook-with-args-until-success 'riece-format-channel-list-line-functions index channel) (concat (format "%2d:%c" index (if (riece-identity-equal channel riece-current-channel) ?* ? )) (riece-format-identity channel) "\n"))) (defun riece-update-channel-indicator () (setq riece-channel-indicator (if riece-current-channel (riece-format-identity riece-current-channel) "None"))) (defun riece-update-long-channel-indicator () (setq riece-long-channel-indicator (if riece-current-channel (if (riece-channel-p (riece-identity-prefix riece-current-channel)) (riece-concat-channel-modes riece-current-channel (riece-concat-channel-topic riece-current-channel (riece-format-identity riece-current-channel))) (riece-format-identity riece-current-channel)) "None"))) (defun riece-update-channel-list-indicator () (if (and riece-current-channels ;; There is at least one channel. (delq nil (copy-sequence riece-current-channels))) (let ((index 1)) (setq riece-channel-list-indicator (mapconcat #'identity (delq nil (mapcar (lambda (channel) (prog1 (if channel (format "%d:%s" index (riece-format-identity channel))) (setq index (1+ index)))) riece-current-channels)) ","))) (setq riece-channel-list-indicator "No channel"))) (defun riece-update-status-indicators () (if riece-current-channel (with-current-buffer riece-command-buffer (riece-with-server-buffer (riece-identity-server riece-current-channel) (setq riece-away-indicator (if (and riece-real-nickname (riece-user-get-away riece-real-nickname)) "A" "-") riece-operator-indicator (if (and riece-real-nickname (riece-user-get-operator riece-real-nickname)) "O" "-") riece-user-indicator riece-real-nickname)))) (setq riece-freeze-indicator (with-current-buffer (if (and riece-channel-buffer-mode riece-channel-buffer) riece-channel-buffer riece-dialogue-buffer) (if (eq riece-freeze 'own) "f" (if riece-freeze "F" "-"))))) (defun riece-update-buffers (&optional buffers) (unless buffers (setq buffers riece-buffer-list)) (while buffers (save-excursion (set-buffer (car buffers)) (run-hooks 'riece-update-buffer-functions)) (setq buffers (cdr buffers))) (run-hooks 'riece-update-indicator-functions) (force-mode-line-update t) (run-hooks 'riece-update-buffer-hook)) (defun riece-channel-buffer-name (identity) (let ((channels (riece-identity-member identity riece-current-channels))) (if channels (setq identity (car channels)) (if riece-debug (message "%S is not a member of riece-current-channels" identity))) (format riece-channel-buffer-format (riece-format-identity identity)))) (eval-when-compile (autoload 'riece-channel-mode "riece")) (defun riece-channel-buffer-create (identity) (with-current-buffer (riece-get-buffer-create (riece-channel-buffer-name identity) 'riece-channel-mode) (setq riece-channel-buffer-alist (cons (cons identity (current-buffer)) riece-channel-buffer-alist)) (unless (eq major-mode 'riece-channel-mode) (riece-channel-mode) (let (buffer-read-only) (riece-insert-info (current-buffer) (concat "Created on " (funcall riece-format-time-function (current-time)) "\n")) (run-hook-with-args 'riece-channel-buffer-create-functions identity))) (current-buffer))) (defun riece-channel-buffer (identity) (cdr (riece-identity-assoc identity riece-channel-buffer-alist))) (defun riece-switch-to-channel (identity) (let ((last riece-current-channel)) (setq riece-current-channel identity riece-channel-buffer (riece-channel-buffer riece-current-channel)) (run-hook-with-args 'riece-after-switch-to-channel-functions last) (riece-emit-signal (riece-make-signal 'riece-switch-to-channel)))) (defun riece-join-channel (identity) (unless (riece-identity-member identity riece-current-channels) (setq riece-current-channels (riece-identity-assign-binding identity riece-current-channels (mapcar (lambda (channel) (if channel (riece-parse-identity channel))) riece-default-channel-binding))) (riece-channel-buffer-create identity))) (defun riece-switch-to-nearest-channel (pointer) (let ((start riece-current-channels) identity) (while (and start (not (eq start pointer))) (if (car start) (setq identity (car start))) (setq start (cdr start))) (unless identity (while (and pointer (null (car pointer))) (setq pointer (cdr pointer))) (setq identity (car pointer))) (if identity (riece-switch-to-channel identity) (let ((last riece-current-channel)) (run-hook-with-args 'riece-after-switch-to-channel-functions last) (setq riece-current-channel nil) (riece-emit-signal (riece-make-signal 'riece-switch-to-channel)))))) (defun riece-part-channel (identity) (let ((pointer (riece-identity-member identity riece-current-channels))) (if pointer (setcar pointer nil)) (if (riece-identity-equal identity riece-current-channel) (riece-switch-to-nearest-channel pointer)))) (defun riece-redisplay-buffers (&optional force) (riece-update-buffers) (riece-redraw-layout force) (run-hooks 'riece-redisplay-buffers-hook)) (provide 'riece-display) ;;; riece-display.el ends here