Re: [GSoC] BreakingAlgorithm: simplify handling of activeLines

2006-07-18 Thread Vincent Hennebert
> Hi All, > > Good news: before-floats are working. There probably are bugs and place > for improvement but I think it is time to submit a first patch, so that > you may see what I've done. > > I'm currently cleaning up and documenting my code, and I think the > handling of the activeLines array m

Re: [GSoC] Auto-table layout questions

2006-07-18 Thread Patrick Paul
Hello everyone, I've been "playing" a little with the TableLayoutManager code. If someone would be kind enough to point me in the right direction on how to determine the full length of each element list, it would help a great deal. Thank you, Patrick Patrick Paul wrote: Hi all, I will b

Re: svn commit: r422509 - /xmlgraphics/fop/trunk/src/foschema/fop-configuration.xsd

2006-07-18 Thread Simon Pepping
On Mon, Jul 17, 2006 at 10:48:55PM +0200, Jeremias Maerki wrote: > The attached file fails to validate with the XSD as found in the repo. > But then, it's probably just one more of these cases that software does > not really want to just work. Probably just a bug in my editor. Apparently. On my sy

Re: [GSoC] Auto-table layout questions

2006-07-18 Thread Andreas L Delmelle
On Jul 18, 2006, at 20:46, Patrick Paul wrote: Hi Patrick, I've been "playing" a little with the TableLayoutManager code. If someone would be kind enough to point me in the right direction on how to determine the full length of each element list, it would help a great deal. Depends on wh

Re: [GSoC] Auto-table layout questions

2006-07-18 Thread Patrick Paul
Great this is exactly what I needed, just didn't know where to look (just as I received your message I had coded my own little routine). Now I need a little pointer on how best to fly over table rows without "touching" them. I have some idea but I would prefer to check with the experts. Than

Re: [GSoC] Auto-table layout questions

2006-07-18 Thread Andreas L Delmelle
On Jul 18, 2006, at 21:30, Patrick Paul wrote: Now I need a little pointer on how best to fly over table rows without "touching" them. I have some idea but I would prefer to check with the experts. Tricky indeed... the TableRowIterator constructs the very list it is supposed to iterate ov

Re: [GSoC] Auto-table layout questions

2006-07-18 Thread Jeremias Maerki
Here are my notes on AutoTableLayout I collected last year in case you haven't seen them, yet. One of the more important parts will be to split up the element list construction and the line breaking in LineLayoutManager, because you can't do the line breaking as long as you don't know the available

Re: [GSoC] Auto-table layout questions

2006-07-18 Thread Patrick Paul
Thank you Jeremias, I have already read your notes and I intend to split the element list construction and the line breaking right after I've implemented a working basic auto-table layout. This will allow me to have a better understanding of how things work before tackling a more delicate task.

Re: [GSoC] Auto-table layout questions

2006-07-18 Thread Patrick Paul
Just to make sure I understand things correctly, the element list construction needs to be seperated from the line breaking algorithm ONLY when using it for auto table layout ? I am asking this because the LineLayoutManager is not used exclusively by the TableLayoutManager, right ? If this is