Rename `struct device' to `struct terminal'. Rename some terminal-related functions...
[bpt/emacs.git] / lisp / talk.el
CommitLineData
60370d40 1;;; talk.el --- allow several users to talk to each other through Emacs
5abe8993 2
0d30b337 3;; Copyright (C) 1995, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
b578f267 4
30764597 5;; Maintainer: FSF
5abe8993
RS
6;; Keywords: comm, frames
7
8;; This file is part of GNU Emacs.
9
10;; GNU Emacs is free software; you can redistribute it and/or modify
11;; it under the terms of the GNU General Public License as published by
12;; the Free Software Foundation; either version 2, or (at your option)
13;; any later version.
14
15;; GNU Emacs is distributed in the hope that it will be useful,
16;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18;; GNU General Public License for more details.
19
20;; You should have received a copy of the GNU General Public License
b578f267 21;; along with GNU Emacs; see the file COPYING. If not, write to the
086add15
LK
22;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23;; Boston, MA 02110-1301, USA.
5abe8993
RS
24
25;;; Commentary:
26
b578f267
EN
27;; This is a multi-user talk package that runs in Emacs.
28;; Use talk-connect to bring a new person into the conversation.
5abe8993
RS
29
30;;; Code:
31
32(defvar talk-display-alist nil
33 "Alist of displays on which Emacs talk is now running.
34Each element has the form (DISPLAY FRAME BUFFER).")
35
36;;;###autoload
37(defun talk-connect (display)
38 "Connect to display DISPLAY for the Emacs talk group."
39 (interactive "sTalk to display: ")
40 ;; Make sure we have an entry for the current display.
41 (let ((mydisp (cdr (assq 'display (frame-parameters (selected-frame))))))
42 (talk-add-display mydisp))
43 ;; Make sure we have an entry for the specified display.
44 (talk-add-display display)
45 ;; Add the new buffers to all talk frames.
46 (talk-update-buffers))
47
17086732
KL
48;;;###autoload
49(defun talk ()
50 "Connect to the Emacs talk group from the current X display or tty frame."
51 (interactive)
b6660415 52 (let ((type (frame-live-p (selected-frame)))
6ed8eeff 53 (display (frame-terminal (selected-frame))))
b6660415
KL
54 (cond
55 ((eq type t)
56 (talk-add-display (selected-frame)))
57 ((eq type 'x)
6ed8eeff 58 (talk-add-display (frame-terminal (selected-frame))))
b6660415
KL
59 (t
60 (error "Unknown frame type"))))
17086732
KL
61 (talk-update-buffers))
62
b6660415
KL
63(defun talk-add-display (frame)
64 (let* ((display (if (frame-live-p frame)
6ed8eeff 65 (frame-terminal frame)
b6660415
KL
66 frame))
67 (elt (assoc display talk-display-alist))
6ed8eeff 68 (name (concat "*talk-" (terminal-name display) "*"))
17086732 69 buffer)
b6660415
KL
70 (unless (frame-live-p frame)
71 (setq frame (make-frame-on-display display (list (cons 'name name)))))
72 (if (and elt (frame-live-p (nth 1 elt)))
73 (setq frame (nth 1 elt)))
17086732
KL
74 (if (not (and elt (buffer-name (get-buffer (setq buffer (nth 2 elt))))))
75 (setq buffer (get-buffer-create name)))
b6660415 76 (add-to-list 'delete-frame-functions 'talk-handle-delete-frame)
17086732 77 (setq talk-display-alist
b6660415 78 (cons (list display frame buffer) (delq elt talk-display-alist)))))
17086732 79
b6660415
KL
80(defun talk-handle-delete-frame (frame)
81 (dolist (d talk-display-alist)
82 (when (eq (nth 1 d) frame)
83 (setq talk-display-alist (delq d talk-display-alist))
84 (talk-update-buffers))))
17086732 85
5abe8993
RS
86(defun talk-disconnect ()
87 "Disconnect this display from the Emacs talk group."
c2bef985 88 (interactive)
5abe8993
RS
89 (let* ((mydisp (cdr (assq 'display (frame-parameters (selected-frame)))))
90 (elt (assoc mydisp talk-display-alist)))
91 (delete-frame (nth 1 elt))
92 (kill-buffer (nth 2 elt))
93 (setq talk-display-alist (delq elt talk-display-alist))
94 (talk-update-buffers)))
95
96(defun talk-update-buffers ()
97 "Update all the talk frames so that each shows all the talk buffers."
98 (let ((tail talk-display-alist))
99 (while tail
100 (let ((frame (nth 1 (car tail)))
101 (this-buffer (nth 2 (car tail)))
102 (buffers
103 (mapcar (function (lambda (elt) (nth 2 elt)))
104 talk-display-alist)))
105 ;; Put this display's own talk buffer
106 ;; at the front of the list.
107 (setq buffers (cons this-buffer (delq this-buffer buffers)))
108 (talk-split-up-frame frame buffers))
109 (setq tail (cdr tail)))))
110
111(defun talk-split-up-frame (frame buffers)
112 "Split FRAME into equal-sized windows displaying the buffers in BUFFERS.
113Select the first of these windows, displaying the first of the buffers."
114 (let ((lines-per-buffer (/ (frame-height frame) (length buffers)))
115 (old-frame (selected-frame)))
116 (unwind-protect
117 (progn
118 (select-frame frame)
119 (select-window (frame-first-window frame))
120 (delete-other-windows)
121 (while (progn
122 (switch-to-buffer (car buffers))
123 (setq buffers (cdr buffers)))
124 (split-window-vertically lines-per-buffer)
125 (other-window 1))
126 (select-window (frame-first-window frame)))
127 (select-frame old-frame))))
128
896546cd
RS
129(provide 'talk)
130
ab5796a9 131;;; arch-tag: 7ab0ad88-1788-4886-a44c-ae685e6f8a1a
5abe8993 132;;; talk.el ends here