From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: How to implement mouse highlighing in tabulated list mode, just like for buttons? Date: Sat, 04 Feb 2023 19:05:59 +0200 Message-ID: <83ilghtl6w.fsf@gnu.org> References: <3a7d15dca834fe52fb6470c3564b7cd2.support1@rcdrun.com> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="19429"; mail-complaints-to="usenet@ciao.gmane.io" Cc: emacs-devel@gnu.org To: Jean Louis Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Sat Feb 04 18:06:49 2023 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1pOM00-0004sP-Ek for ged-emacs-devel@m.gmane-mx.org; Sat, 04 Feb 2023 18:06:48 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1pOLzC-0007Hf-81; Sat, 04 Feb 2023 12:05:58 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pOLz7-0007GV-23 for emacs-devel@gnu.org; Sat, 04 Feb 2023 12:05:53 -0500 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pOLz6-0007ve-K4; Sat, 04 Feb 2023 12:05:52 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=bQtcQpqYaUtzJ8pOeFYnqMBXmovbe24Y0gcsc+TOtak=; b=hEblf7wRqxcK n88IdjkvTGIt72ImpSvsyGLWAVvNjAYKzY76FdA328xbfvsuIrR80z3YoeTdDjDFB8oI9P/uAa/H6 QbS1bATsji7UZtVG6MVEwh2HdWsHj6fv+B4AM9+8Abd6EelOqMdF10HDuK+uJFysUDjzyB2Sg/dSB htjB4Yb7pA6HyHeOjAGCt4QJ4q2mIo+kV9aheMQoxm6lya9io22723csjYZi7B/sMSb8iPmrB3m2Q NJq6Cj6WGtTY52/ZN0qDGKwFS/ulTp4QdEUzlFBXJdbkkKLAj8xC+Hkp/+68Ee5h4PRZCZtGggGKk YJJRoZv6lHC1PylftV4S/g==; Original-Received: from [87.69.77.57] (helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pOLz6-00059g-1V; Sat, 04 Feb 2023 12:05:52 -0500 In-Reply-To: <3a7d15dca834fe52fb6470c3564b7cd2.support1@rcdrun.com> (message from Jean Louis on Sat, 04 Feb 2023 17:52:41 +0100) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 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-mx.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.devel:302967 Archived-At: > Date: Sat, 04 Feb 2023 17:52:41 +0100 > From: Jean Louis > > I would prefer if I can hover hl-line-mode highlighted line up and > down by only moving the mouse in tabulated list mode. > > Is that possible somehow? > > Or if highlighted line from hl-line-mode is not movable, then maybe it > could be possible to highlight lines in tabulated list mode, in the > same way how lines are highlighted when mouse hovers over Emacs buttons. Put the mouse-face property on each line, and you have it. (add-text-properties (line-beginning-position) (line-end-position) '(mouse-face highlight))