;;; cogre.el --- COnnected GRaph Editor for Emacs ;;; Copyright (C) 2001 Eric M. Ludlam ;; Author: Eric M. Ludlam <zappo@gnu.org> ;; Keywords: graph, oop, extensions, outlines ;; X-RCS: $Id: cogre.el,v 1.12 2001/08/08 00:41:57 zappo Exp $ (defvar cogre-version "0.2" "Current version of Cogre.") ;; This file is not part of GNU Emacs. ;; This 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, or (at your option) ;; any later version. ;; This software 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 GNU Emacs; see the file COPYING. If not, write to the ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, ;; Boston, MA 02111-1307, USA. ;;; Commentary: ;; ;; Many types of code can be displayed as a series of connected ;; graphs, such as UML class or sequence diagrams. COGRE attempts to ;; allow Emacs to display such graphs with data generated from ;; source code. ;; ;; COGRE is based on a generic editor that can handle arbitrary ;; graphs, with different specific graph types derived from that. ;; This depends on EIEIO for graph management. COGRE depends on ;; `picture-mode' for drawing. It also depends on semantic for ;; source-code parsing. ;; ;; Because COGRE graphs are meant to be edited in some fashion, COGRE ;; graphs depend on the custom widget library to provide text ;; controls, or toggle buttons for editing state in a graph. (require 'eieio) (require 'eieio-opt) (require 'semantic) (require 'picture-hack) ;;; Code: ;;; Display Faces (defgroup cogre nil "COnnected GRaph Editor." ) (defcustom cogre-horizontal-margins 10 "*Horizontal margins between nodes when they are being layed out." :group 'cogre :type 'number) (defcustom cogre-vertical-margins 7 "*Horizontal margins between nodes when they are being layed out." :group 'cogre :type 'number) (defface cogre-box-face '((((class color) (background dark)) (:background "gray30" :foreground "white")) (((class color) (background light)) (:background "gray" :foreground "black"))) "Face used for rectangles of boxes displaying data." :group 'cogre) (defface cogre-box-first-face '((((class color) (background dark)) (:background "gray30" :foreground "white" :overline "white")) (((class color) (background light)) (:background "gray" :foreground "black" :overline "black"))) "Face used for the first data item in rectangles of boxes displaying data. This has the `overline' property set to display borders between sections within a box." :group 'cogre) (defface cogre-box-last-face '((((class color) (background dark)) (:background "gray30" :foreground "white" :underline "white")) (((class color) (background light)) (:background "gray" :foreground "black" :underline "black"))) "Face used for the first data item in rectangles of boxes displaying data. This has the `overline' property set to display borders between sections within a box." :group 'cogre) ;;; Classes (defclass cogre-graph (eieio-persistent) ((name :initarg :name :initform "NewGraph" :type string :custom string :documentation "The name of this graph. The save file name is based on this name.") (buffer :initarg :buffer :initform nil :type (or null buffer) :documentation "When this graph is active, this is the buffer the graph is displayed in.") (elements :initarg :elements :initform nil :type list :documentation "The list of elements in this graph.") ) "A Connected Graph. a connected graph contains a series of nodes and links which are rendered in a buffer, or serialized to disk.") (defclass cogre-graph-element (eieio-named) ((dirty :initform t :documentation "Non-nil if this graph element is dirty. Elements are made dirty when they are erased from the screen. Elements must be erased before any graphical fields are changed.") (name-default :initform "Name" :type string :custom string :allocation :class :documentation "The object-name of this node. Node object-names must be unique within the current graph so that save references in links can be restored.") (menu :initform nil :type list :allocation :class :documentation "List of menu items in Easymenu format of changeable things. Any given element may have several entries of details which are modifiable. Examples could be Add/Removing/Renaming slots, or changing linkages." ) ) "A Graph Element. Graph elements are anything that is drawn into a `cogre-graph'. Graph elements have a method for marking themselves dirty.") (defclass cogre-node (cogre-graph-element) ((position :initarg :position :initform [ 0 0 ] :type vector :custom (vector integer integer) :documentation "The X,Y [COL ROW] position as a vector for this node. The Width/Height if this node is determined by RECTANGLE, which is a list of strings representing the body of the node." ) (blank-lines-top :allocation :class :initform 1 :documentation "Number of blank lines above the object-name.") (blank-lines-bottom :allocation :class :initform 1 :documentation "Number of blank lines below the last line of text.") (alignment :initform nil :type symbol :allocation :class :documentation "Alignment of text when displayed in the box.") (rectangle :initarg :rectangle :initform nil :type list :documentation "A List of strings representing an Emacs rectangle. This rectangle is used for inserting and moving the block of characters that represent this node in a buffer. The rectangle is NOT SAVED. Other fields in the node are used to build a new RECTANGLE of strings at load time.") ) "Connected Graph node. Nodes are regions with a fill color, and some amount of text representing a status, or values.") (defclass cogre-link (cogre-graph-element) ((start :initarg :start :initform nil :type (or null string cogre-node) :documentation "The starting node. As a string, the object-name of the node we start on. As an object, the node we start on.") (end :initarg :end :initform nil :type (or null string cogre-node) :documentation "The ending node. As a string, the object-name of the node we end on. As an object, the node we end on.") (start-glyph :initarg :start-glyph :initform [ nil nil nil nil ] :allocation :class :type vector :documentation "The starting glyph. A Glyph can be NULL, meaning nothing, or a vector. A Vector must be 4 elements long. This represents glyphs on the [ TOP BOTTOM LEFT RIGHT ] of the attached node. Each element of the vector must be a list representing a rectangle.") (end-glyph :initarg :end-glyph :initform [ nil nil nil nil ] :allocation :class :type vector :documentation "The ending glyph. See slot `start-glyph'") (horizontal-preference-ratio :initform .5 :allocation :class :documentation "When choosing a link's direction, a weight applied to horizontal. Since characters are not square, this ratio attempts to handle the visible space the link spans, not the number of characters in the coordinate system being used. Also, some links may want to be vertical or horizontal as often as possible, thus values of 0 or 10 are also fine to advance a preference." ) (stop-position :initform nil :documentation "After drawing this link, store a place for a tab stop.") (layout-direction :initform 'any :documentation "When using the layout engine, the preferred direction this link points. This can have a value of 'up, 'down, 'left, 'right, 'horizontal, 'vertical, or 'any.") ) "Connected Graph link. Links are lines drawn between two nodes, or possibly loose in space as an intermediate step. Some links have text describing what they do, and most links have special markers on one end or another, such as arrows or circles.") ;;; Connecte Graph variables ;; (defcustom cogre-mode-hooks nil "Hooks run in `cogre-mode'." :group 'cogre :type 'hook) (defvar cogre-graph nil "The current connected graph.") (make-variable-buffer-local 'cogre-graph) (defvar cogre-mode-map nil "Keymap used for COGRE mode.") (defun cogre-substitute (oldfun newfun) "Substitue a key binding in ghe `cogre-mode-map'. Argument OLDFUN is removed NEWFUN is substituted in." (substitute-key-definition oldfun newfun cogre-mode-map global-map)) (if cogre-mode-map nil (setq cogre-mode-map (make-keymap)) ;; Structure Information (define-key cogre-mode-map "\C-m" 'cogre-activate-element) ;; Structure changes (define-key cogre-mode-map "R" 'cogre-refresh) (define-key cogre-mode-map "N" 'cogre-new-node) (define-key cogre-mode-map "L" 'cogre-new-link) (define-key cogre-mode-map "D" 'cogre-delete) ;; Changing and Setting Defaults (define-key cogre-mode-map "\C-c\C-n" 'cogre-default-node) (define-key cogre-mode-map "\C-c\C-l" 'cogre-default-link) ;; Modifications (define-key cogre-mode-map "n" 'cogre-set-element-name) (define-key cogre-mode-map "l" 'cogre-edit-label) ;; Move nodes around (define-key cogre-mode-map [(meta left)] 'cogre-move-node-left) (define-key cogre-mode-map [(meta right)] 'cogre-move-node-right) (define-key cogre-mode-map [(meta down)] 'cogre-move-node-down) (define-key cogre-mode-map [(meta up)] 'cogre-move-node-up) (define-key cogre-mode-map "\M-b" 'cogre-move-node-left) (define-key cogre-mode-map "\M-f" 'cogre-move-node-right) (define-key cogre-mode-map "\M-n" 'cogre-move-node-down) (define-key cogre-mode-map "\M-p" 'cogre-move-node-up) ;; Cursor Movement (define-key cogre-mode-map "\C-i" 'cogre-next-node) (define-key cogre-mode-map "\M-\C-i" 'cogre-prev-node) (cogre-substitute 'forward-char 'picture-forward-column) (cogre-substitute 'backward-char 'picture-backward-column) (cogre-substitute 'next-line 'picture-move-down) (cogre-substitute 'previous-line 'picture-move-up) ) (easy-menu-define cogre-mode-menu cogre-mode-map "Connected Graph Menu" '("Graph" ("Insert" :filter cogre-insert-forms-menu) ("Navigate" ["Next Element" cogre-next-node t ] ["Prev Element" cogre-prev-node t ] ["Move Node Up" cogre-move-node-up (cogre-node-child-p (cogre-current-element)) ] ["Move Node Down" cogre-move-node-down (cogre-node-child-p (cogre-current-element)) ] ["Move Node Left" cogre-move-node-left (cogre-node-child-p (cogre-current-element)) ] ["Move Node right" cogre-move-node-right (cogre-node-child-p (cogre-current-element)) ] ) ("Change" :filter cogre-change-forms-menu) "--" [ "Delete" cogre-delete (cogre-current-element) ] [ "Refresh" cogre-refresh t ] )) (defmethod cogre-insert-class-list ((graph cogre-graph)) "Return a list of classes GRAPH will accept." (eieio-build-class-alist 'cogre-graph-element)) (defun cogre-insert-forms-menu (menu-def) "Create a menu for cogre INSERT item. Argument MENU-DEF is the easy-menu definition." (easy-menu-filter-return (easy-menu-create-menu "Insert Forms" (let ((obj (cogre-current-element)) (elements (cogre-insert-class-list cogre-graph)) (newmenu nil)) (while elements ;; Added (car elements) to the menu. (setq newmenu (cons (vector (car (car elements)) `(progn (cogre-new-node (point) (intern ,(car (car elements)))) (cogre-render-buffer cogre-graph) ) t) newmenu)) (setq elements (cdr elements))) (append (list [ "New Link" cogre-new-link t ] [ "New Node" cogre-new-node t ] ) (nreverse newmenu)) )))) (defun cogre-change-forms-menu (menu-def) "Create a menu for cogre CHANGE item. Argument MENU-DEF is the easy-menu definition." (easy-menu-filter-return (easy-menu-create-menu "Change Forms" (let* ((obj (cogre-current-element)) (newmenu (if obj (oref obj menu)))) (append '( [ "Name" cogre-set-element-name (cogre-current-element) ] [ "View/Edit" cogre-activate-element (cogre-current-element) ] ) (nreverse newmenu)) )))) ;;; Buffer initialization ;; (defun cogre (name &optional graph-class) "Create a new graph with the Connected Graph Editor. The new graph will be given NAME. See `cogre-mode' for details. Optional argument GRAPH-CLASS indicates the type of graph to create." (interactive "sGraph Name: ") (let ((newgraph (if graph-class (funcall graph-class name :name name) (cogre-graph name :name name)))) (switch-to-buffer (get-buffer-create (concat "*Graph " name "*"))) (setq cogre-graph newgraph) ;;(toggle-read-only 1) (cogre-mode) )) (defun cogre-mode () "Connected Graph Editor Mode. \\{cogre-mode-map}" (interactive) (setq major-mode 'cogre-mode mode-name "Cogre") (use-local-map cogre-mode-map) (setq truncate-lines t) (run-hooks 'cogre-mode-hook) (cogre-render-buffer cogre-graph t) ) ;;; Interactive utility functions ;; (defun cogre-node-at-point-interactive (&optional pos) "Return the node under POS. Throw an error if there is no node." (let ((e (cogre-current-element (or pos (point))))) (if (or (not e) (not (obj-of-class-p e cogre-node))) (error "No graph node under point") e))) (defun cogre-link-at-point-interactive (&optional pos) "Return the node under POS. Throw an error if there is no node." (let ((e (cogre-current-element (or pos (point))))) (if (or (not e) (not (obj-of-class-p e cogre-link))) (error "No graph node under point") e))) (defun cogre-element-at-point-interactive (&optional pos) "Return the node under POS. Throw an error if there is no node." (let ((e (cogre-current-element (or pos (point))))) (if (not e) (error "No graph node under point") e))) ;;; Edit/View elements ;; (defun cogre-activate-element (element) "View/Edit the ELEMENT. The default ELEMENT is the one found under the cursor." (interactive (list (cogre-current-element))) (if element (cogre-activate element) (error "The cursor is not on an object"))) ;;; Default management ;; ;; Defaults provide a way of quickly creating a bunch of the same type ;; of node/link, or whatever. By using these functions in `interactive' ;; commands, a set of defaults can be specified which are used ;; continuously. (defvar cogre-node-history nil "The history for reading in node class names.") (defvar cogre-default-node nil "The last node type queried. Used as the default node type when a user wants a node, and no request to change it has been made.") (defun cogre-default-node (&optional node prefix) "Return the default node type. If run interactively, query for a new node to make the default. If called non-interactivly there is no default, query for one. If NODE is supplied, use that. If there is a PREFIX argument, then force a query for one." (interactive (list (eieio-read-subclass "Node Type: " cogre-node 'cogre-node-history) current-prefix-arg)) ;; Save whatever is being set. (if node (setq cogre-default-node node)) ;; If we are not interactive, then check the prefix. (if (or prefix (not cogre-default-node)) (setq cogre-default-node (eieio-read-subclass "Node Type: " cogre-node 'cogre-node-history))) ;; Return the cached node. cogre-default-node ) (defvar cogre-link-history nil "The history for reading in link class names.") (defvar cogre-default-link nil "The last link type queried. Used as the default link type when a user wants a link, and no request to change it has been made.") (defun cogre-default-link (&optional link prefix) "Return the default link type. If run interactively, query for a new link to make the default. If called non-interactivly there is no default, query for one. If LINK is supplied, use that. If there is a PREFIX argument, then force a query for one." (interactive (list (eieio-read-subclass "Link Type: " cogre-link 'cogre-link-history) current-prefix-arg)) ;; Save whatever is being set. (if link (setq cogre-default-link link)) ;; If we are not interactive, then check the prefix. (if (or prefix (not cogre-default-link)) (setq cogre-default-link (eieio-read-subclass "Link Type: " cogre-link 'cogre-link-history))) ;; Return the cached link. cogre-default-link ) ;;; Commands for Graph Mode ;; (defun cogre-refresh () "Refresh the current display completely." (interactive) (cogre-render-buffer cogre-graph t)) (defun cogre-new-node (point nodetype) "Insert a new node at the current point. Argument POINT is a position to insert this node to. NODETYPE is the eieio class name for the node to insert." (interactive (list (point) (cogre-default-node nil current-prefix-arg))) (save-excursion (goto-char point) (if (not nodetype) (setq nodetype 'cogre-node)) (let* ((x (current-column)) (y (cogre-current-line)) (n (make-instance nodetype (oref nodetype name-default) :position (vector x y))) ) (if (interactive-p) (cogre-render-buffer cogre-graph)) ))) (defun cogre-new-link (mark point &optional linktype) "Insert a new link from the node at MARK to POINT of LINKTYPE. MARK is the node within which the current mark is set. POINT is the node the cursor is in. LINKTYPE is the eieio class name for the link to insert." (interactive (list (cogre-node-at-point-interactive (mark)) (cogre-node-at-point-interactive (point)) (cogre-default-link nil current-prefix-arg))) (if (not linktype) (setq linktype cogre-link)) (make-instance linktype "Link" :start mark :end point) (if (interactive-p) (cogre-render-buffer cogre-graph)) ) (defvar cogre-delete-dont-ask nil "Track if we should ask about deleting an object from the graph.") (defun cogre-delete (element) "Delete the graph ELEMENT under the cursor." (interactive (list (cogre-element-at-point-interactive (point)))) (if (or cogre-delete-dont-ask (y-or-n-p (format "Really delete %s? " (object-name element)))) (let ((cogre-delete-dont-ask t)) (if (obj-of-class-p element cogre-node) (let ((el (oref cogre-graph elements)) (test nil)) (while el (setq test (car el) el (cdr el)) (if (and (obj-of-class-p test cogre-link) (or (eq element (oref test start)) (eq element (oref test end)))) (cogre-delete test))))) (cogre-erase element) (cogre-delete-element cogre-graph element)) )) (defun cogre-set-element-name (node name) "Set the name of the current NODE to NAME." (interactive (let ((e (cogre-node-at-point-interactive))) (list e (read-string "New Name: " "" nil (oref e object-name))))) (cogre-erase node) (oset node object-name (cogre-unique-name cogre-graph name)) (if (interactive-p) (cogre-render-buffer cogre-graph)) ) (defun cogre-next-node (&optional arg) "Move forward ARG nodes in the hierarchy. If ARG is unspecified, assume 1." (interactive "p") (let ((n (cogre-current-element (point))) (e (oref cogre-graph elements)) (next nil)) (if (not n) ;; Not on the node? Tab around. (setq next (car e)) (let* ((l (length e)) (i (- l (length (member n e)))) (ni (+ i arg))) (if (< ni 0) (setq ni (+ l ni)) (if (>= ni l) (setq ni (- ni l)))) (setq next (nth ni e)))) (if (obj-of-class-p next cogre-node) (let ((p (oref next position))) (picture-goto-coordinate (aref p 0) (aref p 1))) ;; Else, we have a link (with-slots (stop-position) next (apply 'picture-goto-coordinate stop-position) )))) (defun cogre-prev-node (&optional arg) "Move backward ARG nodes in the hierarchy. If ARG is unspecified, assume 1." (interactive "p") (cogre-next-node (- arg))) (defun cogre-move-node (x y) "Set NODE to postion X, Y." (interactive "nX: \nnY: ") (let ((inhibit-point-motion-hooks t) (e (cogre-current-element (point)))) (cogre-erase e) (cogre-move e x y) (picture-goto-coordinate x y)) (if (interactive-p) (cogre-render-buffer cogre-graph))) (defun cogre-move-node-left (arg) "Move NODE left by ARG columns." (interactive "p") (let* ((e (cogre-current-element (point))) (p (oref e position))) (cogre-move-node (- (aref p 0) arg) (aref p 1)) (if (interactive-p) (cogre-render-buffer cogre-graph)))) (defun cogre-move-node-right (arg) "Move NODE right by ARG columns." (interactive "p") (let* ((e (cogre-current-element (point))) (p (oref e position))) (cogre-move-node (+ (aref p 0) arg) (aref p 1)) (if (interactive-p) (cogre-render-buffer cogre-graph)))) (defun cogre-move-node-up (arg) "Move NODE up by ARG columns." (interactive "p") (let* ((e (cogre-current-element (point))) (p (oref e position))) (cogre-move-node (aref p 0) (- (aref p 1) arg)) (if (interactive-p) (cogre-render-buffer cogre-graph)))) (defun cogre-move-node-down (arg) "Move NODE down by ARG columns." (interactive "p") (let* ((e (cogre-current-element (point))) (p (oref e position))) (cogre-move-node (aref p 0) (+ (aref p 1) arg)) (if (interactive-p) (cogre-render-buffer cogre-graph)))) ;;; State Management ;; (defmethod cogre-activate ((element cogre-graph-element)) "Activate ELEMENT. This could be as simple as displaying the current state, customizing the object, or performing some complex task." (require 'eieio-custom) (customize-object element) ) (defmethod eieio-done-customizing ((element cogre-graph-element)) "Finish customizing a graph element." (cogre-set-dirty element t) (cogre-render-buffer cogre-graph) ) (defmethod cogre-add-element ((graph cogre-graph) elt) "Add to GRAPH a new element ELT." (object-add-to-list graph 'elements elt t)) (defmethod cogre-delete-element ((graph cogre-graph) elt) "Delete from GRAPH the element ELT." (object-remove-from-list graph 'elements elt)) (defmethod cogre-unique-name ((graph cogre-graph) name) "Within GRAPH, make NAME unique." (let ((newname name) (obj (object-assoc name :object-name (oref graph elements))) (inc 1)) (while obj (setq newname (concat name (int-to-string inc))) (setq inc (1+ inc)) (setq obj (object-assoc newname :object-name (oref graph elements)))) newname)) (defmethod cogre-set-dirty ((element cogre-graph-element) dirty-state) "Set the dirty state for ELEMENT to DIRTY-STATE." (oset element dirty dirty-state)) (defmethod cogre-set-dirty ((node cogre-node) dirty-state) "Set the dirty state for NODE to DIRTY-STATE." (if dirty-state (oset node rectangle nil)) (call-next-method)) (defmethod initialize-instance ((elt cogre-graph-element) fields) "Initialize ELT's name before the main FIELDS are initialized." (let ((n (oref elt name-default))) (object-set-name-string elt n)) (call-next-method)) (defmethod initialize-instance :AFTER ((elt cogre-graph-element) fields) "When creating a new element, add it to the current graph. Argument ELT is the element being created. Argument FIELDS are ignored." (let ((n (oref elt object-name))) ;; make sure our name is unique. (oset elt object-name (cogre-unique-name cogre-graph n))) (cogre-add-element cogre-graph elt)) ;;; Buffer Rendering ;; (defmethod cogre-render-buffer ((graph cogre-graph) &optional erase) "Render the current graph GRAPH. If optional argument ERASE is non-nil, then erase the buffer, and render everything. If ERASE is nil, then only redraw items with dirty flags set." (let ((inhibit-read-only t) (x (current-column)) (y (1- (picture-current-line)))) (let ((inhibit-point-motion-hooks t)) (save-excursion (with-slots (elements) graph (if erase (progn (erase-buffer) (mapcar (lambda (e) (cogre-set-dirty e t)) elements))) (mapcar (lambda (e) (cogre-render e)) elements)))) (picture-goto-coordinate x y))) (defmethod cogre-render ((element cogre-graph-element)) "Render ELEMENT. By default, an ELEMENT has nothing to see, but assume we are called from `call-next-method', so reset our dirty flag." (cogre-set-dirty element nil)) (defmethod cogre-erase ((element cogre-graph-element)) "Erase ELEMENT. By default, an ELEMENT has nothing to erase, but assume we are called from `call-next-method', so set our dirty flag." (cogre-set-dirty element t)) (defmethod cogre-entered ((element cogre-graph-element) start end) "Method called when the cursor enters ELEMENT. START and END cover the region with the property." (message "%s" (object-name element))) (defmethod cogre-left ((element cogre-graph-element) start end) "Method called when the cursor exits ELEMENT. START and END cover the region with the property." nil) ;;; Nodes (defmethod cogre-erase ((node cogre-node)) "Erase NODE from the screen." (let ((position (oref node position)) (rectangle (cogre-node-rectangle node)) (links (cogre-node-links node))) (cogre-erase-rectangle (aref position 0) (aref position 1) (length (car rectangle)) (length rectangle)) (mapcar 'cogre-erase links)) (call-next-method)) (defmethod cogre-node-links ((node cogre-node)) "Return a list of links which reference NODE." (with-slots (elements) cogre-graph (let ((links nil)) (mapcar (lambda (n) (if (and (obj-of-class-p n cogre-link) (or (eq (oref n start) node) (eq (oref n end) node))) (setq links (cons n links)))) elements) links))) (defmethod cogre-node-rectangle ((node cogre-node)) "Fetch the rectangle representation for NODE." (or (oref node rectangle) (cogre-node-rebuild node))) (defmethod cogre-render ((node cogre-node)) "Render NODE in the current graph." (cogre-node-rectangle node) (with-slots (position rectangle) node (picture-goto-coordinate (aref position 0) (aref position 1)) (picture-insert-rectangle rectangle nil)) (call-next-method)) (defmethod cogre-node-rebuild ((node cogre-node)) "Create a new value for `:rectangle' in NODE. The `:rectangle' slot is inserted with rectangle commands. A Rectangle is basically a list of equal length strings. Those strings must have the proper face values on them. Always make the width 2 greater than the widest string." (let* ((width (+ (cogre-node-widest-string node) 2)) (top-lines (oref node blank-lines-top)) (bottom-lines (oref node blank-lines-bottom)) (title (cogre-node-title node)) (slots (cogre-node-slots node)) (align (oref node alignment)) (first t) (rect nil)) (while (> top-lines 0) (setq rect (cons (cogre-string-with-face "" (if first (progn (setq first nil) 'cogre-box-first-face) 'cogre-box-face) node width align) rect) top-lines (1- top-lines))) (setq title (nreverse title)) (while title (let ((face (cond ((and first (null (cdr title))) '(cogre-box-first-face cogre-box-last-face)) (first 'cogre-box-first-face) ((and (null (cdr title)) (not (and (null slots) (/= bottom-lines 0)))) 'cogre-box-last-face) (t 'cogre-box-face)))) (setq rect (cons (cogre-string-with-face (car title) face node width align) rect) title (cdr title)))) (while slots (let ((sl (car slots))) ;; If a subnode has nil here, make sure we put in a blank ;; line placeholder. (if (not sl) (setq sl (list ""))) (while sl (let ((face (cond ((and (= bottom-lines 0) (null (cdr sl))) 'cogre-box-last-face) (t 'cogre-box-face)))) (setq rect (cons (cogre-string-with-face (car sl) face node width align) rect) sl (cdr sl))))) (setq slots (cdr slots))) (while (> bottom-lines 0) (setq rect (cons (cogre-string-with-face "" (if (= bottom-lines 1) 'cogre-box-last-face 'cogre-box-face) node width align) rect) bottom-lines (1- bottom-lines))) (oset node rectangle (nreverse rect)))) (defmethod cogre-move-delta ((node cogre-node) dx dy) "Move NODE's position by DX, DY." (let ((p (oref node position))) (cogre-move node (+ (aref p 0) dx) (+ (aref p 1) dy)))) (defmethod cogre-move ((node cogre-node) x y) "Move NODE to position X, Y." (if (> 0 x) (setq x 0)) (if (> 0 y) (setq y 0)) (oset node position (vector x y)) ) (defmethod cogre-node-title ((node cogre-node)) "Return a list of strings representing the title of the NODE. For example: ( \"Title\" ) or ( \"<Type>\" \"Title\" )" (list (oref node object-name))) (defmethod cogre-node-slots ((node cogre-node)) "For NODE, return a list of slot lists. Slots are individual lines of text appearing in the body of a node. Each list will be prefixed with a line before it." nil) (defmethod cogre-node-widest-string ((node cogre-node)) "Return the widest string in NODE." (let ((namel (length (oref node object-name))) (slots (cogre-node-slots node)) (names nil) (ws 0)) (while slots (setq names (car slots)) (while names (if (> (length (car names)) ws) (setq ws (length (car names)))) (setq names (cdr names))) (setq slots (cdr slots))) (if (> ws namel) ws namel))) (defun cogre-node-horizontal-distance (node1 node2) "Calculate the horizontal distance between NODE1 and NODE2. This number is positive or negative, depending on the direction of distance." ;; Make sure their rectangle's are up to date. (cogre-node-rebuild node1) (cogre-node-rebuild node2) ;; Get all the details (let* ((p1 (oref node1 position)) ;position vector (p2 (oref node2 position)) (x1 (aref p1 0)) ;X,Y for NODE1 (x2 (aref p2 0)) ;X,Y for NODE2 ) (if (< x1 x2) ;; positive distance. (- x2 x1 (length (car (cogre-node-rectangle node1)))) (- x1 x2 (length (car (cogre-node-rectangle node2)))) ))) (defun cogre-node-vertical-distance (node1 node2) "Calculate the vertical distance between NODE1 and NODE2. This number is positive or negative, depending on the direction of distance." ;; Make sure their rectangle's are up to date. (cogre-node-rebuild node1) (cogre-node-rebuild node2) ;; Get all the details (let* ((p1 (oref node1 position)) ;position vector (p2 (oref node2 position)) (y1 (aref p1 1)) ;X,Y for NODE1 (y2 (aref p2 1)) ;X,Y for NODE2 ) (if (< y1 y2) ;; positive distance. (- y2 y1 (length (cogre-node-rectangle node1))) (- y1 y2 (length (cogre-node-rectangle node2))) ))) (defun cogre-choose-horizontal-link-anchors (node1 node2) "Choose horizontal link anchor points between NODE1 and NODE2. The data returned is (X1 Y1 X2 Y2)." (let* ((p1 (oref node1 position)) ;position vector (p2 (oref node2 position)) (x1 (aref p1 0)) ;X,Y for START (y1 (aref p1 1)) (x2 (aref p2 0)) ;X,Y for END (y2 (aref p2 1)) (r1 (cogre-node-rectangle node1)) ;rectangle text (r2 (cogre-node-rectangle node2)) (h1 (length r1)) ;Height (h2 (length r2)) (w1 (length (car r1))) ;Width (w2 (length (car r2))) ) (if (< x1 x2) (list (+ x1 w1) (+ y1 (/ h1 2)) (1- x2) (+ y2 (/ h2 2))) (list (1- x1) (+ y1 (/ h1 2)) (+ x2 w2) (+ y2 (/ h2 2)))) )) (defun cogre-choose-vertical-link-anchors (node1 node2) "Choose vertical link anchor points between NODE1 and NODE2. The data returned is (X1 Y1 X2 Y2)." (let* ((p1 (oref node1 position)) ;position vector (p2 (oref node2 position)) (x1 (aref p1 0)) ;X,Y for START (y1 (aref p1 1)) (x2 (aref p2 0)) ;X,Y for END (y2 (aref p2 1)) (r1 (cogre-node-rectangle node1)) ;rectangle text (r2 (cogre-node-rectangle node2)) (h1 (length r1)) ;Height (h2 (length r2)) (w1 (length (car r1))) ;Width (w2 (length (car r2))) ) (if (< y1 y2) (list (+ x1 (/ w1 2)) (+ y1 h1) (+ x2 (/ w2 2)) (1- y2)) (list (+ x1 (/ w1 2)) (1- y1) (+ x2 (/ w2 2)) (+ y2 h2))) )) ;;; Links ;; (defvar cogre-erase-mode nil "Non nil means we are in erase mode while rendering this link.") (defmethod cogre-erase ((link cogre-link)) "Erase LINK from the screen." (let ((picture-rectangle-ctl ? ) (picture-rectangle-ctr ? ) (picture-rectangle-cbl ? ) (picture-rectangle-cbr ? ) (picture-rectangle-v ? ) (picture-rectangle-h ? )) ;; Links use picture line drawing teqnique to wander about. ;; By setting the picture line characters to spaces, we can ;; erase the line with the render command. (let ((cogre-erase-mode t)) (cogre-render link)) (call-next-method))) (defmethod cogre-render ((link cogre-link)) "Render LINK in the current graph." (with-slots (start end start-glyph end-glyph) link (let* ((hd (cogre-node-horizontal-distance start end)) (vd (cogre-node-vertical-distance start end)) linkcoords dir ) ;; Calculate starting points in relation to our attached nodes. (if (> (* hd (oref link horizontal-preference-ratio)) vd) ;; In this case, the X delta is larger than the Y delta, ;; so the line is going mostly left/right. (setq linkcoords (cogre-choose-horizontal-link-anchors start end) dir 'horizontal) (setq linkcoords (cogre-choose-vertical-link-anchors start end) dir 'vertical)) (oset link stop-position (list (car linkcoords) (car (cdr linkcoords)))) ;; Now draw a rectiliniar line (apply 'picture-draw-rectilinear-line (append linkcoords (list dir 'face nil 'element link))) ;; Handle start/end glyps. (if (and (not start-glyph) (not end-glyph)) ;; We need to do nothing if we have no glyphs. nil (let* (startrect endrect x1 y1 x2 y2) ;; Calculate the modificates needed to the end points for ;; creating the textual glyph. (setq x1 (nth 0 linkcoords) y1 (nth 1 linkcoords) x2 (nth 2 linkcoords) y2 (nth 3 linkcoords)) (if (eq dir 'horizontal) (progn (if (< x1 x2) (setq startrect (aref start-glyph 2) endrect (aref end-glyph 3) x2 (- x2 -1 (length (car endrect)))) (setq startrect (aref start-glyph 3) endrect (aref end-glyph 2) x1 (- x1 -1 (length (car startrect))))) (setq y1 (- y1 (/ (length startrect) 2)) y2 (- y2 (/ (length endrect) 2)))) (if (< y1 y2) (setq startrect (aref start-glyph 0) endrect (aref end-glyph 1) y2 (- y2 -1 (length endrect))) (setq startrect (aref start-glyph 1) endrect (aref end-glyph 0) y1 (- y1 -1 (length startrect)))) (setq x1 (- x1 (/ (length (car startrect)) 2)) x2 (- x2 (/ (length (car endrect)) 2)))) ;; Ok, splat the glyph (if cogre-erase-mode (progn (cogre-erase-rectangle x1 y1 (length (car startrect)) (length startrect)) (cogre-erase-rectangle x2 y2 (length (car endrect)) (length endrect)) ) (picture-goto-coordinate x1 y1) (picture-insert-rectangle startrect nil) (picture-goto-coordinate x2 y2) (picture-insert-rectangle endrect nil) ) )))) (call-next-method)) ;;; Low Level Rendering and status ;; (defun cogre-string-with-face (string face element &optional length align) "Using text STRING, apply FACE to that text. The string in question belongs to the graph ELEMENT. If optional argument LENGTH is supplied, pad STRING on the left and right so that it is centered. If optional argument ALIGN is non-nil, the align the string either 'left or 'right. Return the new string." (if length (let* ((preprops (copy-sequence (text-properties-at 0 string))) (ws (- length (length string))) (sws (cond ((not align) (make-string (/ ws 2) ? )) ((eq align 'right) (make-string (1- ws) ? )) ((eq align 'left) " ") (t "") )) (ews (cond ((not align) (make-string (+ (/ ws 2) (% ws 2)) ? )) ((eq align 'left) (make-string (1- ws) ? )) ((eq align 'right) " ") (t "") )) ) (let ((pm (plist-get preprops 'face))) (when pm ;; We don't want to modify the face on this based ;; on the first character. (setq preprops (delq 'face preprops)) (setq preprops (delq pm preprops)))) (setq string (concat sws string ews)) (add-text-properties 0 (length string) preprops string) )) ;; Add our faces on. Preserve previously applied faces. (when face (alter-text-property 0 (length string) 'face (lambda (current-face) (let ((cf (cond ((facep current-face) (list current-face)) ((listp current-face) current-face) (t nil))) (nf (cond ((facep face) (list face)) ((listp face) face) (t nil)))) (append cf nf))) string)) ;; Add on other properties. (add-text-properties 0 (length string) (list 'rear-nonsticky t 'detachable t ;; xemacs 'element element ;; 'local-map ;; 'modification-hooks 'point-entered (lambda (s e) (let ((inhibit-point-motion-hooks t)) (when (cogre-current-element) (cogre-entered (cogre-current-element) s e)))) 'point-left (lambda (s e) (let* ((inhibit-point-motion-hooks t) (el (save-excursion (goto-char s) (cogre-current-element)))) (when el (cogre-left el s e))))) string) string) (defun cogre-erase-rectangle (x y width height) "Clear out the rectangle at X Y, with dimensions WIDTH HEIGHT." (picture-goto-coordinate x y) (clear-rectangle (point) (save-excursion (picture-goto-coordinate (+ x width) (+ y height)) (point)) t)) (defun cogre-current-element (&optional point) "Return the element under POINT." (get-text-property (or point (point)) 'element)) (defun cogre-current-line () "Get the current line." (cond ((eq (point-min) (point)) 0) (t (1- (count-lines (point-min) (point)))))) (provide 'cogre) ;;; cogre.el ends here