6be16de284
Also putting slightly more explicit copyright attribution in some files (for similar reason). git-svn-id: https://supercollider.svn.sourceforge.net/svnroot/supercollider/trunk@9082 a380766d-ff14-0410-b294-a243070f3f08
183 lines
No EOL
6.4 KiB
EmacsLisp
183 lines
No EOL
6.4 KiB
EmacsLisp
;; copyright 2003 stefan kersten <steve@k-hornz.de>
|
|
;;
|
|
;; This program is free software; you can redistribute it and/or
|
|
;; modify it under the terms of the GNU General Public License as
|
|
;; published by the Free Software Foundation; either version 2 of the
|
|
;; License, or (at your option) any later version.
|
|
;;
|
|
;; This program is distributed in the hope that it will be useful, but
|
|
;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
;; General Public License for more details.
|
|
;;
|
|
;; You should have received a copy of the GNU General Public License
|
|
;; along with this program; if not, write to the Free Software
|
|
;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
|
|
;; USA
|
|
|
|
(require 'sclang-util)
|
|
(require 'view nil t)
|
|
|
|
;; TODO: better factoring
|
|
;; derive from view mode, make mode-map pluggable
|
|
;; define derived mode for completion, definition, help
|
|
|
|
(defun sclang-browser-fill-keymap (map)
|
|
(define-key map "\r" 'sclang-browser-follow-link)
|
|
(define-key map [mouse-2] 'sclang-browser-mouse-follow-link)
|
|
(define-key map "\t" 'sclang-browser-next-link)
|
|
(define-key map [backtab] 'sclang-browser-previous-link)
|
|
(define-key map [(shift tab)] 'sclang-browser-previous-link)
|
|
(define-key map [?q] 'sclang-browser-quit)
|
|
map)
|
|
|
|
(defvar sclang-browser-mode-map (sclang-browser-fill-keymap (make-sparse-keymap)))
|
|
(defvar sclang-browser-mode-hook nil)
|
|
(defvar sclang-browser-show-hook nil)
|
|
(defvar sclang-browser-link-function nil
|
|
"buffer local")
|
|
(defvar sclang-browser-return-method nil
|
|
"buffer local")
|
|
|
|
(defun sclang-browser-beginning-of-link ()
|
|
(interactive)
|
|
(when (get-text-property (point) 'sclang-browser-link)
|
|
(while (and (not (bobp))
|
|
(get-text-property (point) 'sclang-browser-link))
|
|
(forward-char -1))
|
|
(unless (bobp) (forward-char 1))
|
|
(point)))
|
|
|
|
(defun sclang-browser-next-link (&optional n)
|
|
(interactive)
|
|
(let* ((n (or n 1))
|
|
(prop 'sclang-browser-link)
|
|
(fwd (>= n 0))
|
|
(orig (point))
|
|
(beg (if fwd (point-min) (point-max)))
|
|
(end (if fwd (point-max) (point-min)))
|
|
(inc (if fwd 1 -1))
|
|
pos)
|
|
(when (get-text-property (point) prop)
|
|
(while (and (/= (point) beg)
|
|
(get-text-property (point) prop))
|
|
(forward-char inc))
|
|
(if (= (point) beg) (goto-char end)))
|
|
(while (not (eq pos orig))
|
|
(cond ((get-text-property (point) prop)
|
|
(sclang-browser-beginning-of-link)
|
|
(setq pos orig))
|
|
(t
|
|
(if (= (point) end) (goto-char beg))
|
|
(forward-char inc)
|
|
(setq pos (point)))))))
|
|
|
|
(defun sclang-browser-previous-link ()
|
|
(interactive)
|
|
(sclang-browser-next-link -1))
|
|
|
|
(defun sclang-browser-follow-link (&optional pos)
|
|
(interactive)
|
|
(let* ((pos (or pos (point)))
|
|
(data (get-text-property pos 'sclang-browser-link)))
|
|
(when (consp data)
|
|
(let ((fun (or (car data) sclang-browser-link-function))
|
|
(arg (cdr data)))
|
|
(when (functionp fun)
|
|
(condition-case nil
|
|
(funcall fun arg)
|
|
(error (sclang-message "Error in link function") nil)))))))
|
|
|
|
(defun sclang-browser-mouse-follow-link (event)
|
|
(interactive "e")
|
|
(let* ((start (event-start event))
|
|
(window (car start))
|
|
(pos (cadr start)))
|
|
(with-current-buffer (window-buffer window)
|
|
(sclang-browser-follow-link pos))))
|
|
|
|
(defun sclang-browser-mode ()
|
|
"Major mode for viewing hypertext and navigating references in it.
|
|
Entry to this mode runs the normal hook `sclang-browser-mode-hook'.
|
|
Commands:
|
|
\\{sclang-browser-mode-map}"
|
|
(interactive)
|
|
(kill-all-local-variables)
|
|
(use-local-map sclang-browser-mode-map)
|
|
(set-keymap-parent sclang-browser-mode-map view-mode-map)
|
|
(setq mode-name "Browser")
|
|
(setq major-mode 'sclang-browser-mode)
|
|
(set (make-local-variable 'sclang-browser-link-function) nil)
|
|
(set (make-local-variable 'sclang-browser-return-method) nil)
|
|
(set (make-local-variable 'font-lock-defaults) nil)
|
|
(view-mode)
|
|
(set (make-local-variable 'minor-mode-overriding-map-alist)
|
|
(list (cons 'view-mode sclang-browser-mode-map)))
|
|
(set (make-local-variable 'view-no-disable-on-exit) t)
|
|
(run-hooks 'sclang-browser-mode-hook))
|
|
|
|
(defun sclang-browser-mode-setup ()
|
|
(sclang-browser-mode)
|
|
(setq buffer-read-only nil))
|
|
|
|
(defun sclang-browser-mode-finish ()
|
|
(toggle-read-only 1)
|
|
(setq view-return-to-alist
|
|
(list (cons (selected-window) sclang-browser-return-method)))
|
|
(run-hooks 'sclang-browser-show-hook))
|
|
|
|
(defun sclang-browser-quit ()
|
|
(interactive)
|
|
(when (eq major-mode 'sclang-browser-mode)
|
|
(kill-buffer (current-buffer))))
|
|
|
|
(defun sclang-browser-make-link (link-text &optional link-data link-function)
|
|
(let ((map (make-sparse-keymap)))
|
|
(propertize link-text
|
|
'mouse-face 'highlight
|
|
;;'help-echo "mouse-2: follow link"
|
|
;;'keymap map
|
|
'sclang-browser-link (cons link-function link-data)
|
|
;;'sclang-browser-link-data link-data
|
|
;;'sclang-browser-link-function link-function)))
|
|
)))
|
|
|
|
(defun sclang-display-browser (buffer-name output-function)
|
|
"header: what to insert in the buffer
|
|
link-list: list of (link-text link-function link-data)
|
|
link-function: function with args (link-text link-data)"
|
|
(let ((temp-buffer-setup-hook '(sclang-browser-mode-setup))
|
|
(temp-buffer-show-hook '(sclang-browser-mode-finish)))
|
|
(with-output-to-temp-buffer buffer-name
|
|
(with-current-buffer standard-output
|
|
;; record return method
|
|
(setq sclang-browser-return-method
|
|
(cond ((special-display-p (buffer-name standard-output))
|
|
;; If the help output buffer is a special display buffer,
|
|
;; don't say anything about how to get rid of it.
|
|
;; First of all, the user will do that with the window
|
|
;; manager, not with Emacs.
|
|
;; Secondly, the buffer has not been displayed yet,
|
|
;; so we don't know whether its frame will be selected.
|
|
(cons (selected-window) t))
|
|
(display-buffer-reuse-frames
|
|
(cons (selected-window) 'quit-window))
|
|
((not (one-window-p t))
|
|
(cons (selected-window) 'quit-window))
|
|
(pop-up-windows
|
|
(cons (selected-window) t))
|
|
(t
|
|
(list (selected-window) (window-buffer)
|
|
(window-start) (window-point)))))
|
|
(funcall output-function)))))
|
|
|
|
(defmacro with-sclang-browser (buffer-name &rest body)
|
|
`(sclang-display-browser ,buffer-name (lambda () ,@body)))
|
|
|
|
;; =====================================================================
|
|
;; module setup
|
|
;; =====================================================================
|
|
|
|
(provide 'sclang-browser)
|
|
|
|
;; EOF |