From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Masatake YAMATO Newsgroups: gmane.emacs.devel Subject: Re: mouse-face on mode-line and header-line Date: Mon, 23 May 2005 20:26:14 +0900 (JST) Message-ID: <20050523.202614.220553728.jet@gyve.org> References: <20050513.230546.243438712.jet@gyve.org> <20050522.113905.183047209.jet@gyve.org> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1116848563 1206 80.91.229.2 (23 May 2005 11:42:43 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 23 May 2005 11:42:43 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon May 23 13:42:39 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DaBJg-0007tg-M2 for ged-emacs-devel@m.gmane.org; Mon, 23 May 2005 13:41:52 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DaBN8-0002TB-CS for ged-emacs-devel@m.gmane.org; Mon, 23 May 2005 07:45:26 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DaBM1-0001Ik-JD for emacs-devel@gnu.org; Mon, 23 May 2005 07:44:18 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DaBLy-0001Fg-Gc for emacs-devel@gnu.org; Mon, 23 May 2005 07:44:14 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DaBLy-0001FJ-6H for emacs-devel@gnu.org; Mon, 23 May 2005 07:44:14 -0400 Original-Received: from [66.187.233.31] (helo=mx1.redhat.com) by monty-python.gnu.org with esmtp (TLS-1.0:DHE_RSA_3DES_EDE_CBC_SHA:24) (Exim 4.34) id 1DaBSs-0005X7-SW for emacs-devel@gnu.org; Mon, 23 May 2005 07:51:23 -0400 Original-Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11/8.12.11) with ESMTP id j4NBfsxh027818 for ; Mon, 23 May 2005 07:41:56 -0400 Original-Received: from pobox.tokyo.redhat.com (pobox.tokyo.redhat.com [172.16.33.225]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id j4NBfhO13366 for ; Mon, 23 May 2005 07:41:43 -0400 Original-Received: from localhost (gls07.tokyo.redhat.com [172.16.32.104]) by pobox.tokyo.redhat.com (8.12.8/8.12.8) with ESMTP id j4NBfdv7010749 for ; Mon, 23 May 2005 20:41:42 +0900 Original-To: emacs-devel@gnu.org In-Reply-To: <20050522.113905.183047209.jet@gyve.org> X-Mailer: Mew version 4.2 on Emacs 22.0.50 / Mule 5.0 (SAKAKI) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:37511 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:37511 > > I've implemented mouse-face on mode-line. > > No objection to install this patch? I've installed my patch. In addition, I've defined a key binding: (defvar mode-line-major-mode-keymap (let ((map (make-sparse-keymap))) (define-key map [mode-line down-mouse-1] 'mouse-major-mode-menu) This may be useful for users who hide the menu-bar in their .emacs. Should I add next sentences to etc/NEWS? *** Mouse-face on mode-line(and header-line) is now supported. `mode-line-highlight' is the standard face indicating mouse sensitive elements on mode-line(and header-line) like `highlight' face on text areas. Masatake YAMATO