From 0be9f1000611b6173ce56d5cc75bb1b639885943 Mon Sep 17 00:00:00 2001 From: cer <cer> Date: Wed, 16 Dec 1992 16:51:14 +0000 Subject: [PATCH] swm random hacking --- clim/accept-values.lisp | 9 +- clim/accept.lisp | 87 ++++--- clim/activities.lisp | 11 +- clim/basic-translators.lisp | 6 +- clim/clim-defs.lisp | 19 +- clim/db-list.lisp | 53 +++- clim/db-stream.lisp | 15 +- clim/db-text.lisp | 37 ++- clim/formatted-output-defs.lisp | 25 +- clim/frames.lisp | 143 ++++++----- clim/graph-formatting.lisp | 79 ++++-- clim/graphics-recording.lisp | 12 +- clim/incremental-redisplay.lisp | 10 +- clim/input-protocol.lisp | 32 +-- clim/interactive-protocol.lisp | 18 +- clim/menus.lisp | 268 ++++++++++----------- clim/output-protocol.lisp | 46 +++- clim/recording-protocol.lisp | 8 +- clim/standard-types.lisp | 27 ++- clim/table-formatting.lisp | 194 ++++++++------- clx/clx-pixmaps.lisp | 11 +- demo/bitmap-editor.lisp | 6 +- demo/demo-driver.lisp | 4 +- demo/demo-prefill.lisp | 5 +- demo/graphics-demos.lisp | 8 +- demo/ico.lisp | 4 +- demo/listener.lisp | 5 +- genera/genera-frames.lisp | 56 ++--- genera/genera-medium.lisp | 23 +- genera/genera-pixmaps.lisp | 56 +++-- postscript/postscript-medium.lisp | 12 +- postscript/postscript-port.lisp | 74 ++++-- silica/classes.lisp | 4 +- silica/db-border.lisp | 15 +- silica/db-layout.lisp | 4 +- silica/db-scroll.lisp | 4 +- silica/db-slider.lisp | 13 +- silica/event.lisp | 12 +- silica/gadgets.lisp | 46 ++-- silica/graphics.lisp | 115 +++++++-- silica/medium.lisp | 33 ++- silica/port.lisp | 15 +- silica/scroll-pane.lisp | 29 ++- silica/sheet.lisp | 7 +- silica/text-style.lisp | 5 +- sys/sysdcl.lisp | 65 ++--- test/postscript-tests.lisp | 16 +- test/test-suite.lisp | 385 +++++++++++++++--------------- tk-silica/image.lisp | 3 +- tk-silica/ol-gadgets.lisp | 6 +- tk-silica/xm-silica.lisp | 9 +- tk-silica/xt-frames.lisp | 4 +- tk-silica/xt-graphics.lisp | 157 ++++-------- tk-silica/xt-silica.lisp | 37 +-- tk/gcontext.lisp | 4 +- tk/graphics.lisp | 4 +- tk/xlib.lisp | 21 +- utils/lisp-utilities.lisp | 24 +- utils/packages.lisp | 70 +++--- 59 files changed, 1359 insertions(+), 1111 deletions(-) diff --git a/clim/accept-values.lisp b/clim/accept-values.lisp index f5ac3037..c26ca4e3 100644 --- a/clim/accept-values.lisp +++ b/clim/accept-values.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CLIM-INTERNALS; Base: 10; Lowercase: Yes -*- -;; $fiHeader: accept-values.lisp,v 1.48 92/12/03 10:25:53 cer Exp $ +;; $fiHeader: accept-values.lisp,v 1.49 92/12/07 12:13:56 cer Exp $ (in-package :clim-internals) @@ -539,17 +539,20 @@ (move-cursor-beyond-output-record (encapsulating-stream-stream stream) avv))))))))) -(defmethod invoke-with-aligned-prompts ((stream accept-values-stream) continuation &key (align-prompts t)) +(defmethod invoke-with-aligned-prompts ((stream accept-values-stream) continuation + &key (align-prompts t)) + (declare (dynamic-extent continuation)) (setq align-prompts (ecase align-prompts ((t :right) :right) ((:left) :left) ((nil) nil))) (letf-globally (((slot-value stream 'align-prompts) align-prompts)) (formatting-table (stream) - (funcall continuation stream)))) + (funcall continuation stream)))) (defmethod invoke-with-aligned-prompts ((stream t) continuation &key align-prompts) (declare (ignore align-prompts)) + (declare (dynamic-extent continuation)) (funcall continuation stream)) (defmethod frame-manager-display-input-editor-error diff --git a/clim/accept.lisp b/clim/accept.lisp index 1b9b284d..dedd01a9 100644 --- a/clim/accept.lisp +++ b/clim/accept.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CLIM-INTERNALS; Base: 10; Lowercase: Yes -*- -;; $fiHeader: accept.lisp,v 1.20 92/11/20 08:44:21 cer Exp $ +;; $fiHeader: accept.lisp,v 1.21 92/12/03 10:25:56 cer Exp $ (in-package :clim-internals) @@ -305,11 +305,15 @@ ;;; As in DW, this does not do defaulting, but does accept a :default argument ;;; in case the accept method needs it (e.g. for pathnames) -(defun accept-from-string (type string &key (view +textual-view+) - (default nil default-supplied-p) - (default-type type) - (start 0) - (end nil)) +(defun accept-from-string (type string + &key (view +textual-view+) + (default nil default-supplied-p) + (default-type type) + (activation-gestures nil activation-gestures-p) + (additional-activation-gestures nil) + (delimiter-gestures nil delimiter-gestures-p) + (additional-delimiter-gestures nil) + (start 0) (end nil)) (declare (values object type index)) ;; Allow the arguments to be presentation type abbreviations @@ -329,38 +333,45 @@ (let ((index start)) (multiple-value-bind (the-object the-type) (with-input-from-string (stream string :start start :end end :index index) - (handler-bind - ((parse-error - #'(lambda (error) - (declare (ignore error)) - ;; This private version of CHECK-FOR-DEFAULT is - ;; enough for string and string streams to do a - ;; reasonable job, but it's not perfect. Some - ;; hairy presentation types may still not work. - (flet ((check-for-default (stream) - (loop - (let ((char (read-char stream nil *end-of-file-marker*))) - (when (or (not (characterp char)) - (delimiter-gesture-p char) - (not (whitespace-char-p char))) - (unless (eq char *end-of-file-marker*) - (unread-char char stream)) - (when (and default-supplied-p - (or (eq char *end-of-file-marker*) - (activation-gesture-p char) - (delimiter-gesture-p char))) - (return-from check-for-default t)) - (return-from check-for-default nil)))))) - (declare (dynamic-extent #'check-for-default)) - (when (check-for-default stream) - (return-from accept-from-string - (values default default-type index))))))) - (if default-supplied-p - (funcall-presentation-generic-function accept - type stream view - :default default :default-type default-type) - (funcall-presentation-generic-function accept - type stream view)))) + (with-activation-gestures ((or activation-gestures + additional-activation-gestures + *standard-activation-gestures*) + :override activation-gestures-p) + (with-delimiter-gestures ((or delimiter-gestures + additional-delimiter-gestures) + :override delimiter-gestures-p) + (handler-bind + ((parse-error + #'(lambda (error) + (declare (ignore error)) + ;; This private version of CHECK-FOR-DEFAULT is + ;; enough for string and string streams to do a + ;; reasonable job, but it's not perfect. Some + ;; hairy presentation types may still not work. + (flet ((check-for-default (stream) + (loop + (let ((char (read-char stream nil *end-of-file-marker*))) + (when (or (not (characterp char)) + (delimiter-gesture-p char) + (not (whitespace-char-p char))) + (unless (eq char *end-of-file-marker*) + (unread-char char stream)) + (when (and default-supplied-p + (or (eq char *end-of-file-marker*) + (activation-gesture-p char) + (delimiter-gesture-p char))) + (return-from check-for-default t)) + (return-from check-for-default nil)))))) + (declare (dynamic-extent #'check-for-default)) + (when (check-for-default stream) + (return-from accept-from-string + (values default default-type index))))))) + (if default-supplied-p + (funcall-presentation-generic-function accept + type stream view + :default default :default-type default-type) + (funcall-presentation-generic-function accept + type stream view)))))) (values the-object (or the-type type) index)))) ;; Make ACCEPT work inside WITH-INPUT-FROM-STRING diff --git a/clim/activities.lisp b/clim/activities.lisp index 72b65c62..0a8160c1 100644 --- a/clim/activities.lisp +++ b/clim/activities.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CLIM-INTERNALS; Base: 10; Lowercase: Yes -*- -;; $fiHeader: activities.lisp,v 1.8 92/12/01 09:45:02 cer Exp $ +;; $fiHeader: activities.lisp,v 1.9 92/12/03 10:26:01 cer Exp $ (in-package :clim-internals) @@ -66,12 +66,11 @@ (if (frame-manager-frames activity) (progn (setf (activity-active-frame activity) - (select-activity-initial-frame activity)) + (select-activity-initial-frame activity)) (enable-activity-frames activity)) - (setf (activity-active-frame activity) - (prog1 (start-initial-application-frame activity) - (start-other-application-frames activity)))) - ;; + (setf (activity-active-frame activity) + (prog1 (start-initial-application-frame activity) + (start-other-application-frames activity)))) (unwind-protect (loop (let ((*activity* activity) diff --git a/clim/basic-translators.lisp b/clim/basic-translators.lisp index f57b12da..89954994 100644 --- a/clim/basic-translators.lisp +++ b/clim/basic-translators.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CLIM-INTERNALS; Base: 10; Lowercase: Yes -*- -;; $fiHeader: basic-translators.lisp,v 1.12 92/12/03 10:26:03 cer Exp $ +;; $fiHeader: basic-translators.lisp,v 1.13 92/12/07 12:14:00 cer Exp $ (in-package :clim-internals) @@ -22,15 +22,13 @@ (object presentation) (values object (presentation-type presentation))) - (defun identity-translator-applicable-p (presentation context-type) (let* ((type (presentation-type presentation)) (type-name (presentation-type-name type)) (object (presentation-object presentation))) (with-presentation-type-decoded (context-name context-parameters) context-type (if (eq type-name 'blank-area) - (or ;; D,#TD1PsT[Begin using 006 escapes](1 0 (NIL 0) (NIL :BOLD NIL) "CPTFONTCB") 0 - (eq context-name 'blank-area) + (or (eq context-name 'blank-area) (presentation-subtypep-1 type context-type)) ;; Let MENU-ITEM-IDENTITY take care of pure menu items (unless (and (eq type-name 'menu-item) diff --git a/clim/clim-defs.lisp b/clim/clim-defs.lisp index d66db060..7bafef6d 100644 --- a/clim/clim-defs.lisp +++ b/clim/clim-defs.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CLIM-INTERNALS; Base: 10; Lowercase: Yes -*- -;; $fiHeader: clim-defs.lisp,v 1.20 92/12/03 10:26:06 cer Exp $ +;; $fiHeader: clim-defs.lisp,v 1.21 92/12/07 12:14:08 cer Exp $ (in-package :clim-internals) @@ -150,13 +150,17 @@ (defvar *allow-sensitive-inferiors* t) (defmacro with-output-as-presentation ((stream object type + &rest options &key modifier single-box (allow-sensitive-inferiors t asi-p) parent - (record-type `'standard-presentation)) + (record-type `'standard-presentation) + &allow-other-keys) &body body) #+Genera (declare (zwei:indentation 0 3 1 1)) (default-output-stream stream) + (setq options (remove-keywords options '(:modifier :single-box :parent + :allow-sensitive-inferiors :record-type))) ;; Maybe with-new-output-record should turn record-p on? (unless asi-p (setq allow-sensitive-inferiors '*allow-sensitive-inferiors*)) @@ -174,7 +178,8 @@ (presentation-type-of ,nobject)) :single-box ,single-box ,@(when modifier `(:modifier ,modifier)) - ,@(when parent `(:parent ,parent))) + ,@(when parent `(:parent ,parent)) + ,@options) (let ((*allow-sensitive-inferiors* ,allow-sensitive-inferiors)) ,@body)))))) @@ -283,14 +288,14 @@ ;;; From MENUS.LISP ;;; For now, MENU-CHOOSE requires that you pass in a parent. (defmacro with-menu ((menu &optional (associated-window nil aw-p) - &rest options &key label scroll-bars) &body body) + &rest options &key label scroll-bars) &body body) (declare (ignore label scroll-bars)) (let ((window '#:associated-window)) `(let ((,window ,(if aw-p associated-window `(frame-top-level-sheet *application-frame*)))) ;once-only (using-resource (,menu menu (window-top-level-window ,window) (window-root ,window) - ,@options) + ,@options) (letf-globally (((stream-default-view ,menu) +textual-menu-view+)) ,@body))))) @@ -312,8 +317,9 @@ (defmacro with-aligned-prompts ((stream &rest args) &body body) (default-input-stream stream accepting-values) `(flet ((with-aligned-prompts-body (,stream) ,@body)) - (declare (dynamic-extent #'accepting-values-body)) + (declare (dynamic-extent #'with-aligned-prompts-body)) (invoke-with-aligned-prompts ,stream #'with-aligned-prompts-body ,@args))) + ;; Establish a first quadrant coordinate system, execute the body, and then ;; place the output in such a way that the upper left corner of it is where @@ -339,6 +345,7 @@ (defvar *application-frame*) (defvar *pointer-documentation-output* nil) (defvar *assume-all-commands-enabled* nil) + (defvar *click-outside-menu-handler* nil) ;; Bound to T when the frame is being layed out diff --git a/clim/db-list.lisp b/clim/db-list.lisp index bddf20ec..3aac6489 100644 --- a/clim/db-list.lisp +++ b/clim/db-list.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: SILICA; Base: 10; Lowercase: Yes -*- -;; $fiHeader: db-list.lisp,v 1.2 92/11/09 10:54:18 cer Exp $ +;; $fiHeader: db-list.lisp,v 1.3 92/11/19 14:17:14 cer Exp $ "Copyright (c) 1992 by Symbolics, Inc. All rights reserved." @@ -51,8 +51,11 @@ (armed (slot-value pane 'armed)) (pattern *check-mark-pattern*)) (with-bounding-rectangle* (left top right bottom) (sheet-region pane) - (when (gadget-value pane) - (draw-pattern* medium pattern (- right (+ (pattern-width pattern) 2)) (+ top 1))) + (if (gadget-value pane) + (draw-pattern* medium pattern (- right (+ (pattern-width pattern) 2)) (+ top 1)) + (draw-rectangle* medium + (- right (+ (pattern-width pattern) 2)) (+ top 1) right bottom + :filled t :ink +background-ink+)) (draw-rectangle* medium left top (1- right) (1- bottom) :filled nil) (draw-text* medium text (+ left 2) (+ top (floor (- bottom top) 2)) @@ -118,9 +121,8 @@ :contents buttons))) (sheet-adopt-child pane inferiors))))))) -;;--- This doesn't work right yet... (defmethod value-changed-callback :around - ((selection gadget) (client generic-list-pane) gadget-id value) + ((selection toggle-button) (client generic-list-pane) gadget-id value) (declare (ignore gadget-id)) (with-slots (items value-key mode) client (let ((real-value (funcall value-key (gadget-id selection))) @@ -135,7 +137,7 @@ (setf (gadget-value client) (delete real-value (gadget-value client)))))) (when old-selection (let ((button (find old-selection items :key #'gadget-id))) - (setf (gadget-value button :invoke-callback t) nil))) + (setf (gadget-value button :invoke-callback nil) nil))) (value-changed-callback client (gadget-client client) (gadget-id client) (gadget-value client)))) (call-next-method)) @@ -145,12 +147,15 @@ (defclass generic-option-pane (option-pane push-button-pane) - ((menu :initform nil))) + ((menu :initform nil)) + (:default-initargs :pattern *right-triangle-button-pattern*)) ;;--- The idea is the the option pane itself is a pushbutton which, when ;;--- pressed, pops up a menu containing the options. (defmethod initialize-instance :after ((pane generic-option-pane) &key) - (with-slots (items name-key value-key test mode) pane + (with-slots (external-label label + items name-key value-key test mode) pane + (shiftf external-label label nil) (let* ((frame (pane-frame pane)) (framem (frame-manager frame)) (buttons nil)) @@ -166,10 +171,40 @@ (and (member (funcall value-key item) (gadget-value pane) :test test) t))) :label (funcall name-key item) - :id item) + :id item + :client pane) buttons)) (setq buttons (nreverse buttons)) (setq items (copy-list buttons)) ;save them away (let ((menu (make-pull-down-menu :port (port frame)))) (initialize-pull-down-menu menu buttons) (setf (slot-value pane 'menu) menu)))))) + +(defmethod handle-event ((pane generic-option-pane) (event pointer-button-release-event)) + (with-slots (armed menu) pane + (when (eq armed :active) + (setf armed t) + (with-sheet-medium (medium pane) + (highlight-button pane medium)) + (choose-from-pull-down-menu menu pane)))) + +(defmethod value-changed-callback :around + ((selection toggle-button) (client generic-option-pane) gadget-id value) + (declare (ignore gadget-id)) + (with-slots (items value-key mode) client + (let ((real-value (funcall value-key (gadget-id selection))) + (old-selection nil)) + (ecase mode + (:exclusive + (setq old-selection (gadget-value client)) + (setf (gadget-value client) (and value real-value))) + (:nonexclusive + (if value + (pushnew real-value (gadget-value client)) + (setf (gadget-value client) (delete real-value (gadget-value client)))))) + (when old-selection + (let ((button (find old-selection items :key #'gadget-id))) + (setf (gadget-value button :invoke-callback nil) nil))) + (value-changed-callback + client (gadget-client client) (gadget-id client) (gadget-value client)))) + (call-next-method)) diff --git a/clim/db-stream.lisp b/clim/db-stream.lisp index 1c1a58b4..42b0fda0 100644 --- a/clim/db-stream.lisp +++ b/clim/db-stream.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CLIM-INTERNALS; Base: 10; Lowercase: Yes -*- -;; $fiHeader: db-stream.lisp,v 1.40 92/12/07 12:14:11 cer Exp $ +;; $fiHeader: db-stream.lisp,v 1.41 92/12/14 15:02:03 cer Exp $ (in-package :clim-internals) @@ -350,11 +350,8 @@ (setq pane `(vertically () ,label ,pane)))))) (when borders (setq pane `(outlining (:thickness 1) - #+allegro - ,pane - #-allegro - (spacing (:thickness 1) - ,pane)))) + #+Allegro ,pane + #-Allegro (spacing (:thickness 1) ,pane)))) `(let (,stream) (values ,pane ,stream)))) @@ -404,7 +401,11 @@ (defmethod window-refresh :after ((stream clim-stream-sheet)) (frame-replay *application-frame* stream) (let ((text-record (stream-text-output-record stream))) - (when text-record (replay text-record stream)))) + (when text-record (replay text-record stream))) + (let ((presentation (highlighted-presentation stream nil))) + (when presentation + (highlight-presentation + presentation (presentation-type presentation) stream :highlight)))) (defmethod window-refresh :around ((stream clim-stream-sheet)) (with-viewport-position-saved (stream) diff --git a/clim/db-text.lisp b/clim/db-text.lisp index c4bbc1dc..4bea4039 100644 --- a/clim/db-text.lisp +++ b/clim/db-text.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CLIM-INTERNALS; Base: 10; Lowercase: Yes -*- -;; $fiHeader: db-text.lisp,v 1.5 92/11/06 18:59:21 cer Exp $ +;; $fiHeader: db-text.lisp,v 1.6 92/11/19 14:17:24 cer Exp $ "Copyright (c) 1992 by Symbolics, Inc. All rights reserved." @@ -29,15 +29,17 @@ (setf (cursor-visibility (stream-text-cursor stream)) nil)))) (defun do-text-editing (stream &key initial-contents clear (exit-gesture '(:end))) - (when clear - (window-clear stream)) - (with-input-focus (stream) - (with-input-editing (stream :initial-contents initial-contents) - (with-activation-gestures (exit-gesture :override t) - (unwind-protect - (read-token stream) - ;; Eat the activation character - (read-gesture :stream stream :timeout 0)))))) + (with-clim-state-reset (:all t + :encapsulating-streams nil) + (when clear + (window-clear stream)) + (with-input-focus (stream) + (with-input-editing (stream :initial-contents initial-contents) + (with-activation-gestures (exit-gesture :override t) + (unwind-protect + (read-token stream) + ;; Eat the activation character + (read-gesture :stream stream :timeout 0))))))) ;;; Text field and text editor gadgets @@ -83,13 +85,26 @@ (defun edit-text-field (pane) (let ((string (do-text-editing pane :initial-contents (gadget-value pane) :clear t))) - (setf (gadget-value pane) string))) + (setf (gadget-value pane :invoke-callback t) string))) (defclass text-field-pane (text-field text-editor-mixin) ()) +(defmethod compose-space ((pane text-field-pane) &key width height) + (declare (ignore width height)) + (with-sheet-medium (medium pane) + (let* ((style (medium-default-text-style medium)) + (style-width (text-style-width style medium)) + (style-height (text-style-height style medium)) + (string (gadget-value pane))) + (multiple-value-bind (width height) + (if string + (text-size pane string :text-style style) + (values (* style-width 20) style-height)) + (make-space-requirement :width width :height height))))) + (defmethod handle-event ((pane text-field-pane) (event pointer-button-press-event)) (edit-text-field pane)) diff --git a/clim/formatted-output-defs.lisp b/clim/formatted-output-defs.lisp index d0cf622f..83eb6555 100644 --- a/clim/formatted-output-defs.lisp +++ b/clim/formatted-output-defs.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CLIM-INTERNALS; Base: 10; Lowercase: Yes -*- -;; $fiHeader: formatted-output-defs.lisp,v 1.6 92/10/02 15:19:24 cer Exp $ +;; $fiHeader: formatted-output-defs.lisp,v 1.7 92/11/06 18:59:32 cer Exp $ (in-package :clim-internals) @@ -13,7 +13,8 @@ &key x-spacing y-spacing multiple-columns multiple-columns-x-spacing equalize-column-widths - record-type (move-cursor t)) + record-type (move-cursor t) + &allow-other-keys) &body body) (declare (ignore x-spacing y-spacing multiple-columns multiple-columns-x-spacing @@ -24,24 +25,31 @@ (declare (dynamic-extent #'formatting-table-body)) (invoke-formatting-table ,stream #'formatting-table-body ,@options))) -(defmacro formatting-row ((&optional stream &key record-type) &body body) +(defmacro formatting-row ((&optional stream + &rest options &key record-type &allow-other-keys) + &body body) #+Genera (declare (zwei:indentation 0 3 1 1)) (default-output-stream stream formatting-row) + (setq options (remove-keywords options '(:record-type))) (unless record-type (setq record-type `'standard-row-output-record)) - `(with-new-output-record (,stream ,record-type) + `(with-new-output-record (,stream ,record-type nil ,@options) ,@body)) -(defmacro formatting-column ((&optional stream &key record-type) &body body) +(defmacro formatting-column ((&optional stream + &rest options &key record-type &allow-other-keys) + &body body) #+Genera (declare (zwei:indentation 0 3 1 1)) (default-output-stream stream formatting-column) + (setq options (remove-keywords options '(:record-type))) (unless record-type (setq record-type `'standard-column-output-record)) - `(with-new-output-record (,stream ,record-type) + `(with-new-output-record (,stream ,record-type nil ,@options) ,@body)) (defmacro formatting-cell ((&optional stream &rest options &key (align-x ':left) (align-y ':top) - min-width min-height record-type) + min-width min-height record-type + &allow-other-keys) &body body) (declare (ignore align-x align-y min-width min-height record-type)) #+Genera (declare (zwei:indentation 0 3 1 1)) @@ -57,7 +65,8 @@ n-columns n-rows max-width max-height stream-width stream-height - (row-wise t) (move-cursor t)) + (row-wise t) (move-cursor t) + &allow-other-keys) &body body) (declare (ignore x-spacing y-spacing initial-spacing record-type n-columns n-rows max-width max-height diff --git a/clim/frames.lisp b/clim/frames.lisp index 2c7c1a2f..3c660912 100644 --- a/clim/frames.lisp +++ b/clim/frames.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CLIM-INTERNALS; Base: 10; Lowercase: Yes -*- -;; $fiHeader: frames.lisp,v 1.54 92/12/07 12:14:15 cer Exp $ +;; $fiHeader: frames.lisp,v 1.55 92/12/14 15:02:07 cer Exp $ (in-package :clim-internals) @@ -641,23 +641,23 @@ ;; Create an application frame of the specified type if one does not already ;; exist, and then run it, possibly in its own process. If one already exists, ;; just select it. -(defun find-application-frame (frame-name &rest options +(defun find-application-frame (frame-name &rest initargs &key (create t) (activate t) (own-process *multiprocessing-p*) - frame-class) - (declare (dynamic-extent options)) + frame-class + &allow-other-keys) + (declare (dynamic-extent initargs)) (when (null frame-class) (setq frame-class frame-name)) (let ((frame - (block find-frame - (map-over-frames #'(lambda (frame) - (when (typep frame frame-class) - (return-from find-frame frame))))))) - (when (or (eq create :force) - (and (null frame) - (eq create t))) - (with-keywords-removed (options options '(:create :activate :own-process)) - (setq frame (apply #'make-application-frame frame-name options)))) + (unless (eq create :force) + (block find-frame + (map-over-frames #'(lambda (frame) + (when (typep frame frame-class) + (return-from find-frame frame)))))))) + (when (and create (null frame)) + (with-keywords-removed (initargs initargs '(:create :activate :own-process)) + (setq frame (apply #'make-application-frame frame-name initargs)))) (when (and frame activate) (cond ((slot-value frame 'top-level-process) (raise-frame frame)) @@ -768,6 +768,42 @@ (defgeneric run-frame-top-level (frame &key &allow-other-keys)) +;; Reset the state of the input editor and the presentation type system, +;; etc., in case there is an entry into another application from inside +;; the input editor, such as a Debugger written using CLIM. +(defmacro with-clim-state-reset ((&key all + (encapsulating-streams all) + (presentation-types all) + (input-editor all) + (frames all) + (command-processor all) + additional-bindings) &body body) + `(let (,@(when encapsulating-streams + `((*original-stream* nil))) + ,@(when presentation-types + `((*input-wait-test* nil) + (*input-wait-handler* nil) + (*pointer-button-press-handler* nil) + (*input-context* nil))) + ,@(when input-editor + `((*numeric-argument* nil) + (*delimiter-gestures* nil) + (*activation-gestures* nil) + (*accelerator-gestures* nil) + (*accelerator-numeric-argument* nil) + (*accept-help* nil))) + ,@(when frames + `((*assume-all-commands-enabled* nil) + (*sizing-application-frame* nil) + (*frame-layout-changing-p* *frame-layout-changing-p*))) + ,@(when command-processor + `((*command-parser* 'command-line-command-parser) + (*command-unparser* 'command-line-command-unparser) + (*partial-command-parser* + 'command-line-read-remaining-arguments-for-partial-command))) + ,@additional-bindings) + ,@body)) + ;;--- It would be nice to have the CLIM 0.9 START-FRAME and STOP-FRAME functions (defmethod run-frame-top-level :around ((frame standard-application-frame) &key) (with-simple-restart (nil "Exit ~A" (frame-pretty-name frame)) @@ -777,31 +813,8 @@ (when (eq frame exit-frame) (return-from run-frame-top-level nil)))))) (unwind-protect - (let (;; Reset the state of the input editor and the presentation - ;; type system, etc., in case there is an entry into another - ;; application from inside the input editor, such as a Debugger - ;; written using CLIM. - ;;--- This should be done in a more modular way - ;;--- If you change this, change MENU-CHOOSE-FROM-DRAWER - (*original-stream* nil) - (*input-wait-test* nil) - (*input-wait-handler* nil) - (*pointer-button-press-handler* nil) - (*numeric-argument* nil) - (*delimiter-gestures* nil) - (*activation-gestures* nil) - (*accelerator-gestures* nil) - (*accelerator-numeric-argument* nil) - (*input-context* nil) - (*accept-help* nil) - (*assume-all-commands-enabled* nil) - (*sizing-application-frame* nil) - (*frame-layout-changing-p* *frame-layout-changing-p*) - (*command-parser* 'command-line-command-parser) - (*command-unparser* 'command-line-command-unparser) - (*partial-command-parser* - 'command-line-read-remaining-arguments-for-partial-command) - (*application-frame* frame)) + (with-clim-state-reset (:all t + :additional-bindings ((*application-frame* frame))) (with-frame-manager ((frame-manager frame)) (loop (with-simple-restart (nil "~A top level" (frame-pretty-name frame)) @@ -925,6 +938,15 @@ (defmethod frame-exit ((frame standard-application-frame)) (signal 'frame-exit :frame frame)) + +(defmethod handle-event ((stream input-protocol-mixin) (event port-terminated)) + (if (pane-frame stream) + (frame-terminated (pane-frame stream) event) + (error "Port has died: ~A" event))) + +(defmethod frame-terminated ((frame standard-application-frame) event) + (error "Port for frame ~A has died: ~A" frame event)) + ;;; Sizing and moving of frames @@ -1151,8 +1173,6 @@ (defmethod execute-frame-command ((frame standard-application-frame) command) (apply (command-name command) (command-arguments command))) -(defvar *click-outside-menu-handler* nil) - (defmethod command-enabled (command-name (frame standard-application-frame)) (with-slots (disabled-commands) frame (or *assume-all-commands-enabled* @@ -1357,13 +1377,20 @@ (frame-manager-display-pointer-documentation (frame-manager frame) frame presentation input-context window x y stream)) -(defmethod frame-manager-display-pointer-documentation +(defmethod frame-manager-pointer-documentation-stream + ((framem standard-frame-manager) frame stream) + (declare (ignore frame)) + stream) + +(defmethod frame-manager-display-pointer-documentation :around ((framem standard-frame-manager) frame presentation input-context window x y stream) - (when stream + (declare (ignore input-context x y)) + (when (frame-manager-pointer-documentation-stream framem frame stream) ;; The documentation should never say anything if we're not over a presentation (when (null presentation) - (window-clear stream)) + (frame-manager-display-pointer-documentation-string + framem frame stream nil)) ;; Cheap test to not do this work too often (let ((old-modifier-state *last-pointer-documentation-modifier-state*) (modifier-state (window-modifier-state window)) @@ -1374,6 +1401,12 @@ (= modifier-state old-modifier-state)) (return-from frame-manager-display-pointer-documentation nil)) (setq *last-pointer-documentation-time* time)) + (call-next-method))) + +(defmethod frame-manager-display-pointer-documentation + ((framem standard-frame-manager) + frame presentation input-context window x y stream) + (let ((stream (frame-manager-pointer-documentation-stream framem frame stream))) (when presentation (with-output-recording-options (stream :record nil) (with-end-of-line-action (stream :allow) @@ -1385,13 +1418,15 @@ (force-output stream))))))) (defmethod frame-manager-display-pointer-documentation-string - ((framem standard-frame-manager) stream string) - (with-output-recording-options (stream :record nil) - (with-end-of-line-action (stream :allow) - (with-end-of-page-action (stream :allow) - (window-clear stream) - (when string - (write-string string stream)))))) + ((framem standard-frame-manager) frame stream string) + (let ((stream (frame-manager-pointer-documentation-stream framem frame stream))) + (when stream + (with-output-recording-options (stream :record nil) + (with-end-of-line-action (stream :allow) + (with-end-of-page-action (stream :allow) + (window-clear stream) + (when string + (write-string string stream)))))))) (defun frame-document-highlighted-presentation-1 (frame presentation input-context window x y stream) @@ -1503,11 +1538,3 @@ (values left left-presentation left-context middle middle-presentation middle-context right right-presentation right-context))) - -(defmethod handle-event ((stream input-protocol-mixin) (event port-terminated)) - (if (pane-frame stream) - (frame-terminated (pane-frame stream) event) - (error "Port has died ~A" event))) - -(defmethod frame-terminated ((frame standard-application-frame) event) - (error "Port for frame ~A has died ~A" frame event)) diff --git a/clim/graph-formatting.lisp b/clim/graph-formatting.lisp index c2cb7c9d..57e6e575 100644 --- a/clim/graph-formatting.lisp +++ b/clim/graph-formatting.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CLIM-INTERNALS; Base: 10; Lowercase: Yes -*- -;; $fiHeader: graph-formatting.lisp,v 1.20 92/12/01 17:49:59 cer Exp $ +;; $fiHeader: graph-formatting.lisp,v 1.21 92/12/07 12:14:20 cer Exp $ (in-package :clim-internals) @@ -121,8 +121,15 @@ (object :accessor graph-node-object :initarg :object)) (:default-initargs :size 5)) +;; Take, but ignore, :DUPLICATE-KEY and :DUPLICATE-TEST +(defmethod initialize-instance :after ((node standard-graph-node-output-record) + &key duplicate-key duplicate-test &allow-other-keys) + (declare (ignore duplicate-key duplicate-test)) + nil) + (define-output-record-constructor standard-graph-node-output-record - (&key object x-position y-position (size 25)) + (&key object x-position y-position (size 25) + duplicate-key duplicate-test) :object object :x-position x-position :y-position y-position :size size) (defmethod tree-recompute-extent-1 ((record standard-graph-node-output-record)) @@ -140,42 +147,58 @@ (defmethod (setf graph-node-y) (new-value (node standard-graph-node-output-record)) (output-record-set-position node (bounding-rectangle-left node) new-value)) +;; Graph node output records match if their objects match +(defmethod match-output-records ((record standard-graph-node-output-record) + &key object duplicate-key duplicate-test &allow-other-keys) + (or (and (null object) + (null (graph-node-object record))) + (funcall duplicate-test (funcall duplicate-key object) + (funcall duplicate-key (graph-node-object record))))) ;; For compatibility... (defun format-graph-from-root (root-object object-printer inferior-producer &rest keys &key (stream *standard-output*) - (key #'identity) - (orientation ':horizontal) + (orientation ':horizontal) (center-nodes nil) (cutoff-depth nil) + (merge-duplicates nil) + (graph-type (if merge-duplicates :digraph :tree)) + (key #'identity) (test #'eql) + (arc-drawer #'draw-linear-arc) + (arc-drawing-options nil) (generation-separation *default-generation-separation*) (within-generation-separation *default-within-generation-separation*) - (store-objects nil) (move-cursor t)) + (maximize-generations #+Allegro t #-Allegro nil) + (store-objects t) (move-cursor t)) (declare (dynamic-extent keys object-printer inferior-producer) - (ignore stream key orientation cutoff-depth store-objects - generation-separation within-generation-separation move-cursor)) - (with-keywords-removed (keys keys '(:key)) + (ignore stream orientation center-nodes cutoff-depth + arc-drawer arc-drawing-options graph-type move-cursor store-objects + generation-separation within-generation-separation maximize-generations)) + (with-keywords-removed (keys keys '(:merge-duplicates :key :test)) (apply #'format-graph-from-roots - (list root-object) object-printer inferior-producer keys))) + (list root-object) object-printer inferior-producer + (if merge-duplicates + (append `(:merge-duplicates ,merge-duplicates + :duplicate-key ,key :duplicate-test ,test) keys) + keys)))) (defun format-graph-from-roots (root-objects object-printer inferior-producer &key (stream *standard-output*) (orientation ':horizontal) (center-nodes nil) (cutoff-depth nil) (merge-duplicates nil) + (graph-type (if merge-duplicates :digraph :tree)) (duplicate-key #'identity key-supplied-p) (duplicate-test #'eql) (arc-drawer #'draw-linear-arc) (arc-drawing-options nil) - (graph-type (if merge-duplicates :digraph :tree)) (generation-separation *default-generation-separation*) (within-generation-separation *default-within-generation-separation*) (maximize-generations #+Allegro t #-Allegro nil) - (store-objects nil) (move-cursor t) ;; These `offpage' connector print functions ;; should receive more useful id in addition ;; to an identification number, such as the @@ -183,7 +206,8 @@ (offpage-connector-out-printer #'(lambda (s n) (format s ">~D" n))) (offpage-connector-in-printer - #'(lambda (s n) (format s "~D>" n)))) + #'(lambda (s n) (format s "~D>" n))) + (store-objects t) (move-cursor t)) (declare (dynamic-extent object-printer inferior-producer)) (check-type cutoff-depth (or null integer)) (check-type generation-separation real) @@ -220,7 +244,6 @@ root-objects object-printer inferior-producer :duplicate-key duplicate-key :duplicate-test duplicate-test - :store-objects store-objects :offpage-connector-out-printer offpage-connector-out-printer :offpage-connector-in-printer offpage-connector-in-printer) graph-record)))))) @@ -228,6 +251,14 @@ (progn (layout-graph-nodes graph-record stream arc-drawer arc-drawing-options) (layout-graph-edges graph-record stream arc-drawer arc-drawing-options)) + ;; Flush any references to the user's objects if he doesn't want + ;; them stored + (unless store-objects + (map-over-output-records + #'(lambda (r) + (when (graph-node-output-record-p r) + (setf (graph-node-object r) nil))) + graph-record)) ;; We're going to free the hash table as we exit, so make sure ;; there are no pointers to it (setf (slot-value graph-record 'hash-table) nil)) @@ -283,11 +314,10 @@ (defmethod generate-graph-nodes ((graph tree-graph-output-record) stream root-objects object-printer inferior-producer - &key duplicate-key duplicate-test store-objects + &key duplicate-key duplicate-test offpage-connector-out-printer offpage-connector-in-printer) - (declare (ignore duplicate-key duplicate-test - offpage-connector-out-printer offpage-connector-in-printer)) + (declare (ignore offpage-connector-out-printer offpage-connector-in-printer)) (let* ((properties (slot-value graph 'properties)) (cutoff-depth (getf properties :cutoff-depth))) (labels ((format-node (object &optional (depth 1)) @@ -304,7 +334,9 @@ (with-stream-cursor-position-saved (stream) (with-new-output-record (stream 'standard-graph-node-output-record nil - :object (and store-objects object)) + :object object + :duplicate-key duplicate-key + :duplicate-test duplicate-test) (funcall object-printer object stream))))) (setf (graph-node-children this-node) children) (dolist (child (graph-node-children this-node)) @@ -495,20 +527,22 @@ circular graphs without accounting for this case. (defclass graph-node-connector-output-record (standard-graph-node-output-record) ((id :accessor connector-id :initarg :connector-id))) + (defclass graph-node-connector-in-output-record (graph-node-connector-output-record) () (:default-initargs :object nil)) + (defclass graph-node-connector-out-output-record (graph-node-connector-output-record) - () + () (:default-initargs :object nil)) + (defmethod generate-graph-nodes ((graph directed-graph-output-record) stream root-objects object-printer inferior-producer - &key duplicate-key duplicate-test store-objects + &key duplicate-key duplicate-test offpage-connector-out-printer offpage-connector-in-printer) (declare (dynamic-extent object-printer inferior-producer)) - (declare (ignore duplicate-test)) (with-slots (n-generations) graph (let* ((hash-table (slot-value graph 'hash-table)) (graph-type (slot-value graph 'graph-type)) @@ -524,7 +558,9 @@ circular graphs without accounting for this case. (with-stream-cursor-position-saved (stream) (with-new-output-record (stream 'standard-graph-node-output-record nil - :object (and store-objects child-object)) + :object child-object + :duplicate-key duplicate-key + :duplicate-test duplicate-test) (funcall object-printer child-object stream))))) ;; This guarantees that the next phase will have at least one ;; node from which to start. Otherwise the entire graph gets @@ -898,4 +934,3 @@ circular graphs without accounting for this case. (map nil #'(lambda (root) (traverse nil nil root max-depth)) root-objects))) - diff --git a/clim/graphics-recording.lisp b/clim/graphics-recording.lisp index c4d535d9..746ddeca 100644 --- a/clim/graphics-recording.lisp +++ b/clim/graphics-recording.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CLIM-INTERNALS; Base: 10; Lowercase: Yes -*- -;; $fiHeader: graphics-recording.lisp,v 1.18 92/12/01 09:45:17 cer Exp $ +;; $fiHeader: graphics-recording.lisp,v 1.19 92/12/03 10:26:48 cer Exp $ (in-package :clim-internals) @@ -376,13 +376,11 @@ (define-graphics-recording draw-rectangles (ink line-style clipping-region) :bounding-rectangle (position-sequence-bounding-rectangle - position-seq line-style) + position-seq line-style) :recording-hook - (unless (rectilinear-transformation-p (medium-transformation stream)) - ;; Not too inefficient, since we're about to create an output record anyway - (silica::medium-draw-transformed-rectangles* - stream position-seq filled) - (return-from medium-draw-rectangles* nil)) + (unless (rectilinear-transformation-p (medium-transformation stream)) + (medium-draw-transformed-rectangles* stream position-seq filled) + (return-from medium-draw-rectangles* nil)) :refined-position-test ((x y) (let ((position-seq (slot-value record 'position-seq)) diff --git a/clim/incremental-redisplay.lisp b/clim/incremental-redisplay.lisp index 08f875fe..8ce9bb5c 100644 --- a/clim/incremental-redisplay.lisp +++ b/clim/incremental-redisplay.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CLIM-INTERNALS; Base: 10; Lowercase: Yes -*- -;; $fiHeader: incremental-redisplay.lisp,v 1.13 92/09/24 09:38:58 cer Exp $ +;; $fiHeader: incremental-redisplay.lisp,v 1.14 92/10/02 15:19:34 cer Exp $ (in-package :clim-internals) @@ -435,7 +435,11 @@ (old-x-offset (coordinate 0)) (old-y-offset (coordinate 0))) (declare (type coordinate x-offset y-offset old-x-offset old-y-offset)) (declare (values erases moves draws erase-overlapping move-overlapping)) - (let (erases moves draws erase-overlapping move-overlapping) + (let ((erases nil) + (moves nil) + (draws nil) + (erase-overlapping nil) + (move-overlapping nil)) (flet ((erase (record region) ;; REGION is the bounding rectangle (when region @@ -551,7 +555,7 @@ x-offset y-offset old-x-offset old-y-offset))))))) (declare (dynamic-extent #'augment-draws)) (augment-draws record x-offset y-offset old-x-offset old-y-offset)) - (values erases moves (nconc draws (nreverse new-draws)) + (values erases moves (nconc (nreverse new-draws) draws) erase-overlapping move-overlapping))) ;; This has nothing to do with output-recording. You can call this on any diff --git a/clim/input-protocol.lisp b/clim/input-protocol.lisp index dcaba5b6..73ef7702 100644 --- a/clim/input-protocol.lisp +++ b/clim/input-protocol.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CLIM-INTERNALS; Base: 10; Lowercase: Yes -*- -;; $fiHeader: input-protocol.lisp,v 1.35 92/12/03 10:26:58 cer Exp $ +;; $fiHeader: input-protocol.lisp,v 1.36 92/12/07 12:14:26 cer Exp $ (in-package :clim-internals) @@ -45,14 +45,14 @@ (if (and gesture pointer-button-press-handler (typep gesture 'pointer-button-press-event)) - ;; If we call a normal translator, we'll throw to a tag outside of - ;; this function that was established by WITH-INPUT-CONTEXT. If we - ;; call an action, it will throw to NO-TRANSLATION, and return here - ;; In that case, we want to loop through this again. - (funcall pointer-button-press-handler stream gesture) - ;; A "normal" gesture - (return-from stream-read-gesture - (values gesture flag))) + ;; If we call a normal translator, we'll throw to a tag outside of + ;; this function that was established by WITH-INPUT-CONTEXT. If we + ;; call an action, it will throw to NO-TRANSLATION, and return here. + ;; In that case, we want to loop through this again. + (funcall pointer-button-press-handler stream gesture) + ;; A "normal" gesture + (return-from stream-read-gesture + (values gesture flag))) ;; If we're looping when PEEK-P is T, we have to eat the gesture. ;;--- What if PEEK-P is T and another gesture has arrived ;;--- between the last call-next-method and this one? (cim) @@ -276,17 +276,14 @@ ;; This may throw or something, but otherwise we will return NIL ;; which will cause the gesture to be eaten (progn - #+allegro (when (and *click-outside-menu-handler* (output-recording-stream-p stream) - (not - (region-contains-position-p - (stream-output-history stream) - (pointer-event-x gesture) - (pointer-event-y gesture)))) + (not (region-contains-position-p + (stream-output-history stream) + (pointer-event-x gesture) (pointer-event-y gesture)))) (funcall *click-outside-menu-handler*)) (funcall *pointer-button-press-handler* stream gesture) - nil) + nil) ;; No button press handler, just return the gesture gesture)) @@ -379,7 +376,6 @@ (process-abort-or-accelerator-gesture stream gesture) gesture) - (defun process-abort-or-accelerator-gesture (stream gesture) (cond ((member gesture *accelerator-gestures* :test #'keyboard-event-matches-gesture-name-p) @@ -417,8 +413,6 @@ (force-output stream)))))) (error 'abort-gesture :event gesture)))) - - ;;; This function is just a convenience for the programmer, defaulting the ;;; keyword :STREAM argument to *standard-input*. The application can call ;;; stream-read-gesture directly. diff --git a/clim/interactive-protocol.lisp b/clim/interactive-protocol.lisp index 10088d4e..f86e78d4 100644 --- a/clim/interactive-protocol.lisp +++ b/clim/interactive-protocol.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CLIM-INTERNALS; Base: 10; Lowercase: Yes -*- -;; $fiHeader: interactive-protocol.lisp,v 1.21 92/11/06 19:00:01 cer Exp $ +;; $fiHeader: interactive-protocol.lisp,v 1.22 92/12/03 10:27:13 cer Exp $ (in-package :clim-internals) @@ -20,12 +20,6 @@ ;;; Fake methods to keep things like COMPLETE-INPUT from blowing up on ;;; non-input-editing streams like string streams. -(defmethod input-position ((stream t)) - (file-position stream)) - -(defmethod (setf input-position) (position (stream t)) - (file-position stream position)) - (defmethod stream-scan-pointer ((stream t)) 0) (defmethod (setf stream-scan-pointer) (position (stream t)) @@ -599,7 +593,8 @@ (do-input-buffer-pieces (input-buffer :start start :end end) (start end noise-string) :normal (incf length (- end start)) - :noise-string (incf length (length (noise-string-display-string noise-string)))) + :noise-string (when (typep noise-string 'accept-result) + (incf length (length (noise-string-display-string noise-string))))) (let ((new-top (make-string length)) (index 0)) (when top @@ -617,9 +612,10 @@ :normal (replace new-top input-buffer :start1 index :end1 (incf index (- end start)) :start2 start :end2 end) - :noise-string (let ((string (noise-string-display-string noise-string))) - (replace new-top string - :start1 index :end1 (incf index (length string))))) + :noise-string (when (typep noise-string 'accept-result) + (let ((string (noise-string-display-string noise-string))) + (replace new-top string + :start1 index :end1 (incf index (length string)))))) (cond (top (setf (history-top-element *kill-ring*) new-top) #+Genera (genera-kill-ring-save new-top t)) diff --git a/clim/menus.lisp b/clim/menus.lisp index 4d98ce4c..96f91047 100644 --- a/clim/menus.lisp +++ b/clim/menus.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CLIM-INTERNALS; Base: 10; Lowercase: Yes -*- -;; $fiHeader: menus.lisp,v 1.36 92/12/01 09:45:24 cer Exp $ +;; $fiHeader: menus.lisp,v 1.37 92/12/03 10:27:16 cer Exp $ (in-package :clim-internals) @@ -13,24 +13,25 @@ (defparameter *default-menu-label-text-style* (make-text-style :fix :italic :normal)) (define-application-frame menu-frame () - (menu - label - (scroll-bars :initarg :scroll-bars - :initform t - :reader menu-frame-scroll-bars)) + (menu + label + (scroll-bars :initarg :scroll-bars + :initform t + :reader menu-frame-scroll-bars)) (:pane (with-slots (menu label scroll-bars) *application-frame* (outlining () - (vertically () - (setq label (make-pane 'label-pane - :label "" - :text-style *default-menu-label-text-style*)) - (if scroll-bars - (scrolling (:scroll-bars scroll-bars ) - (setq menu (make-pane 'clim-stream-pane - :initial-cursor-visibility nil))) - (setq menu (make-pane 'clim-stream-pane - :initial-cursor-visibility nil))))))) + (vertically () + (setq label (make-pane 'label-pane + :label "" + :text-style *default-menu-label-text-style*)) + (if scroll-bars + (scrolling (:scroll-bars scroll-bars) + (setq menu (make-pane 'clim-stream-pane + :initial-cursor-visibility nil))) + (setq menu (make-pane 'clim-stream-pane + :initial-cursor-visibility nil))))))) + (:menu-bar nil)) (defmethod frame-calling-frame ((frame menu-frame)) @@ -49,13 +50,13 @@ (values (slot-value frame 'menu) frame))) (defresource menu (associated-window root &key label (scroll-bars t)) - :constructor (let* ((framem (if (null root) (find-frame-manager) (frame-manager root)))) - (frame-manager-get-menu framem :scroll-bars scroll-bars)) - :deinitializer (window-clear menu) - :initializer (initialize-menu (port menu) menu :label label) - ;; Horrible kludge in the case where no associated window is passed in. + :constructor + (let* ((framem (if (null root) (find-frame-manager) (frame-manager root)))) + (frame-manager-get-menu framem :scroll-bars scroll-bars)) :matcher (and (eq scroll-bars (menu-frame-scroll-bars (pane-frame menu))) - (eq (frame-manager menu) (frame-manager root)))) + (eq (frame-manager menu) (frame-manager root))) + :deinitializer (window-clear menu) + :initializer (initialize-menu (port menu) menu :label label)) (defmethod initialize-menu ((port basic-port) menu &key label) ;;--- Should this flush the menu's event queue? @@ -226,7 +227,7 @@ (defgeneric menu-choose (items &rest keys &key associated-window text-style default-item - label printer presentation-type + label scroll-bars printer presentation-type cache unique-id id-test cache-value cache-test max-width max-height n-rows n-columns x-spacing y-spacing @@ -237,7 +238,7 @@ (defmethod menu-choose ((items t) &rest keys &key (associated-window (frame-top-level-sheet *application-frame*)) text-style default-item - label printer presentation-type + label (scroll-bars t) printer presentation-type (cache nil) (unique-id items) (id-test #'equal) (cache-value items) (cache-test #'equal) max-width max-height n-rows n-columns @@ -247,7 +248,7 @@ (declare (values value chosen-item gesture)) (declare (ignore associated-window text-style default-item - label printer presentation-type + label scroll-bars printer presentation-type cache unique-id id-test cache-value cache-test max-width max-height n-rows n-columns x-spacing y-spacing row-wise cell-align-x cell-align-y @@ -263,7 +264,7 @@ &key (associated-window (frame-top-level-sheet *application-frame*)) text-style default-item - label printer presentation-type + label (scroll-bars t) printer presentation-type (cache nil) (unique-id items) (id-test #'equal) (cache-value items) (cache-test #'equal) max-width max-height n-rows n-columns @@ -281,7 +282,7 @@ ;; Lucid production compiler tries to use an undefined internal ;; variable if this LET isn't done. #+Lucid (items items)) - (with-menu (menu associated-window :label label) + (with-menu (menu associated-window :label label :scroll-bars scroll-bars) (reset-frame (pane-frame menu) :title label) (with-text-style (menu text-style) (with-end-of-line-action (menu :allow) @@ -317,27 +318,27 @@ (defmacro with-mouse-grabbed-in-window ((window &rest options) &body body) - (let ((m (gensym))) + (let ((w (gensym))) `(flet ((with-mouse-grabbed-in-window-body () ,@body)) (declare (dynamic-extent #'with-mouse-grabbed-in-window-body)) - (let ((,m ,window)) + (let ((,w ,window)) (invoke-with-mouse-grabbed-in-window - (frame-manager ,m) - ,m #'with-mouse-grabbed-in-window-body ,@options))))) + (frame-manager ,w) ,w #'with-mouse-grabbed-in-window-body ,@options))))) -(defmethod invoke-with-mouse-grabbed-in-window ((framem standard-frame-manager) (window t) continuation &key) +(defmethod invoke-with-mouse-grabbed-in-window + ((framem standard-frame-manager) (window t) continuation &key) (funcall continuation)) (defmacro with-menu-as-popup ((menu) &body body) - (let ((m (gensym))) + (let ((w (gensym))) `(flet ((with-menu-as-popup-body () ,@body)) (declare (dynamic-extent #'with-menu-as-popup-body)) - (let ((,m ,menu)) - (invoke-with-menu-as-popup - (frame-manager ,m) - ,m #'with-menu-as-popup-body))))) + (let ((,w ,menu)) + (invoke-with-menu-as-popup + (frame-manager ,w) ,w #'with-menu-as-popup-body))))) -(defmethod invoke-with-menu-as-popup ((framem standard-frame-manager) (window t) continuation) +(defmethod invoke-with-menu-as-popup + ((framem standard-frame-manager) (window t) continuation) (funcall continuation)) ;; The drawer gets called with (stream presentation-type &rest drawer-args). @@ -359,111 +360,95 @@ (abort-menu-handler () (return-from menu-choose-from-drawer nil))) #+Allegro (declare (dynamic-extent #'abort-menu-handler)) - ;;--- This should be done in a more modular way - ;;--- If you change this, change RUN-FRAME-TOP-LEVEL :AROUND - (let (#+Allegro (*click-outside-menu-handler* #'abort-menu-handler) - (*original-stream* nil) - (*input-wait-test* nil) - (*input-wait-handler* nil) - (*pointer-button-press-handler* nil) - (*numeric-argument* nil) - (*delimiter-gestures* nil) - (*activation-gestures* nil) - (*accelerator-gestures* nil) - (*accelerator-numeric-argument* nil) - (*input-context* nil) - (*accept-help* nil) - (*assume-all-commands-enabled* nil) - (*sizing-application-frame* nil) - (*command-parser* 'command-line-command-parser) - (*command-unparser* 'command-line-command-unparser) - (*partial-command-parser* - 'command-line-read-remaining-arguments-for-partial-command)) - ;; We could make the drawer a lexical closure, but that would then - ;; partially defeat the purpose of the uid and cache-value because we'd cons the closure - ;; whether or not we ran it. - (let* ((cached-output-history-info - (when cache - (if (typep cache 'static-menu) - cache-value - (get-from-output-history-cache unique-id id-test)))) - (cached-menu-contents - (when cached-output-history-info - (if (typep cache 'static-menu) - cached-output-history-info - (let* ((contents (pop cached-output-history-info)) - (value cached-output-history-info)) - (when (funcall cache-test value cache-value) - contents)))))) - (cond (cached-menu-contents - (stream-add-output-record menu cached-menu-contents)) - (t - ;; "Draw" into deexposed menu for sizing only - (with-output-recording-options (menu :draw nil :record t) - (let ((menu-contents - (with-new-output-record (menu) - (setq default-presentation - (funcall drawer menu presentation-type))))) - (when cache - (setf (get-from-output-history-cache unique-id id-test) - (cons menu-contents cache-value)))))))) - (size-frame-from-contents menu) - (unwind-protect - (with-menu-as-popup (menu) - (position-sheet-near-pointer - (frame-top-level-sheet (pane-frame menu)) x-position y-position) - (setf (window-visibility menu) t) - ;;--- If we have windows with backing store then we dont get - ;;--- exposure event and so nothing appears - #+Allegro (replay (stream-output-history menu) menu) - (stream-set-input-focus menu) - (when default-presentation - (with-bounding-rectangle* (left top right bottom) default-presentation - (stream-set-pointer-position - menu (floor (+ left right) 2) (floor (+ top bottom) 2)))) - ;; Pointer documentation usually adds no information, and slows things - ;; down in a big way, which is why we defaultly disable it. - (let ((*pointer-documentation-output* pointer-documentation)) - (with-input-context (presentation-type :override T) - (object type gesture) - (labels ((input-wait-test (menu) - ;; Wake up if the menu becomes buried, or if highlighting - ;; is needed. - ;;--- This screws up in Allegro because querying the server - ;;--- in the wait function screws event handling. - (or #-Allegro - (and *abort-menus-when-buried* - (not (window-visibility menu))) - (pointer-motion-pending menu))) - (input-wait-handler (menu) - ;; Abort if the menu becomes buried - #-Allegro - (when (and *abort-menus-when-buried* - (not (window-visibility menu))) - (return-from menu-choose-from-drawer nil)) - ;; Take care of highlighting - (highlight-presentation-of-context-type menu))) - (declare (dynamic-extent #'input-wait-test #'input-wait-handler)) - ;; Await exposure before going any further, since X can get - ;; to the call to READ-GESTURE before the menu is visible. - (when *abort-menus-when-buried* - #-Silica (wait-for-window-exposed menu)) - (with-mouse-grabbed-in-window (menu) - (loop - (read-gesture :stream menu - :input-wait-test #'input-wait-test - :input-wait-handler #'input-wait-handler) - (beep menu)))) - (t (values object gesture))))) - (unless leave-menu-visible - (setf (window-visibility menu) nil)) - (force-output menu))))) + (with-clim-state-reset (:all t + :additional-bindings + #+Allegro ((*click-outside-menu-handler* #'abort-menu-handler)) + #-Allegro nil) + ;; We could make the drawer a lexical closure, but that would then + ;; partially defeat the purpose of the uid and cache-value because we'd cons the closure + ;; whether or not we ran it. + (let* ((cached-output-history-info + (when cache + (if (typep cache 'static-menu) + cache-value + (get-from-output-history-cache unique-id id-test)))) + (cached-menu-contents + (when cached-output-history-info + (if (typep cache 'static-menu) + cached-output-history-info + (let* ((contents (pop cached-output-history-info)) + (value cached-output-history-info)) + (when (funcall cache-test value cache-value) + contents)))))) + (cond (cached-menu-contents + (stream-add-output-record menu cached-menu-contents)) + (t + ;; "Draw" into deexposed menu for sizing only + (with-output-recording-options (menu :draw nil :record t) + (let ((menu-contents + (with-new-output-record (menu) + (setq default-presentation + (funcall drawer menu presentation-type))))) + (when cache + (setf (get-from-output-history-cache unique-id id-test) + (cons menu-contents cache-value)))))))) + (size-frame-from-contents menu) + (unwind-protect + (with-menu-as-popup (menu) + (position-sheet-near-pointer + (frame-top-level-sheet (pane-frame menu)) x-position y-position) + (setf (window-visibility menu) t) + ;;--- If we have windows with backing store then we dont get + ;;--- exposure event and so nothing appears + #+Allegro (replay (stream-output-history menu) menu) + (stream-set-input-focus menu) + (when default-presentation + (with-bounding-rectangle* (left top right bottom) default-presentation + (stream-set-pointer-position + menu (floor (+ left right) 2) (floor (+ top bottom) 2)))) + ;; Pointer documentation usually adds no information, and slows things + ;; down in a big way, which is why we defaultly disable it. + (let ((*pointer-documentation-output* pointer-documentation)) + (with-input-context (presentation-type :override T) + (object type gesture) + (labels ((input-wait-test (menu) + ;; Wake up if the menu becomes buried, or if highlighting + ;; is needed. + ;;--- This screws up in Allegro because querying the server + ;;--- in the wait function screws event handling. + (or #-Allegro + (and *abort-menus-when-buried* + (not (window-visibility menu))) + (pointer-motion-pending menu))) + (input-wait-handler (menu) + ;; Abort if the menu becomes buried + #-Allegro + (when (and *abort-menus-when-buried* + (not (window-visibility menu))) + (return-from menu-choose-from-drawer nil)) + ;; Take care of highlighting + (highlight-presentation-of-context-type menu))) + (declare (dynamic-extent #'input-wait-test #'input-wait-handler)) + ;; Await exposure before going any further, since X can get + ;; to the call to READ-GESTURE before the menu is visible. + (when *abort-menus-when-buried* + #-Silica (wait-for-window-exposed menu)) + (with-mouse-grabbed-in-window (menu) + (loop + (read-gesture :stream menu + :input-wait-test #'input-wait-test + :input-wait-handler #'input-wait-handler) + (beep menu)))) + (t (values object gesture))))) + (unless leave-menu-visible + (setf (window-visibility menu) nil)) + (force-output menu))))) (defun hierarchical-menu-choose (items &key (associated-window (frame-top-level-sheet *application-frame*)) text-style default-item - label printer presentation-type + label (scroll-bars t) printer presentation-type x-position y-position (cache nil) (unique-id items) (id-test #'equal) @@ -479,7 +464,7 @@ (let ((item-printer (cond (presentation-type #'present-item) (printer printer) (t #'print-menu-item)))) - (with-menu (menu associated-window :label label) + (with-menu (menu associated-window :label label :scroll-bars scroll-bars) (reset-frame (pane-frame menu) :title label) (with-text-style (menu text-style) (with-end-of-line-action (menu :allow) @@ -585,7 +570,8 @@ (defmethod menu-choose ((static-menu static-menu) &rest keys &key (associated-window (frame-top-level-sheet *application-frame*)) - label text-style pointer-documentation menu-type + label text-style (scroll-bars t) + pointer-documentation menu-type &allow-other-keys) (declare (values value chosen-item gesture)) (declare (dynamic-extent keys)) @@ -607,7 +593,7 @@ (setq menu-contents (slot-value new-menu 'menu-contents) default-presentation (slot-value new-menu 'default-presentation) root-window this-root))))) - (with-menu (menu associated-window :label label) + (with-menu (menu associated-window :label label :scroll-bars scroll-bars) (with-text-style (menu text-style) (multiple-value-bind (item gesture) (menu-choose-from-drawer diff --git a/clim/output-protocol.lisp b/clim/output-protocol.lisp index 73b37173..4bc08e90 100644 --- a/clim/output-protocol.lisp +++ b/clim/output-protocol.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CLIM-INTERNALS; Base: 10; Lowercase: Yes -*- -;; $fiHeader: output-protocol.lisp,v 1.29 92/12/01 09:45:27 cer Exp $ +;; $fiHeader: output-protocol.lisp,v 1.30 92/12/03 10:27:20 cer Exp $ (in-package :clim-internals) @@ -180,7 +180,6 @@ (values cursor-x cursor-y))) (defmethod stream-set-cursor-position ((stream output-protocol-mixin) x y) - (with-slots (cursor-x cursor-y current-line-height baseline) stream (when x (setf cursor-x (coordinate x))) @@ -741,6 +740,49 @@ (stream-string-output-size medium string :start start :end end :text-style text-style) (values last-x largest-x))) + +;; Damnable string streams! +(defmethod text-size ((stream t) string &key text-style (start 0) end) + (declare (values largest-x total-height last-x last-y baseline)) + (declare (ignore text-style)) + (let ((char-width 8) + (line-height 12) + (baseline 10)) + (when (characterp string) + (return-from text-size + (if (or (eql string #\Newline) + (eql string #\Return)) + (values 0 line-height 0 0 0) + (values char-width line-height char-width 0 baseline)))) + (let ((largest-x 0) + (total-height 0) + (last-x 0) + (last-y 0)) + (dovector (char string :start start :end end) + (cond ((or (eql char #\Newline) + (eql char #\Return)) + (incf total-height line-height) + (incf last-y line-height) + (setq last-x 0)) + (t + (incf last-x char-width) + (maxf largest-x last-x) + (maxf total-height line-height)))) + (values largest-x total-height last-x last-y baseline)))) + +(defmethod stream-string-output-size ((stream t) string &key (start 0) end text-style) + (multiple-value-bind (largest-x total-height last-x last-y baseline) + (text-size stream string :start start :end end :text-style text-style) + (values last-x largest-x last-y total-height baseline))) + +(defmethod stream-string-width ((stream t) string &key (start 0) end text-style) + (multiple-value-bind (last-x largest-x) + (stream-string-output-size stream string :start start :end end :text-style text-style) + (values last-x largest-x))) + +(defmethod stream-character-width ((stream t) character &optional text-style) + (values (text-size stream character :text-style text-style))) + ;;; A few utilities for string writing. diff --git a/clim/recording-protocol.lisp b/clim/recording-protocol.lisp index cc76883b..0fb20b75 100644 --- a/clim/recording-protocol.lisp +++ b/clim/recording-protocol.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CLIM-INTERNALS; Base: 10; Lowercase: Yes -*- -;; $fiHeader: recording-protocol.lisp,v 1.27 92/11/19 14:18:22 cer Exp $ +;; $fiHeader: recording-protocol.lisp,v 1.28 92/12/03 10:27:46 cer Exp $ (in-package :clim-internals) @@ -1222,7 +1222,11 @@ (with-sheet-medium (medium stream) (with-bounding-rectangle* (left top right bottom) clear (medium-clear-area medium left top right bottom))))) - (stream-replay stream region)) + (stream-replay stream region) + (let ((presentation (highlighted-presentation stream nil))) + (when presentation + (highlight-presentation + presentation (presentation-type presentation) stream :highlight)))) ;;; Genera compatibility diff --git a/clim/standard-types.lisp b/clim/standard-types.lisp index b2fe3375..d4a1a5cf 100644 --- a/clim/standard-types.lisp +++ b/clim/standard-types.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CLIM-INTERNALS; Base: 10; Lowercase: Yes -*- -;; $fiHeader: standard-types.lisp,v 1.23 92/12/07 12:14:34 cer Exp $ +;; $fiHeader: standard-types.lisp,v 1.24 92/12/14 15:02:19 cer Exp $ (in-package :clim-internals) @@ -563,10 +563,11 @@ (define-presentation-method accept ((type completion) stream (view textual-view) &key) (flet ((possibility-printer (possibility type stream) - (let ((object (find (second possibility) sequence - :key value-key :test test))) - (with-output-as-presentation (stream object type) - (funcall printer (funcall name-key object) stream))))) + (with-output-as-presentation (stream (funcall value-key (second possibility)) type) + (funcall printer + (funcall name-key (find (second possibility) sequence + :key value-key :test test)) + stream)))) (declare (dynamic-extent #'possibility-printer)) (values (completing-from-suggestions @@ -744,10 +745,11 @@ " " (make-array 2 :initial-contents (list separator #\space))))) (flet ((possibility-printer (possibility type stream) - (let ((object (find (second possibility) sequence - :key value-key :test test))) - (with-output-as-presentation (stream (list object) type) - (funcall printer (funcall name-key object) stream))))) + (with-output-as-presentation (stream (list (funcall value-key (second possibility))) type) + (funcall printer + (funcall name-key (find (second possibility) sequence + :key value-key :test test)) + stream)))) (declare (dynamic-extent #'possibility-printer)) (loop (let ((element @@ -1516,8 +1518,13 @@ (cond ((and (activation-gesture-p char) (not desired-delimiter)) (unread-char char stream) (return)) - ((and (delimiter-gesture-p char) (not desired-delimiter)) + ((and (delimiter-gesture-p char) (not desired-delimiter) + auto-activate) (beep stream)) + ((and (delimiter-gesture-p char) (not desired-delimiter) + (not auto-activate)) + (unread-char char stream) + (return)) ((not (or (ordinary-char-p char) (diacritic-char-p char))) (beep stream)) diff --git a/clim/table-formatting.lisp b/clim/table-formatting.lisp index 57c73f04..b2fd3acd 100644 --- a/clim/table-formatting.lisp +++ b/clim/table-formatting.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CLIM-INTERNALS; Base: 10; Lowercase: Yes -*- -;; $fiHeader: table-formatting.lisp,v 1.16 92/11/19 14:18:33 cer Exp $ +;; $fiHeader: table-formatting.lisp,v 1.17 92/12/03 10:27:56 cer Exp $ (in-package :clim-internals) @@ -488,67 +488,88 @@ (t (error "The ~:[~;~S ~]spacing specification, ~S, to ~S was invalid" clause clause spacing form)))) -;; FORMATTING-TABLE macro in FORMATTED-OUTPUT-DEFS +;; FORMATTING-TABLE macro is in FORMATTED-OUTPUT-DEFS (defun invoke-formatting-table (stream continuation + &rest initargs &key x-spacing y-spacing (record-type 'standard-table-output-record) multiple-columns multiple-columns-x-spacing equalize-column-widths - (move-cursor t)) - (let ((table - (with-output-recording-options (stream :draw nil :record t) - (with-end-of-line-action (stream :allow) - (with-end-of-page-action (stream :allow) - (with-new-output-record (stream record-type nil - :x-spacing - (or (process-spacing-arg stream x-spacing - 'formatting-table - ':x-spacing) - (stream-string-width stream " ")) - :y-spacing - (or (process-spacing-arg stream y-spacing - 'formatting-table - ':y-spacing) - (stream-vertical-spacing stream)) - :equalize-column-widths equalize-column-widths) - (funcall continuation stream))))))) - (adjust-table-cells table stream) - (when multiple-columns - (adjust-multiple-columns table stream - (and (numberp multiple-columns) multiple-columns) - (and multiple-columns multiple-columns-x-spacing))) - (replay table stream) - (when move-cursor - (move-cursor-beyond-output-record stream table)) - table)) - -;; FORMATTING-CELL macro in FORMATTED-OUTPUT-DEFS + (move-cursor t) + &allow-other-keys) + (declare (dynamic-extent initargs)) + (with-keywords-removed (initargs initargs '(:record-type :x-spacing :y-spacing + :multiple-columns :multiple-columns-x-spacing + :equalize-column-widths :move-cursor)) + (let ((table + (with-output-recording-options (stream :draw nil :record t) + (with-end-of-line-action (stream :allow) + (with-end-of-page-action (stream :allow) + (flet ((invoke-formatting-table-1 (record) + (declare (ignore record)) + (funcall continuation stream))) + (declare (dynamic-extent #'invoke-formatting-table-1)) + (apply #'invoke-with-new-output-record + stream #'invoke-formatting-table-1 record-type nil + :x-spacing + (or (process-spacing-arg stream x-spacing + 'formatting-table ':x-spacing) + (stream-string-width stream " ")) + :y-spacing + (or (process-spacing-arg stream y-spacing + 'formatting-table ':y-spacing) + (stream-vertical-spacing stream)) + :equalize-column-widths equalize-column-widths + initargs))))))) + (adjust-table-cells table stream) + (when multiple-columns + (adjust-multiple-columns table stream + (and (numberp multiple-columns) multiple-columns) + (and multiple-columns multiple-columns-x-spacing))) + (replay table stream) + (when move-cursor + (move-cursor-beyond-output-record stream table)) + table))) + +;; FORMATTING-CELL macro is in FORMATTED-OUTPUT-DEFS (defmethod invoke-formatting-cell ((stream output-protocol-mixin) continuation + &rest initargs &key (align-x ':left) (align-y ':top) min-width min-height - (record-type 'standard-cell-output-record)) - (setq min-width (or (process-spacing-arg - stream min-width 'formatting-cell :min-width) - (coordinate 0)) - min-height (or (process-spacing-arg - stream min-height 'formatting-cell :min-height) - (coordinate 0))) - ;; Jump through a hoop to get a constant record-type symbol into the - ;; WITH-NEW-OUTPUT-RECORD macro so we invoke a fast constructor instead - ;; of a slow MAKE-INSTANCE. If this body was just expanded inline in - ;; FORMATTING-CELL, it would just work to slip the IF and simply call - ;; INVOKE-WITH-NEW-OUTPUT-RECORD... Too bad. - (let ((stream (encapsulated-stream stream))) - (with-stream-cursor-position-saved (stream) - (if (eq record-type 'standard-cell-output-record) - (with-new-output-record (stream 'standard-cell-output-record nil - :align-x align-x :align-y align-y - :min-width min-width :min-height min-height) - (funcall continuation stream)) - (with-new-output-record (stream record-type nil - :align-x align-x :align-y align-y - :min-width min-width :min-height min-height) - (funcall continuation stream)))))) + (record-type 'standard-cell-output-record) + &allow-other-keys) + (declare (dynamic-extent initargs)) + (with-keywords-removed (initargs initargs '(:record-type :align-x :align-y + :min-width :min-height)) + (setq min-width (or (process-spacing-arg + stream min-width 'formatting-cell :min-width) + (coordinate 0)) + min-height (or (process-spacing-arg + stream min-height 'formatting-cell :min-height) + (coordinate 0))) + ;; Jump through a hoop to get a constant record-type symbol into the + ;; WITH-NEW-OUTPUT-RECORD macro so we invoke a fast constructor instead + ;; of a slow MAKE-INSTANCE. If this body was just expanded inline in + ;; FORMATTING-CELL, it would just work to slip the IF and simply call + ;; INVOKE-WITH-NEW-OUTPUT-RECORD... Too bad. + (let ((stream (encapsulated-stream stream))) + (with-stream-cursor-position-saved (stream) + (flet ((invoke-formatting-cell-1 (record) + (declare (ignore record)) + (funcall continuation stream))) + (declare (dynamic-extent #'invoke-formatting-cell-1)) + (if (eq record-type 'standard-cell-output-record) + (apply #'invoke-with-new-output-record + stream #'invoke-formatting-cell-1 + 'standard-cell-output-record 'standard-cell-output-record-constructor + :align-x align-x :align-y align-y + :min-width min-width :min-height min-height + initargs) + (apply #'invoke-with-new-output-record + stream #'invoke-formatting-cell-1 record-type nil + :align-x align-x :align-y align-y + :min-width min-width :min-height min-height + initargs))))))) (defmethod invoke-formatting-cell :around ((stream output-recording-mixin) continuation &rest options) @@ -799,39 +820,48 @@ (map-over-item-list-cells menu #'adjust-cells))))))))) (tree-recompute-extent menu)) -;; FORMATTING-ITEM-LIST macro in FORMATTED-OUTPUT-DEFS +;; FORMATTING-ITEM-LIST macro is in FORMATTED-OUTPUT-DEFS (defun invoke-formatting-item-list (stream continuation + &rest initargs &key x-spacing y-spacing initial-spacing n-columns n-rows max-width max-height stream-width stream-height (row-wise t) (move-cursor t) - (record-type 'standard-item-list-output-record)) - (let ((menu - (with-output-recording-options (stream :draw nil :record t) - (with-end-of-line-action (stream :allow) - (with-end-of-page-action (stream :allow) - (with-new-output-record (stream record-type nil - :n-columns n-columns :n-rows n-rows - :max-width max-width :max-height max-height - :stream-width stream-width - :stream-height stream-height - :x-spacing - (process-spacing-arg stream x-spacing - 'formatting-item-list - ':x-spacing) - :y-spacing - (or (process-spacing-arg stream y-spacing - 'formatting-item-list - ':y-spacing) - (stream-vertical-spacing stream)) - :initial-spacing initial-spacing - :row-wise row-wise) - (funcall continuation stream))))))) - (adjust-table-cells menu stream) - (replay menu stream) - (when move-cursor - (move-cursor-beyond-output-record stream menu)) - menu)) + (record-type 'standard-item-list-output-record) + &allow-other-keys) + (declare (dynamic-extent initargs)) + (with-keywords-removed (initargs initargs '(:x-spacing :y-spacing :initial-spacing + :n-columns :n-rows :max-width :max-height + :stream-width :stream-height + :row-wise :move-cursor :record-type)) + (let ((menu + (with-output-recording-options (stream :draw nil :record t) + (with-end-of-line-action (stream :allow) + (with-end-of-page-action (stream :allow) + (flet ((invoke-formatting-item-list-1 (record) + (declare (ignore record)) + (funcall continuation stream))) + (declare (dynamic-extent #'invoke-formatting-item-list-1)) + (apply #'invoke-with-new-output-record + stream #'invoke-formatting-item-list-1 record-type nil + :n-columns n-columns :n-rows n-rows + :max-width max-width :max-height max-height + :stream-width stream-width :stream-height stream-height + :x-spacing + (process-spacing-arg stream x-spacing + 'formatting-item-list ':x-spacing) + :y-spacing + (or (process-spacing-arg stream y-spacing + 'formatting-item-list ':y-spacing) + (stream-vertical-spacing stream)) + :initial-spacing initial-spacing + :row-wise row-wise + initargs))))))) + (adjust-table-cells menu stream) + (replay menu stream) + (when move-cursor + (move-cursor-beyond-output-record stream menu)) + menu))) (defun format-items (items &key (stream *standard-output*) printer presentation-type x-spacing y-spacing initial-spacing (row-wise t) diff --git a/clx/clx-pixmaps.lisp b/clx/clx-pixmaps.lisp index 7cad3ee8..9540111f 100644 --- a/clx/clx-pixmaps.lisp +++ b/clx/clx-pixmaps.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CLX-CLIM; Base: 10; Lowercase: Yes -*- -;; $fiHeader: clx-pixmaps.lisp,v 1.5 92/08/18 17:24:26 cer Exp $ +;; $fiHeader: clx-pixmaps.lisp,v 1.6 92/09/08 15:17:15 cer Exp $ (in-package :clx-clim) @@ -8,7 +8,8 @@ (defclass clx-pixmap (pixmap) - ((pixmap :initarg :pixmap))) + ((pixmap :initarg :pixmap) + (for-medium :initarg :for-medium))) (defmethod port-allocate-pixmap ((port clx-port) medium width height) (fix-coordinates width height) @@ -16,7 +17,8 @@ :width width :height height :depth (xlib:drawable-depth (medium-drawable medium))))) (make-instance 'clx-pixmap - :pixmap pixmap))) + :pixmap pixmap + :for-medium medium))) (defmethod port-deallocate-pixmap ((port clx-port) (pixmap clx-pixmap)) (with-slots (pixmap) pixmap @@ -32,6 +34,9 @@ (defmethod pixmap-depth ((pixmap clx-pixmap)) (xlib:drawable-depth (slot-value pixmap 'pixmap))) +(defmethod port ((pixmap clx-pixmap)) + (port (slot-value pixmap 'for-medium))) + (defclass clx-pixmap-medium (clx-medium basic-pixmap-medium) ()) diff --git a/demo/bitmap-editor.lisp b/demo/bitmap-editor.lisp index 54a2d99b..0b7f5bd6 100644 --- a/demo/bitmap-editor.lisp +++ b/demo/bitmap-editor.lisp @@ -21,7 +21,7 @@ ;; 52.227-19 or DOD FAR Supplement 252.227-7013 (c) (1) (ii), as ;; applicable. ;; -;; $fiHeader: bitmap-editor.lisp,v 1.10 92/12/01 09:46:01 cer Exp $ +;; $fiHeader: bitmap-editor.lisp,v 1.11 92/12/03 10:28:25 cer Exp $ (in-package :clim-demo) @@ -31,8 +31,8 @@ (columns :initarg :columns :initform 8) (array :initarg :array :initform nil) (current-color :initarg :current-color :initform 1) - (colors :initarg :colors :initform - (list +white+ +black+))) + (colors :initarg :colors + :initform (list +white+ +black+))) (:panes (palette :accept-values :width :compute :height :compute diff --git a/demo/demo-driver.lisp b/demo/demo-driver.lisp index 86249096..7a92ec83 100644 --- a/demo/demo-driver.lisp +++ b/demo/demo-driver.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CLIM-DEMO; Base: 10; Lowercase: Yes -*- -;; $fiHeader: demo-driver.lisp,v 1.20 92/12/03 10:28:38 cer Exp $ +;; $fiHeader: demo-driver.lisp,v 1.21 92/12/14 15:02:36 cer Exp $ (in-package :clim-demo) @@ -64,7 +64,7 @@ *color-stream-p*)) #+Genera -(cp:define-command (com-demonstrate-clim +(cp:define-command (si:com-demonstrate-clim :name "Demonstrate CLIM" :command-table "Demonstration" :provide-output-destination-keyword nil) diff --git a/demo/demo-prefill.lisp b/demo/demo-prefill.lisp index 16f88eb5..f814760b 100644 --- a/demo/demo-prefill.lisp +++ b/demo/demo-prefill.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CLIM-INTERNALS; Base: 10; Lowercase: Yes -*- -;; $fiHeader: demo-prefill.lisp,v 1.7 92/09/24 09:40:05 cer Exp $ +;; $fiHeader: demo-prefill.lisp,v 1.8 92/10/07 14:43:29 cer Exp $ (in-package :clim-internals) @@ -152,7 +152,7 @@ (clim-demo::cad-demo t)) (graft (clim-demo::cad-demo)) - (highlight-output-record-1 + (highlight-output-record (clim-demo::input t t) (clim-demo::or-gate t t) (clim-demo::and-gate t t) @@ -703,7 +703,6 @@ (initialize-instance) (invoke-accept-values-command-button) (present-method - ((presentation-type clim-demo::demo-menu-item) t t t t t pointer-documentation-view) ((presentation-type clim-demo::y-label) t t t t t textual-menu-view) ((presentation-type clim-demo::address-number) t t t t t textual-view) ((presentation-type clim-demo::printer) t t t t t textual-dialog-view) diff --git a/demo/graphics-demos.lisp b/demo/graphics-demos.lisp index e31debf5..f0765d85 100644 --- a/demo/graphics-demos.lisp +++ b/demo/graphics-demos.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CLIM-DEMO; Base: 10; Lowercase: Yes -*- -;; $fiHeader: graphics-demos.lisp,v 1.11 92/10/07 14:43:30 cer Exp $ +;; $fiHeader: graphics-demos.lisp,v 1.12 92/12/01 09:46:04 cer Exp $ (in-package :clim-demo) @@ -24,8 +24,10 @@ (frame-exit *application-frame*)) (defmacro define-gdemo (name explanation (window) &body body) - `(define-graphics-demo-command (,(intern (format nil "~A-~A-~A" 'com name 'graphics-demo)) - :menu ,(nstring-capitalize (substitute #\space #\- (string name)))) () + `(define-graphics-demo-command + (,(intern (format nil "~A-~A-~A" 'com name 'graphics-demo)) + :menu ,(nstring-capitalize (substitute #\space #\- (string name)))) + () (explain ,explanation) (let ((,window (get-frame-pane *application-frame* 'demo))) (window-clear ,window) diff --git a/demo/ico.lisp b/demo/ico.lisp index c7760dc7..825bcb78 100644 --- a/demo/ico.lisp +++ b/demo/ico.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CLIM-DEMO; Base: 10; Lowercase: Yes -*- -;; $fiHeader: ico.lisp,v 1.15 92/11/20 08:45:22 cer Exp $ +;; $fiHeader: ico.lisp,v 1.16 92/12/03 10:28:41 cer Exp $ ;;; ;;; Copyright (c) 1989, 1990 by Xerox Corporation. All rights reserved. @@ -263,7 +263,7 @@ (layered-color-color (svref inks1 buffer)) *line-color* (layered-color-color (svref inks2 buffer)) *face1-color* (layered-color-color (svref inks3 buffer)) *face2-color*))) - (silica:medium-force-output medium)) + (medium-force-output medium)) #+xlib-ignore (:clx diff --git a/demo/listener.lisp b/demo/listener.lisp index 69d2dd3f..cbc6ffc6 100644 --- a/demo/listener.lisp +++ b/demo/listener.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CLIM-DEMO; Base: 10; Lowercase: Yes -*- -;; $fiHeader: listener.lisp,v 1.26 92/12/03 10:28:45 cer Exp $ +;; $fiHeader: listener.lisp,v 1.27 92/12/14 15:02:40 cer Exp $ (in-package :clim-demo) @@ -557,6 +557,9 @@ ) ;#-Minima +(define-lisp-listener-command (com-demonstrate-clim :name "Demonstrate CLIM") () + (start-demo :port (port *application-frame*))) + (define-lisp-listener-command (com-quit-listener :name "Quit") () (frame-exit *application-frame*)) diff --git a/genera/genera-frames.lisp b/genera/genera-frames.lisp index 17aee3b5..ebd7a296 100644 --- a/genera/genera-frames.lisp +++ b/genera/genera-frames.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: GENERA-CLIM; Base: 10; Lowercase: Yes -*- -;; $fiHeader: genera-frames.lisp,v 1.13 92/10/28 11:32:38 cer Exp $ +;; $fiHeader: genera-frames.lisp,v 1.14 92/12/03 10:28:55 cer Exp $ (in-package :genera-clim) @@ -32,7 +32,12 @@ (clim-internals::find-frame-pane-of-type frame 'clim-internals::command-menu-pane)) nil - menu-bar)))) + menu-bar))) + (menu-width (let ((geometry (clim-internals::frame-geometry frame))) + (or (getf geometry :width) + (let ((left (getf geometry :left)) + (right (getf geometry :right))) + (and left right (- right left))))))) (with-look-and-feel-realization (framem frame) (outlining () (if menu-bar @@ -42,7 +47,8 @@ (outlining () (make-pane 'command-menu-pane :display-function - `(display-command-menu :command-table ,menu-bar) + `(display-command-menu :command-table ,menu-bar + :max-width ,menu-width) :incremental-redisplay t :default-text-style clim-internals::*command-table-menu-text-style* :text-style clim-internals::*command-table-menu-text-style* @@ -107,30 +113,20 @@ (defvar *pointer-documentation-buffer* (make-array 80 :element-type 'string-char :fill-pointer 0 :adjustable t)) +(defmethod frame-manager-pointer-documentation-stream + ((framem genera-frame-manager) frame stream) + (declare (ignore stream)) + (let ((console (tv:sheet-console (sheet-mirror (graft frame))))) + (if (eq console sys:*main-console*) + tv:who-line-documentation-window + (let ((who-screen (tv:console-who-line-screen console))) + (and who-screen + (tv:get-who-line-field :mouse-documentation who-screen)))))) + (defmethod frame-manager-display-pointer-documentation ((framem genera-frame-manager) frame presentation input-context window x y stream) - (declare (ignore stream)) - (let ((stream - (let ((console (tv:sheet-console (sheet-mirror (graft frame))))) - (if (eq console sys:*main-console*) - tv:who-line-documentation-window - (let ((who-screen (tv:console-who-line-screen console))) - (and who-screen - (tv:get-who-line-field :mouse-documentation who-screen))))))) - ;; The documentation should never say anything if we're not over a presentation - (when (null presentation) - (scl:send stream :clear-window)) - ;; Cheap test to not do this work too often - (let ((old-modifier-state clim-internals::*last-pointer-documentation-modifier-state*) - (modifier-state (clim-internals::window-modifier-state window)) - (last-time clim-internals::*last-pointer-documentation-time*) - (time (get-internal-real-time))) - (setq clim-internals::*last-pointer-documentation-modifier-state* modifier-state) - (when (and (< time (+ last-time clim-internals::*pointer-documentation-interval*)) - (= modifier-state old-modifier-state)) - (return-from clim-internals::frame-manager-display-pointer-documentation nil)) - (setq clim-internals::*last-pointer-documentation-time* time)) + (let ((stream (frame-manager-pointer-documentation-stream framem frame stream))) (when presentation (setf (fill-pointer *pointer-documentation-buffer*) 0) (with-output-to-string (stream *pointer-documentation-buffer*) @@ -141,16 +137,8 @@ (scl:send stream :string-out *pointer-documentation-buffer*)))) (defmethod frame-manager-display-pointer-documentation-string - ((framem genera-frame-manager) stream string) - (declare (ignore stream)) - (let ((stream - (let ((console - (tv:sheet-console (sheet-mirror (first (port-grafts (port framem))))))) - (if (eq console sys:*main-console*) - tv:who-line-documentation-window - (let ((who-screen (tv:console-who-line-screen console))) - (and who-screen - (tv:get-who-line-field :mouse-documentation who-screen))))))) + ((framem genera-frame-manager) frame stream string) + (let ((stream (frame-manager-pointer-documentation-stream framem frame stream))) (scl:send stream :clear-window) (when string (scl:send stream :string-out string)))) diff --git a/genera/genera-medium.lisp b/genera/genera-medium.lisp index b543aa96..280ff6d8 100644 --- a/genera/genera-medium.lisp +++ b/genera/genera-medium.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: GENERA-CLIM; Base: 10; Lowercase: Yes -*- -;; $fiHeader: genera-medium.lisp,v 1.14 92/11/06 19:03:12 cer Exp $ +;; $fiHeader: genera-medium.lisp,v 1.15 92/12/03 10:28:58 cer Exp $ (in-package :genera-clim) @@ -436,16 +436,17 @@ (unless (tv:sheet-output-held-p window) (apply continuation window arguments))) -(defmacro with-genera-clipping-region ((medium drawable) &body body) +(defmacro with-genera-clipping-region ((medium drawable &optional cleft ctop cright cbottom) + &body body) (let ((sheet '#:sheet) (region '#:region) (medium-region '#:medium-region) (clipping-region '#:clipping-region) (valid '#:valid) - (cleft '#:cleft) - (ctop '#:ctop) - (cright '#:cright) - (cbottom '#:cbottom) + (cleft (or cleft '#:cleft)) + (ctop (or ctop '#:ctop)) + (cright (or cright '#:cright)) + (cbottom (or cbottom '#:cbottom)) (mleft '#:mleft) (mtop '#:mtop) (mright '#:mright) @@ -466,11 +467,11 @@ ,mleft ,mtop ,mright ,mbottom))))) (when ,valid (fix-coordinates ,cleft ,ctop ,cright ,cbottom) - (with-stack-list (,clipping-region - (+ (tv:sheet-left-margin-size ,drawable) ,cleft) - (+ (tv:sheet-top-margin-size ,drawable) ,ctop) - (+ (tv:sheet-right-margin-size ,drawable) ,cright) - (+ (tv:sheet-bottom-margin-size ,drawable) ,cbottom)) + (incf ,cleft (tv:sheet-left-margin-size ,drawable)) + (incf ,ctop (tv:sheet-top-margin-size ,drawable)) + (incf ,cright (tv:sheet-right-margin-size ,drawable)) + (incf ,cbottom (tv:sheet-bottom-margin-size ,drawable)) + (with-stack-list (,clipping-region ,cleft ,ctop ,cright ,cbottom) (scl:letf (((tv:sheet-clipping-region ,drawable) ,clipping-region)) ,@body)))))))) diff --git a/genera/genera-pixmaps.lisp b/genera/genera-pixmaps.lisp index 0c79ce8d..cae245e8 100644 --- a/genera/genera-pixmaps.lisp +++ b/genera/genera-pixmaps.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: GENERA-CLIM; Base: 10; Lowercase: Yes -*- -;; $fiHeader: genera-pixmaps.lisp,v 1.6 92/09/08 15:18:53 cer Exp $ +;; $fiHeader: genera-pixmaps.lisp,v 1.7 92/09/24 09:39:54 cer Exp $ (in-package :genera-clim) @@ -34,6 +34,9 @@ (defmethod pixmap-depth ((pixmap genera-pixmap)) (scl:send (slot-value pixmap 'pixmap) :bits-per-pixel)) +(defmethod port ((pixmap genera-pixmap)) + (port (slot-value pixmap 'for-medium))) + (defclass genera-pixmap-medium (genera-medium basic-pixmap-medium) ()) @@ -69,8 +72,9 @@ (when (>= to-y from-y) (setq height (- (abs height)))) (let ((window (medium-drawable from-medium))) - (scl:send window :bitblt-within-sheet - tv:alu-seta width height from-x from-y to-x to-y))))) + (with-genera-clipping-region (from-medium window) + (scl:send window :bitblt-within-sheet + tv:alu-seta width height from-x from-y to-x to-y)))))) (t (when (and (medium-drawing-possible from-medium) (medium-drawing-possible to-medium)) @@ -83,10 +87,12 @@ (convert-to-device-coordinates from-transform from-x from-y) (convert-to-device-coordinates to-transform to-x to-y) (convert-to-device-distances from-transform width height) - (tv:bitblt-from-sheet-to-sheet - tv:alu-seta width height - from-drawable from-x from-y - to-drawable to-x to-y)))))) + (with-genera-clipping-region (from-medium from-drawable) + (with-genera-clipping-region (to-medium to-drawable) + (tv:bitblt-from-sheet-to-sheet + tv:alu-seta width height + from-drawable from-x from-y + to-drawable to-x to-y)))))))) (defmethod medium-copy-area ((from-medium genera-medium) from-x from-y width height @@ -97,10 +103,11 @@ (convert-to-device-distances transform width height) (let ((window (medium-drawable from-medium)) (pixmap (medium-drawable to-medium))) - (tv:bitblt-from-sheet-to-sheet - tv:alu-seta width height - window from-x from-y - pixmap to-x to-y))))) + (with-genera-clipping-region (from-medium window) + (tv:bitblt-from-sheet-to-sheet + tv:alu-seta width height + window from-x from-y + pixmap to-x to-y)))))) (defmethod medium-copy-area ((from-medium genera-pixmap-medium) from-x from-y width height @@ -110,10 +117,11 @@ (convert-to-device-coordinates transform to-x to-y) (let ((window (medium-drawable to-medium)) (pixmap (medium-drawable from-medium))) - (tv:bitblt-from-sheet-to-sheet - tv:alu-seta width height - pixmap from-x from-y - window to-x to-y))))) + (with-genera-clipping-region (to-medium window) + (tv:bitblt-from-sheet-to-sheet + tv:alu-seta width height + pixmap from-x from-y + window to-x to-y)))))) (defmethod medium-copy-area ((from-medium genera-medium) from-x from-y width height @@ -124,10 +132,11 @@ (convert-to-device-distances transform width height) (let ((window (medium-drawable from-medium)) (pixmap (slot-value pixmap 'pixmap))) - (tv:bitblt-from-sheet-to-sheet - tv:alu-seta width height - window from-x from-y - pixmap to-x to-y))))) + (with-genera-clipping-region (from-medium window) + (tv:bitblt-from-sheet-to-sheet + tv:alu-seta width height + window from-x from-y + pixmap to-x to-y)))))) (defmethod medium-copy-area ((pixmap genera-pixmap) from-x from-y width height @@ -137,7 +146,8 @@ (convert-to-device-coordinates transform to-x to-y) (let ((window (medium-drawable to-medium)) (pixmap (slot-value pixmap 'pixmap))) - (tv:bitblt-from-sheet-to-sheet - tv:alu-seta width height - pixmap from-x from-y - window to-x to-y))))) + (with-genera-clipping-region (to-medium window) + (tv:bitblt-from-sheet-to-sheet + tv:alu-seta width height + pixmap from-x from-y + window to-x to-y)))))) diff --git a/postscript/postscript-medium.lisp b/postscript/postscript-medium.lisp index b35d13a3..567660a0 100644 --- a/postscript/postscript-medium.lisp +++ b/postscript/postscript-medium.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: POSTSCRIPT-CLIM; Base: 10; Lowercase: Yes -*- -;; $fiHeader: postscript-medium.lisp,v 1.9 92/11/13 14:46:39 cer Exp $ +;; $fiHeader: postscript-medium.lisp,v 1.10 92/12/03 10:29:05 cer Exp $ (in-package :postscript-clim) @@ -34,12 +34,12 @@ (defun use-line-style (medium line-style) (let ((printer-stream (slot-value medium 'printer-stream)) - (thickness (case (line-style-unit line-style) + (thickness (ecase (line-style-unit line-style) (:normal (normal-line-thickness (port medium) (line-style-thickness line-style))) - (:points (line-style-thickness line-style)))) + (:point (line-style-thickness line-style)))) (dashes (line-style-dashes line-style))) - (format printer-stream " ~D setlinewidth~%" thickness) + (format printer-stream " ~D setlinewidth~%" (round thickness)) (when dashes (when (eq dashes t) (setq dashes '(4 4))) @@ -61,11 +61,11 @@ (defmethod maybe-set-color ((medium postscript-medium) (ink (eql +foreground-ink+))) - (maybe-set-color medium (or (slot-value medium 'current-color) +black+))) + (maybe-set-color medium (or (medium-foreground medium) +black+))) (defmethod maybe-set-color ((medium postscript-medium) (ink (eql +background-ink+))) - (maybe-set-color medium +white+)) + (maybe-set-color medium (or (medium-background medium) +white+))) (defmethod maybe-set-color ((medium postscript-medium) (ink flipping-ink)) diff --git a/postscript/postscript-port.lisp b/postscript/postscript-port.lisp index 8e297dd3..0c0a4f59 100644 --- a/postscript/postscript-port.lisp +++ b/postscript/postscript-port.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: POSTSCRIPT-CLIM; Base: 10; Lowercase: Yes -*- -;; $fiHeader: postscript-port.lisp,v 1.11 92/11/19 14:24:43 cer Exp $ +;; $fiHeader: postscript-port.lisp,v 1.12 92/12/14 15:03:22 cer Exp $ (in-package :postscript-clim) @@ -256,9 +256,7 @@ (features-sent :initform nil) (curfont :initform nil) ;a psfck structure (ch1buf :initform (make-array 1 :element-type #+ANSI-90 'character - #-ANSI-90 'string-char)) - (header-comments :initform nil :initarg :header-comments) - (orientation :initform :portrait :initarg :orientation))) + #-ANSI-90 'string-char)))) (defmethod implementation-pixels-per-point ((medium postscript-medium)) (float (/ *1-pixel=points*) 0f0)) @@ -354,7 +352,7 @@ ;;; (prin1 (if (fixp elem) elem (float elem)) output-stream) ;;; and also some cases of Format ~D. (defun ps-optimal-flonize (n stream) - ;; lifted from definition of LGP:FAST-PRINT-NUM in "Q:>sys>hardcopy>postscript.lisp.1679" + ;; Lifted from definition of LGP:FAST-PRINT-NUM in SYS:HARDCOPY;POSTSCRIPT.LISP (if (and (not (zerop n)) (< -1 n 1)) (format stream "~F" (float n)) @@ -480,16 +478,16 @@ x y translate xra yra scale 0 0 1 sa ea arcp setmatrix end} def /m {moveto} def ") -(defmethod postscript-prologue ((medium postscript-medium)) +(defmethod postscript-prologue ((medium postscript-medium) + &key scale-factor (orientation :portrait) + header-comments) (let ((printer-stream (slot-value medium 'printer-stream)) - (header-comments (slot-value medium 'header-comments)) - (orientation (slot-value medium 'orientation)) (port (port medium))) (format printer-stream "%!PS-Adobe-2.0 EPSF-2.0~%") (multiple-value-bind (left top right bottom) (postscript-bounding-box-edges (medium-sheet medium)) (format printer-stream "%%BoundingBox: ~D ~D ~D ~D~%" - left top right bottom)) + (float left) (float top) (float right) (float bottom))) (format printer-stream "%%Creator: CLIM 2.0~%") (let ((title (getf header-comments :title))) (when title @@ -501,7 +499,7 @@ x y translate xra yra scale 0 0 1 sa ea arcp setmatrix end} def (decode-universal-time (get-universal-time)) (format printer-stream "%%CreationDate: ~D-~A-~D ~2,'0D:~2,'0D:~2,'0D~%" date (svref #("Jan" "Feb" "Mar" "Apr" "May" "Jun" - "Jul" "Aug" "Sep" "Oct" "Nov" "Dec") month) year + "Jul" "Aug" "Sep" "Oct" "Nov" "Dec") (1- month)) year hour minute second)) (format printer-stream "%%DocumentFonts: (atend)~%") (format printer-stream "%%EndComments~%") @@ -513,11 +511,13 @@ x y translate xra yra scale 0 0 1 sa ea arcp setmatrix end} def (:landscape (format printer-stream "/format-rotation -90 def ~%/format-y-translation ~D def~%" - (* (slot-value port 'page-width) - (slot-value port 'device-units-per-inch))))) + (float (* (slot-value port 'page-height) + (slot-value port 'device-units-per-inch)))))) + (format printer-stream "/format-scale ~D def~%" (float (or scale-factor 1))) (format printer-stream "/new-matrix {0 format-y-translation translate - format-rotation rotate} def + format-rotation rotate + format-scale format-scale scale} def /new-page {showpage new-matrix} def~%") (postscript-device-prologue port printer-stream) (format printer-stream "%%EndProlog~%") @@ -616,7 +616,7 @@ x y translate xra yra scale 0 0 1 sa ea arcp setmatrix end} def (defclass postscript-port (basic-port) ;; 72 points per inch on PostScript devices ((font-map :initform (make-array 30 :initial-element nil)) - (device-units-per-inch :initform 72 :allocation :class))) + (device-units-per-inch :initform 72))) (defmethod port-type ((port postscript-port)) ':postscript) @@ -715,6 +715,9 @@ x y translate xra yra scale 0 0 1 sa ea arcp setmatrix end} def (values (floor left) (floor top) (ceiling right) (ceiling bottom)))) +(defmethod pane-viewport-region ((stream postscript-stream)) + +everywhere+) + (defmethod window-inside-width ((stream postscript-stream)) (let ((port (port stream))) (float (/ (* (slot-value port 'page-width) @@ -748,8 +751,10 @@ x y translate xra yra scale 0 0 1 sa ea arcp setmatrix end} def (when (stream-drawing-p stream) (when output-record (letf-globally (((stream-recording-p stream) nil)) - (if (or region (not multi-page)) - (replay output-record stream region) + (if (or (and region + (not (eq region +everywhere+))) + (not multi-page)) + (replay output-record stream (or region +everywhere+)) (with-bounding-rectangle* (left top right bottom) output-record (let* ((page-width (floor (* (slot-value port 'page-width) @@ -785,8 +790,8 @@ x y translate xra yra scale 0 0 1 sa ea arcp setmatrix end} def (defmacro with-output-to-postscript-stream ((stream-var file-stream &rest args) &body body) (declare (arglist (stream-var file-stream &key (device-type 'apple-laser-writer) - header-comments multi-page - (orientation :portrait)) + multi-page scale-to-fit + header-comments (orientation :portrait)) &body body)) `(flet ((postscript-output-body (,stream-var) ,@body)) (declare (dynamic-extent #'postscript-output-body)) @@ -796,13 +801,13 @@ x y translate xra yra scale 0 0 1 sa ea arcp setmatrix end} def ;; Fixed in the CLOS stream system. (defun invoke-with-output-to-postscript-stream (file-stream continuation &key (device-type 'apple-laser-writer) - header-comments multi-page + multi-page scale-to-fit + header-comments (orientation :portrait)) + (assert (not (and multi-page scale-to-fit)) (multi-page scale-to-fit) + "You may not use both ~S and ~S" ':multi-page ':scale-to-fit) (let* ((port (make-instance device-type)) (stream (make-instance 'postscript-stream - :stream file-stream - :header-comments header-comments - :orientation orientation :multi-page multi-page)) (abort-p t)) (setf (port stream) port) @@ -812,7 +817,30 @@ x y translate xra yra scale 0 0 1 sa ea arcp setmatrix end} def (unwind-protect (multiple-value-prog1 (funcall continuation stream) - (postscript-prologue medium) + (multiple-value-bind (width height) + (bounding-rectangle-size (stream-output-history stream)) + (let* ((page-width + (floor (* (slot-value port 'page-width) + (slot-value port 'device-units-per-inch)) + *1-pixel=points*)) + (page-height + (floor (* (slot-value port 'page-height) + (slot-value port 'device-units-per-inch)) + *1-pixel=points*)) + (scale-factor + (progn + (when (eq orientation :landscape) + (rotatef page-width page-height)) + (if (or (not scale-to-fit) + (and (< width page-width) + (< height page-height))) + 1 + (min (/ page-width width) + (/ page-height height)))))) + (postscript-prologue medium + :scale-factor scale-factor + :orientation orientation + :header-comments header-comments))) ;; Now do the output to the printer, breaking up the output into ;; multiple pages if that was requested (with-output-recording-options (stream :record nil :draw t) diff --git a/silica/classes.lisp b/silica/classes.lisp index db314e45..f12873e8 100644 --- a/silica/classes.lisp +++ b/silica/classes.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: SILICA; Base: 10; Lowercase: Yes -*- -;; $fiHeader: classes.lisp,v 1.27 92/12/07 12:15:12 cer Exp $ +;; $fiHeader: classes.lisp,v 1.28 92/12/14 15:03:28 cer Exp $ (in-package :silica) @@ -59,7 +59,6 @@ (grabbing-sheet :initform nil :accessor port-grabbing-sheet) (alive-p :initform nil :accessor port-alive-p))) - ) ;locally @@ -130,6 +129,7 @@ ((timestamp :reader event-timestamp :initform (atomic-incf *event-timestamp*) :initarg :timestamp))) + (define-event-class device-event (event) ((sheet :reader event-sheet :initarg :sheet) (modifier-state :reader event-modifier-state diff --git a/silica/db-border.lisp b/silica/db-border.lisp index 2b3f685f..1afc9ead 100644 --- a/silica/db-border.lisp +++ b/silica/db-border.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: SILICA; Base: 10; Lowercase: Yes -*- -;; $fiHeader: db-border.lisp,v 1.14 92/12/01 09:46:17 cer Exp $ +;; $fiHeader: db-border.lisp,v 1.15 92/12/03 10:29:15 cer Exp $ "Copyright (c) 1989, 1990 by Xerox Corporation. All rights reserved. Portions copyright (c) 1991, 1992 by Symbolics, Inc. All rights reserved." @@ -48,6 +48,9 @@ (defmacro bordering ((&rest options &key thickness &allow-other-keys) &body contents) (declare (ignore thickness)) + (assert (null (cdr contents)) (contents) + "The ~S layout macro can have only a single pane as its contents" + 'bordering) `(make-pane 'border-pane :contents ,@contents ,@options)) @@ -60,6 +63,9 @@ (defmacro outlining ((&rest options &key thickness &allow-other-keys) &body contents) (declare (ignore thickness)) + (assert (null (cdr contents)) (contents) + "The ~S layout macro can have only a single pane as its contents" + 'outlining) `(make-pane 'outlined-pane :contents ,@contents ,@options)) @@ -70,6 +76,9 @@ (defmacro spacing ((&rest options &key thickness &allow-other-keys) &body contents) (declare (ignore thickness)) + (assert (null (cdr contents)) (contents) + "The ~S layout macro can have only a single pane as its contents" + 'spacing) `(make-pane 'spacing-pane :contents ,@contents ,@options)) @@ -95,6 +104,9 @@ &allow-other-keys) &body contents &environment env) #-(or Genera Minima) (declare (ignore env)) + (assert (null (cdr contents)) (contents) + "The ~S layout macro can have only a single pane as its contents" + 'labelling) (setq options (remove-keywords options '(:label-alignment))) (let ((lvar '#:label) (cvar '#:contents)) @@ -112,6 +124,7 @@ (:top (vertically () ,lvar ,cvar))))))) + (defclass generic-label-pane (label-pane space-requirement-mixin diff --git a/silica/db-layout.lisp b/silica/db-layout.lisp index 35e3c0b3..0b42333b 100644 --- a/silica/db-layout.lisp +++ b/silica/db-layout.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: SILICA; Base: 10; Lowercase: Yes -*- -;; $fiHeader: db-layout.lisp,v 1.25 92/09/24 09:37:31 cer Exp $ +;; $fiHeader: db-layout.lisp,v 1.26 92/10/02 15:18:10 cer Exp $ (in-package :silica) @@ -651,6 +651,8 @@ ;; Most of the layout panes should inherit from this +;;--- It would be nice if this and COMPOSITE-PANE had single- and multiple-child +;;--- versions so that users could get better error diagnostics (defclass layout-pane (sheet-mute-input-mixin foreground-background-and-text-style-mixin space-requirement-mixin diff --git a/silica/db-scroll.lisp b/silica/db-scroll.lisp index 77fb5d5c..f8b7609c 100644 --- a/silica/db-scroll.lisp +++ b/silica/db-scroll.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: SILICA; Base: 10; Lowercase: Yes -*- -;; $fiHeader: db-scroll.lisp,v 1.37 92/12/03 10:29:18 cer Exp $ +;; $fiHeader: db-scroll.lisp,v 1.38 92/12/07 12:15:15 cer Exp $ "Copyright (c) 1991, 1992 by Franz, Inc. All rights reserved. Portions copyright(c) 1991, 1992 International Lisp Associates. @@ -96,7 +96,7 @@ (setf (scroll-bar-current-size sheet) nil)) ;;--- In the case where the viewport is bigger than the window this -;;--- code gets things wrong. Check out the thinkadot demo. It's +;;--- code gets things wrong. Check out the thinkadot demo. It's ;;--- because (- (--) (- vmin)) is negative. (defun update-scroll-bar (scroll-bar min max vmin vmax) (declare (optimize (safety 0) (speed 3))) diff --git a/silica/db-slider.lisp b/silica/db-slider.lisp index 26c94fdc..e3f47c97 100644 --- a/silica/db-slider.lisp +++ b/silica/db-slider.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: SILICA; Base: 10; Lowercase: Yes -*- -;; $fiHeader: db-slider.lisp,v 1.15 92/09/24 09:37:35 cer Exp $ +;; $fiHeader: db-slider.lisp,v 1.16 92/10/02 15:18:17 cer Exp $ "Copyright (c) 1992 by Symbolics, Inc. All rights reserved." @@ -363,16 +363,23 @@ (deallocate-event event)) (defmethod handle-event ((pane slider-pane) (event pointer-enter-event)) + (declare (special *pointer-documentation-output*)) (with-slots (armed) pane (unless armed (setf armed t) - (armed-callback pane (gadget-client pane) (gadget-id pane))))) + (armed-callback pane (gadget-client pane) (gadget-id pane))) + (frame-manager-display-pointer-documentation-string + (frame-manager pane) (pane-frame pane) *pointer-documentation-output* + "L,M,R: Move the slider indicator."))) (defmethod handle-event ((pane slider-pane) (event pointer-exit-event)) + (declare (special *pointer-documentation-output*)) (with-slots (armed) pane (when armed (setf armed nil) - (disarmed-callback pane (gadget-client pane) (gadget-id pane))))) + (disarmed-callback pane (gadget-client pane) (gadget-id pane))) + (frame-manager-display-pointer-documentation-string + (frame-manager pane) (pane-frame pane) *pointer-documentation-output* nil))) (defmethod handle-event ((pane slider-pane) (event pointer-button-press-event)) (with-slots (armed margin visible-value-width visible-value-height diff --git a/silica/event.lisp b/silica/event.lisp index b4cbc747..1c5e57df 100644 --- a/silica/event.lisp +++ b/silica/event.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: SILICA; Base: 10; Lowercase: Yes -*- -;; $fiHeader: event.lisp,v 1.30 92/12/01 09:46:23 cer Exp $ +;; $fiHeader: event.lisp,v 1.31 92/12/14 15:03:33 cer Exp $ (in-package :silica) @@ -145,12 +145,12 @@ (defmethod queue-repaint ((sheet immediate-repainting-mixin) repaint-event) (repaint-sheet sheet (window-event-region repaint-event))) -(defclass mute-repainting-mixin () ()) +(defclass sheet-mute-repainting-mixin () ()) -(defmethod queue-repaint ((sheet mute-repainting-mixin) repaint-event) +(defmethod queue-repaint ((sheet sheet-mute-repainting-mixin) repaint-event) (queue-event sheet repaint-event)) -(defmethod handle-repaint ((sheet mute-repainting-mixin) region) +(defmethod handle-repaint ((sheet sheet-mute-repainting-mixin) region) (declare (ignore region)) nil) @@ -514,8 +514,8 @@ (let ((sheet (let ((v (port-trace-thing port))) (and (not (zerop (fill-pointer v))) (aref v (1- (fill-pointer v))))))) - ;;--- This is not quite right. We need to transform the - ;;--- coordinates better. Also it should probably override + ;;--- This is not quite right. We need to transform the + ;;--- coordinates better. Also it should probably override ;;--- the sheet in the trace-thing. (unless sheet (setq sheet (port-grabbing-sheet port))) diff --git a/silica/gadgets.lisp b/silica/gadgets.lisp index ec411973..77ea9e56 100644 --- a/silica/gadgets.lisp +++ b/silica/gadgets.lisp @@ -1,6 +1,6 @@ ;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: SILICA; Base: 10; Lowercase: Yes -*- -;; $fiHeader: gadgets.lisp,v 1.41 92/11/20 08:45:47 cer Exp $ +;; $fiHeader: gadgets.lisp,v 1.42 92/12/03 10:29:24 cer Exp $ "Copyright (c) 1991, 1992 by Franz, Inc. All rights reserved. Portions copyright (c) 1992 by Symbolics, Inc. All rights reserved." @@ -8,8 +8,9 @@ (in-package :silica) -;;--- This should be BASIC-GADGET, with GADGET being a protocol class -(defclass gadget (foreground-background-and-text-style-mixin pane) +(define-protocol-class gadget (pane)) + +(defclass basic-gadget (foreground-background-and-text-style-mixin gadget) ((id :initarg :id :reader gadget-id :initform nil) (client :initarg :client :initform nil :accessor gadget-client) (armed-callback :initarg :armed-callback :initform nil @@ -19,9 +20,6 @@ (active :initarg :active :accessor gadget-active-p)) (:default-initargs :active t)) -(defmethod gadgetp ((object t)) nil) -(defmethod gadgetp ((object gadget)) t) - ;;; Arming and disarming (defun-inline invoke-callback-function (function &rest args) @@ -30,44 +28,44 @@ (apply (car function) (append args (cdr function))) (apply function args))) -(defmethod armed-callback :around ((gadget gadget) (client t) (id t)) +(defmethod armed-callback :around ((gadget basic-gadget) (client t) (id t)) (let ((callback (gadget-armed-callback gadget))) (if callback (invoke-callback-function callback gadget) (call-next-method)))) -(defmethod armed-callback ((gadget gadget) (client t) (id t)) +(defmethod armed-callback ((gadget basic-gadget) (client t) (id t)) nil) -(defmethod disarmed-callback :around ((gadget gadget) (client t) (id t)) +(defmethod disarmed-callback :around ((gadget basic-gadget) (client t) (id t)) (let ((callback (gadget-disarmed-callback gadget))) (if callback (invoke-callback-function callback gadget) (call-next-method)))) -(defmethod disarmed-callback ((gadget gadget) (client t) (id t)) +(defmethod disarmed-callback ((gadget basic-gadget) (client t) (id t)) nil) ;;; Activation and deactivation, not intended to be like callbacks -(defmethod activate-gadget ((gadget gadget)) +(defmethod activate-gadget ((gadget basic-gadget)) (unless (gadget-active-p gadget) (setf (gadget-active-p gadget) t) (note-gadget-activated (gadget-client gadget) gadget))) -(defmethod note-gadget-activated ((client t) (gadget gadget)) +(defmethod note-gadget-activated ((client t) (gadget basic-gadget)) nil) -(defmethod deactivate-gadget ((gadget gadget)) +(defmethod deactivate-gadget ((gadget basic-gadget)) (when (gadget-active-p gadget) (setf (gadget-active-p gadget) nil) (note-gadget-deactivated (gadget-client gadget) gadget))) -(defmethod note-gadget-deactivated ((client t) (gadget gadget)) +(defmethod note-gadget-deactivated ((client t) (gadget basic-gadget)) nil) -(defclass value-gadget (gadget) +(defclass value-gadget (basic-gadget) ((value :initarg :value :initform nil :reader gadget-initial-value) (value-changed-callback :initarg :value-changed-callback :initform nil @@ -101,7 +99,7 @@ nil) -(defclass action-gadget (gadget) +(defclass action-gadget (basic-gadget) ((activate-callback :initarg :activate-callback :initform nil :reader gadget-activate-callback))) @@ -115,7 +113,7 @@ nil) -(defclass focus-gadget (gadget) +(defclass focus-gadget (basic-gadget) ((focus-out-callback :initarg :focus-out-callback :initform nil :reader gadget-focus-out-callback) (focus-in-callback :initarg :focus-in-callback :initform nil @@ -378,7 +376,7 @@ :parent rb)))))) (defmethod value-changed-callback :around - ((selection gadget) (client radio-box) gadget-id value) + ((selection basic-gadget) (client radio-box) gadget-id value) (declare (ignore gadget-id)) ;;--- The following comment is wrong. Perhaps these should be :BEFORE ;;--- methods since the user could define a more specific around method only. @@ -425,7 +423,7 @@ :parent cb)))))) (defmethod value-changed-callback :around - ((selection gadget) (client check-box) gadget-id value) + ((selection basic-gadget) (client check-box) gadget-id value) (declare (ignore gadget-id)) (if (eq value t) (pushnew selection (check-box-current-selection client)) @@ -595,6 +593,9 @@ (defmacro scrolling (options &body contents) + (assert (null (cdr contents)) (contents) + "The ~S layout macro can have only a single pane as its contents" + 'scrolling) `(make-pane 'scroller-pane :contents ,@contents ,@options)) @@ -653,8 +654,11 @@ (defclass option-pane (set-gadget-mixin labelled-gadget-mixin value-gadget) - ((printer :initarg :printer :reader option-pane-printer)) - (:default-initargs :printer nil)) + ;;--- Should this be :ONE-OF/:SOME-OF, as radio boxes are? + ((mode :initarg :mode :type (member :exclusive :nonexclusive) + :accessor option-pane-mode) + (printer :initarg :printer :reader option-pane-printer)) + (:default-initargs :mode :exclusive :printer nil)) ;; Callbacks on widgets generate these events diff --git a/silica/graphics.lisp b/silica/graphics.lisp index 5b69b191..c819fcd9 100644 --- a/silica/graphics.lisp +++ b/silica/graphics.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: SILICA; Base: 10; Lowercase: Yes -*- -;; $fiHeader: graphics.lisp,v 1.24 92/12/01 09:46:27 cer Exp $ +;; $fiHeader: graphics.lisp,v 1.25 92/12/03 10:29:27 cer Exp $ (in-package :silica) @@ -578,34 +578,34 @@ :drawing-options :line-joint :position-sequences-to-transform (position-seq) :medium-method-body - (let ((transform (medium-transformation medium))) - (cond ((rectilinear-transformation-p transform) - (setq position-seq (transform-position-sequence transform position-seq)) - (call-next-method medium position-seq filled)) - (t - (medium-draw-transformed-rectangles* medium position-seq filled))))) - -(defun medium-draw-transformed-rectangles* (stream position-seq filled) + (let ((transform (medium-transformation medium))) + (cond ((rectilinear-transformation-p transform) + (setq position-seq (transform-position-sequence transform position-seq)) + (call-next-method medium position-seq filled)) + (t + (medium-draw-transformed-rectangles* medium position-seq filled))))) + +(defun medium-draw-transformed-rectangles* (medium position-seq filled) (let ((len (length position-seq))) (assert (zerop (mod len 4))) - (macrolet ((guts (x1 y1 x2 y2) + (macrolet ((draw-one (x1 y1 x2 y2) `(let ((x1 ,x1) (y1 ,y1) (x2 ,x2) (y2 ,y2)) (with-stack-list (list x1 y1 x2 y1 x2 y2 x1 y2) - (medium-draw-polygon* stream list t filled))))) + (medium-draw-polygon* medium list t filled))))) (if (listp position-seq) (do ((position-seq position-seq)) ((null position-seq)) - (guts (pop position-seq) (pop position-seq) - (pop position-seq) (pop position-seq))) - (do ((i 0 (+ i 4))) - ((= i len)) - (guts (aref position-seq i) - (aref position-seq (+ 1 i)) - (aref position-seq (+ 2 i)) - (aref position-seq (+ 3 i)))))))) + (draw-one (pop position-seq) (pop position-seq) + (pop position-seq) (pop position-seq))) + (do ((i 0 (+ i 4))) + ((= i len)) + (draw-one (aref position-seq i) + (aref position-seq (+ 1 i)) + (aref position-seq (+ 2 i)) + (aref position-seq (+ 3 i)))))))) ;; DRAW-PATTERN* is a special case of DRAW-RECTANGLE*, believe it or not... (defun draw-pattern* (medium pattern x y &key clipping-region transformation) @@ -790,11 +790,6 @@ (apply #'draw-oval* medium (point-x center) (point-y center) x-radius y-radius args)) -(define-graphics-generic draw-bezier-curve ((points point-sequence position-seq) - &key (filled t)) - :drawing-options :line-joint-cap - :position-sequences-to-transform (position-seq)) - (define-graphics-generic draw-text (string-or-char (point point x y) &key (start 0) (end nil) (align-x :left) (align-y :baseline) @@ -811,3 +806,75 @@ (letf-globally (((medium-ink medium) +background-ink+) ((medium-transformation medium) +identity-transformation+)) (medium-draw-rectangle* medium left top right bottom t))) + + +;;; Cubic splines and Bezier curves + +(define-graphics-generic draw-bezier-curve ((points point-sequence position-seq) + &key (filled nil)) + :drawing-options :line-cap + :position-sequences-to-transform (position-seq)) + +(defmethod medium-draw-bezier-curve* ((medium basic-medium) position-seq filled) + (let* ((npoints (length position-seq)) + (last (1- npoints)) + (new-points (cons nil nil)) + (head new-points) + (distance 1)) + (assert (zerop (mod (- (/ npoints 2) 4) 3))) + (flet ((collect (x y) + (let ((more (list x y))) + (setf (cdr new-points) more + new-points (cdr more))))) + (declare (dynamic-extent #'collect)) + (collect (elt position-seq 0) (elt position-seq 1)) + (do ((i 0 (+ i 6))) + ((= i (1- last))) + (render-bezier-curve #'collect + (elt position-seq i) (elt position-seq (+ 1 i)) + (elt position-seq (+ 2 i)) (elt position-seq (+ 3 i)) + (elt position-seq (+ 4 i)) (elt position-seq (+ 5 i)) + (elt position-seq (+ 6 i)) (elt position-seq (+ 7 i)) + distance) + (collect (elt position-seq (+ 6 i)) (elt position-seq (+ 7 i))))) + (medium-draw-polygon* medium (cdr head) nil filled))) + +(defun render-bezier-curve (function x0 y0 x1 y1 x2 y2 x3 y3 distance) + (flet ((split-bezier-curve (x0 y0 x1 y1 x2 y2 x3 y3) + ;; We should write a matrix multiplication macro + (values + ;; The first 1/2 + x0 y0 + (+ (/ x0 2) (/ x1 2)) (+ (/ y0 2) (/ y1 2)) + (+ (/ x0 4) (/ x1 2) (/ x2 4)) (+ (/ y0 4) (/ y1 2) (/ y2 4)) + (+ (* x0 1/8) (* x1 3/8) (* x2 3/8) (* x3 1/8)) + (+ (* y0 1/8) (* y1 3/8) (* y2 3/8) (* y3 1/8)) + ;; The second 1/2 + (+ (* x0 1/8) (* x1 3/8) (* x2 3/8) (* x3 1/8)) + (+ (* y0 1/8) (* y1 3/8) (* y2 3/8) (* y3 1/8)) + (+ (/ x1 4) (/ x2 2) (/ x3 4)) (+ (/ y1 4) (/ y2 2) (/ y3 4)) + (+ (/ x2 2) (/ x3 2)) (+ (/ y2 2) (/ y3 2)) + x3 y3)) + (distance-from-line (x0 y0 x1 y1 x y) + (let* ((dx (- x1 x0)) + (dy (- y1 y0)) + (r-p-x (- x x0)) + (r-p-y (- y y0)) + (dot-v (+ (* dx dx) (* dy dy))) + (dot-r-v (+ (* r-p-x dx) (* r-p-y dy))) + (closest-x (+ x0 (* (/ dot-r-v dot-v) dx))) + (closest-y (+ y0 (* (/ dot-r-v dot-v) dy)))) + (let ((ax (- x closest-x)) + (ay (- y closest-y))) + (values (+ (* ax ax) (* ay ay)) closest-x closest-y))))) + (declare (dynamic-extent #'split-bezier-curve #'distance-from-line)) + (let ((d1 (distance-from-line x0 y0 x3 y3 x1 y1)) + (d2 (distance-from-line x0 y0 x3 y3 x2 y2))) + (if (and (< d1 distance) (< d2 distance)) + nil + (multiple-value-bind (x00 y00 x10 y10 x20 y20 x30 y30 + x01 y01 x11 y11 x21 y21 x31 y31) + (split-bezier-curve x0 y0 x1 y1 x2 y2 x3 y3) + (render-bezier-curve function x00 y00 x10 y10 x20 y20 x30 y30 distance) + (funcall function x30 y30) + (render-bezier-curve function x01 y01 x11 y11 x21 y21 x31 y31 distance)))))) diff --git a/silica/medium.lisp b/silica/medium.lisp index a1129292..e9519e7f 100644 --- a/silica/medium.lisp +++ b/silica/medium.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: SILICA; Base: 10; Lowercase: Yes -*- -;; $fiHeader: medium.lisp,v 1.29 92/11/06 19:03:53 cer Exp $ +;; $fiHeader: medium.lisp,v 1.30 92/12/02 13:31:06 colin Exp $ (in-package :silica) @@ -199,7 +199,7 @@ (defmethod make-load-form ((line-style standard-line-style)) (with-slots (unit thickness joint-shape cap-shape dashes) line-style - `(make-line-style ,@(unless (eq unit :points) `(:unit ,unit)) + `(make-line-style ,@(unless (eq unit :normal) `(:unit ,unit)) ,@(unless (= thickness 1) `(:thickness ,thickness)) ,@(unless (eq joint-shape :miter) `(:joint-shape ,joint-shape)) ,@(unless (eq cap-shape :butt) `(:cap-shape ,cap-shape)) @@ -255,8 +255,7 @@ line-joint-shape line-cap-shape (text-style nil text-style-p) (text-family nil text-family-p) (text-face nil text-face-p) (text-size nil text-size-p)) - (with-accessors ((transformed-clipping-region medium-clipping-region)) - medium + (with-accessors ((transformed-clipping-region medium-clipping-region)) medium (with-slots ((medium-ink ink) (medium-transformation transformation) (medium-line-style line-style)) medium @@ -270,37 +269,37 @@ (setf medium-ink ink)) (when transformation (setf medium-transformation - (compose-transformations saved-transformation transformation))) + (compose-transformations saved-transformation transformation))) (when clipping-region (setf transformed-clipping-region - (region-intersection saved-clipping-region - (transform-region medium-transformation - clipping-region)))) + (region-intersection saved-clipping-region + (transform-region medium-transformation + clipping-region)))) (cond ((or line-unit line-thickness line-joint-shape line-cap-shape dashes-p) (when (null line-style) (setf line-style saved-line-style)) (setf medium-line-style - (make-line-style-1 - (or line-unit (line-style-unit line-style)) - (or line-thickness (line-style-thickness line-style)) - (if dashes-p line-dashes (line-style-dashes line-style)) - (or line-joint-shape (line-style-joint-shape line-style)) - (or line-cap-shape (line-style-cap-shape line-style))))) + (make-line-style-1 + (or line-unit (line-style-unit line-style)) + (or line-thickness (line-style-thickness line-style)) + (if dashes-p line-dashes (line-style-dashes line-style)) + (or line-joint-shape (line-style-joint-shape line-style)) + (or line-cap-shape (line-style-cap-shape line-style))))) (line-style (setf medium-line-style line-style))) (when (or text-family-p text-face-p text-size-p) (if text-style-p (setq text-style (with-stack-list (style text-family text-face text-size) (merge-text-styles style text-style))) - (setq text-style (make-text-style text-family text-face text-size) - text-style-p t))) + (setq text-style (make-text-style text-family text-face text-size) + text-style-p t))) (if text-style-p (flet ((call-continuation (stream) (declare (ignore stream)) (funcall continuation))) (declare (dynamic-extent #'call-continuation)) (invoke-with-text-style medium #'call-continuation text-style medium)) - (funcall continuation))) + (funcall continuation))) (setf medium-line-style saved-line-style) (setf transformed-clipping-region saved-clipping-region) (setf medium-transformation saved-transformation) diff --git a/silica/port.lisp b/silica/port.lisp index 614d913f..0325abf8 100644 --- a/silica/port.lisp +++ b/silica/port.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: SILICA; Base: 10; Lowercase: Yes -*- -;; $fiHeader: port.lisp,v 1.27 92/12/07 12:15:18 cer Exp $ +;; $fiHeader: port.lisp,v 1.28 92/12/14 15:03:36 cer Exp $ (in-package :silica) @@ -133,10 +133,6 @@ (setq *ports* (delete port *ports*))) -(defgeneric add-watcher (port watcher)) -(defgeneric remove-watcher (port watcher)) -(defgeneric reset-watcher (watcher how)) - (define-event-class port-terminated (window-manager-event) ((condition :initarg :condition :reader port-terminated-condition))) @@ -147,8 +143,13 @@ (dolist (graft (port-grafts port)) (dolist (sheet (sheet-children graft)) (queue-event sheet (make-instance 'port-terminated - :condition condition - :sheet sheet))))) + :condition condition + :sheet sheet))))) + + +(defgeneric add-watcher (port watcher)) +(defgeneric remove-watcher (port watcher)) +(defgeneric reset-watcher (watcher how)) ;;;;;;;;;;;;;;;; diff --git a/silica/scroll-pane.lisp b/silica/scroll-pane.lisp index 83f9c710..d274a581 100644 --- a/silica/scroll-pane.lisp +++ b/silica/scroll-pane.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: SILICA; Base: 10; Lowercase: Yes -*- -;; $fiHeader: db-scroll.lisp,v 1.36 92/12/01 09:46:20 cer Exp $ +;; $fiHeader: scroll-pane.lisp,v 1.1 92/12/07 12:15:21 cer Exp $ "Copyright (c) 1991, 1992 by Franz, Inc. All rights reserved. Portions copyright(c) 1991, 1992 International Lisp Associates. @@ -8,6 +8,7 @@ (in-package :silica) + ;; An implementation of a scroller pane (defclass generic-scroller-pane (scroller-pane client-space-requirement-mixin @@ -111,6 +112,7 @@ ;;--- Add callbacks ))))))) + ;;; Home-grown scroll bars (defparameter *scroll-shaft-thickness-ink* 12) @@ -384,13 +386,16 @@ (scroll-bar-value-changed-callback scroll-bar scroller-pane id (min 1.0s0 (max 0.0s0 mouse-offset)) current-size)))))) - ;;; Set the indicator to the proper size and location (size and value are between 0 and 1) (defmethod change-scroll-bar-values ((scroll-bar scroll-bar-pane) &key slider-size value) - (setf (gadget-value scroll-bar) value) - (setf (scroll-bar-current-size scroll-bar) slider-size)) - + (setf (gadget-value scroll-bar :invoke-callback nil) value) + (setf (scroll-bar-current-size scroll-bar) slider-size) + (let* ((scroller (gadget-client scroll-bar)) + (contents (pane-contents scroller))) + ;;--- Hmm, if two "linked" panes have callbacks that cause the other + ;;--- pane to be scrolled, this will go into a loop... + (value-changed-callback scroll-bar contents (gadget-id scroll-bar) value))) (defclass scroll-bar-target-pane @@ -544,7 +549,6 @@ identity)))))))) - (defmethod handle-event :around ((pane scroll-bar-target-pane) (event pointer-button-press-event)) (with-sheet-medium (medium pane) @@ -553,7 +557,6 @@ (draw-target pane medium :filled t :ink +background-ink+) (draw-target pane medium :filled nil))) - ;;; This implements genera style scroll bars. ;;; Vertical Scroll bars ;;; Top Target @@ -605,8 +608,9 @@ scroll-bar client id orientation x y))))) (defmethod handle-event :after ((pane scroll-bar-shaft-pane) (event pointer-enter-event)) + (declare (special *pointer-documentation-output*)) (frame-manager-display-pointer-documentation-string - (frame-manager pane) *pointer-documentation-output* + (frame-manager pane) (pane-frame pane) *pointer-documentation-output* (ecase (gadget-orientation (slot-value pane 'scroll-bar)) (:vertical "L: This line to top; M: Proportional scrolling; R: Top line to here.") @@ -614,8 +618,9 @@ "L: This column to left edge; M: Proportional scrolling; R: Left edge to here.")))) (defmethod handle-event :after ((pane scroll-bar-target-pane) (event pointer-enter-event)) + (declare (special *pointer-documentation-output*)) (frame-manager-display-pointer-documentation-string - (frame-manager pane) *pointer-documentation-output* + (frame-manager pane) (pane-frame pane) *pointer-documentation-output* (ecase (gadget-orientation (slot-value pane 'scroll-bar)) (:vertical (ecase (slot-value pane 'end) @@ -631,12 +636,14 @@ "L: Next column; M: First screenful; R: Previous column.")))))) (defmethod handle-event :after ((pane scroll-bar-shaft-pane) (event pointer-exit-event)) + (declare (special *pointer-documentation-output*)) (frame-manager-display-pointer-documentation-string - (frame-manager pane) *pointer-documentation-output* nil)) + (frame-manager pane) (pane-frame pane) *pointer-documentation-output* nil)) (defmethod handle-event :after ((pane scroll-bar-target-pane) (event pointer-exit-event)) + (declare (special *pointer-documentation-output*)) (frame-manager-display-pointer-documentation-string - (frame-manager pane) *pointer-documentation-output* nil)) + (frame-manager pane) (pane-frame pane) *pointer-documentation-output* nil)) (defmethod handle-event :after ((pane scroll-bar-shaft-pane) (event pointer-event)) (deallocate-event event)) diff --git a/silica/sheet.lisp b/silica/sheet.lisp index 97e3346b..a3b39f62 100644 --- a/silica/sheet.lisp +++ b/silica/sheet.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: SILICA; Base: 10; Lowercase: Yes -*- -;; $fiHeader: sheet.lisp,v 1.32 92/12/01 09:46:32 cer Exp $ +;; $fiHeader: sheet.lisp,v 1.33 92/12/03 10:29:34 cer Exp $ (in-package :silica) @@ -400,7 +400,7 @@ (defclass primitive-sheet-output-mixin () ()) -(defclass mute-sheet-output-mixin () ()) +(defclass sheet-mute-output-mixin () ()) (defclass sheet-with-medium-mixin (standard-sheet-output-mixin) ((medium :initform nil :accessor sheet-medium) @@ -483,7 +483,8 @@ (apply #'port-invoke-with-pointer-grabbed (port sheet) sheet continuation options)) (defmethod port-invoke-with-pointer-grabbed :around - ((port basic-port) (sheet basic-sheet) continuation &key) + ((port basic-port) (sheet basic-sheet) continuation &key) + (declare (ignore continuation)) (letf-globally (((port-grabbing-sheet port) sheet)) (call-next-method))) diff --git a/silica/text-style.lisp b/silica/text-style.lisp index 241b6d8c..41e18eb4 100644 --- a/silica/text-style.lisp +++ b/silica/text-style.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: SILICA; Base: 10; Lowercase: Yes -*- -;; $fiHeader: text-style.lisp,v 1.16 92/11/19 14:25:06 cer Exp $ +;; $fiHeader: text-style.lisp,v 1.17 92/12/07 12:15:24 cer Exp $ (in-package :silica) @@ -659,7 +659,8 @@ (let ((tuples (gethash key mapping-table)) (last-tuple nil) (last-size nil)) - (dolist (tuple tuples (if (and tuples (not exact-size-required)) (cadar (last tuples)))) + (dolist (tuple tuples (and tuples (not exact-size-required) + (cadar (last tuples)))) (let ((font-size (text-style-size (car tuple)))) (if exact-size-required (when (= size font-size) diff --git a/sys/sysdcl.lisp b/sys/sysdcl.lisp index f5d5c2d5..9115073e 100644 --- a/sys/sysdcl.lisp +++ b/sys/sysdcl.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CL-USER; Base: 10; Lowercase: Yes -*- -;; $fiHeader: sysdcl.lisp,v 1.32 92/12/03 10:29:40 cer Exp $ +;; $fiHeader: sysdcl.lisp,v 1.33 92/12/07 12:15:30 cer Exp $ (in-package #-ANSI-90 :user #+ANSI-90 :cl-user) @@ -137,6 +137,7 @@ ("queue") ("timers" :load-before-compile ("queue" "processes")) ("protocols") + ;; Establish a uniform stream model ("clim-streams") ("cl-stream-classes" :features (not clim-uses-lisp-stream-classes)) @@ -343,38 +344,39 @@ ("x11-keysyms" :load-before-compile ("ffi")) ("last" :load-before-compile ("load-xlib" "xlib-funs"))) +#+Allegro (macrolet ((define-xt-system (name file &rest modules) - `(clim-defsys:defsystem ,name - (:default-pathname #+Genera "SYS:CLIM;REL-2;TK;" - #-Genera (frob-pathname "tk") - :default-binary-pathname #+Genera "SYS:CLIM;REL-2;TK;" - #-Genera (frob-pathname "tk") - :needed-systems (xlib) - :load-before-compile (xlib)) - (,file) - ("pkg") - ("macros") - ("xt-defs") ; Used to be 'xtk'. - ("xt-funs") - ("foreign-obj") - ;; Xlib stuff - ("xlib") - ("font") - ("gcontext") - ("graphics") - - ;; Toolkit stuff - ("meta-tk") - ("make-classes") - ("foreign") - ("widget") - ("resources") - ("event") - ("callbacks") - ("xt-classes") - ("xt-init") - ,@modules))) + `(clim-defsys:defsystem ,name + (:default-pathname #+Genera "SYS:CLIM;REL-2;TK;" + #-Genera (frob-pathname "tk") + :default-binary-pathname #+Genera "SYS:CLIM;REL-2;TK;" + #-Genera (frob-pathname "tk") + :needed-systems (xlib) + :load-before-compile (xlib)) + (,file) + ("pkg") + ("macros") + ("xt-defs") ; Used to be 'xtk'. + ("xt-funs") + ("foreign-obj") + ;; Xlib stuff + ("xlib") + ("font") + ("gcontext") + ("graphics") + ;; Toolkit stuff + ("meta-tk") + ("make-classes") + ("foreign") + ("widget") + ("resources") + ("event") + ("callbacks") + ("xt-classes") + ("xt-init") + ,@modules))) + (define-xt-system xm-tk "load-xm" ("xm-defs") ("xm-funs") @@ -396,7 +398,6 @@ ("ol-callbacks") ("make-widget"))) - #+Allegro (clim-defsys:defsystem motif-clim (:default-pathname #+Genera "SYS:CLIM;REL-2;TK-SILICA;" diff --git a/test/postscript-tests.lisp b/test/postscript-tests.lisp index 94de657a..34e67523 100644 --- a/test/postscript-tests.lisp +++ b/test/postscript-tests.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: LISP; Syntax: Common-lisp; Package: CLIM-USER; Base: 10; Lowercase: Yes -*- -;; $fiHeader: postscript-tests.lisp,v 1.2 92/10/28 11:32:17 cer Exp $ +;; $fiHeader: postscript-tests.lisp,v 1.3 92/12/01 09:46:38 cer Exp $ (in-package :clim-user) @@ -72,7 +72,7 @@ &body body) (let* ((command-name-string (command-name-from-symbol root-name)) (command-body-function-name (clim-utils:fintern "~A~A" (string root-name) '-function)) - (additional-key-args '((output '(member :view :buffer #+Allegro :print) + (additional-key-args '((output '(member :view :file :buffer #+Allegro :printer) :default *postscript-test-default-output*))) (postscript-test-name (clim-utils:fintern "~A~A" 'pcom- (string root-name))) (args arguments) @@ -96,15 +96,15 @@ :name ,command-name-string) ,args (ecase output - (:file - (with-open-file - (file-stream "postscript.output" :direction :output :if-exists :supersede) - (with-output-to-postscript-stream (*standard-output* file-stream) - ,command-body-form))) (:view (with-drawing-display-window (*standard-output*) ,command-body-form)) - (:print + (:file + (with-open-file + (file-stream "postscript.output" :direction :output :if-exists :supersede) + (with-output-to-postscript-stream (*standard-output* file-stream) + ,command-body-form))) + (:printer #+Allegro (with-open-stream (printer-stream-var diff --git a/test/test-suite.lisp b/test/test-suite.lisp index 87931945..06b2ae44 100644 --- a/test/test-suite.lisp +++ b/test/test-suite.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CLIM-USER; Base: 10; Lowercase: Yes -*- -;; $fiHeader: test-suite.lisp,v 1.49 92/12/07 12:15:37 cer Exp $ +;; $fiHeader: test-suite.lisp,v 1.50 92/12/14 15:03:43 cer Exp $ (in-package :clim-user) @@ -30,7 +30,7 @@ What about environment issue? (defmacro repeat (n &body body) (let ((i '#:i)) `(dotimes (,i ,n) - #-(or Minima Genera allegro) (declare (ignore i)) + #-(or minima genera allegro) (declare (ignore i)) ,@body))) (defmacro with-display-pane ((stream) &body body) @@ -41,7 +41,7 @@ What about environment issue? (defvar *all-the-tests* nil) (defmacro define-test ((name command-table) (stream) caption &body body) - #+Genera (declare (zwei:indentation 2 1)) + #+genera (declare (zwei:indentation 2 1)) (check-type caption (or null string)) (let ((command-name (clim-utils:fintern "~A-~A" 'com name))) `(progn @@ -93,21 +93,22 @@ What about environment issue? ,@body)))) (defun draw-grid (stream) - (with-mm-transformation (stream -x -y +x +y) - (draw-line* stream -x 0 +x 0 :line-thickness 2) - (draw-line* stream 0 -y 0 +y :line-thickness 2) - (do ((x (ceiling -x) (1+ x))) - ((> x +x)) - (unless (zerop x) - (if (zerop (mod x 10)) - (draw-line* stream x -y x +y :line-thickness 1) - (draw-line* stream x -1 x +1 :line-thickness 1)))) - (do ((y (ceiling -y) (1+ y))) - ((> y +y)) - (unless (zerop y) - (if (zerop (mod y 10)) - (draw-line* stream -x y +x y :line-thickness 1) - (draw-line* stream -1 y +1 y :line-thickness 1)))))) + (with-new-output-record (stream) + (with-mm-transformation (stream -x -y +x +y) + (draw-line* stream -x 0 +x 0 :line-thickness 2) + (draw-line* stream 0 -y 0 +y :line-thickness 2) + (do ((x (ceiling -x) (1+ x))) + ((> x +x)) + (unless (zerop x) + (if (zerop (mod x 10)) + (draw-line* stream x -y x +y :line-thickness 1) + (draw-line* stream x -1 x +1 :line-thickness 1)))) + (do ((y (ceiling -y) (1+ y))) + ((> y +y)) + (unless (zerop y) + (if (zerop (mod y 10)) + (draw-line* stream -x y +x y :line-thickness 1) + (draw-line* stream -1 y +1 y :line-thickness 1))))))) (defun draw-multiple-rectangles (stream &optional (size 10) (sx 0) (sy 0)) (with-mm-transformation (stream -x -y +x +y) @@ -671,24 +672,20 @@ people, shall not perish from the earth. (format-graphics-sample stream "Large Point" '(draw-point* 0 0 :line-thickness 5))) (formatting-graphics-samples (stream "Some Lines") (format-graphics-sample stream "Some Lines" - '(draw-lines* (0 0 10 100 50 50 90 100 100 10 40 50)))) + '(draw-lines* (0 0 10 100 50 50 90 100 100 10 40 50)))) (formatting-graphics-samples (stream "Some Rectangles") (format-graphics-sample stream "Some Rectangles" - '(draw-rectangles* (0 0 10 100 50 50 90 - 100 100 10 40 50))) - + '(draw-rectangles* (0 0 10 100 50 50 90 100 100 10 40 50))) (format-graphics-sample stream "A rectangle" '(draw-rectangle* 0 0 10 100)) (format-graphics-sample stream "A rectangles" '(draw-rectangle* 50 50 90 100 )) (format-graphics-sample stream "A rectangle" '(draw-rectangle* 100 10 40 50))) (with-rotation (stream .5) - (formatting-graphics-samples (stream "Some rotated rectangles") - (format-graphics-sample stream "Some Rectangles" - '(draw-rectangles* (0 0 10 100 50 50 90 - 100 100 10 40 - 50))) - (format-graphics-sample stream "A rectangle" '(draw-rectangle* 0 0 10 100)) - (format-graphics-sample stream "A rectangle" '(draw-rectangle* 50 50 90 100 )) - (format-graphics-sample stream "A rectangle" '(draw-rectangle* 100 10 40 50)))) + (formatting-graphics-samples (stream "Some rotated rectangles") + (format-graphics-sample stream "Some Rectangles" + '(draw-rectangles* (0 0 10 100 50 50 90 100 100 10 40 50))) + (format-graphics-sample stream "A rectangle" '(draw-rectangle* 0 0 10 100)) + (format-graphics-sample stream "A rectangle" '(draw-rectangle* 50 50 90 100 )) + (format-graphics-sample stream "A rectangle" '(draw-rectangle* 100 10 40 50)))) (formatting-graphics-samples (stream "Many Points") (format-graphics-sample stream "Many Small Points" '(draw-points* (0 0 10 110 50 50 90 110 100 10 50 40))) @@ -722,7 +719,7 @@ people, shall not perish from the earth. :towards-x x :towards-y 0))))) (define-test (negative-extent graphics) (stream) - "Draw things at -ve values. You should be able to scroll and see all of it" + "Draw things at negative values. You should be able to scroll and see all of it" (let ((x 400) (y 400)) (draw-point* stream (- x) 0 :ink +red+ :line-thickness 3) @@ -747,40 +744,39 @@ people, shall not perish from the earth. (dotimes (i 5) (unless (= i j) (sleep 0.25) - (copy-from-pixmap pixmap 0 0 100 100 medium (* j 100) (* i - 100)))))))) + (copy-from-pixmap pixmap 0 0 100 100 medium (* j 100) (* i 100)))))))) #+allegro (define-test (read-image-test graphics) (stream) "Test image reading code" (formatting-table (stream) - (dolist (name '("woman" "escherknot" "tie_fighter" "mensetmanus")) - (formatting-row (stream) - (formatting-cell (stream) - (write-string name stream)) - (formatting-cell (stream) - (let ((filename (format nil "/usr/include/X11/bitmaps/~A" name))) - (if (probe-file filename) - (let ((pattern (make-pattern-from-bitmap-file - filename - :designs - (list +background-ink+ +foreground-ink+)))) - (draw-rectangle* stream 0 0 (pattern-width pattern) (pattern-height pattern) :ink pattern)) - (write-string "not found" stream)))))))) + (dolist (name '("woman" "escherknot" "tie_fighter" "mensetmanus")) + (formatting-row (stream) + (formatting-cell (stream) + (write-string name stream)) + (formatting-cell (stream) + (let ((filename (format nil "/usr/include/X11/bitmaps/~A" name))) + (if (probe-file filename) + (let ((pattern (make-pattern-from-bitmap-file + filename + :designs + (list +background-ink+ +foreground-ink+)))) + (draw-rectangle* stream 0 0 (pattern-width pattern) (pattern-height pattern) :ink pattern)) + (write-string "not found" stream)))))))) (define-test (draw-some-bezier-curves graphics) (stream) "Draw bezier curve" (let ((points (list 0 0 100 300 300 300 400 0 200 200 150 30 0 0))) (formatting-item-list (stream) - (dolist (filled '(nil t)) - (formatting-cell (stream) - (with-scaling (stream 0.5) - (draw-bezier-curve* stream points :filled filled) - (do ((points points (cddr points))) - ((null points)) - (draw-point* stream (car points) (cadr points) :line-thickness 2 - :ink +red+)))))))) + (dolist (filled '(nil t)) + (formatting-cell (stream) + (with-scaling (stream 0.5) + (draw-bezier-curve* stream points :filled filled) + (do ((points points (cddr points))) + ((null points)) + (draw-point* stream (car points) (cadr points) + :line-thickness 2 :ink +red+)))))))) (defparameter *named-colors* '(+white+ +black+ +red+ +green+ +blue+ +yellow+ +cyan+ +magenta+ @@ -1175,13 +1171,13 @@ people, shall not perish from the earth. (define-test (simple-graph formatted-output) (stream) "Draw a graph showing the Green Line." (labels ((next-stops (stop) - #+Genera (declare (sys:downward-function)) + #+genera (declare (sys:downward-function)) (let ((next (cadr (find-green-line-stop stop *green-line-map*)))) (if (listp next) (mapcar #'car next) (list next)))) (find-green-line-stop (stop-name search-from) - #+Genera (declare (sys:downward-function)) + #+genera (declare (sys:downward-function)) (do ((stops search-from (cdr stops))) ((null stops)) (if (listp (car stops)) @@ -1190,7 +1186,7 @@ people, shall not perish from the earth. (when (string-equal stop-name (car stops)) (return stops))))) (draw-node (node stream) - #+Genera (declare (sys:downward-function)) + #+genera (declare (sys:downward-function)) (format stream "~A" node))) #+ignore (declare (dynamic-extent #'next-stops #'find-green-line-stop #'draw-node)) (format-graph-from-root "Lechmere" #'draw-node #'next-stops @@ -1252,36 +1248,34 @@ people, shall not perish from the earth. (sleep 2) (window-refresh stream))) +#+allegro (define-test (hairy-graph-formatting formatted-output) (stream) "Some hairy re-entrant and circular graphs" (formatting-item-list (stream) - (dolist (test '((nil (a (bbbb (ccc (dd eee) (fff ggg (hh (ii jj) kkk))) (lll (mmm nnn) (ooo ppp qqq))) r (s t))) - (t (a #1=(b (c #2= (d e #3=(f g)) (hhhhhhhhhh (i j k) l (m n o))))) + (dolist (test '((nil (a (bbbb (ccc (dd eee) (fff ggg (hh (ii jj) kkk))) + (lll (mmm nnn) (ooo ppp qqq))) r (s t))) + (t (a #1=(b (c #2=(d e #3=(f g)) (hhhhhhhhhh (i j k) l (m n o))))) (p (q (r (s t #3# u)))) (w (x #2# #1#))) - (t (a #11=(bbb (ccc (dd eee) (ffff g hhhhhhhh))) + (t (a #11=(bbb (ccc (dd eee) (ffff g hhhhhhhh))) (mm (nnn ooo #11#) (p #12=(q r (s t)))) (u (v (w (x #12#)))))) - (t (a #21= (b (c (d #21# e)) (f #22= (g (h i) j) k) #22#) (m n))) - (t #34=(a #31= (b (c (d #31# e)) (f #32= (g (h i #31#) j) k) #32#) (m #34# n))) - (t #51=(a #51#)) - (t #41=(aaa (bbb (ccc #41#)))) - )) - (formatting-cell (stream) - (destructuring-bind (merge . data) test - (flet ((printer-function (node stream) - (format stream "~A" (if (consp node) (car node) node))) - (child-function (node) - (and (consp node) (cdr node)))) - (format-graph-from-roots - data - #'printer-function - #'child-function - :stream stream - :cutoff-depth 8 - :merge-duplicates merge - ))))))) - + (t (a #21=(b (c (d #21# e)) (f #22=(g (h i) j) k) #22#) (m n))) + (t #34=(a #31=(b (c (d #31# e)) (f #32=(g (h i #31#) j) k) #32#) + (m #34# n))) + (t #51=(a #51#)) + (t #41=(aaa (bbb (ccc #41#)))))) + (formatting-cell (stream) + (destructuring-bind (merge . data) test + (flet ((printer-function (node stream) + (format stream "~A" (if (consp node) (car node) node))) + (child-function (node) + (and (consp node) (cdr node)))) + (format-graph-from-roots + data #'printer-function #'child-function + :stream stream + :cutoff-depth 8 + :merge-duplicates merge))))))) (define-test (filled-output formatted-output) (stream) "Some simple tests of filled output. The thing labelled <Click Here> should be sensitive." @@ -1495,8 +1489,6 @@ Luke Luck licks the lakes Luke's duck likes.")) (read-gesture :stream stream) (table-graphics-test-column i)))) - - ;;; Redisplay tests @@ -1716,24 +1708,25 @@ Luke Luck licks the lakes Luke's duck likes.")) (define-drag-and-drop-translator test-suite-dnd (drag-source string drop-target presentations) - (presentation destination-presentation) - (princ-to-string (list (presentation-object presentation) (presentation-object destination-presentation)))) - + (presentation destination-presentation) + (format nil "Dragged from ~D to ~D" + (presentation-object presentation) (presentation-object destination-presentation))) (define-test (drag-and-drop-tests presentations) (stream) "Try drag and drop" - (formatting-table (stream) - (dotimes (i 3) - (formatting-row (stream) - (formatting-cell (stream) - (with-output-as-presentation (stream i 'drag-source) - (format stream "Drag source ~D" i))) - (formatting-cell (stream) - (with-output-as-presentation (stream i 'drop-target) - (format stream "drop target ~D" i)))))) + (formatting-table (stream :x-spacing " ") + (dotimes (i 3) + (formatting-row (stream) + (formatting-cell (stream) + (with-output-as-presentation (stream i 'drag-source) + (format stream "Drag source ~D" i))) + (formatting-cell (stream) + (with-output-as-presentation (stream i 'drop-target) + (format stream "Drop target ~D" i)))))) (loop (terpri stream) (accept 'string :stream stream))) + ;;; Menus @@ -1755,7 +1748,7 @@ Luke Luck licks the lakes Luke's duck likes.")) :label "Select an activity"))) -#+Allegro +#+allegro (define-test (more-simple-menus menus-and-dialogs) (stream) "Popup a few menus" (macrolet ((doit (&body body) @@ -1776,15 +1769,15 @@ Luke Luck licks the lakes Luke's duck likes.")) (menu-choose '("akjdfkjdf" "bdfkj" "cdfkj") :label "foo" :text-style '(:fix :roman :huge))) (doit - (menu-choose '("akjdfkjdf" "bdfkj" "cdfkj") - :label '("Foo" :text-style (:serif :bold :huge)) - :text-style '(:fix :roman :huge))))) + (menu-choose '("akjdfkjdf" "bdfkj" "cdfkj") + :label '("Foo" :text-style (:serif :bold :huge)) + :text-style '(:fix :roman :huge))))) (define-test (graphical-menu menus-and-dialogs) (stream) "A menu that contains graphics." (let ((icon-list '(blockhead bubblehead pinhead))) (labels ((draw-icon (icon stream) - #+Genera (declare (sys:downward-function)) + #+genera (declare (sys:downward-function)) (ecase icon (blockhead (draw-rectangle* stream 0 0 20 20)) @@ -1793,7 +1786,7 @@ Luke Luck licks the lakes Luke's duck likes.")) (pinhead (draw-polygon* stream '(0 0 20 0 10 20))))) (draw-icon-menu (menu presentation-type) - #+Genera (declare (sys:downward-function)) + #+genera (declare (sys:downward-function)) (formatting-table (menu :y-spacing 5) (dolist (icon icon-list) (with-output-as-presentation ( menu @@ -1811,7 +1804,7 @@ Luke Luck licks the lakes Luke's duck likes.")) (define-test (choose-compass-direction menus-and-dialogs) (stream) "A more complicated graphical menu. Try pointing at one of the compass points." (labels ((draw-compass-point (stream ptype symbol x y) - #+Genera (declare (sys:downward-function)) + #+genera (declare (sys:downward-function)) (with-output-as-presentation ( stream symbol ptype) @@ -1819,7 +1812,7 @@ Luke Luck licks the lakes Luke's duck likes.")) :align-x :center :align-y :center :text-style '(:sans-serif :roman :large)))) (draw-compass (stream ptype) - #+Genera (declare (sys:downward-function)) + #+genera (declare (sys:downward-function)) (with-room-for-graphics (stream :first-quadrant nil) (draw-line* stream 0 25 0 -25 :line-thickness 2) (draw-line* stream 25 0 -25 0 :line-thickness 2) @@ -1987,52 +1980,52 @@ Luke Luck licks the lakes Luke's duck likes.")) "Create a bunch of readonly gadgets" (accepting-values (stream :own-window nil :label "Gadgets dialog" :align-prompts nil) - (macrolet ((do-presents (view &rest p) - `(progn - ,@(mapcar #'(lambda (x) - `(progn - (present ',(car x) ',(cadr x) - ,@(and view `(:view ,view)) - :prompt (format nil "~A,~A" - ',(cadr x) - ,(if (constantp view) - (if (eval view) `',(type-of (eval view)) :default) - `(if ,view (type-of ,view) :default))) - :stream stream) - (terpri stream))) - p)))) + (macrolet ((do-presents (view &rest p) + `(progn + ,@(mapcar #'(lambda (x) + `(progn + (present ',(car x) ',(cadr x) + ,@(and view `(:view ,view)) + :prompt (format nil "~A,~A" + ',(cadr x) + ,(if (constantp view) + (if (eval view) `',(type-of (eval view)) :default) + `(if ,view (type-of ,view) :default))) + :stream stream) + (terpri stream))) + p)))) - (formatting-item-list (stream :n-columns 2) - (formatting-cell (stream) - (with-aligned-prompts (stream) - (do-presents - nil - (5.0 real) - ("xxx" string) - (#P"/tmp/fooo" pathname) - (:a (member :a :b)) - ((:a :b) (subset :a :b)) - (( 3 4) (sequence integer)) - ;; sequence-enumerated - (t boolean)))) - (formatting-cell (stream) - (with-aligned-prompts (stream) - (do-presents - +text-field-view+ - (5.0 real) - ("xxx" string) - (#P"/tmp/fooo" pathname) - (:a (member :a :b)) - ((:a :b) (subset :a :b)) - (( 3 4) (sequence integer)) - ;; sequence-enumerated - (t boolean)))) + (formatting-item-list (stream :n-columns 2) + (formatting-cell (stream) + (with-aligned-prompts (stream) + (do-presents + nil + (5.0 real) + ("xxx" string) + (#P"/tmp/fooo" pathname) + (:a (member :a :b)) + ((:a :b) (subset :a :b)) + (( 3 4) (sequence integer)) + ;; sequence-enumerated + (t boolean)))) + (formatting-cell (stream) + (with-aligned-prompts (stream) + (do-presents + +text-field-view+ + (5.0 real) + ("xxx" string) + (#P"/tmp/fooo" pathname) + (:a (member :a :b)) + ((:a :b) (subset :a :b)) + (( 3 4) (sequence integer)) + ;; sequence-enumerated + (t boolean)))) - (formatting-cell (stream) - (with-aligned-prompts (stream) - (do-presents - '(text-editor-view :nlines 5 :ncolumns 30) - (" (do-presents + (formatting-cell (stream) + (with-aligned-prompts (stream) + (do-presents + '(text-editor-view :nlines 5 :ncolumns 30) + (" (do-presents +text-field-view+ (5.0 real) (xxx string) @@ -2042,15 +2035,14 @@ Luke Luck licks the lakes Luke's duck likes.")) (( 3 4) (sequence integer)) ;; sequence-enumerated (t boolean)) " - string)))) + string)))) - (formatting-cell (stream) - (with-aligned-prompts (stream) - (do-presents - +slider-view+ - (5.0 float) - (1 integer)))))))) - + (formatting-cell (stream) + (with-aligned-prompts (stream) + (do-presents + +slider-view+ + (5.0 float) + (1 integer)))))))) (defun gadgets-dialog-internal (stream &optional own-window) (macrolet ((accepts (&rest accepts) @@ -2092,7 +2084,6 @@ Luke Luck licks the lakes Luke's duck likes.")) (k (subset :red :blue :green) :view +list-pane-view+) (l (member :red :blue :green) :view +option-pane-view+)))))) - (define-test (input-editor-tests menus-and-dialogs) (stream) "Type lots of input editor commands" (loop @@ -2108,7 +2099,7 @@ Luke Luck licks the lakes Luke's duck likes.")) (defmacro define-benchmark ((name &key (iterations 1)) (stream) caption &body body) - #+Genera (declare (zwei:indentation 2 1)) + #+genera (declare (zwei:indentation 2 1)) (check-type caption (or null string)) (let ((function-name (intern (format nil "~A-~A" 'benchmark name) (symbol-package 'define-benchmark)))) @@ -2124,6 +2115,7 @@ Luke Luck licks the lakes Luke's duck likes.")) ;;--- It would be nice if we could measure consing, too (defparameter *multiply-factor* 1) +(defparameter *scale-iterations* t) (defun time-continuation (name iterations continuation &key (careful t)) (with-display-pane (stream) @@ -2132,30 +2124,32 @@ Luke Luck licks the lakes Luke's duck likes.")) (when careful (funcall continuation stream)) (let ((initial-scale-iterations 1)) - (repeat (* *multiply-factor* (if (not careful) 1 5)) - (window-clear stream) - #+Genera (si:%gc-scavenge) - #+Cloe-Runtime (gc-immediately) - #+Lucid (lucid-common-lisp:ephemeral-gc) - #+excl (excl::gc) - #+ccl (ccl:gc) - (do ((scale-iterations initial-scale-iterations (* scale-iterations 2))) - (nil) - (let ((start-time (get-internal-real-time)) - (vstart-time (get-internal-run-time))) - (repeat (* iterations scale-iterations) - (#+Genera mi:with-metering-enabled #-Genera progn - (funcall continuation stream)) - (force-output stream)) - (let ((vtime (/ (float (- (get-internal-run-time) vstart-time)) - internal-time-units-per-second)) - (rtime (/ (float (- (get-internal-real-time) start-time)) - internal-time-units-per-second))) - (when (or (> vtime 1) (> rtime 1)) - (setq initial-scale-iterations scale-iterations) - (push (/ rtime scale-iterations) results) - (push (/ vtime scale-iterations) vresults) - (return nil))))))) + #+genera (si:%gc-scavenge) + #+cloe-runtime (gc-immediately) + #+lucid (lucid-common-lisp:ephemeral-gc) + #+allegro (excl::gc) + #+ccl (ccl:gc) + (#+genera si:inhibit-gc-flips #-genera progn + (repeat (* *multiply-factor* (if (not careful) 1 5)) + (window-clear stream) + (do ((scale-iterations initial-scale-iterations (* scale-iterations 2))) + (nil) + (let ((start-time (get-internal-real-time)) + (vstart-time (get-internal-run-time))) + (repeat (* iterations scale-iterations) + (#+genera mi:with-metering-enabled #-genera progn + (funcall continuation stream)) + (force-output stream)) + (let ((vtime (/ (float (- (get-internal-run-time) vstart-time)) + internal-time-units-per-second)) + (rtime (/ (float (- (get-internal-real-time) start-time)) + internal-time-units-per-second))) + (when (or (null *scale-iterations*) + (or (> vtime 1) (> rtime 1))) + (setq initial-scale-iterations scale-iterations) + (push (/ rtime scale-iterations) results) + (push (/ vtime scale-iterations) vresults) + (return nil)))))))) (let ((time (if (not careful) (first results) @@ -2167,11 +2161,8 @@ Luke Luck licks the lakes Luke's duck likes.")) (let ((results (rest (butlast (sort vresults #'<))))) (/ (apply #'+ results) (length results)))))) (format (get-frame-pane *application-frame* 'caption-pane) - "~%Each run of ~A took about ~3$ real, ~3$ virtual, ~3$ v/r seconds" - name - time - vtime - (float (/ vtime time))) + "~%Each run of ~A took about ~3$ real, ~3$ virtual, ~3$ v/r seconds" + name time vtime (float (/ vtime time))) time)))) ;;; To distill the results down to something more easily interpretable by the @@ -2237,8 +2228,7 @@ Luke Luck licks the lakes Luke's duck likes.")) (run-benchmarks-internal pathname comment))) (define-command (run-benchmarks-to-dummy-file :command-table benchmarks :menu t) - (&key - (file '(null-or-type pathname) :default nil)) + ((file '(null-or-type pathname) :default nil)) (run-benchmarks-internal file "no comment")) (defun run-benchmarks-internal (pathname comment) @@ -2302,9 +2292,9 @@ Luke Luck licks the lakes Luke's duck likes.")) (unread-char ch file) (return)) (write-line (read-line file) s))) - #+Genera + #+genera (format s "~\\date\\~%" (file-write-date file)) - #-Genera + #-genera (format s "Date: ~D~%" (file-write-date file)))) (file-data (read file))) (push (list short-name comments file-data) data))))) @@ -2816,13 +2806,13 @@ Luke Luck licks the lakes Luke's duck likes.")) ("Prudential" "Symphony" "Northeastern" "Museum" "Brigham Circle" "Heath" "Arborway"))))) (labels ((next-stops (stop) - #+Genera (declare (sys:downward-function)) + #+genera (declare (sys:downward-function)) (let ((next (cadr (find-green-line-stop stop map)))) (if (listp next) (mapcar #'car next) (list next)))) (find-green-line-stop (stop-name search-from) - #+Genera (declare (sys:downward-function)) + #+genera (declare (sys:downward-function)) (do ((stops search-from (cdr stops))) ((null stops)) (if (listp (car stops)) @@ -2831,7 +2821,7 @@ Luke Luck licks the lakes Luke's duck likes.")) (when (string-equal stop-name (car stops)) (return stops))))) (draw-node (node stream) - #+Genera (declare (sys:downward-function)) + #+genera (declare (sys:downward-function)) (format stream "~A" node))) #+ignore (declare (dynamic-extent #'next-stops #'find-green-line-stop #'draw-node)) (fresh-line stream) @@ -3131,9 +3121,9 @@ Luke Luck licks the lakes Luke's duck likes.")) (define-application-frame clim-tests () - ((history-class :initarg :history-class - :initform 'standard-tree-output-history - :reader clim-tests-history-class)) + ((history-class :initarg :history-class + :initform 'standard-tree-output-history + :reader clim-tests-history-class)) (:command-table (clim-tests :inherit-from (graphics output-recording @@ -3153,6 +3143,7 @@ Luke Luck licks the lakes Luke's duck likes.")) (:command-definer nil) (:panes (caption-pane :application + :scroll-bars :vertical :height 50 :output-record (make-instance (clim-tests-history-class *application-frame*))) @@ -3161,12 +3152,12 @@ Luke Luck licks the lakes Luke's duck likes.")) (make-instance (clim-tests-history-class *application-frame*)))) (:layouts (:default - (vertically () caption-pane display-pane)))) + (vertically () caption-pane display-pane)))) (defmethod frame-standard-output ((frame clim-tests)) (get-frame-pane frame 'display-pane)) -#+Genera +#+genera (define-genera-application clim-tests :select-key #\Circle :width 600 :height 420) diff --git a/tk-silica/image.lisp b/tk-silica/image.lisp index d08f582f..e34881ea 100644 --- a/tk-silica/image.lisp +++ b/tk-silica/image.lisp @@ -20,7 +20,7 @@ ;; 52.227-19 or DOD FAR Supplement 252.227-7013 (c) (1) (ii), as ;; applicable. ;; -;; $fiHeader: image.lisp,v 1.7 92/12/03 10:30:08 cer Exp $ +;; $fiHeader: image.lisp,v 1.8 92/12/14 15:04:25 cer Exp $ (in-package :xm-silica) @@ -227,3 +227,4 @@ line)))) + diff --git a/tk-silica/ol-gadgets.lisp b/tk-silica/ol-gadgets.lisp index 8f282250..4efd0765 100644 --- a/tk-silica/ol-gadgets.lisp +++ b/tk-silica/ol-gadgets.lisp @@ -20,7 +20,7 @@ ;; 52.227-19 or DOD FAR Supplement 252.227-7013 (c) (1) (ii), as ;; applicable. ;; -;; $fiHeader: ol-gadgets.lisp,v 1.34 92/12/07 12:15:53 cer Exp $ +;; $fiHeader: ol-gadgets.lisp,v 1.35 92/12/14 15:04:28 cer Exp $ (in-package :xm-silica) @@ -644,7 +644,7 @@ (:horizontal :fixedrows) (:vertical :fixedcols)))))) -(defmethod value-changed-callback :around ((v gadget) +(defmethod value-changed-callback :around ((v basic-gadget) (client openlook-radio-box) (id t) (value t)) @@ -709,7 +709,7 @@ (:horizontal :fixedrows) (:vertical :fixedcols)))))) -(defmethod value-changed-callback :around ((v gadget) +(defmethod value-changed-callback :around ((v basic-gadget) (client openlook-check-box) (id t) (value t)) diff --git a/tk-silica/xm-silica.lisp b/tk-silica/xm-silica.lisp index 83d47bf3..c38d599e 100644 --- a/tk-silica/xm-silica.lisp +++ b/tk-silica/xm-silica.lisp @@ -18,7 +18,7 @@ ;; 52.227-19 or DOD FAR Supplement 252.227-7013 (c) (1) (ii), as ;; applicable. ;; -;; $fiHeader: xm-silica.lisp,v 1.29 92/12/01 09:47:09 cer Exp $ +;; $fiHeader: xm-silica.lisp,v 1.30 92/12/14 15:04:41 cer Exp $ (in-package :xm-silica) @@ -58,6 +58,13 @@ (defclass motif-geometry-manager (xt-geometry-manager) ()) +(defmethod change-widget-geometry ((parent tk::xm-dialog-shell) child + &rest args + &key x y width height) + (declare (ignore x y args)) + (tk::set-values child :width width :height height :x x :y y)) + + (defmethod find-shell-class-and-initargs ((port motif-port) sheet) (cond #+ignore diff --git a/tk-silica/xt-frames.lisp b/tk-silica/xt-frames.lisp index eb2b3045..ee97a63c 100644 --- a/tk-silica/xt-frames.lisp +++ b/tk-silica/xt-frames.lisp @@ -20,7 +20,7 @@ ;; 52.227-19 or DOD FAR Supplement 252.227-7013 (c) (1) (ii), as ;; applicable. ;; -;; $fiHeader: xt-frames.lisp,v 1.23 92/11/20 08:46:53 cer Exp $ +;; $fiHeader: xt-frames.lisp,v 1.24 92/12/01 09:47:12 cer Exp $ (in-package :xm-silica) @@ -194,4 +194,4 @@ (defmethod invoke-with-mouse-grabbed-in-window ((framem xt-frame-manager) (window t) continuation &key) - (silica::invoke-with-pointer-grabbed window continuation)) + (invoke-with-pointer-grabbed window continuation)) diff --git a/tk-silica/xt-graphics.lisp b/tk-silica/xt-graphics.lisp index 8f5d6c10..5dd6a16a 100644 --- a/tk-silica/xt-graphics.lisp +++ b/tk-silica/xt-graphics.lisp @@ -20,7 +20,7 @@ ;; 52.227-19 or DOD FAR Supplement 252.227-7013 (c) (1) (ii), as ;; applicable. ;; -;; $fiHeader: xt-graphics.lisp,v 1.57 92/12/03 10:30:22 cer Exp $ +;; $fiHeader: xt-graphics.lisp,v 1.58 92/12/14 15:04:44 cer Exp $ (in-package :tk-silica) @@ -40,14 +40,14 @@ 'last-line-style) ,value))) -(defmacro ink-gcontext-last-clip-mask (gcontext) +(defmacro ink-gcontext-last-medium-clip-mask (gcontext) `(locally (declare (optimize (speed 3) (safety 0))) (excl::slot-value-using-class-name 'ink-gcontext ,gcontext - 'last-clip-mask))) -(defsetf ink-gcontext-last-clip-mask (gcontext) (value) + 'last-medium-clip-mask))) +(defsetf ink-gcontext-last-medium-clip-mask (gcontext) (value) `(locally (declare (optimize (speed 3) (safety 0))) (setf (excl::slot-value-using-class-name 'ink-gcontext ,gcontext - 'last-clip-mask) + 'last-medium-clip-mask) ,value))) (defmacro ink-gcontext-shift-tile-origin (gcontext) @@ -187,7 +187,7 @@ (incf j 2)) (tk::store-colors colormap xcolors n)))) -;;; things we can install in a palete +;;; things we can install in a palette ;;; 1 - color (rgb etc) ;;; 2 - dynamic-color ;;; 3 - layered-color or it's layered-color-set @@ -629,6 +629,7 @@ and on color servers, unless using white or black") (or (gethash ink ink-table) (setf (gethash ink ink-table) (decode-pattern-ink ink medium))))) + (defmethod decode-color ((design design) (medium xt-medium)) (decode-color-in-palette design (medium-palette medium))) @@ -985,6 +986,7 @@ and on color servers, unless using white or black") (setf (gethash ink ink-table) (multiple-value-bind (pattern width height) (decode-rectangular-tile ink) + (setf (gethash pattern ink-table) (multiple-value-bind (array designs) (decode-extended-pattern pattern width height) (let* ((image-data (make-array (list height width))) @@ -1051,8 +1053,7 @@ and on color servers, unless using white or black") (tk::gcontext-background gc) (or two-color-bg 0)) (setf (tk::gcontext-tile gc) pixmap (tk::gcontext-fill-style gc) :tiled)) - gc)))))))) - + gc))))))))) @@ -1232,7 +1233,7 @@ and on color servers, unless using white or black") thickness 0 2pi t))))))) - (defmethod medium-draw-points* ((medium xt-medium) position-seq) +(defmethod medium-draw-points* ((medium xt-medium) position-seq) (let ((drawable (medium-drawable medium))) (when drawable (let* ((ink (medium-ink medium)) @@ -1378,6 +1379,36 @@ and on color servers, unless using white or black") points npoints)))))) +(defmethod medium-draw-rectangle* ((medium xt-medium) x1 y1 x2 y2 filled) + (let ((drawable (medium-drawable medium))) + (when drawable + (let* ((ink (medium-ink medium)) + (sheet (medium-sheet medium)) + (transform (sheet-device-transformation sheet))) + (assert (rectilinear-transformation-p transform)) + (convert-to-device-coordinates transform + x1 y1 x2 y2) + ;; Clipping a rectangle is ridiculously easy. + (unless (valid-point-p x1 y1) + (setq x1 (min (max -32000 (the fixnum x1)) 32000)) + (setq y1 (min (max -32000 (the fixnum y1)) 32000))) + (unless (valid-point-p x2 y2) + (setq x2 (min (max -32000 (the fixnum x2)) 32000)) + (setq y2 (min (max -32000 (the fixnum y2)) 32000))) + (let ((min-x (min (the fixnum x1) (the fixnum x2))) + (min-y (min (the fixnum y1) (the fixnum y2)))) + (declare (fixnum min-x min-y)) + (tk::draw-rectangle + drawable + (adjust-ink (decode-ink ink medium) + medium + (medium-line-style medium) + min-x min-y) + min-x min-y + (fast-abs (the fixnum (- (the fixnum x2) (the fixnum x1)))) + (fast-abs (the fixnum (- (the fixnum y2) (the fixnum y1)))) + filled)))))) + (defmethod medium-draw-rectangles* ((medium xt-medium) rectangles filled) (let ((drawable (medium-drawable medium))) (when drawable @@ -1431,36 +1462,6 @@ and on color servers, unless using white or black") nrects filled)))))) -(defmethod medium-draw-rectangle* ((medium xt-medium) x1 y1 x2 y2 filled) - (let ((drawable (medium-drawable medium))) - (when drawable - (let* ((ink (medium-ink medium)) - (sheet (medium-sheet medium)) - (transform (sheet-device-transformation sheet))) - (assert (rectilinear-transformation-p transform)) - (convert-to-device-coordinates transform - x1 y1 x2 y2) - ;; Clipping a rectangle is ridiculously easy. - (unless (valid-point-p x1 y1) - (setq x1 (min (max -32000 (the fixnum x1)) 32000)) - (setq y1 (min (max -32000 (the fixnum y1)) 32000))) - (unless (valid-point-p x2 y2) - (setq x2 (min (max -32000 (the fixnum x2)) 32000)) - (setq y2 (min (max -32000 (the fixnum y2)) 32000))) - (let ((min-x (min (the fixnum x1) (the fixnum x2))) - (min-y (min (the fixnum y1) (the fixnum y2)))) - (declare (fixnum min-x min-y)) - (tk::draw-rectangle - drawable - (adjust-ink (decode-ink ink medium) - medium - (medium-line-style medium) - min-x min-y) - min-x min-y - (fast-abs (the fixnum (- (the fixnum x2) (the fixnum x1)))) - (fast-abs (the fixnum (- (the fixnum y2) (the fixnum y1)))) - filled)))))) - (defmethod medium-draw-polygon* ((medium xt-medium) position-seq closed filled) (medium-draw-polygon-1 medium position-seq closed filled)) @@ -1741,7 +1742,7 @@ and on color servers, unless using white or black") (declare (ignore oy) (ignore ox)) (setf (tk::gcontext-clip-mask gcontext) pixmap) - (setf (ink-gcontext-last-clip-mask gcontext) nil) + (setf (ink-gcontext-last-medium-clip-mask gcontext) nil) (unless start (setq start 0)) (unless end (setq end (length string))) (dotimes (i (- end start)) @@ -1938,79 +1939,3 @@ and on color servers, unless using white or black") (defmethod medium-finish-output ((medium xt-medium)) (x11:xsync (port-display (port medium)) 0)) - - -(defmethod medium-draw-bezier-curve* ((medium xt-medium) points filled) - (let* ((npoints (length points)) - (last (1- npoints)) - (new-points (cons nil nil)) - (head new-points) - (distance 1)) - - (assert (evenp npoints)) - (assert (zerop (mod (- (/ npoints 2) 4) 3))) - - (flet ((collect (x y) - (let ((more (list x y))) - (setf (cdr new-points) more - new-points (cdr more))))) - (declare (dynamic-extent #'collect)) - (collect (elt points 0) (elt points 1)) - - (do ((i 0 (+ i 6))) - ((= i (1- last))) - (render-bezier #'collect - (elt points i) - (elt points (+ 1 i)) - (elt points (+ 2 i)) - (elt points (+ 3 i)) - (elt points (+ 4 i)) - (elt points (+ 5 i)) - (elt points (+ 6 i)) - (elt points (+ 7 i)) - distance) - (collect (elt points (+ 6 i)) (elt points (+ 7 i))))) - - (medium-draw-polygon-1 medium (cdr head) nil filled))) - - -(defun render-bezier (fn x0 y0 x1 y1 x2 y2 x3 y3 distance) - (let ((d1 (distance-from-line x0 y0 x3 y3 x1 y1)) - (d2 (distance-from-line x0 y0 x3 y3 x2 y2))) - (if (and (< d1 distance) (< d2 distance)) - nil - (multiple-value-bind - (x00 y00 x10 y10 x20 y20 x30 y30 x01 y01 x11 y11 x21 y21 x31 y31) - (split-bezier x0 y0 x1 y1 x2 y2 x3 y3) - (render-bezier fn x00 y00 x10 y10 x20 y20 x30 y30 distance) - (funcall fn x30 y30) - (render-bezier fn x01 y01 x11 y11 x21 y21 x31 y31 - distance))))) - - -(defun split-bezier (x0 y0 x1 y1 x2 y2 x3 y3) - ;; We should write a matrix multiplication macro - (values - ;; The first 1/2 - x0 y0 - (+ (/ x0 2) (/ x1 2)) (+ (/ y0 2) (/ y1 2)) - (+ (/ x0 4) (/ x1 2) (/ x2 4)) (+ (/ y0 4) (/ y1 2) (/ y2 4)) - (+ (* x0 1/8) (* x1 3/8) (* x2 3/8) (* x3 1/8)) (+ (* y0 1/8) (* y1 3/8) (* y2 3/8) (* y3 1/8)) - ;; The second 1/2 - (+ (* x0 1/8) (* x1 3/8) (* x2 3/8) (* x3 1/8)) (+ (* y0 1/8) (* y1 3/8) (* y2 3/8) (* y3 1/8)) - (+ (/ x1 4) (/ x2 2) (/ x3 4)) (+ (/ y1 4) (/ y2 2) (/ y3 4)) - (+ (/ x2 2) (/ x3 2)) (+ (/ y2 2) (/ y3 2)) - x3 y3)) - -(defun distance-from-line (x0 y0 x1 y1 x y) - (let* ((dx (- x1 x0)) - (dy (- y1 y0)) - (r-p-x (- x x0)) - (r-p-y (- y y0)) - (dot-v (+ (* dx dx) (* dy dy))) - (dot-r-v (+ (* r-p-x dx) (* r-p-y dy))) - (closest-x (+ x0 (* (/ dot-r-v dot-v) dx))) - (closest-y (+ y0 (* (/ dot-r-v dot-v) dy)))) - (let ((ax (- x closest-x)) - (ay (- y closest-y))) - (values (+ (* ax ax) (* ay ay)) closest-x closest-y)))) diff --git a/tk-silica/xt-silica.lisp b/tk-silica/xt-silica.lisp index 0f17abae..fdd060e0 100644 --- a/tk-silica/xt-silica.lisp +++ b/tk-silica/xt-silica.lisp @@ -20,7 +20,7 @@ ;; 52.227-19 or DOD FAR Supplement 252.227-7013 (c) (1) (ii), as ;; applicable. ;; -;; $fiHeader: xt-silica.lisp,v 1.63 92/12/07 12:16:00 cer Exp $ +;; $fiHeader: xt-silica.lisp,v 1.64 92/12/14 15:04:49 cer Exp $ (in-package :xm-silica) @@ -97,12 +97,13 @@ (port-terminated port condition) (mp:process-kill mp:*current-process*)))) + (defparameter *use-color* t) ; For debugging monochrome (defvar *unreliable-server-vendors* '("Solbourne Computer, Inc" "Network Computing Devices" "Tektronix")) - + (defmethod initialize-instance :after ((port xt-port) &key server-path) (handler-case (destructuring-bind @@ -246,13 +247,13 @@ (apply #'make-stipple-image (second entry)))) '((+nowhere+ (1 1 (#b0))) (0.05 (8 16 (#b1000000000000000 - #b0000001000000000 - #b0000000000001000 - #b0010000000000000 - #b0000000010000000 - #b0000000000000010 - #b0000100000000000 - #b0000000000100000))) + #b0000001000000000 + #b0000000000001000 + #b0010000000000000 + #b0000000010000000 + #b0000000000000010 + #b0000100000000000 + #b0000000000100000))) (0.1 (8 8 (#b10000000 #b00010000 #b00000010 @@ -286,13 +287,13 @@ #b11011111 #b11111011))) (0.9 (8 16 (#b0111111111111111 - #b1111110111111111 - #b1111111111110111 - #b1101111111111111 - #b1111111101111111 - #b1111111111111101 - #b1111011111111111 - #b1111111111011111))) + #b1111110111111111 + #b1111111111110111 + #b1101111111111111 + #b1111111101111111 + #b1111111111111101 + #b1111011111111111 + #b1111111111011111))) (+everywhere+ (1 1 (#b1)))))) @@ -1308,7 +1309,7 @@ ;;;--- Gadget activation deactivate -(defmethod realize-mirror :around ((port xt-port) (sheet gadget)) +(defmethod realize-mirror :around ((port xt-port) (sheet basic-gadget)) (let ((widget (call-next-method))) (unless (gadget-active-p sheet) (xt::set-sensitive widget nil)) @@ -1691,7 +1692,7 @@ the geometry of the children. Instead the parent has control. ")) 0 ; time ))) -(defmethod clim-internals::port-move-frame ((port xt-port) frame x y) +(defmethod port-move-frame ((port xt-port) frame x y) (check-type x (signed-byte 16)) (check-type y (signed-byte 16)) (tk::set-values (frame-shell frame) :x x :y y)) diff --git a/tk/gcontext.lisp b/tk/gcontext.lisp index 524dfc60..b68569cd 100644 --- a/tk/gcontext.lisp +++ b/tk/gcontext.lisp @@ -20,7 +20,7 @@ ;; 52.227-19 or DOD FAR Supplement 252.227-7013 (c) (1) (ii), as ;; applicable. ;; -;; $fiHeader: gcontext.lisp,v 1.19 92/07/01 15:44:30 cer Exp $ +;; $fiHeader: gcontext.lisp,v 1.20 92/12/02 13:31:15 colin Exp $ (in-package :tk) @@ -363,7 +363,7 @@ 0 ; clip-y-origin rs n - x11:unsorted))) + x11:unsorted))) (defmethod (setf gcontext-clip-mask) ((nv (eql :nowhere)) (gc gcontext)) (x11:xsetcliprectangles diff --git a/tk/graphics.lisp b/tk/graphics.lisp index 6a7972e8..c9191d66 100644 --- a/tk/graphics.lisp +++ b/tk/graphics.lisp @@ -20,7 +20,7 @@ ;; 52.227-19 or DOD FAR Supplement 252.227-7013 (c) (1) (ii), as ;; applicable. ;; -;; $fiHeader: graphics.lisp,v 1.11 92/12/01 09:46:50 cer Exp $ +;; $fiHeader: graphics.lisp,v 1.12 92/12/03 10:30:01 cer Exp $ (in-package :tk) @@ -114,7 +114,6 @@ y width height))) - (defun draw-rectangles (drawable gcontext rects nrects &optional fill-p) (if fill-p @@ -127,6 +126,7 @@ drawable gcontext rects nrects))) + #+ignore (defun text-extents (font sequence &key (start 0) end translate) (unless end (setq end (length sequence))) diff --git a/tk/xlib.lisp b/tk/xlib.lisp index 8884a249..340045fb 100644 --- a/tk/xlib.lisp +++ b/tk/xlib.lisp @@ -20,7 +20,7 @@ ;; 52.227-19 or DOD FAR Supplement 252.227-7013 (c) (1) (ii), as ;; applicable. ;; -;; $fiHeader: xlib.lisp,v 1.35 92/12/02 13:31:21 colin Exp $ +;; $fiHeader: xlib.lisp,v 1.36 92/12/07 12:15:45 cer Exp $ (in-package :tk) @@ -194,15 +194,6 @@ (asynchronous :reader x-error-asynchronous :initarg :asynchronous)) (:report report-x-error)) -(define-condition x-connection-lost (error) - ((display :reader x-error-display :initarg :display)) - (:report report-x-connection-lost)) - -(defun report-x-connection-lost (condition stream) - (let ((display (x-error-display condition))) - (format stream "Xlib: Connection to X11 server '~a' lost" - (ff:char*-to-string (x11:display-display-name display))))) - (defun report-x-error (condition stream) (let ((display (x-error-display condition)) (error-code (x-error-error-code condition)) @@ -236,12 +227,20 @@ :serial (x11:xerrorevent-serial event) :current-serial (x11:display-request display)))) +(define-condition x-connection-lost (error) + ((display :reader x-error-display :initarg :display)) + (:report report-x-connection-lost)) + +(defun report-x-connection-lost (condition stream) + (let ((display (x-error-display condition))) + (format stream "Xlib: Connection to X11 server '~a' lost" + (ff:char*-to-string (x11:display-display-name display))))) + (defun-c-callable x-io-error-handler ((display :unsigned-long)) (let ((*error-output* excl:*initial-terminal-io*)) (error 'x-connection-lost :display display))) - (defun get-error-text (code display-handle) (let ((s (make-string 1000))) (x11::xgeterrortext display-handle code s 1000) diff --git a/utils/lisp-utilities.lisp b/utils/lisp-utilities.lisp index b30e762d..72318a36 100644 --- a/utils/lisp-utilities.lisp +++ b/utils/lisp-utilities.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CLIM-UTILS; Base: 10; Lowercase: Yes -*- -;; $fiHeader: lisp-utilities.lisp,v 1.26 92/12/03 10:30:41 cer Exp $ +;; $fiHeader: lisp-utilities.lisp,v 1.27 92/12/14 15:04:58 cer Exp $ (in-package :clim-utils) @@ -660,34 +660,30 @@ ,@body)) (defun remove-keywords (list keywords) - (macrolet ((kernel (predicate) + (macrolet ((remove-keywords-1 (name-var predicate-form) `(let ((head nil) (tail nil)) (do () ((null list)) - (let ((name (pop list)) + (let ((,name-var (pop list)) (value (pop list))) - (when (not (,predicate name)) - (setq tail (setq head (list name value))) + (unless ,predicate-form + (setq tail (setq head (list ,name-var value))) (return)))) (do () ((null list) head) - (let ((name (pop list)) + (let ((,name-var (pop list)) (value (pop list))) - (when (not (,predicate name)) - (setq tail (setf (cddr tail) (list name value))))))))) + (unless ,predicate-form + (setq tail (setf (cddr tail) (list ,name-var value))))))))) (cond ((null list) nil) ((null keywords) list) ;; Special case: use EQ instead of MEMBER when only one keyword is supplied. ((null (cdr keywords)) (let ((keyword (car keywords))) - (flet ((eq-predicate (name) (eq name keyword))) - (declare (dynamic-extent #'eq-predicate)) - (kernel eq-predicate)))) + (remove-keywords-1 name (eq name keyword)))) (t - (flet ((member-predicate (name) (member name keywords))) - (declare (dynamic-extent #'member-predicate)) - (kernel member-predicate)))))) + (remove-keywords-1 name (member name keywords)))))) ) ;#-(or Genera Cloe-Runtime) diff --git a/utils/packages.lisp b/utils/packages.lisp index eb190b81..81002591 100644 --- a/utils/packages.lisp +++ b/utils/packages.lisp @@ -1,6 +1,6 @@ ;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CL-USER; Base: 10; Lowercase: Yes -*- -;; $fiHeader: packages.lisp,v 1.43 92/12/07 12:16:09 cer Exp $ +;; $fiHeader: packages.lisp,v 1.44 92/12/14 15:05:03 cer Exp $ (in-package #-ANSI-90 :user #+ANSI-90 :common-lisp-user) @@ -1467,6 +1467,7 @@ using-resource ;; Processes + *multiprocessing-p* all-processes current-process destroy-process @@ -1794,9 +1795,13 @@ map-sheet-rectangle*-to-parent medium medium-background + medium-beep + medium-clear-area medium-clipping-region medium-default-text-style medium-drawable + medium-finish-output + medium-force-output medium-foreground medium-ink medium-line-style @@ -1805,12 +1810,9 @@ medium-text-style medium-transformation mediump + mirrored-sheet-mixin move-and-resize-sheet move-sheet - mute-input-contract - mute-repainting-mixin - mute-sheet-input-mixin - mute-sheet-output-mixin note-sheet-adopted note-sheet-degrafted note-sheet-disabled @@ -1885,11 +1887,16 @@ sheet-mirror sheet-mirrored-ancestor sheet-multiple-child-mixin + sheet-mute-input-mixin + sheet-mute-output-mixin + sheet-mute-repainting-mixin sheet-native-region sheet-native-region* sheet-native-transformation sheet-occluding-sheets sheet-parent + sheet-parent-mixin + sheet-permanently-enabled-mixin sheet-pointer-cursor sheet-region sheet-siblings @@ -2673,8 +2680,16 @@ frame-input-context-button-press-handler frame-maintain-presentation-histories frame-manager + frame-manager-clear-progress-note + frame-manager-default-exit-boxes + frame-manager-display-help + frame-manager-display-pointer-documentation + frame-manager-display-pointer-documentation-string + frame-manager-display-progress-note + frame-manager-exit-box-labels frame-manager-frames frame-manager-notify-user + frame-manager-pointer-documentation-stream frame-manager-select-file frame-name frame-named-panes @@ -2820,6 +2835,7 @@ activate-callback activate-gadget armed-callback + basic-gadget check-box check-box-current-selection check-box-pane @@ -3059,7 +3075,6 @@ extract-declarations ;; From UTILITIES - *multiprocessing-p* boolean collect def-property-slot-accessors @@ -3083,8 +3098,6 @@ convert-to-device-coordinates convert-to-device-distances copy-vector-portion - define-constructor - define-constructor-using-prototype-instance define-group define-keywords defun-inline @@ -3142,7 +3155,8 @@ diacritic-char-p ;; From CLOS - find-dynamic-class + define-constructor + define-constructor-using-prototype-instance ;; From QUEUE locking-queue @@ -3196,13 +3210,6 @@ role-slots stream - ;; From AUTOCONSTRUCTOR - autoconstructor - defautoconstructor - disable-autoconstructors - enable-autoconstructors - make-instance-with-constructor - ;; From CLIM-MACROS default-input-stream default-output-stream @@ -3361,7 +3368,6 @@ clear-space-requirement-cache clear-space-requirement-caching-in-ancestors clear-space-requirement-caches-in-tree - click-event client-overridability-mixin compute-gadget-label-size compute-list-pane-selected-items @@ -3380,11 +3386,9 @@ define-graphics-method define-text-style-mappings define-text-style-mappings-1 - display-device distribute-event-1 drag-gadget-event draw-gadget-label - fetch-medium-drawable find-port-type fit-region*-in-region* focus-gadget @@ -3392,13 +3396,6 @@ focus-out-gadget-event foreground-background-and-text-style-mixin frame-input-buffer - frame-manager-clear-progress-note - frame-manager-default-exit-boxes - frame-manager-display-help - frame-manager-display-progress-note - frame-manager-display-pointer-documentation - frame-manager-display-pointer-documentation-string - frame-manager-exit-box-labels frame-manager-matches-options-p frame-manager-note-pretty-name-changed frame-shell @@ -3426,11 +3423,11 @@ grid-pane inhibit-updating-scroll-bars initialize-pull-down-menu - intern-text-style invoke-callback-function invoke-with-menu-as-popup invoke-with-mouse-grabbed-in-window invoke-with-output-to-pixmap + invoke-with-pointer-grabbed invoke-with-sheet-medium label-button-pane layout-mixin @@ -3445,10 +3442,7 @@ map-endpoint-sequence map-position-sequence medium-+y-upward-p - medium-beep - medium-clear-area - medium-finish-output - medium-force-output + medium-draw-transformed-rectangles* medium-merged-text-style-valid medium-text-bounding-box menu-bar-button @@ -3463,14 +3457,10 @@ mirror-region* mirror-region-updated mirror-visible-p - mirrored-sheet-mixin modifier-keysym - mute-repainting-mixin non-drawing-option-keywords note-layout-mixin-region-changed note-sheet-tree-grafted - one-of-pane - option-pane pane-contents parse-gesture-spec pixmap @@ -3498,6 +3488,7 @@ port-invalidate-gesture-specs port-invoke-with-pointer-grabbed port-mirror->sheet-table + port-move-frame port-note-cursor-change port-note-frame-adopted port-note-gadget-activated @@ -3533,9 +3524,6 @@ sheet-cached-device-transformation sheet-cursor sheet-grabbed-pointer-cursor - sheet-mute-input-mixin - sheet-parent-mixin - sheet-permanently-enabled-mixin sheet-shell sheet-top-level-mirror sheet-top-level-sheet @@ -3609,9 +3597,9 @@ (#-(or ANSI-90 Lucid) clim-lisp::defpackage #+(or ANSI-90 Lucid) defpackage clim-user (:use clim-lisp clim)) -;;;; Nasty hack to improve debugability -;;;; Dont need it right now. -;#+allegro +;;; Nasty hack to improve debuggability +;;; Dont need it right now. +;#+Allegro ;(let ((package (find-package :compiler)) ; (symbol (and package (intern :bad-to-tailpos package)))) ; (when (boundp symbol) -- GitLab