From: Eli Zaretskii <eliz@gnu.org>
To: Vladimir Kazanov <vekazanov@gmail.com>
Cc: emacs-devel@gnu.org
Subject: Re: [PATCH] User-defined fringe tooltips (a request for review)
Date: Sat, 23 Dec 2023 15:40:18 +0200 [thread overview]
Message-ID: <83plyxca0t.fsf@gnu.org> (raw)
In-Reply-To: <CAAs=0-2TEqKsRJLFTqY_8C5Wanr4QpqYjR3JNUiSnR1rywBjAw@mail.gmail.com> (message from Vladimir Kazanov on Sat, 23 Dec 2023 13:28:48 +0000)
> From: Vladimir Kazanov <vekazanov@gmail.com>
> Date: Sat, 23 Dec 2023 13:28:48 +0000
> Cc: emacs-devel@gnu.org
>
> The way I see things now: the code has to iterate all charpos in the
> right order, including invisible ones, and also check for display
> properties in overlays. A glyph_row has information on where the row
> starts and ends (row->start and row->end).
>
> I want to do the following in note_mouse_highlight:
>
> /* Get to the current glyph row */
> struct glyph_row *row = MATRIX_ROW (w->current_matrix, vpos);
> Lisp_Object left_caption = Qnil, right_caption = Qnil;
>
> ptrdiff_t charpos;
> ptrdiff_t charpos_start = row->start.pos.charpos;
> ptrdiff_t charpos_end = row->end.pos.charpos;
> for (charpos = charpos_start; charpos <= charpos_end; charpos++)
> {
> /* This can be either in text props or overlays, so check both */
> Lisp_Object spec = get_char_property_and_overlay (make_fixnum (charpos),
> Qdisplay, Qnil, NULL);
> /* ... parse the spec... */
> }
Yes, I think you are right. But I think it is better to use
row->minpos and row->maxpos; see the comments in dispextern.h for the
reasons why.
> > If Fget_text_property returns non-nil for the 'display' property, you
> > will then need to look at the value and see whether it specifies a
> > help-echo for the fringe; if it does, extract the string and assign it
> > to 'help_echo_string'.
>
> I've just realized that what you have in mind is reusing the standard
> 'help-echo property? The one used for tooltips on the text itself?
No, that's not what I meant. I only meant to assign the tip string to
help_echo_string like we do in other places in that function.
> Either way, I'd need to test this thoroughly, I suspect there might be
> interesting corner cases.
There always are, IME.
Thanks.
next prev parent reply other threads:[~2023-12-23 13:40 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-12-19 19:38 [PATCH] User-defined fringe tooltips (a request for review) Vladimir Kazanov
2023-12-20 12:31 ` Eli Zaretskii
2023-12-21 16:51 ` Vladimir Kazanov
2023-12-21 17:37 ` Eli Zaretskii
2023-12-23 13:28 ` Vladimir Kazanov
2023-12-23 13:40 ` Eli Zaretskii [this message]
2023-12-24 11:31 ` Vladimir Kazanov
2023-12-24 16:54 ` Eli Zaretskii
2024-03-25 15:55 ` Vladimir Kazanov
2024-03-25 17:11 ` Eli Zaretskii
2024-03-26 22:16 ` Vladimir Kazanov
2024-03-27 10:59 ` Vladimir Kazanov
2024-03-27 11:25 ` Po Lu
2024-03-27 12:48 ` Vladimir Kazanov
2024-03-27 11:25 ` Po Lu
2024-03-31 8:36 ` Eli Zaretskii
2024-04-07 11:14 ` Vladimir Kazanov
2024-04-07 12:44 ` Eli Zaretskii
2024-04-07 17:07 ` Vladimir Kazanov
2024-04-07 18:40 ` Eli Zaretskii
2024-04-08 14:41 ` Vladimir Kazanov
2024-04-13 9:14 ` Eli Zaretskii
2024-04-13 9:32 ` Vladimir Kazanov
2024-04-13 11:21 ` Eli Zaretskii
2024-04-13 14:53 ` Vladimir Kazanov
2024-04-13 15:47 ` Eli Zaretskii
2024-03-27 12:14 ` Eli Zaretskii
2024-03-27 12:48 ` Vladimir Kazanov
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=83plyxca0t.fsf@gnu.org \
--to=eliz@gnu.org \
--cc=emacs-devel@gnu.org \
--cc=vekazanov@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).