GUI server development v. 0.7

Notices and updates
Locked
Lutz
Posts: 5289
Joined: Thu Sep 26, 2002 4:45 pm
Location: Pasadena, California
Contact:

GUI server development v. 0.7

Post by Lutz »

* bugfixes, borderless windows and a changed gs:get-select syntax

Files: http://newlisp.org/downloads/development/

Changes: http://newlisp.org/downloads/developmen ... ver-07.txt

Lutz

newdep
Posts: 2038
Joined: Mon Feb 23, 2004 7:40 pm
Location: Netherlands

Post by newdep »

Thanks for the fix !! ;-)

btw on gs:window gs:set-resizable gives an error..

Norman.
-- (define? (Cornflakes))

didi
Posts: 166
Joined: Fri May 04, 2007 8:24 pm
Location: Germany

Post by didi »

A minor thing : The "button-demo.lsp" started out of "console.lsp" shows
"add-list-item: cannot be applied to nil"
and quits the console. The button-demo works correctly , maybe this was already the matter on the last version(s) .

Lutz
Posts: 5289
Joined: Thu Sep 26, 2002 4:45 pm
Location: Pasadena, California
Contact:

Post by Lutz »

thanks for the report, this is a bug in console.lsp

Lutz

didi
Posts: 166
Joined: Fri May 04, 2007 8:24 pm
Location: Germany

Post by didi »

Bug in 'set-grid-layout' ?
I want to make a playlist with checkboxes and so on , the lines of the list should have slightly different colors for better reading.
For this i need a grid layout with only 1 column and eg. 10 rows == lines , that doesn't work .
It seems, that there must be at least 2 columns , even if the parameter is 1 or 0 .

Lutz
Posts: 5289
Joined: Thu Sep 26, 2002 4:45 pm
Location: Pasadena, California
Contact:

Post by Lutz »

Bug in 'set-grid-layout' ?
look into widgets.lsp it uses a 5 x 1 (5 rows 1 column) layout without a problem.
btw on gs:window gs:set-resizable gives an error..
gs:window makes a window which is not resizable, gs:set-resizable has to give an error on this.

Lutz

didi
Posts: 166
Joined: Fri May 04, 2007 8:24 pm
Location: Germany

Post by didi »

You're right , no bug.
The problem was, i added one panel more than defined, then it changes from 1 to 2 columns.

Locked