unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: David Reitter <david.reitter@gmail.com>
Subject: Re: menu-bar: disable items when no frame visible
Date: Thu, 10 Nov 2005 21:12:19 +0000	[thread overview]
Message-ID: <069BF3EB-C5E4-4042-91E9-0DFB37C58E99@gmail.com> (raw)
In-Reply-To: <B7BFC694-B257-45AA-9043-2D3B012CB13C@gmail.com>

On 10 Nov 2005, at 16:03, David Reitter wrote:

> This patch ensures that menu items are disabled when they should  
> be, i.e. when there is no applicable visible and non-iconified frame.
> In a lot of cases, one could do "insert file" or choose stuff from  
> the "search" menu even if there were only iconified or hidden frames.

Here's the patch again, this time not as attachment for your  
convenience.
(If any lines were wrapped, please use the previous attachment to  
apply.)

Index: menu-bar.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/menu-bar.el,v
retrieving revision 1.278
diff -c -r1.278 menu-bar.el
*** menu-bar.el	1 Nov 2005 23:21:39 -0000	1.278
--- menu-bar.el	10 Nov 2005 16:02:35 -0000
***************
*** 172,177 ****
--- 172,178 ----
     '(menu-item "Save" save-buffer
   	      :enable (and (buffer-modified-p)
   			   (buffer-file-name)
+ 			   (menu-bar-menu-frame-live-and-visible-p)
   			   (menu-bar-non-minibuffer-window-p))
   	      :help "Save current buffer to its file"))

***************
*** 184,190 ****
   	      :help "Discard (kill) current buffer"))
   (define-key menu-bar-file-menu [insert-file]
     '(menu-item "Insert File..." insert-file
! 	      :enable (menu-bar-non-minibuffer-window-p)
   	      :help "Insert another file into current buffer"))
   (define-key menu-bar-file-menu [dired]
     '(menu-item "Open Directory..." dired
--- 185,192 ----
   	      :help "Discard (kill) current buffer"))
   (define-key menu-bar-file-menu [insert-file]
     '(menu-item "Insert File..." insert-file
! 	      :enable (and (menu-bar-non-minibuffer-window-p)
! 			   (menu-bar-menu-frame-live-and-visible-p))
   	      :help "Insert another file into current buffer"))
   (define-key menu-bar-file-menu [dired]
     '(menu-item "Open Directory..." dired
***************
*** 192,202 ****
   	      :help "Read a directory, to operate on its files"))
   (define-key menu-bar-file-menu [open-file]
     '(menu-item "Open File..." find-file-existing
! 	      :enable (menu-bar-non-minibuffer-window-p)
   	      :help "Read an existing file into an Emacs buffer"))
   (define-key menu-bar-file-menu [new-file]
     '(menu-item "Visit New File..." find-file
! 	      :enable (menu-bar-non-minibuffer-window-p)
   	      :help "Specify a new file's name, to edit the file"))

   \f
--- 194,206 ----
   	      :help "Read a directory, to operate on its files"))
   (define-key menu-bar-file-menu [open-file]
     '(menu-item "Open File..." find-file-existing
! 	      :enable (or enable-recursive-minibuffers
! 		       (menu-bar-non-minibuffer-window-p))
   	      :help "Read an existing file into an Emacs buffer"))
   (define-key menu-bar-file-menu [new-file]
     '(menu-item "Visit New File..." find-file
! 	      :enable (or enable-recursive-minibuffers
! 			  (menu-bar-non-minibuffer-window-p))
   	      :help "Specify a new file's name, to edit the file"))

   \f
***************
*** 359,364 ****
--- 363,369 ----
   ;;; Assemble the top-level Edit menu items.
   (define-key menu-bar-edit-menu [props]
     '(menu-item "Text Properties" facemenu-menu
+ 	      :enable (menu-bar-menu-frame-live-and-visible-p)
   	      :help "Change properties of text in region"))

   (define-key menu-bar-edit-menu [fill]
***************
*** 371,377 ****
     '(menu-item "--"))

   (define-key menu-bar-edit-menu [bookmark]
!   '(menu-item "Bookmarks" menu-bar-bookmark-map
   	      :help "Record positions and jump between them"))

   (defvar menu-bar-goto-menu (make-sparse-keymap "Go To"))
