diff lisp/oobr/smt-browse.el @ 0:376386a54a3c r19-14

Import from CVS: tag r19-14
author cvs
date Mon, 13 Aug 2007 08:45:50 +0200
parents
children 4103f0995bd7
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/lisp/oobr/smt-browse.el	Mon Aug 13 08:45:50 2007 +0200
@@ -0,0 +1,109 @@
+;;!emacs
+;;
+;; FILE:         smt-browse.el
+;; SUMMARY:      Smalltalk source code browser.
+;; USAGE:        GNU Emacs Lisp Library
+;; KEYWORDS:     oop, tools
+;;
+;; AUTHOR:       Bob Weiner
+;; ORG:          Motorola Inc.
+;;
+;; ORIG-DATE:    26-Jul-90
+;; LAST-MOD:     20-Sep-95 at 14:29:43 by Bob Weiner
+;;
+;; Copyright (C) 1990-1995  Free Software Foundation, Inc.
+;; See the file BR-COPY for license information.
+;;
+;; This file is part of the OO-Browser.
+;;
+;; DESCRIPTION:  
+;;
+;;    Use 'smt-browse' to invoke the Smalltalk OO-Browser.  Prefix arg
+;;    prompts for name of Environment file.
+;;
+;; DESCRIP-END.
+
+;;; ************************************************************************
+;;; Other required Elisp libraries
+;;; ************************************************************************
+
+(mapcar 'require '(br-start br br-smt))
+
+;;; ************************************************************************
+;;; Public functions
+;;; ************************************************************************
+
+;;;###autoload
+(defun smt-browse (&optional env-file no-ui)
+  "Invoke the Smalltalk OO-Browser.
+This allows browsing through Smalltalk library and system class hierarchies.
+With an optional non-nil prefix argument ENV-FILE, prompt for Environment
+file to use.  Alternatively, a string value of ENV-FILE is used as the
+Environment file name.  See also the file \"br-help\"."
+  (interactive "P")
+  (let ((same-lang (equal br-lang-prefix smt-lang-prefix))
+	(load-succeeded t)
+	same-env)
+    (if same-lang
+	nil
+      ;; Save other language Environment in memory
+      (if br-lang-prefix (br-env-copy nil))
+      (setq br-lang-prefix smt-lang-prefix
+	    *br-save-wconfig* nil))
+    (setq same-env (or (equal smt-env-file env-file)
+		       (and (null env-file)
+			    (or smt-lib-search-dirs smt-sys-search-dirs))))
+    (cond
+     ;; Continue browsing an Environment
+     ((and same-env same-lang))
+     ((and same-env (not same-lang))
+      (smt-browse-setup) (br-env-copy t))
+     ;;
+     ;; Create default Environment file specification if needed and none
+     ;; exists.
+     ;;
+     (t (or env-file (file-exists-p smt-env-file)
+	    (br-env-create smt-env-file smt-lang-prefix))
+	(or env-file (setq env-file smt-env-file))
+	;;
+	;; Start browsing a new Environment.
+	;;
+	(smt-browse-setup)
+	(setq load-succeeded (br-env-init env-file same-lang nil))
+	(if load-succeeded
+	    (setq *br-save-wconfig* nil
+		  smt-env-file load-succeeded
+		  smt-sys-search-dirs br-sys-search-dirs
+		  smt-lib-search-dirs br-lib-search-dirs))))
+    (cond (load-succeeded
+	   (br-init)
+	   (or no-ui (br-browse)))
+	  (no-ui nil)
+	  (t (message "(smt-browse): You must build the Environment to browse it.")))))
+
+;; Don't filter Environment classes when listed.
+(fset 'smt-class-list-filter 'identity)
+
+(defun smt-class-definition-regexp (class)
+  "Return regexp to uniquely match the definition of CLASS name."
+  (concat smt-class-name-before (regexp-quote class)
+	  smt-class-name-after))
+
+;;; ************************************************************************
+;;; Internal functions
+;;; ************************************************************************
+
+(defun smt-browse-setup ()
+  "Setup language-dependent functions for OO-Browser."
+  (br-setup-functions)
+  ;; Use this until an info function is implemented for the language.
+  (fmakunbound 'br-insert-class-info)
+  (fset 'br-store-class-info 'smt-store-class-info)
+  (fset 'br-lang-mode
+	(cond ((featurep 'smalltalk-mode) 'smalltalk-mode)
+	      ((load "st" 'missing-ok 'nomessage)
+	       (provide 'smalltalk-mode))
+	      (t 'fundamental-mode)))
+  (br-setup-constants))
+
+(provide 'smt-browse)