emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/tooltip.el


From: Richard M . Stallman
Subject: [Emacs-diffs] Changes to emacs/lisp/tooltip.el
Date: Sun, 23 Oct 2005 14:31:25 -0400

Index: emacs/lisp/tooltip.el
diff -c emacs/lisp/tooltip.el:1.67 emacs/lisp/tooltip.el:1.68
*** emacs/lisp/tooltip.el:1.67  Thu Sep 29 22:56:22 2005
--- emacs/lisp/tooltip.el       Sun Oct 23 18:31:25 2005
***************
*** 65,101 ****
    :type 'number
    :group 'tooltip)
  
! (defcustom tooltip-x-offset nil
    "X offset, in pixels, for the display of tooltips.
  The offset is relative to the position of the mouse.  It must
  be chosen so that the tooltip window doesn't contain the mouse
! when it pops up.  If the value is nil, the default offset is 5
! pixels.
  
  If `tooltip-frame-parameters' includes the `left' parameter,
  the value of `tooltip-x-offset' is ignored."
    :tag "X offset"
!   :type '(choice (const :tag "Default" nil)
!                (integer :tag "Offset" :value 1))
    :group 'tooltip)
  
! (defcustom tooltip-y-offset nil
    "Y offset, in pixels, for the display of tooltips.
  The offset is relative to the position of the mouse.  It must
  be chosen so that the tooltip window doesn't contain the mouse
! when it pops up.  If the value is nil, the default offset is -10
! pixels.
  
  If `tooltip-frame-parameters' includes the `top' parameter,
  the value of `tooltip-y-offset' is ignored."
    :tag "Y offset"
!   :type '(choice (const :tag "Default" nil)
!                (integer :tag "Offset" :value 1))
    :group 'tooltip)
  
  (defcustom tooltip-frame-parameters
    '((name . "tooltip")
!     (internal-border-width . 5)
      (border-width . 1))
    "Frame parameters used for tooltips.
  
--- 65,97 ----
    :type 'number
    :group 'tooltip)
  
! (defcustom tooltip-x-offset 5
    "X offset, in pixels, for the display of tooltips.
  The offset is relative to the position of the mouse.  It must
  be chosen so that the tooltip window doesn't contain the mouse
! when it pops up.
  
  If `tooltip-frame-parameters' includes the `left' parameter,
  the value of `tooltip-x-offset' is ignored."
    :tag "X offset"
!   :type 'integer
    :group 'tooltip)
  
! (defcustom tooltip-y-offset +40
    "Y offset, in pixels, for the display of tooltips.
  The offset is relative to the position of the mouse.  It must
  be chosen so that the tooltip window doesn't contain the mouse
! when it pops up.
  
  If `tooltip-frame-parameters' includes the `top' parameter,
  the value of `tooltip-y-offset' is ignored."
    :tag "Y offset"
!   :type 'integer
    :group 'tooltip)
  
  (defcustom tooltip-frame-parameters
    '((name . "tooltip")
!     (internal-border-width . 2)
      (border-width . 1))
    "Frame parameters used for tooltips.
  




reply via email to

[Prev in Thread] Current Thread [Next in Thread]