From: Ihor Radchenko <yantar92@gmail.com>
To: Yuan Fu <casouri@gmail.com>, Eli Zaretskii <eliz@gnu.org>
Cc: emacs-devel@gnu.org
Subject: Re: Add a function that returns pixel distance between points?
Date: Sun, 31 Jan 2021 13:52:05 +0800 [thread overview]
Message-ID: <87mtwp4pru.fsf@localhost> (raw)
In-Reply-To: <1EDD0FA5-025C-4A87-BBA1-7B8944E91A12@gmail.com>
Yuan Fu <casouri@gmail.com> writes:
> When the text is displayed in variable-pitch font, the bars aren’t aligned. I’m using display property (space :align-to) to align those bars. To know with pixel position to align to, I need to calculate each column’s pixel width, and met the difficulties mentioned earlier.
You can do it in temp buffer with line numbers and wrap prefix disabled.
Something like
(defun string-display-pixel-width (string &optional mode)
"Calculate pixel width of STRING.
Optional MODE specifies major mode used for display."
(with-temp-buffer
(with-silent-modifications
(setf (buffer-string) string))
(when (fboundp mode)
(funcall mode)
(font-lock-fontify-buffer))
(let (wrap-prefix display-line-numbers)
(if (get-buffer-window (current-buffer))
(car (window-text-pixel-size nil (line-beginning-position) (point)))
(set-window-buffer nil (current-buffer))
(car (window-text-pixel-size nil (line-beginning-position) (point)))))))
Best,
Ihor
next prev parent reply other threads:[~2021-01-31 5:52 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-01-30 20:47 Add a function that returns pixel distance between points? Yuan Fu
2021-01-31 3:31 ` Eli Zaretskii
2021-01-31 5:17 ` Yuan Fu
2021-01-31 5:52 ` Ihor Radchenko [this message]
2021-01-31 19:42 ` Yuan Fu
2021-01-31 15:24 ` Eli Zaretskii
2021-01-31 19:41 ` Yuan Fu
2021-01-31 20:13 ` Eli Zaretskii
2021-02-01 14:16 ` Yuan Fu
2021-02-01 18:22 ` Eli Zaretskii
2021-02-01 23:00 ` Yuan Fu
2021-02-02 16:29 ` Eli Zaretskii
2021-02-03 15:04 ` Eli Zaretskii
2021-02-03 16:48 ` Yuan Fu
2021-02-04 16:02 ` Eli Zaretskii
2021-02-05 10:15 ` martin rudalics
2021-02-05 12:25 ` Eli Zaretskii
2021-02-05 15:48 ` martin rudalics
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=87mtwp4pru.fsf@localhost \
--to=yantar92@gmail.com \
--cc=casouri@gmail.com \
--cc=eliz@gnu.org \
--cc=emacs-devel@gnu.org \
/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).