Function: hkey-absolute-pixel-position
hkey-absolute-pixel-position is a byte-compiled function defined in
hmouse-drv.el.
Signature
(hkey-absolute-pixel-position)
Documentation
Return the absolute pixel position of the mouse or the selected window's point.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hmouse-drv.el
;;; ************************************************************************
;;; Hyperbole context-sensitive key driver functions
;;; ************************************************************************
(defun hkey-absolute-pixel-position ()
"Return the absolute pixel position of the mouse or the selected window's point."
(if (mouse-event-p last-input-event)
(mouse-absolute-pixel-position)
(window-absolute-pixel-position)))