Function: hycontrol-frame-edges

hycontrol-frame-edges is a byte-compiled function defined in hycontrol.el.

Signature

(hycontrol-frame-edges &optional FRAME)

Documentation

Return the outermost edge coordinates of optional or selected FRAME.

FRAME must be a live frame and defaults to the selected one. The list returned has the form (Left Top Right Bottom) where all values are in pixels relative to the origin - the position (0, 0)
- of FRAME’s display. For terminal frames all values are
relative to Left and Top which are both zero.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hycontrol.el
;;; HyControl general private functions

(defsubst hycontrol-frame-edges (&optional frame)
  "Return the outermost edge coordinates of optional or selected FRAME.
FRAME must be a live frame and defaults to the selected one.  The
list returned has the form (Left Top Right Bottom) where all
values are in pixels relative to the origin - the position (0, 0)
- of FRAME’s display.  For terminal frames all values are
relative to Left and Top which are both zero."
  (frame-edges frame 'outer-edges))