From: Drew Adams <drew.adams@oracle.com>
To: 30074@debbugs.gnu.org
Subject: bug#30074: 26.0; Add function(s) for current monitor info
Date: Wed, 10 Jan 2018 15:08:27 -0800 (PST) [thread overview]
Message-ID: <17da2391-a30c-4d5f-9ffd-1758b18c34f3@default> (raw)
Please consider adding a function that returns the info describing the
monitor that dominates a frame (default: selected frame). In
particular, the size of the monitor. This can be useful, for example,
for positioning a frame when there are multiple monitors.
I've been using this, but you might have a better implementation in
mind:
(defun current-monitor (&optional frame)
"Attributes of monitor that dominates FRAME (default: `selected-frame')."
(catch 'current-monitor
(dolist (atts (display-monitor-attributes-list frame))
(when (member (or frame (selected-frame)) (cdr (assq 'frames atts)))
(throw 'current-monitor atts)))
nil)) ; Should never happen (?)
(defun current-monitor-size (&optional frame workarea-p)
"Size of the monitor that dominates FRAME (default: `selected-frame').
This is a cons (WIDTH . HEIGHT) where WIDTH and HEIGHT are in pixels.
Uses the full area of the monitor (attribute `geometry' of
`display-monitor-attributes-list') by default. Non-nil optional arg
WORKAREA-P means use only the available work area (attribute
`workarea') instead."
(let* ((att (if workarea-p 'workarea 'geometry))
(mon (assq att (current-monitor frame))))
(cons (nth 3 mon) (nth 4 mon))))
Dunno whether the fallback value of nil is needed. I haven't come
across a frame that is not listed in attribute `frames' of
`display-monitor-attributes-list'. Even invisible frames are listed.
Dunno about deleted frames.
Whether it would also be useful to have functions corresponding to
attributes such as `mm-size' and `name' is another question.
In GNU Emacs 26.0.90 (build 3, x86_64-w64-mingw32)
of 2017-10-13
Repository revision: 906224eba147bdfc0514090064e8e8f53160f1d4
Windowing system distributor `Microsoft Corp.', version 6.1.7601
Configured using:
`configure --without-dbus --host=x86_64-w64-mingw32
--without-compress-install 'CFLAGS=-O2 -static -g3''
next reply other threads:[~2018-01-10 23:08 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-01-10 23:08 Drew Adams [this message]
2019-07-14 17:46 ` bug#30074: 26.0; Add function(s) for current monitor info Lars Ingebrigtsen
2019-07-14 19:49 ` Juri Linkov
2019-07-15 10:13 ` Lars Ingebrigtsen
2019-07-15 15:21 ` Drew Adams
2019-07-15 15:25 ` Lars Ingebrigtsen
2019-07-15 16:17 ` Drew Adams
2019-07-15 16:05 ` Andy Moreton
2019-07-15 16:24 ` Drew Adams
2019-07-15 16:35 ` Lars Ingebrigtsen
2019-07-15 16:42 ` Andy Moreton
2019-07-14 22:07 ` Drew Adams
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=17da2391-a30c-4d5f-9ffd-1758b18c34f3@default \
--to=drew.adams@oracle.com \
--cc=30074@debbugs.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).