annotate lisp/x11/x-toolbar.el @ 98:0d2f883870bc r20-1b1

Import from CVS: tag r20-1b1
author cvs
date Mon, 13 Aug 2007 09:13:56 +0200
parents 821dec489c24
children cca96a509cfe
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ;; Toolbar support for X.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 ;; Copyright (C) 1994 Andy Piper <andyp@parallax.demon.co.uk>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 ;; Copyright (C) 1995 Board of Trustees, University of Illinois
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 ;; Copyright (C) 1996 Ben Wing <wing@666.com>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 ;; This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 ;; XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 ;; under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 ;; the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 ;; any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ;; XEmacs is distributed in the hope that it will be useful, but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;; General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 ;; You should have received a copy of the GNU General Public License
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 22
diff changeset
19 ;; along with XEmacs; see the file COPYING. If not, write to the
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 22
diff changeset
20 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 22
diff changeset
21 ;; Boston, MA 02111-1307, USA.
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
22
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
23 ;;
88
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
24 ;; Miscellaneous toolbar functions, useful for users to redefine, in
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
25 ;; order to get different behaviour.
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
26 ;;
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
27
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
28 (defvar toolbar-open-function 'find-file
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
29 "*Function to call when the open icon is selected.")
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
30
88
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
31 (defun toolbar-open ()
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
32 (interactive)
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
33 (call-interactively toolbar-open-function))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
34
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
35 (defvar toolbar-dired-function 'dired
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
36 "*Function to call when the dired icon is selected.")
88
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
37
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
38 (defun toolbar-dired ()
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
39 (interactive)
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
40 (call-interactively toolbar-dired-function))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
41
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
42 (defvar toolbar-save-function 'save-buffer
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
43 "*Function to call when the save icon is selected.")
88
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
44
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
45 (defun toolbar-save ()
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
46 (interactive)
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
47 (call-interactively toolbar-save-function))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
48
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
49 (defvar toolbar-print-function 'lpr-buffer
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
50 "*Function to call when the print icon is selected.")
88
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
51
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
52 (defun toolbar-print ()
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
53 (interactive)
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
54 (call-interactively toolbar-print-function))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
55
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
56 (defvar toolbar-cut-function 'x-kill-primary-selection
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
57 "*Function to call when the cut icon is selected.")
88
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
58
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
59 (defun toolbar-cut ()
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
60 (interactive)
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
61 (call-interactively toolbar-cut-function))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
62
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
63 (defvar toolbar-copy-function 'x-copy-primary-selection
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
64 "*Function to call when the copy icon is selected.")
88
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
65
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
66 (defun toolbar-copy ()
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
67 (interactive)
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
68 (call-interactively toolbar-copy-function))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
69
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
70 (defvar toolbar-paste-function 'x-yank-clipboard-selection
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
71 "*Function to call when the paste icon is selected.")
88
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
72
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
73 (defun toolbar-paste ()
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
74 (interactive)
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
75 (call-interactively toolbar-paste-function))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
76
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
77 (defvar toolbar-undo-function 'undo
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
78 "*Function to call when the undo icon is selected.")
88
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
79
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
80 (defun toolbar-undo ()
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
81 (interactive)
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
82 (call-interactively toolbar-undo-function))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
83
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
84 (defvar toolbar-replace-function 'query-replace
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
85 "*Function to call when the replace icon is selected.")
88
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
86
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
87 (defun toolbar-replace ()
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
88 (interactive)
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
89 (call-interactively toolbar-replace-function))
88
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
90
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
91 ;;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 ;; toolbar ispell variables and defuns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
95 (defvar toolbar-ispell-function
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
96 (lambda ()
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
97 (interactive)
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
98 (if (region-active-p)
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
99 (ispell-region (region-beginning) (region-end))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
100 (ispell-buffer)))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
101 "*Function to call when the ispell icon is selected.")
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
102
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 (defun toolbar-ispell ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 "Intelligently spell the region or buffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 (interactive)
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
106 (call-interactively toolbar-ispell-function))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 ;; toolbar mail variables and defuns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111
88
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
112 (defmacro toolbar-external (process &rest args)
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
113 `(lambda () (interactive) (call-process ,process nil 0 nil ,@args)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114
88
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
115 (defvar toolbar-mail-commands-alist
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
116 `((vm . vm)
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
117 (gnus . gnus-no-server)
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
118 (rmail . rmail)
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
119 (mh . mh-rmail)
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
120 (pine . ,(toolbar-external "xterm" "-e" "pine")) ; *gag*
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
121 (elm . ,(toolbar-external "xterm" "-e" "elm"))
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
122 (mutt . ,(toolbar-external "xterm" "-e" "mutt"))
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
123 (exmh . ,(toolbar-external "exmh"))
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
124 ;; How to turn on netscape mail, command-line??
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
125 (netscape . ,(toolbar-external "netscape")))
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
126 "Alist of mail readers and their commands.
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
127 The car of the alist is the mail reader, and the cdr is the form
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
128 used to start it.")
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129
88
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
130 (defvar toolbar-mail-reader 'vm
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
131 "*Mail reader toolbar will invoke.
88
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
132 The legal values are `vm' and `gnus', but you can add your own values
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
133 by customizing `toolbar-mail-commands-alist'.")
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
134
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 (defun toolbar-mail ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 "Run mail in a separate frame."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 (interactive)
88
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
139 (let ((command (assq toolbar-mail-reader toolbar-mail-commands-alist)))
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
140 (if (not command)
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
141 (error "Uknown mail reader %s" toolbar-mail-reader))
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
142 (funcall (cdr command))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 ;; toolbar info variables and defuns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 (defvar toolbar-info-frame nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 "The frame in which info is displayed.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 (defun toolbar-info ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 "Run info in a separate frame."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 (if (or (not toolbar-info-frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 (not (frame-live-p toolbar-info-frame)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 (setq toolbar-info-frame (make-frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 (select-frame toolbar-info-frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 (raise-frame toolbar-info-frame)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 (if (frame-iconified-p toolbar-info-frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 (deiconify-frame toolbar-info-frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 (select-frame toolbar-info-frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 (raise-frame toolbar-info-frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 (info))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 ;; toolbar debug variables and defuns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 (defun toolbar-debug ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 (if (featurep 'eos-debugger)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 (call-interactively 'eos::start-debugger)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 (require 'gdbsrc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 (call-interactively 'gdbsrc))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 (defvar compile-command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 (defun toolbar-compile ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 "Run compile without having to touch the keyboard."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 (require 'compile)
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 22
diff changeset
184 (popup-dialog-box
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 22
diff changeset
185 `(,(concat "Compile:\n " compile-command)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 22
diff changeset
186 ["Compile" (compile compile-command) t]
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 22
diff changeset
187 ["Edit command" compile t]
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 22
diff changeset
188 nil
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 22
diff changeset
189 ["Cancel" (message "Quit") t])))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 ;; toolbar news variables and defuns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
195 (defvar toolbar-news-commands-alist
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
196 `((gnus . gnus) ; M-x all-hail-gnus
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
197 (rn . ,(toolbar-external "xterm" "-e" "rn"))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
198 (nn . ,(toolbar-external "xterm" "-e" "nn"))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
199 (trn . ,(toolbar-external "xterm" "-e" "trn"))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
200 (xrn . ,(toolbar-external "xrn"))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
201 (slrn . ,(toolbar-external "xterm" "-e" "slrn"))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
202 (pine . ,(toolbar-external "xterm" "-e" "pine")) ; *gag*
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
203 (tin . ,(toolbar-external "xterm" "-e" "tin")) ; *gag*
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
204 (netscape . ,(toolbar-external "netscape" "news:")))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
205 "Alist of news readers and their commands.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
206 Each list element is a pair. The car of the pair is the mail
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
207 reader, and the cdr is the form used to start it.")
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
208
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
209 (defvar toolbar-news-reader 'gnus
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
210 "*News reader toolbar will invoke.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
211 The legal values are gnus, rn, nn, trn, xrn, slrn, pine and netscape.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
212 You can add your own values by customizing `toolbar-news-commands-alist'.")
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
213
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
214 (defvar toolbar-news-use-separate-frame t
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
215 "*Whether Gnus is invoked in a separate frame.")
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
216
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 (defvar toolbar-news-frame nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 "The frame in which news is displayed.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 76
diff changeset
220 (defvar toolbar-news-frame-properties nil
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 76
diff changeset
221 "The properties of the frame in which news is displayed.")
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 76
diff changeset
222
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 (defun toolbar-news ()
76
c0c698873ce1 Import from CVS: tag r20-0b33
cvs
parents: 70
diff changeset
224 "Run Gnus in a separate frame."
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 (interactive)
76
c0c698873ce1 Import from CVS: tag r20-0b33
cvs
parents: 70
diff changeset
226 (when (or (not toolbar-news-frame)
c0c698873ce1 Import from CVS: tag r20-0b33
cvs
parents: 70
diff changeset
227 (not (frame-live-p toolbar-news-frame)))
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 76
diff changeset
228 (setq toolbar-news-frame (make-frame toolbar-news-frame-properties))
76
c0c698873ce1 Import from CVS: tag r20-0b33
cvs
parents: 70
diff changeset
229 (add-hook 'gnus-exit-gnus-hook
c0c698873ce1 Import from CVS: tag r20-0b33
cvs
parents: 70
diff changeset
230 (lambda ()
c0c698873ce1 Import from CVS: tag r20-0b33
cvs
parents: 70
diff changeset
231 (when (frame-live-p toolbar-news-frame)
c0c698873ce1 Import from CVS: tag r20-0b33
cvs
parents: 70
diff changeset
232 (if (cdr (frame-list))
c0c698873ce1 Import from CVS: tag r20-0b33
cvs
parents: 70
diff changeset
233 (delete-frame toolbar-news-frame))
c0c698873ce1 Import from CVS: tag r20-0b33
cvs
parents: 70
diff changeset
234 (setq toolbar-news-frame nil))))
c0c698873ce1 Import from CVS: tag r20-0b33
cvs
parents: 70
diff changeset
235 (select-frame toolbar-news-frame)
c0c698873ce1 Import from CVS: tag r20-0b33
cvs
parents: 70
diff changeset
236 (raise-frame toolbar-news-frame)
c0c698873ce1 Import from CVS: tag r20-0b33
cvs
parents: 70
diff changeset
237 (gnus))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 (if (frame-iconified-p toolbar-news-frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 (deiconify-frame toolbar-news-frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 (select-frame toolbar-news-frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 (raise-frame toolbar-news-frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 (defvar toolbar-last-win-icon nil "A `last-win' icon set.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 (defvar toolbar-next-win-icon nil "A `next-win' icon set.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 (defvar toolbar-file-icon nil "A `file' icon set.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 (defvar toolbar-folder-icon nil "A `folder' icon set")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 (defvar toolbar-disk-icon nil "A `disk' icon set.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 (defvar toolbar-printer-icon nil "A `printer' icon set.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 (defvar toolbar-cut-icon nil "A `cut' icon set.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 (defvar toolbar-copy-icon nil "A `copy' icon set.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 (defvar toolbar-paste-icon nil "A `paste' icon set.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 (defvar toolbar-undo-icon nil "An `undo' icon set.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 (defvar toolbar-spell-icon nil "A `spell' icon set.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 (defvar toolbar-replace-icon nil "A `replace' icon set.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 (defvar toolbar-mail-icon nil "A `mail' icon set.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 (defvar toolbar-info-icon nil "An `info' icon set.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 (defvar toolbar-compile-icon nil "A `compile' icon set.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 (defvar toolbar-debug-icon nil "A `debugger' icon set.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 (defvar toolbar-news-icon nil "A `news' icon set.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 ;;; each entry maps a variable to the prefix used.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 (defvar init-x-toolbar-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 '((toolbar-last-win-icon . "last-win")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 (toolbar-next-win-icon . "next-win")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 (toolbar-file-icon . "file")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 (toolbar-folder-icon . "folder")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 (toolbar-disk-icon . "disk")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 (toolbar-printer-icon . "printer")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 (toolbar-cut-icon . "cut")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 (toolbar-copy-icon . "copy")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 (toolbar-paste-icon . "paste")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 (toolbar-undo-icon . "undo")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 (toolbar-spell-icon . "spell")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 (toolbar-replace-icon . "replace")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 (toolbar-mail-icon . "mail")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 (toolbar-info-icon . "info-def")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 (toolbar-compile-icon . "compile")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 (toolbar-debug-icon . "debug")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 (toolbar-news-icon . "news")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 (defun init-x-toolbar ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 (mapcar
10
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 4
diff changeset
284 (lambda (cons)
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 4
diff changeset
285 (let ((prefix (expand-file-name (cdr cons) toolbar-icon-directory)))
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 4
diff changeset
286 (set (car cons)
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 4
diff changeset
287 (if (featurep 'xpm)
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 4
diff changeset
288 (toolbar-make-button-list
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 4
diff changeset
289 (concat prefix "-up.xpm")
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 4
diff changeset
290 nil
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 4
diff changeset
291 (concat prefix "-xx.xpm")
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 4
diff changeset
292 (concat prefix "-cap-up.xpm")
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 4
diff changeset
293 nil
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 4
diff changeset
294 (concat prefix "-cap-xx.xpm"))
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 4
diff changeset
295 (toolbar-make-button-list
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 4
diff changeset
296 (concat prefix "-up.xbm")
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 4
diff changeset
297 (concat prefix "-dn.xbm")
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 4
diff changeset
298 (concat prefix "-xx.xbm")
49a24b4fd526 Import from CVS: tag r19-15b6
cvs
parents: 4
diff changeset
299 )))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 init-x-toolbar-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 ;; do this now because errors will occur if the icon symbols
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 ;; are not initted
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 (set-specifier default-toolbar initial-toolbar-spec))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 (defvar initial-toolbar-spec
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 22
diff changeset
306 '(;;[toolbar-last-win-icon pop-window-configuration
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 22
diff changeset
307 ;;(frame-property (selected-frame)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 22
diff changeset
308 ;; 'window-config-stack) t "Most recent window config"]
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 22
diff changeset
309 ;; #### Illicit knowledge?
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 22
diff changeset
310 ;; #### These don't work right - not consistent!
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 22
diff changeset
311 ;; I don't know what's wrong; perhaps `selected-frame' is wrong
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 22
diff changeset
312 ;; sometimes when this is evaluated. Note that I even tried to
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 22
diff changeset
313 ;; kludge-fix this by calls to `set-specifier-dirty-flag' in
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 22
diff changeset
314 ;; pop-window-configuration and such.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 22
diff changeset
315
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 22
diff changeset
316 ;;[toolbar-next-win-icon unpop-window-configuration
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 22
diff changeset
317 ;;(frame-property (selected-frame)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 22
diff changeset
318 ;; 'window-config-unpop-stack) t "Undo \"Most recent window config\""]
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 22
diff changeset
319 ;; #### Illicit knowledge?
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 22
diff changeset
320
88
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
321 [toolbar-file-icon toolbar-open t "Open a file" ]
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
322 [toolbar-folder-icon toolbar-dired t "View directory"]
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
323 [toolbar-disk-icon toolbar-save t "Save buffer" ]
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
324 [toolbar-printer-icon toolbar-print t "Print buffer" ]
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
325 [toolbar-cut-icon toolbar-cut t "Kill region"]
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
326 [toolbar-copy-icon toolbar-copy t "Copy region"]
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
327 [toolbar-paste-icon toolbar-paste t "Paste from clipboard"]
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
328 [toolbar-undo-icon toolbar-undo t "Undo edit" ]
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 [toolbar-spell-icon toolbar-ispell t "Spellcheck" ]
88
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 80
diff changeset
330 [toolbar-replace-icon toolbar-replace t "Replace text" ]
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 [toolbar-mail-icon toolbar-mail t "Mail" ]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 [toolbar-info-icon toolbar-info t "Information" ]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 [toolbar-compile-icon toolbar-compile t "Compile" ]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 [toolbar-debug-icon toolbar-debug t "Debug" ]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 [toolbar-news-icon toolbar-news t "News" ])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 "The initial toolbar for a buffer.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 (defun x-init-toolbar-from-resources (locale)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 (x-init-specifier-from-resources
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 top-toolbar-height 'natnum locale
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 '("topToolBarHeight" . "TopToolBarHeight"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 (x-init-specifier-from-resources
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 bottom-toolbar-height 'natnum locale
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 '("bottomToolBarHeight" . "BottomToolBarHeight"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 (x-init-specifier-from-resources
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 left-toolbar-width 'natnum locale
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 '("leftToolBarWidth" . "LeftToolBarWidth"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 (x-init-specifier-from-resources
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 right-toolbar-width 'natnum locale
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 '("rightToolBarWidth" . "RightToolBarWidth")))
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
351
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 88
diff changeset
352 ;;; x-toolbar.el ends here