From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Gregor Zattler Newsgroups: gmane.emacs.devel Subject: Re: Drop-down menus, popup menus, and popup dialogs supported on TTYs Date: Wed, 9 Oct 2013 19:56:47 +0200 Message-ID: <20131009175647.GA6733@boo.workgroup> References: <831u3vsjrf.fsf@gnu.org> <20131009.133242.7368376887673130.yamato@redhat.com> <83ob6yqu5k.fsf@gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1381341442 27726 80.91.229.3 (9 Oct 2013 17:57:22 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 9 Oct 2013 17:57:22 +0000 (UTC) To: emacs-devel Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Oct 09 19:57:25 2013 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1VTy0h-0003n5-Bd for ged-emacs-devel@m.gmane.org; Wed, 09 Oct 2013 19:57:23 +0200 Original-Received: from localhost ([::1]:43127 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VTy0h-0000A8-1j for ged-emacs-devel@m.gmane.org; Wed, 09 Oct 2013 13:57:23 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:40804) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VTy0Z-00009d-Cn for emacs-devel@gnu.org; Wed, 09 Oct 2013 13:57:21 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VTy0Q-0006Hq-Sc for emacs-devel@gnu.org; Wed, 09 Oct 2013 13:57:15 -0400 Original-Received: from mout.gmx.net ([212.227.17.21]:49895) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VTy0Q-0006HO-KE for emacs-devel@gnu.org; Wed, 09 Oct 2013 13:57:06 -0400 Original-Received: from boo.workgroup ([87.187.140.172]) by mail.gmx.com (mrgmx002) with ESMTPSA (Nemesis) id 0LtrKX-1VsxbJ25af-0119VC for ; Wed, 09 Oct 2013 19:57:04 +0200 Original-Received: from grfz by boo.workgroup with local (Exim 4.80) (envelope-from ) id 1VTy0I-0002yn-0U; Wed, 09 Oct 2013 19:56:58 +0200 Mail-Followup-To: emacs-devel Content-Disposition: inline In-Reply-To: <83ob6yqu5k.fsf@gnu.org> User-Agent: Mutt/1.5.21 (2010-09-15) X-Provags-ID: V03:K0:0N6M0j0iLAQPR1YKXD90xqFXyNT0zgnKCa5ggyoP2Rvjvt2P7Pm IIXj3BkC0C3P498Pz2B7sVnvTfmwXgAatuEPZIHKXagxeViA11C3kCT39D3x7ydsvY+QiKw /aoLQg2kj59GAL1xTl3GfxnHfn2bXDuMusnvYPiJHkDcuujUAYann72iJAdMunysqVl12zJ m5bau5de2/pD6Jz9YRFhw== X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [generic] X-Received-From: 212.227.17.21 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:164043 Archived-At: Hi Eli, Emacs developers, * Eli Zaretskii [09. Oct. 2013]: >> Date: Wed, 09 Oct 2013 13:32:42 +0900 (JST) >> Cc: emacs-devel@gnu.org >> From: Masatake YAMATO >> I'd like to report one thing I found during test. >> pressing shows nothing if menu-bar-mode is off. >> It is nice if menu-bar is shown temporary and automatically. > Hmm... do people really want to have menus when the menu bar is turned > off? I thought they disable the menu bar because they don't want any > menus at all. I want to save screen real estate and therefore hide the menu bar but like to use F10 to temporarily show the menu bar and open it like so: (menu-bar-mode 0) (if (not (string-match "dumb" (getenv "TERM"))) (global-set-key (kbd "") (lambda () "open/close menu-bar" (interactive) (if menu-bar-mode (menu-bar-mode 0) (progn (menu-bar-mode 1) (menu-bar-open)))))) It would be nice if something like this worked on TTYs with real menus. Thanks, Gregor