admich

Results 30 issues of admich

For the specification (http://bauhh.dyndns.org:8000/clim-spec/24-1.html#_1303) `with-input-editor-typeout`: > If stream is a stream that is not an input editing stream, then > with-input-editor-typeout is equivalent to calling fresh-line, > evaluating the body,...

specification

When `accept` an `or` presentation type the completation is not available. For example in `(accept '(null-or-type pathname))` the completation of pathname doesn't work.

enhancement

In the listener I call `accept` with output recording disabled like this: `(with-output-recording-options (*standard-output* :record nil) (accept 'string))` If I hide the listener frame and then I redisplay it, the...

bug

In CLIM Specification are defined different kind of regions and transformations. From a discusion on the mailing-list between me (@admich) and @dkochmanski emerged that it is not completely clear what...

enhancement

`(accept 'pathname)` automatically complete the input string with an existing file if the completion is unique. The completion is made without any input key press from the user (like TAB)....

bug

I have the same issue reported in #899 so I tryed to solve it and I found several issue related to pointer. Problem with the spec: 1. The pointer slot...

In McCLIM commands with keyword arguments have several problems: 1. There aren't Help/Completion/Possibilities mechanism to aid the user too provide keywords. 2. If the keyword has a #\- character it...

bug

In demo "Option test" if you open the popup menu and then you close the appllication frame the window of the popup isn't destroyed, and stay on the screen on...

bug

In McCLIM a menu isn't a full application-frame, but its implemented with `menu-frame`. `(pane-frame pane)` where pane is a pane in the menu tree return not the menu frame but...

The method `rectilinear-transformation-p` must return true for a rotation of pi/2, but it return `nil`: ``` (rectilinear-transformation-p (make-rotation-transformation (/ pi 2))) ``` This is a known problem because there is...

enhancement