annotate lisp/w3/w3-menu.el @ 186:24ac94803b48

Added tag r20-3b19 for changeset 3d6bfa290dbd
author cvs
date Mon, 13 Aug 2007 09:55:30 +0200
parents 8eaf7971accc
children 489f57a838ef
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1 ;;; w3-menu.el --- Menu functions for emacs-w3
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 ;; Author: wmperry
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
3 ;; Created: 1997/07/06 22:24:36
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
4 ;; Version: 1.41
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 ;; Keywords: menu, hypermedia
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
8 ;;; Copyright (c) 1996 by William M. Perry (wmperry@cs.indiana.edu)
82
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
9 ;;; Copyright (c) 1996, 1997 Free Software Foundation, Inc.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 ;;; This file is part of GNU Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ;;; GNU Emacs is free software; you can redistribute it and/or modify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;;; it under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ;;; the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;;; any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 ;;; GNU Emacs is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 ;;; GNU General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 ;;; You should have received a copy of the GNU General Public License
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
24 ;;; along with GNU Emacs; see the file COPYING. If not, write to the
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
25 ;;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
26 ;;; Boston, MA 02111-1307, USA.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 (require 'w3-vars)
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
30 (require 'w3-mouse)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 134
diff changeset
31 (require 'widget)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 134
diff changeset
32
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 134
diff changeset
33 (define-widget-keywords :href :src :title)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 134
diff changeset
34
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 134
diff changeset
35 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 134
diff changeset
36 ;;; InfoDock stuff
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 134
diff changeset
37 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 134
diff changeset
38 (if (not (fboundp 'id-menubar-set))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 134
diff changeset
39 (fset 'id-menubar-set 'ignore))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 134
diff changeset
40
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 134
diff changeset
41 (id-menubar-set 'w3-mode 'w3-menu-make-xemacs-menubar)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 134
diff changeset
42
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 ;;; Spiffy new menus (for both Emacs and XEmacs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 (defvar w3-menu-fsfemacs-bookmark-menu nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 (defvar w3-menu-fsfemacs-debug-menu nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 (defvar w3-menu-fsfemacs-edit-menu nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 (defvar w3-menu-fsfemacs-file-menu nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 (defvar w3-menu-fsfemacs-go-menu nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 (defvar w3-menu-fsfemacs-help-menu nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 (defvar w3-menu-fsfemacs-view-menu nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 (defvar w3-menu-fsfemacs-options-menu nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 (defvar w3-menu-fsfemacs-style-menu nil)
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
55 (defvar w3-menu-fsfemacs-search-menu nil)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 (defvar w3-menu-w3-menubar nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 (defvar w3-links-menu nil "Menu for w3-mode in XEmacs.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 (make-variable-buffer-local 'w3-links-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
60 (defcustom w3-use-menus '(file edit view go bookmark options buffers style
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
61 emacs nil help)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 "*Non-nil value causes W3 to provide a menu interface.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 A value that is a list causes W3 to install its own menubar.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 A value of 1 causes W3 to install a \"W3\" item in the Emacs menubar.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 If the value of w3-use-menus is a list, it should be a list of symbols.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 The symbols and the order that they are listed determine what menus
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 will be in the menubar and how they are ordered. Valid symbol values
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 are:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 file -- A list of file related commands
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 edit -- Various standard editing commands (copy/paste)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 view -- Controlling various things about the document view
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 go -- Navigation control
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 bookmark -- Bookmark / hotlist control
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 options -- Various options
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 buffers -- The standard buffers menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 emacs -- A toggle button to switch back to normal emacs menus
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
79 style -- Control style information and who gets to set what
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
80 search -- Various search engines
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
81 help -- The help menu
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 nil -- ** special **
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 If nil appears in the list, it should appear exactly once. All
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 menus after nil in the list will be displayed flushright in the
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 82
diff changeset
86 menubar.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 82
diff changeset
87
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 82
diff changeset
88 NOTE! The current port of Emacs to Windows NT/95 does not support
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 82
diff changeset
89 buttons in the menubar, so the 'emacs' keyword is currently ignored
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
90 on that platform."
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
91 :group 'w3-menus
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
92 :type '(set (const :tag "File related commands" :value file)
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
93 (const :tag "Standard editing commands" :value edit)
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
94 (const :tag "View document information" :value view)
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
95 (const :tag "Navigation" :value go)
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
96 (const :tag "Bookmarks" :value bookmark)
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
97 (const :tag "Options" :value options)
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
98 (const :tag "Buffer list" :value buffers)
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
99 (const :tag "Stylesheet information" :value style)
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
100 (const :tag "Search engines" :value search)
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
101 (const :tag "Toggle to default menus" :value emacs)
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
102 (const :tag "Separator" :value nil)
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
103 (const :tag "Help" :value help)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 (defun w3-menu-hotlist-constructor (menu-items)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 (or (cdr w3-html-bookmarks)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 (let ((hot-menu nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 (hot w3-hotlist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 (while hot
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 (setq hot-menu (cons (vector
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 (w3-truncate-menu-item (car (car hot)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 (list 'w3-fetch (car (cdr (car hot))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 t) hot-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 hot (cdr hot)))
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
115 (or hot-menu '(["No Hotlist" nil nil])))))
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
116
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
117 (defun w3-menu-html-links-constructor (menu-items)
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
118 (or menu-items
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
119 (let ((links (mapcar 'cdr w3-current-links))
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
120 (menu nil))
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
121 (if links
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
122 (setq links (delete*
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
123 nil
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
124 (reduce 'append links)
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
125 :test-not (function
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
126 (lambda (a b) ; arg order unknown
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
127 (member
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
128 (car (or a b))
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
129 w3-defined-link-types))))))
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
130 (while links
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
131 (let ((name (caar links))
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
132 (vals (cdar links))
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
133 (href nil)
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
134 (new nil))
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
135 (if (= (length vals) 1)
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
136 (setq vals (car vals)
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
137 new (vector (or (plist-get vals 'title)
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
138 (capitalize name))
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
139 (list 'w3-fetch (plist-get vals 'href)) t))
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
140 (setq new (cons (capitalize name)
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
141 (mapcar (function
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
142 (lambda (x)
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
143 (setq href (plist-get x 'href))
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
144 (vector (or (plist-get x 'title) href)
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
145 (list 'w3-fetch href) t)))
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
146 vals))))
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
147 (setq links (cdr links)
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
148 menu (cons new menu))))
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
149 (or menu '(["None" nil nil])))))
0
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 w3-menu-links-constructor (menu-items)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 (or menu-items
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 (let ((widgets (w3-only-links))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 widget href menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 (while widgets
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 (setq widget (car widgets)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 widgets (cdr widgets)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 134
diff changeset
158 href (widget-get widget :href)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 menu (cons
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 (vector (w3-truncate-menu-item
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 134
diff changeset
161 (or (widget-get widget :title)
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
162 (w3-fix-spaces
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
163 (buffer-substring
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
164 (widget-get widget :from)
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
165 (widget-get widget :to)))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 (list 'url-maybe-relative href) t) menu)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 (setq menu (w3-breakup-menu menu w3-max-menu-length))
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
168 (or menu '(["No Links" nil nil])))))
0
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 w3-toggle-minibuffer ()
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 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 (w3-running-xemacs
82
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
174 (if (equal (frame-property (selected-frame) 'minibuffer) t)
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
175
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
176 ;; frame has a minibuffer, so remove it
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
177 ;; unfortunately, we must delete and redraw the frame
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
178 (let ((fp (frame-properties (selected-frame)))
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
179 (frame (selected-frame))
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
180 (buf (current-buffer)))
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
181 (select-frame
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
182 (make-frame (plist-put
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
183 (plist-remprop
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
184 (plist-remprop fp 'window-id) 'minibuffer)
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
185 'minibuffer nil)))
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
186 (delete-frame frame)
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
187 (switch-to-buffer buf))
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
188 ;; no minibuffer so add one
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
189 (set-frame-property (selected-frame) 'minibuffer t)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 (t nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 (defun w3-toggle-location ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 (w3-running-xemacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 (let ((on (specifier-instance has-modeline-p (selected-window))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 (set-specifier has-modeline-p (not on) (selected-window))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 (t nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 (defun w3-toggle-menubar ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 ;; XEmacs style
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 (w3-running-xemacs
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
205 (set-specifier menubar-visible-p (cons (current-buffer)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
206 (not (specifier-instance
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
207 menubar-visible-p)))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 ;; Emacs 19 style
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 (menu-bar-mode (if (w3-menubar-active) -1 1)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 (defun w3-location-active ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 (if w3-running-xemacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 (specifier-instance has-modeline-p (selected-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 (defun w3-menubar-active ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 (if w3-running-xemacs
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
219 (and (featurep 'menubar) (specifier-instance menubar-visible-p))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 (and (boundp 'menu-bar-mode) menu-bar-mode)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 (defun w3-menu-global-menubar ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 (if w3-running-xemacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 (default-value 'default-menubar)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 (lookup-key (current-global-map) [menu-bar])))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 (defconst w3-menu-file-menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 (list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 "File"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 ["Open Location..." w3-fetch t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 ["Open File..." w3-open-local t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 ["Open in New Window..." w3-fetch-other-frame t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 ["New Window" make-frame t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 "---"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 ["Save" save-buffer t nil]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 (list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 "Save As..."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 ["HTML" (w3-save-as "HTML Source") t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 ["Formatted Text" (w3-save-as "Formatted Text") t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 ["LaTeX" (w3-save-as "LaTeX Source") t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 ["PostScript" (w3-save-as "PostScript") t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 ["Binary" (w3-save-as "Binary") t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 "---"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 (list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 "Print As..."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 ["PostScript" (w3-print-this-url nil "PostScript") t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 ["Formatted Text" (w3-print-this-url nil "Formatted Text") t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 ["HTML Source" (w3-print-this-url nil "HTML Source") t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 ["LaTeX'd" (w3-print-this-url nil "LaTeX'd") t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 (list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 "Mail Document..."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 ["HTML" (w3-mail-current-document nil "HTML Source") t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 ["Formatted Text" (w3-mail-current-document nil "Formatted Text") t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 ["PostScript" (w3-mail-current-document nil "PostScript") t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 ["LaTeX Source" (w3-mail-current-document nil "LaTeX Source") t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 (if w3-running-xemacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 "---:shadowDoubleEtchedIn"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 "---")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 ["Close" delete-frame (not (eq (next-frame) (selected-frame)))]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 ["Exit" save-buffers-kill-emacs t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 "W3 file menu list.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 (defconst w3-menu-edit-menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 (list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 "Edit"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 ["Undo" advertised-undo nil]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 ["Cut" kill-region nil]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 ["Copy" copy-region-as-kill t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 "----"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 ["Search..." w3-search-forward t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 ["Search Again..." w3-search-again w3-last-search-item]
134
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 116
diff changeset
276 "----"
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 116
diff changeset
277 (list
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 116
diff changeset
278 "Preferences"
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 116
diff changeset
279 (if (fboundp 'custom-menu-create)
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 116
diff changeset
280 (custom-menu-create 'w3)
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 116
diff changeset
281 ["W3" ignore nil])
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 116
diff changeset
282 (if (fboundp 'custom-menu-create)
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 116
diff changeset
283 (custom-menu-create 'url)
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 116
diff changeset
284 ["URL" ignore nil])
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 116
diff changeset
285 )
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 "W3 edit menu list.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 (defconst w3-menu-view-menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 (list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 "View"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 ["Document Information" w3-document-information t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 ["Document Source" w3-source-document t]
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 165
diff changeset
294 ["Document Errors" w3-display-errors w3-current-badhtml]
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 ["Load Images" w3-load-delayed-images w3-delayed-images]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 "----"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 ["Refresh" w3-refresh-buffer w3-current-parse]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 ["Reload" w3-reload-document (and (url-view-url t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 (not (equal (url-view-url t) "")))]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 "----"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 ["Show URL" url-view-url t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 ["Show URL At Point" w3-view-this-url t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 "----"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 "W3 menu view list.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 (defconst w3-menu-debug-menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 (list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 "Debugging"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 ["View Parse Tree" (w3-display-parse-tree w3-current-parse)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 w3-current-parse]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 ["View Stylesheet" w3-display-stylesheet w3-current-stylesheet]
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
313 ["Reload Stylesheets" w3-refresh-stylesheets t]
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 "W3 menu debug list.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 (defconst w3-menu-go-menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 (list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 "Go"
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 82
diff changeset
320 ["Forward" w3-history-forward (cdr (w3-history-find-url-internal (url-view-url t)))]
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 82
diff changeset
321 ["Back" w3-history-backward (car (w3-history-find-url-internal (url-view-url t)))]
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 ["Home" w3 w3-default-homepage]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 ["View History..." w3-show-history-list url-keep-history]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 "----"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 (if w3-running-xemacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 '("Links" :filter w3-menu-links-constructor)
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
327 ["Links..." w3-e19-show-links-menu t])
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
328 (if w3-running-xemacs
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
329 '("Navigate" :filter w3-menu-html-links-constructor)
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
330 ["Navigate..." w3-e19-show-navigate-menu t])
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 "W3 menu go list.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 (defconst w3-menu-bookmark-menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 (list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 "Bookmark"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 ["View Bookmarks..." w3-show-hotlist w3-hotlist]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 ["Add Bookmark" w3-hotlist-add-document t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 ["Delete Bookmark" w3-hotlist-delete t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 ["Rename Bookmark" w3-hotlist-rename-entry t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 ["Append Bookmark List" w3-hotlist-append t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 "----"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 (if w3-running-xemacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 '("Bookmarks" :filter w3-menu-hotlist-constructor)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 ["Bookmarks" w3-e19-show-hotlist-menu t])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 "W3 menu bookmark list.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 (defconst w3-menu-options-menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 (list "Options"
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
351 ["Edit Preferences" w3-preferences-edit t]
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
352 "---"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 ["Show Menubar" w3-toggle-menubar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 :style toggle :selected (w3-menubar-active)]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 (if (and w3-running-xemacs (featurep 'toolbar))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 ["Show Toolbar" w3-toggle-toolbar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 :style toggle :selected (w3-toolbar-active)]
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
358 ["Show Toolbar" w3-toggle-toolbar nil])
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 (if w3-running-xemacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 ["Show Location" w3-toggle-location
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 :style toggle :selected (w3-location-active)]
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
362 ["Show Location" w3-toggle-location nil])
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 (if w3-running-xemacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 ["Show Status Bar" w3-toggle-minibuffer
82
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
365 :style toggle
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
366 :selected (eq (frame-property (selected-frame) 'minibuffer) t)
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
367 ])
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 ["Incremental Display"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 (setq w3-do-incremental-display (not w3-do-incremental-display))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 :style toggle :selected w3-do-incremental-display]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 "----"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 ["Auto Load Images"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 (setq w3-delay-image-loads (not w3-delay-image-loads))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 :style toggle :selected (not w3-delay-image-loads)]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 ["Flush Image Cache" (setq w3-graphics-list nil) w3-graphics-list]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 "----"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 ["Download to disk" (setq w3-dump-to-disk (not w3-dump-to-disk))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 :style toggle :selected w3-dump-to-disk]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 ["Caching" (setq url-automatic-caching (not url-automatic-caching))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 :style toggle :selected url-automatic-caching]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 ["Use Cache Only"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 (setq url-standalone-mode (not url-standalone-mode))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 :style toggle :selected url-standalone-mode]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 "----"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 ["Save Options" w3-menu-save-options t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 "W3 menu options list.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 (defconst w3-menu-style-menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 (list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 "Style"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 ["Allow Document Stylesheets" (setq w3-honor-stylesheets
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 (not w3-honor-stylesheets))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 :style toggle :selected w3-honor-stylesheets]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 ["Honor Color Requests" (setq w3-user-colors-take-precedence
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 (not w3-user-colors-take-precedence))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 :style toggle :selected (not w3-user-colors-take-precedence)]
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
398 "---"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
399 ["Reload Stylesheets" w3-refresh-stylesheets t]
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 "W3 menu style list.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 (defconst w3-menu-buffer-menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 (if w3-running-xemacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 '("Buffers"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 :filter buffers-menu-filter
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 ["List All Buffers" list-buffers t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 "--!here")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 "W3 menu buffer list.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
412 (defconst w3-menu-search-menu
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
413 (list
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
414 "Search"
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
415 ["Yahoo!" (w3-fetch "http://www.yahoo.com/") t]
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
416 ["Excite" (w3-fetch "http://www.excite.com/") t]
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
417 ["AltaVista" (w3-fetch "http://www.altavista.digital.com/") t]
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
418 "---"
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
419 )
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
420 "W3 search menu")
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
421
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 (defconst w3-menu-emacs-button
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 (vector
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 (if w3-running-xemacs "XEmacs" "Emacs") 'w3-menu-toggle-menubar t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 (defconst w3-menu-help-menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 (list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 "Help"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 ["About Emacs-w3" (w3-fetch "about:") t]
82
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
430 ["Manual" (w3-fetch (concat w3-documentation-root "docs/w3_toc.html")) t]
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 "---"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 ["Version Information..."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 (w3-fetch
82
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
434 (concat w3-documentation-root "help/version_" w3-version-number ".html"))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 t]
82
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
436 ["On FAQ" (w3-fetch (concat w3-documentation-root "help/FAQ.html")) t]
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 "---"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 ["Mail Developer(s)" w3-submit-bug t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 "W3 menu help list.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 (defvar w3-mode-menu-map nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 (defun w3-menu-initialize-w3-mode-menu-map ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 (if (null w3-mode-menu-map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 (let ((map (make-sparse-keymap))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 (dummy (make-sparse-keymap)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 (require 'easymenu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 ;; initialize all the w3-menu-fsfemacs-*-menu variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 ;; with the menus.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 (easy-menu-define w3-menu-fsfemacs-bookmark-menu (list dummy) nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 w3-menu-bookmark-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 (easy-menu-define w3-menu-fsfemacs-debug-menu (list dummy) nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 w3-menu-debug-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 (easy-menu-define w3-menu-fsfemacs-edit-menu (list dummy) nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 w3-menu-edit-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 (easy-menu-define w3-menu-fsfemacs-file-menu (list dummy) nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 w3-menu-file-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 (easy-menu-define w3-menu-fsfemacs-go-menu (list dummy) nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 w3-menu-go-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 (easy-menu-define w3-menu-fsfemacs-help-menu (list dummy) nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 w3-menu-help-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 (easy-menu-define w3-menu-fsfemacs-view-menu (list dummy) nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 w3-menu-view-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 (easy-menu-define w3-menu-fsfemacs-options-menu (list dummy) nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 w3-menu-options-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 (easy-menu-define w3-menu-fsfemacs-style-menu (list dummy) nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 w3-menu-style-menu)
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
469 (easy-menu-define w3-menu-fsfemacs-search-menu (list dummy) nil
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
470 w3-menu-search-menu)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 ;; block the global menubar entries in the map so that W3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 ;; can take over the menubar if necessary.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 (define-key map [rootmenu] (make-sparse-keymap))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 (define-key map [rootmenu w3] (cons "W3" (make-sparse-keymap "W3")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 (define-key map [rootmenu w3 file] 'undefined)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 (define-key map [rootmenu w3 files] 'undefined)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 (define-key map [rootmenu w3 search] 'undefined)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 (define-key map [rootmenu w3 edit] 'undefined)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 (define-key map [rootmenu w3 options] 'undefined)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 (define-key map [rootmenu w3 buffer] 'undefined)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 (define-key map [rootmenu w3 tools] 'undefined)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 (define-key map [rootmenu w3 help] 'undefined)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 (define-key map [rootmenu w3 help-menu] 'undefined)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 ;; now build W3's menu tree.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 (let ((menu-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 '(
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 (bookmark
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 (cons "Bookmark" w3-menu-fsfemacs-bookmark-menu))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 (debug
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 (cons "Debug" w3-menu-fsfemacs-debug-menu))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 (edit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 (cons "Edit" w3-menu-fsfemacs-edit-menu))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 (file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 (cons "File" w3-menu-fsfemacs-file-menu))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 (go
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 (cons "Go" w3-menu-fsfemacs-go-menu))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 (help
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 (cons "Help" w3-menu-fsfemacs-help-menu))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 (options
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 (cons "Options" w3-menu-fsfemacs-options-menu))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 (view
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 (cons "View" w3-menu-fsfemacs-view-menu))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 (style
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 (cons "Style" w3-menu-fsfemacs-style-menu))
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
506 (search
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
507 (cons "Search" w3-menu-fsfemacs-search-menu))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 (emacs
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 82
diff changeset
509 ;; FIXME!!! Currently, win32 doesn't support buttons
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 82
diff changeset
510 ;; in menubars, so we hack around it and ignore the
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 82
diff changeset
511 ;; 'emacs keyword on that platform. REMOVE THIS CODE
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 82
diff changeset
512 ;; as soon as that is fixed. 19.35 timeframe?
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 82
diff changeset
513 (if (eq (device-type) 'win32)
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 82
diff changeset
514 nil
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 82
diff changeset
515 (cons "[Emacs]" 'w3-menu-toggle-menubar)))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 cons
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 (vec (vector 'rootmenu 'w3 nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 ;; menus appear in the opposite order that we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 ;; define-key them.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 (menu-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 (if (consp w3-use-menus)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 (reverse w3-use-menus)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 (list 'help nil 'emacs 'buffers 'options 'bookmark
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 'go 'view 'edit 'file))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 (while menu-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 (if (null (car menu-list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 nil;; no flushright support in FSF Emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 (aset vec 2 (intern (concat "w3-menu-fsfemacs-"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 (symbol-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 (car menu-list)) "-menu")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 (setq cons (assq (car menu-list) menu-alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 (if cons
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 (define-key map vec (eval (car (cdr cons))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 (setq menu-list (cdr menu-list))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 (setq w3-mode-menu-map map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 (run-hooks 'w3-menu-setup-hook))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 (defun w3-menu-make-xemacs-menubar ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 (let ((menu-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 '((bookmark . w3-menu-bookmark-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 (style . w3-menu-style-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 (buffer . w3-menu-buffer-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 (debug . w3-menu-debug-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 (edit . w3-menu-edit-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 (emacs . w3-menu-emacs-button)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 (file . w3-menu-file-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 (go . w3-menu-go-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 (help . w3-menu-help-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 (options . w3-menu-options-menu)
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 70
diff changeset
550 (search . w3-menu-search-menu)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 (view . w3-menu-view-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 cons
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 (menubar nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 (menu-list w3-use-menus))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 (while menu-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 (if (null (car menu-list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 (setq menubar (cons nil menubar))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 (setq cons (assq (car menu-list) menu-alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 (if cons
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 (setq menubar (cons (symbol-value (cdr cons)) menubar))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 (setq menu-list (cdr menu-list)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 (nreverse menubar)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 (defun w3-menu-install-menubar ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 (w3-running-xemacs
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 134
diff changeset
569 (cond
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 134
diff changeset
570 ((not (featurep 'menubar)) nil) ; No menus available
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 134
diff changeset
571 ((featurep 'infodock) nil) ; InfoDock does it automatically
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 134
diff changeset
572 (t
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 (setq w3-menu-w3-menubar (w3-menu-make-xemacs-menubar))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 134
diff changeset
574 (set-buffer-menubar w3-menu-w3-menubar))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 ((not (fboundp 'vm-menu-undo-menu))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 (w3-menu-initialize-w3-mode-menu-map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 (define-key w3-mode-map [menu-bar]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 (lookup-key w3-mode-menu-map [rootmenu w3])))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 (defun w3-menu-install-menubar-item ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 (w3-running-xemacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 (if (not (featurep 'menubar))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 nil ; No menus available
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 (set-buffer-menubar (copy-sequence (w3-menu-global-menubar)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 (add-menu nil "W3" (cdr w3-menu-w3-menubar))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 ((not (fboundp 'w3-menu-fsfemacs-edit-menu))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 (w3-menu-initialize-w3-mode-menu-map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 (define-key w3-mode-map [menu-bar]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 (lookup-key w3-mode-menu-map [rootmenu])))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 (defun w3-menu-install-menus ()
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
593 (cond ((= emacs-minor-version 28) ; Hey, get with the times people!!
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
594 nil)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
595 ((consp w3-use-menus)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 (w3-menu-install-menubar))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 ((eq w3-use-menus 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 (w3-menu-install-menubar-item))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 (t nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 (defun w3-menu-set-menubar-dirty-flag ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 (cond (w3-running-xemacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 (set-menubar-dirty-flag))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 (force-mode-line-update))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 (defun w3-menu-toggle-menubar ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 ;;((eq w3-use-menus 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 ;;nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 (w3-running-xemacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 (if (null (car (find-menu-item current-menubar '("XEmacs"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 (set-buffer-menubar w3-menu-w3-menubar)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 (set-buffer-menubar (copy-sequence (w3-menu-global-menubar)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 (condition-case ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 (add-menu-button nil ["W3" w3-menu-toggle-menubar t] nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 (void-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 (add-menu-item nil "W3" 'w3-menu-toggle-menubar t))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 (w3-menu-set-menubar-dirty-flag))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 (if (not (eq (lookup-key w3-mode-map [menu-bar])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 (lookup-key w3-mode-menu-map [rootmenu w3])))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 (define-key w3-mode-map [menu-bar]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 (lookup-key w3-mode-menu-map [rootmenu w3]))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 (define-key w3-mode-map [menu-bar]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 (make-sparse-keymap))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 (define-key w3-mode-map [menu-bar w3]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 (cons "[W3]" 'w3-menu-toggle-menubar)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 (w3-menu-set-menubar-dirty-flag))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 (defun w3-menu-save-options ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 (let ((output-buffer (find-file-noselect w3-default-configuration-file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 output-marker)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 (set-buffer output-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 ;; Find and delete the previously saved data, and position to write.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 (if (re-search-forward "^;; W3 Options Settings *\n" nil 'move)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 (let ((p (match-beginning 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 (goto-char p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 (or (re-search-forward
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 "^;; End of W3 Options Settings *\\(\n\\|\\'\\)"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 (error "can't find END of saved state in .emacs"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 (delete-region p (match-end 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 (goto-char (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 (insert "\n"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 (setq output-marker (point-marker))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 (let ((print-readably t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 (print-escape-newlines t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 (standard-output output-marker))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 (princ ";; W3 Options Settings\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 (princ ";; ===================\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 (mapcar (function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 (lambda (var)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 (princ " ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 (if (and (symbolp var) (boundp var))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 (prin1 (list 'setq-default var
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 (let ((val (symbol-value var)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 (if (or (memq val '(t nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 (and (not (symbolp val))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 (not (listp val))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 val
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 (list 'quote val))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 (if var (princ "\n"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 '(
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 ps-print-color-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 url-automatic-caching
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
673 url-be-asynchronous
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
674 url-honor-refresh-requests
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
675 url-privacy-level
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
676 url-cookie-confirmation
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 url-proxy-services
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
678 url-standalone-mode
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
679 url-use-hypertext-gopher
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 w3-default-homepage
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
681 w3-default-stylesheet
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
682 w3-delay-image-loads
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
683 w3-do-incremental-display
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
684 w3-dump-to-disk
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
685 w3-honor-stylesheets
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
686 w3-image-mappings
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
687 w3-load-hook
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
688 w3-mode-hook
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
689 w3-netscape-compatible-comments
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
690 w3-preferences-cancel-hook
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
691 w3-preferences-default-hook
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
692 w3-preferences-ok-hook
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
693 w3-preferences-setup-hook
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
694 w3-source-file-hook
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 w3-toolbar-orientation
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
696 w3-toolbar-type
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
697 w3-use-menus
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
698 w3-user-colors-take-precedence
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 (princ ";; ==========================\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 (princ ";; End of W3 Options Settings\n")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 (set-marker output-marker nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 (set-buffer output-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 (save-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 ;;; Context-sensitive popup menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 (if (not (fboundp 'event-glyph))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 (fset 'event-glyph 'ignore))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 (defun w3-popup-menu (e)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 "Pop up a menu of common w3 commands"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 (interactive "e")
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
718 (if (not w3-popup-menu-on-mouse-3)
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
719 (call-interactively (lookup-key global-map (vector w3-mouse-button3)))
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
720 (mouse-set-point e)
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
721 (let* ((glyph (event-glyph e))
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
722 (widget (or (and glyph (glyph-property glyph 'widget))
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
723 (widget-at (point))))
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
724 (parent (and widget (widget-get widget :parent)))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 134
diff changeset
725 (href (or (and widget (widget-get widget :href))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 134
diff changeset
726 (and parent (widget-get parent :href))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 134
diff changeset
727 (imag (or (and widget (widget-get widget :src))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 134
diff changeset
728 (and parent (widget-get parent :src))))
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
729 (menu (copy-tree w3-popup-menu))
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
730 url val trunc-url)
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
731 (if href
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
732 (progn
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
733 (setq url href)
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
734 (if url (setq trunc-url (url-truncate-url-for-viewing
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
735 url
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
736 w3-max-menu-width)))
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
737 (setcdr menu (append (cdr menu)
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
738 '("---")
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
739 (mapcar
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
740 (function
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
741 (lambda (x)
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
742 (vector (format (car x) trunc-url)
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
743 (list (cdr x) url) t)))
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
744 w3-hyperlink-menu)))))
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
745 (if imag
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
746 (progn
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
747 (setq url imag
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
748 trunc-url (url-truncate-url-for-viewing url
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
749 w3-max-menu-width))
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
750 (setcdr menu (append (cdr menu)
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
751 '("---")
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
752 (mapcar
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
753 (function
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
754 (lambda (x)
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
755 (vector (format (car x) trunc-url)
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
756 (list (cdr x) url) t)))
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
757 w3-graphlink-menu)))))
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
758 (if (not (w3-menubar-active))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 (setcdr menu (append (cdr menu)
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
760 '("---" ["Show Menubar" w3-toggle-menubar t]))))
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 110
diff changeset
761 (popup-menu menu))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 (provide 'w3-menu)