Mercurial > emacs
annotate lisp/talk.el @ 68498:528aecb860cf
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-30
Creator: Michael Olson <mwolson@gnu.org>
Merge from erc--main--0
2006-01-30 Michael Olson <mwolson@gnu.org>
* erc-stamp.el (erc-timestamp-right-align-by-pixel): New option
that determines whether to use pixel values to align right
timestamps. The default is not to do so, since it only works with
Emacs22 on X, and even then some people have trouble.
(erc-insert-aligned): Use `erc-timestamp-right-align-by-pixel'.
author | Miles Bader <miles@gnu.org> |
---|---|
date | Tue, 31 Jan 2006 00:24:36 +0000 |
parents | 41bb365f41c4 |
children | 3bd95f4f2941 532e0a9335a9 2d92f5c9d6ae |
rev | line source |
---|---|
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
18383
diff
changeset
|
1 ;;; talk.el --- allow several users to talk to each other through Emacs |
11684 | 2 |
64762
41bb365f41c4
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64091
diff
changeset
|
3 ;; Copyright (C) 1995, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. |
14169 | 4 |
45078 | 5 ;; Maintainer: FSF |
11684 | 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 | |
14169 | 21 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64091 | 22 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
23 ;; Boston, MA 02110-1301, USA. | |
11684 | 24 |
25 ;;; Commentary: | |
26 | |
14169 | 27 ;; This is a multi-user talk package that runs in Emacs. |
28 ;; Use talk-connect to bring a new person into the conversation. | |
11684 | 29 |
30 ;;; Code: | |
31 | |
32 (defvar talk-display-alist nil | |
33 "Alist of displays on which Emacs talk is now running. | |
34 Each 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 | |
48 (defun talk-add-display (display) | |
12461
578abe49e2d3
(talk-disconnect): Make it interactive.
Richard M. Stallman <rms@gnu.org>
parents:
11684
diff
changeset
|
49 (let* ((elt (assoc display talk-display-alist)) |
578abe49e2d3
(talk-disconnect): Make it interactive.
Richard M. Stallman <rms@gnu.org>
parents:
11684
diff
changeset
|
50 (name (concat "*talk-" display "*")) |
578abe49e2d3
(talk-disconnect): Make it interactive.
Richard M. Stallman <rms@gnu.org>
parents:
11684
diff
changeset
|
51 buffer frame) |
578abe49e2d3
(talk-disconnect): Make it interactive.
Richard M. Stallman <rms@gnu.org>
parents:
11684
diff
changeset
|
52 (if (not (and elt (frame-live-p (setq frame (nth 1 elt))))) |
578abe49e2d3
(talk-disconnect): Make it interactive.
Richard M. Stallman <rms@gnu.org>
parents:
11684
diff
changeset
|
53 (setq frame (make-frame-on-display display (list (cons 'name name))))) |
578abe49e2d3
(talk-disconnect): Make it interactive.
Richard M. Stallman <rms@gnu.org>
parents:
11684
diff
changeset
|
54 (if (not (and elt (buffer-name (get-buffer (setq buffer (nth 2 elt)))))) |
578abe49e2d3
(talk-disconnect): Make it interactive.
Richard M. Stallman <rms@gnu.org>
parents:
11684
diff
changeset
|
55 (setq buffer (get-buffer-create name))) |
578abe49e2d3
(talk-disconnect): Make it interactive.
Richard M. Stallman <rms@gnu.org>
parents:
11684
diff
changeset
|
56 (setq talk-display-alist |
578abe49e2d3
(talk-disconnect): Make it interactive.
Richard M. Stallman <rms@gnu.org>
parents:
11684
diff
changeset
|
57 (cons (list display frame buffer) (delq elt talk-display-alist))))) |
11684 | 58 |
59 (defun talk-disconnect () | |
60 "Disconnect this display from the Emacs talk group." | |
12461
578abe49e2d3
(talk-disconnect): Make it interactive.
Richard M. Stallman <rms@gnu.org>
parents:
11684
diff
changeset
|
61 (interactive) |
11684 | 62 (let* ((mydisp (cdr (assq 'display (frame-parameters (selected-frame))))) |
63 (elt (assoc mydisp talk-display-alist))) | |
64 (delete-frame (nth 1 elt)) | |
65 (kill-buffer (nth 2 elt)) | |
66 (setq talk-display-alist (delq elt talk-display-alist)) | |
67 (talk-update-buffers))) | |
68 | |
69 (defun talk-update-buffers () | |
70 "Update all the talk frames so that each shows all the talk buffers." | |
71 (let ((tail talk-display-alist)) | |
72 (while tail | |
73 (let ((frame (nth 1 (car tail))) | |
74 (this-buffer (nth 2 (car tail))) | |
75 (buffers | |
76 (mapcar (function (lambda (elt) (nth 2 elt))) | |
77 talk-display-alist))) | |
78 ;; Put this display's own talk buffer | |
79 ;; at the front of the list. | |
80 (setq buffers (cons this-buffer (delq this-buffer buffers))) | |
81 (talk-split-up-frame frame buffers)) | |
82 (setq tail (cdr tail))))) | |
83 | |
84 (defun talk-split-up-frame (frame buffers) | |
85 "Split FRAME into equal-sized windows displaying the buffers in BUFFERS. | |
86 Select the first of these windows, displaying the first of the buffers." | |
87 (let ((lines-per-buffer (/ (frame-height frame) (length buffers))) | |
88 (old-frame (selected-frame))) | |
89 (unwind-protect | |
90 (progn | |
91 (select-frame frame) | |
92 (select-window (frame-first-window frame)) | |
93 (delete-other-windows) | |
94 (while (progn | |
95 (switch-to-buffer (car buffers)) | |
96 (setq buffers (cdr buffers))) | |
97 (split-window-vertically lines-per-buffer) | |
98 (other-window 1)) | |
99 (select-window (frame-first-window frame))) | |
100 (select-frame old-frame)))) | |
101 | |
18383 | 102 (provide 'talk) |
103 | |
52401 | 104 ;;; arch-tag: 7ab0ad88-1788-4886-a44c-ae685e6f8a1a |
11684 | 105 ;;; talk.el ends here |