• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/emacs-93/emacs/lisp/

Lines Matching +refs:mouse +refs:left

36 ;; files are displayed.  These items can be clicked on with mouse-2 in
101 ;; be spliced into the main menu. (Available with click-mouse-3). If
341 (left-fringe . 0)
392 When tooltips are not available, mouse-tracking and minibuffer
397 (defcustom speedbar-track-mouse-flag (not speedbar-use-tool-tips-flag)
398 "*Non-nil means to display info about the line under the mouse."
402 (defcustom speedbar-default-position 'left-right
404 Possible values are 'left, 'right or 'left-right.
405 If value is 'left-right, the most suitable location is
408 :type '(radio (const :tag "Automatic" left-right)
409 (const :tag "Left" left)
953 "Never set this by hand. Value is t when S-mouse activity occurs.")
1026 (or (member 'left speedbar-frame-plist)
1031 (cons (car (cdr (member 'left speedbar-frame-plist)))
1035 (or (assoc 'left speedbar-frame-parameters)
1037 ;; if left/top were specified in the parameters, pass them
1042 (cons (cdr (assoc 'left speedbar-frame-parameters))
1133 (if speedbar-track-mouse-flag
1134 (setq dframe-track-mouse-function #'speedbar-track-mouse))
1136 dframe-mouse-click-function #'speedbar-click
1137 dframe-mouse-position-function #'speedbar-position-cursor-on-line)
1280 (defun speedbar-track-mouse (event)
1282 (if (not speedbar-track-mouse-flag)
1288 (mouse-set-point event)
1294 (defun speedbar-show-info-under-mouse ()
1295 "Call the info function for the line under the mouse.
1297 (let ((pos (mouse-position))) ; we ignore event until I use it later.
1301 (apply 'set-mouse-position pos)
1434 "Load the item under the cursor or mouse if it is a Lisp file."
1446 "Byte compile the item under the cursor or mouse if it is a Lisp file."
1458 (defun speedbar-mouse-item-info (event)
1460 This should be bound to a mouse EVENT."
1462 (mouse-set-point event)
1479 "Display info in the mini-buffer about the button the mouse is over.
1557 "Display info in the mini-buffer about the button the mouse is over."
1597 "Rename the item under the cursor or mouse.
1721 (defun speedbar-insert-button (text face mouse function
1740 (speedbar-make-button start (point) face mouse function token))
1744 start (point) '(face nil invisible nil mouse-face nil))))
1759 (defun speedbar-make-button (start end face mouse function &optional token)
1761 MOUSE is the mouse face. When this button is clicked on FUNCTION
1768 start end `(mouse-face ,mouse invisible nil
3109 "Activate any speedbar buttons where the mouse is clicked.
3110 This must be bound to a mouse event. A button is any location of text
3111 with a mouse face that has a text property called `speedbar-function'.
3116 (dframe-quick-mouse e))
4138 "Face used for highlighting buttons with the mouse."