--- 376,382 ----
     '(menu-item "--"))

   (define-key menu-bar-edit-menu [bookmark]
!   `(menu-item "Bookmarks" ,menu-bar-bookmark-map
   	      :help "Record positions and jump between them"))

   (defvar menu-bar-goto-menu (make-sparse-keymap "Go To"))
***************
*** 431,449 ****
   	      :help "Read a line number and go to that line"))

   (define-key menu-bar-edit-menu [goto]
!   (list 'menu-item "Go To" menu-bar-goto-menu))

   (define-key menu-bar-edit-menu [replace]
!   (list 'menu-item "Replace" menu-bar-replace-menu))

   (define-key menu-bar-edit-menu [search]
!   (list 'menu-item "Search" menu-bar-search-menu))

   (define-key menu-bar-edit-menu [separator-search]
     '(menu-item "--"))

   (define-key menu-bar-edit-menu [mark-whole-buffer]
     '(menu-item "Select All" mark-whole-buffer
   	      :help "Mark the whole buffer for a subsequent cut/copy."))
   (define-key menu-bar-edit-menu [clear]
     '(menu-item "Clear" delete-region
--- 436,458 ----
   	      :help "Read a line number and go to that line"))

   (define-key menu-bar-edit-menu [goto]
!   `(menu-item "Go To" ,menu-bar-goto-menu
! 	        :enable (menu-bar-menu-frame-live-and-visible-p)))

   (define-key menu-bar-edit-menu [replace]
!   `(menu-item "Replace" ,menu-bar-replace-menu
! 	      :enable (menu-bar-menu-frame-live-and-visible-p)))

   (define-key menu-bar-edit-menu [search]
!   `(menu-item "Search" ,menu-bar-search-menu
! 	      :enable (menu-bar-menu-frame-live-and-visible-p)))

   (define-key menu-bar-edit-menu [separator-search]
     '(menu-item "--"))

   (define-key menu-bar-edit-menu [mark-whole-buffer]
     '(menu-item "Select All" mark-whole-buffer
+ 	      :enable (menu-bar-menu-frame-live-and-visible-p)
   	      :help "Mark the whole buffer for a subsequent cut/copy."))
   (define-key menu-bar-edit-menu [clear]
     '(menu-item "Clear" delete-region
***************
*** 456,462 ****
   (fset 'yank-menu (cons 'keymap yank-menu))
   (define-key menu-bar-edit-menu [select-paste]
     '(menu-item "Select and Paste" yank-menu
! 	      :enable (and (cdr yank-menu) (not buffer-read-only))
   	      :help "Paste (yank) text cut or copied earlier"))
   (define-key menu-bar-edit-menu [paste]
     '(menu-item "Paste" yank
--- 465,473 ----
   (fset 'yank-menu (cons 'keymap yank-menu))
   (define-key menu-bar-edit-menu [select-paste]
     '(menu-item "Select and Paste" yank-menu
! 	      :enable (and (cdr yank-menu)
! 			   (not buffer-read-only)
! 			   (menu-bar-menu-frame-live-and-visible-p))
   	      :help "Paste (yank) text cut or copied earlier"))
   (define-key menu-bar-edit-menu [paste]
     '(menu-item "Paste" yank
***************
*** 464,470 ****
   		       ;; Emacs compiled --without-x doesn't have
   		       ;; x-selection-exists-p.
   		       (fboundp 'x-selection-exists-p)
! 		       (x-selection-exists-p) (not buffer-read-only))
   	      :help "Paste (yank) text most recently cut/copied"))
   (define-key menu-bar-edit-menu [copy]
     '(menu-item "Copy" menu-bar-kill-ring-save
--- 475,482 ----
   		       ;; Emacs compiled --without-x doesn't have
   		       ;; x-selection-exists-p.
   		       (fboundp 'x-selection-exists-p)
! 		       (x-selection-exists-p) (not buffer-read-only)
! 		       (menu-bar-menu-frame-live-and-visible-p))
   	      :help "Paste (yank) text most recently cut/copied"))
   (define-key menu-bar-edit-menu [copy]
     '(menu-item "Copy" menu-bar-kill-ring-save
***************
*** 479,484 ****
--- 491,497 ----
   (define-key menu-bar-edit-menu [undo]
     '(menu-item "Undo" undo
   	      :enable (and (not buffer-read-only)
+ 			   (menu-bar-menu-frame-live-and-visible-p)
   			   (not (eq t buffer-undo-list))
   			   (if (eq last-command 'undo)
   			       pending-undo-list
***************
*** 1427,1433 ****
     (let ((menu-frame (if (display-multi-frame-p) menu-updating-frame
   		      (selected-frame))))
       (and (frame-live-p menu-frame)
! 	 (frame-visible-p menu-frame))))

   (defun menu-bar-non-minibuffer-window-p ()
     "Return non-nil if selected window of the menu frame is not a  
minibuf window.
--- 1440,1447 ----
     (let ((menu-frame (if (display-multi-frame-p) menu-updating-frame
   		      (selected-frame))))
       (and (frame-live-p menu-frame)
! 	 ;; not icon
! 	 (eq (frame-visible-p menu-frame) t))))

   (defun menu-bar-non-minibuffer-window-p ()
     "Return non-nil if selected window of the menu frame is not a  
minibuf window.
***************
*** 1451,1456 ****
--- 1465,1471 ----
   	  (setq count (1+ count)))
         (setq buffers (cdr buffers)))
       (and (menu-bar-non-minibuffer-window-p)
+ 	 (menu-bar-menu-frame-live-and-visible-p)
   	 (> count 1))))

   (put 'dired 'menu-enable '(menu-bar-non-minibuffer-window-p))

  reply	other threads:[~2005-11-10 21:12 UTC|newest]

Thread overview: 71+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-11-10 15:57 menu-bar: disable items when no frame visible David Reitter
2005-11-10 16:03 ` David Reitter
2005-11-10 21:12   ` David Reitter [this message]
2005-11-12  3:38     ` Richard M. Stallman
2005-11-12  7:11       ` Eli Zaretskii
2005-11-12 21:21         ` Richard M. Stallman
2005-11-12 22:44           ` Eli Zaretskii
2005-11-28  0:21         ` David Reitter
2005-11-28  5:32           ` Eli Zaretskii
2005-11-28 20:23             ` Juri Linkov
2005-11-28 21:00             ` Richard M. Stallman
2005-11-28 22:20               ` David Reitter
2005-11-28 22:46               ` Jason Rumney
2005-11-29 10:32                 ` Reiner Steib
2005-11-29 21:48                 ` Richard M. Stallman
2005-12-06  0:54                   ` Juri Linkov
2005-12-06 16:43                     ` Richard M. Stallman
2005-12-07  0:45                       ` Juri Linkov
2005-12-07 22:58                         ` Richard M. Stallman
2005-12-12  8:23                           ` Jan D.
2005-12-12 21:14                             ` Eli Zaretskii
2005-12-13  7:19                               ` Jan Djärv
2005-12-13 20:24                                 ` Eli Zaretskii
2005-12-14 17:03                                   ` Juri Linkov
2005-12-14 19:25                                     ` Eli Zaretskii
2005-12-16  9:04                                       ` Juri Linkov
2005-12-16 11:29                                         ` Eli Zaretskii
2005-12-16 12:55                                           ` Juri Linkov
2005-12-16 13:14                                             ` Eli Zaretskii
2005-12-16 14:27                                               ` Juri Linkov
2005-12-16 15:24                                                 ` Eli Zaretskii
2005-12-17 10:54                                                   ` Juri Linkov
2005-12-14 21:25                                     ` Drew Adams
2005-12-15  4:33                                       ` Eli Zaretskii
2005-12-13  3:15                             ` Richard M. Stallman
2005-12-16  9:05                             ` Juri Linkov
2005-12-16 17:40                               ` Jan Djärv
2005-12-17 10:47                                 ` Juri Linkov
2005-12-20 21:55       ` Juri Linkov
2005-12-23 20:43         ` Juri Linkov
2005-12-24 12:15           ` David Reitter
2005-12-24 20:07             ` Juri Linkov
2005-12-24 22:59               ` David Reitter
2005-12-25 16:54                 ` Stefan Monnier
2005-12-25  2:51             ` Richard M. Stallman
2005-12-25  6:44               ` Eli Zaretskii
2005-12-26  2:19                 ` Richard M. Stallman
2005-12-26  5:06                   ` Eli Zaretskii
2005-12-25  9:54               ` David Reitter
2005-12-26  2:19                 ` Richard M. Stallman
2005-12-25 16:58               ` Stefan Monnier
     [not found]               ` <87x6v29lvv.fsf-monnier+emacs@gnu.org>
2005-12-26  2:20                 ` Richard M. Stallman
2005-12-26 16:02                   ` Stefan Monnier
2005-12-26 21:56                     ` Richard M. Stallman
2005-12-27 19:01                       ` Juri Linkov
2005-12-27 19:55                         ` Stefan Monnier
2005-12-24 16:32           ` Richard M. Stallman
2005-12-24 20:12             ` Juri Linkov
2005-11-10 19:34 ` Eli Zaretskii
2005-11-10 19:39   ` David Reitter
2005-11-11  8:33     ` Eli Zaretskii
2005-11-12  3:38       ` Richard M. Stallman
2005-11-28 20:23 ` Juri Linkov
2005-11-28 22:17   ` David Reitter
2005-11-28 22:44     ` Juri Linkov
2005-11-29  0:08       ` David Reitter
2005-11-29  9:03         ` Juri Linkov
2005-11-29  9:02       ` Juri Linkov
2005-11-29  3:10   ` Richard M. Stallman
2005-11-29  9:01     ` Juri Linkov
2005-11-29 21:47       ` Richard M. Stallman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=069BF3EB-C5E4-4042-91E9-0DFB37C58E99@gmail.com \
    --to=david.reitter@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).