Function: hycontrol-frame-x-origin

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

Signature

(hycontrol-frame-x-origin &optional FRAME)

Documentation

Return the X origin coordinate of optional FRAME or the selected frame.

This includes all graphical window manager decorations. The X origin coordinate is the upper left point. Under a graphical window system, this is in pixels; otherwise, it is in characters.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hycontrol.el
(defsubst hycontrol-frame-x-origin (&optional frame)
  "Return the X origin coordinate of optional FRAME or the selected frame.
This includes all graphical window manager decorations.  The X
origin coordinate is the upper left point.  Under a graphical
window system, this is in pixels; otherwise, it is in characters."
  (nth 0 (hycontrol-frame-edges frame)))