Petr Kobalíc(ek wrote:
> Hi Matthew,
> 
> thank you for your work:)

Your Welcome :)

> Is any chance to use new implementation of heightForWidth before
> friday ? This should enable scrollbars;)

Yes this is now done. It took me a while to get it working, I had to 
setAllowShrinkY(false) for it work. Simple change but took me most of 
the day crawling through code to figure out!

This is checked in and a new copy is on 
http://www.noggin182.com/qooxdoo/tileviewexample/build

> I can look at keyboard handling, moving to left / right should be
> remapped from up / down and calculating up / down costant should be
> very simple in cases that width is constant (and if I good understand
> it, it is constant)

That would be good, not sure when I would get time to look at this. I 
had hoped to be able to work with Chris to get the FlowLayout to be able 
to arrange it's children vertically as well as horizontally. This should 
be taken into account when handling keys, I had imagined something like 
this:

on key press
   if key = right
     childIndex += horizontal ? 1 : numChildrenInCol
   else if key = left
     childIndex -= horizontal ? 1 : numChildrenInCol
   else if key = up
     childIndex -= horizontal ? numChildrenInRow : 1
   else if key = down
     childIndex += horizontal ? numChildrenInRow : 1


> Cheers
> - Petr
> 


-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to