Daniel Kochmanski
Daniel Kochmanski
When parsing commands in the interactor it is easy to encounter nuisances. The following program illustrates a few of them (see the top comment): ```common-lisp ;;; issues: ;;; ;;; 1....
Specify and document how the user could supply the numeric argument for the command (a numeric argument marker). Numeric markers are mentioned, a condition is defined in the specification (see...
for menu items that are sub-menus (another command tables) - for the time of the composition the frame's command table is temporarily changed.
Commands are inherited by means of shadowing by the command line name. There are no provisions for that in inherited menu names and keystroke accelerators.
with-room-for-graphics is specified here: http://bauhh.dyndns.org:8000/clim-spec/15-4.html#_815 We have interpreted this as an operator that creates the area below the cursor position to allow inserting some graphics, while the specification seems to...
When we scale the pattern, then the clipping region is not correctly computed (during replay?). This may be a CLX-specific problem. If we remove the scaling transformation things seem to...
Steps to reproduce: ``` (in-package #:clim-user) (define-application-frame foo () () (:geometry :width 800 :height 600)) (define-foo-command (com-foo :name t) ((something 'foo :default *application-frame*)) (print something)) (define-foo-command (com-bar :name t) ((something...
This is hinted in the definition of the function clear-output-record. All output records have specified x-position and y-position, so empty compound output records are located somewhere; however we don't account...
Steps to reproduce: 1. start the listener 2. ,show class subclasses t 3. try to scroll around For smaller graphs it is OK. This is too slow.
Steps to reproduce: 1. compile the following ```common-lisp (in-package :clim-user) (define-application-frame test () () (:pane :application)) (defvar *test-frame* nil) (defun test () (setf *test-frame* (make-application-frame 'test)) (clim-sys:make-process (lambda () (run-frame-top-level...