Francisco Vides Fernández | 13 Dec 2009 20:54

Re: A few patches for making cells (3.0 from cvs) run on debian unstable using sbcl.

Hi

I've just installed cells for evaluation purposes, and been bitten for this 
very same problem.

Maybe some nice comittin'?

Thanks for this interesting project!

Peder Chr. =?iso-8859-1?q?N=F8rgaard?= wrote:

> Hello cells-devel list.
> I am investigating cells and cells-gtk3 for a project that I am planning. 
> For a starter, I needed to get the software running on my Debian unstable
> system.  It needed a few patches that you may wish to take into your
> development.
> 
> The version of cells that I use is taken with
> 
> cvs -z3 -d
> :pserver:anonymous:anonymous <at> common-lisp.net:/project/cells/cvsroot co
> cells
> 
> That is the most actual one, yes?
> 
> Well, the sbcl on Debian unstable (1.0.18) does not have nor need the EXCL
> package. So it must be configured out:
> 
> diff -u -r cells/defpackage.lisp cl/cells/defpackage.lisp
> --- cells/defpackage.lisp	2008-10-12 03:21:07.000000000 +0200
(Continue reading)

Ramarren | 14 Dec 2009 10:47
Picon
Gravatar

Re: A few patches for making cells (3.0 from cvs) run on debian unstable using sbcl.

2009/12/13 Francisco Vides Fernández <fvides <at> dedaloingenieros.com>:
> Hi
>
> I've just installed cells for evaluation purposes, and been bitten for this
> very same problem.
>
> Maybe some nice comittin'?
>
> Thanks for this interesting project!
>

Hello,

I have some time ago created a repository on GitHub:
http://github.com/Ramarren/cells with a collection of small fixes for
Cells (and cells-gtk3 http://github.com/Ramarren/cells-gtk3 ).
Unfortunately it haven't been merged into the main repository on
common-lisp.net because maintainers are too busy with other things.

Regards,
Jakub Higersberger

Frank Goenninger | 14 Dec 2009 10:44

Re: A few patches for making cells (3.0 from cvs) run on debian unstable using sbcl.

Hi -

try this one:

http://github.com/Ramarren/cells

Cheers
   Frank

Am 13.12.2009 um 20:54 schrieb Francisco Vides Fernández:

> Hi
>
> I've just installed cells for evaluation purposes, and been bitten  
> for this
> very same problem.
>
> Maybe some nice comittin'?
>
> Thanks for this interesting project!
>
> Peder Chr. =?iso-8859-1?q?N=F8rgaard?= wrote:
>
>> Hello cells-devel list.
>> I am investigating cells and cells-gtk3 for a project that I am  
>> planning.
>> For a starter, I needed to get the software running on my Debian  
>> unstable
>> system.  It needed a few patches that you may wish to take into your
>> development.
(Continue reading)

Andy Chambers | 19 Dec 2009 21:58

Scrollable celtk widgets

One annoying limitation of tk widgets is that only text and canvas
support the commands required for
scrollbars.  So I made the `mk-scrollee' macro.  Used in conjunction
with a new type of canvas item
I created `window-item', we can wrap any tk window in a canvas so that
it can be scrolled.

I tried making :scroll-region a rule where the dimensions are derived
from the wrapped window but got
an assertion error in tk-create-event-handler-ex.  Is that because
it's trying to get the dimensions of a
widget that's not been created yet?  How could I get around this?

As always, feel free to import this stuff into celtk/cello if you want.

Cheers,
Andy

(deftk window-item (item)
  ()
  (:tk-spec window
   -anchor
   -height
   -width
   -state
   -tags
   -window
   ))

(defmacro mk-scrollee ((&key (height 500)
(Continue reading)


Gmane