Re: tdf#50916 : Calc : Dynamic column container

2017-06-08 Thread Eike Rathke
Hi Dennis, On Wednesday, 2017-06-07 20:11:38 +0530, Dennis Francis wrote: > I have added the content at > https://wiki.documentfoundation.org/Development/Calc#Increasing_the_limit_of_number_of_columns_from_1024_to_16384 >

Re: tdf#50916 : Calc : Dynamic column container

2017-06-07 Thread Dennis Francis
Hi Eike On Thu, Feb 16, 2017 at 10:12 PM, Eike Rathke wrote: > Hi Dennis, > > Thanks, but wouldn't the right place for that be our wiki instead? > I have added the content at https://wiki.documentfoundation.org/Development/Calc#Increasing_the_limit_of_number_of_columns_from_1024_to_16384

Re: tdf#50916 : Calc : Dynamic column container

2017-02-16 Thread Eike Rathke
Hi Dennis, On Monday, 2017-02-06 17:57:32 +0530, Dennis Francis wrote: > I have compiled a writeup @ https://niocs.github.io/LOBook/misc/16kcols.html > to > help new contributors who want to work on this bug tdf#50916. > I will try to keep it updated on new developments as more patches are added

Re: tdf#50916 : Calc : Dynamic column container

2017-02-09 Thread marius adrian popa
Discussion on reddit https://www.reddit.com/r/programming/comments/5skn9j/project_increasing_the_limit_of_number_of_columns/ On Mon, Feb 6, 2017 at 2:27 PM, Dennis Francis wrote: > Hi All > > I have compiled a writeup @ https://niocs.github.io/ > LOBook/misc/16kcols.html to help new contributor

Re: tdf#50916 : Calc : Dynamic column container

2017-02-06 Thread Dennis Francis
Hi All I have compiled a writeup @ https://niocs.github.io/LOBook/misc/16kcols.html to help new contributors who want to work on this bug tdf#50916. I will try to keep it updated on new developments as more patches are added. Thanks, Dennis On Mon, Jun 20, 2016 at 3:40 PM, Dennis Francis wrote

Re: tdf#50916 : Calc : Dynamic column container

2016-06-20 Thread Dennis Francis
Adding Markus and Eike to make sure they did not miss my last post in this thread. Thanks in advance for your feedback. Thanks, Dennis On Fri, Jun 10, 2016 at 3:08 PM, Dennis Francis wrote: > Hi All > > It has been quite a while since I worked on this bug. Lately I have been > thinking about

Re: tdf#50916 : Calc : Dynamic column container

2016-06-10 Thread Dennis Francis
Hi All It has been quite a while since I worked on this bug. Lately I have been thinking about "a better way to handle row formattings". In the current setting, if someone formats whole row, it is required that we have all columns from 0 to MAXCOL allocated, which is bad when MAXCOL is a big numbe

Re: tdf#50916 : Calc : Dynamic column container

2016-01-20 Thread Dennis Francis
Hi All I have submitted a prelim patch at https://gerrit.libreoffice.org/21620 following Kohei's suggestion of solving this bug incrementally. Thanks, Dennis On Wed, Oct 14, 2015 at 10:22 PM, Kohei Yoshida wrote: > > > > On October 14, 2015 at 11:18 AM Wols Lists > wrote: > > > > > > On 14/10

Re: tdf#50916 : Calc : Dynamic column container

2015-10-14 Thread Kohei Yoshida
> On October 14, 2015 at 11:18 AM Wols Lists wrote: > > > On 14/10/15 02:08, Kohei Yoshida wrote: > > Also, this will be an on-going process. This is not going to be like > > "if you do A, B and C it's okay to increase the column size and no > > problems will occur". Rather, we'll probably e

Re: tdf#50916 : Calc : Dynamic column container

2015-10-14 Thread Wols Lists
On 14/10/15 02:08, Kohei Yoshida wrote: > Also, this will be an on-going process. This is not going to be like > "if you do A, B and C it's okay to increase the column size and no > problems will occur". Rather, we'll probably encounter lots of > performance issues that we'll have to spend some t

Re: tdf#50916 : Calc : Dynamic column container

2015-10-13 Thread Kohei Yoshida
So, I'm gonna reply to Eike's post, but my reply is not in response to Eike's, but just a general idea I have on this subject. I had already discussed this with Markus before he posted his, and his post also reflects my view on this in general. First off, allowing dynamic growth of column contain

Re: tdf#50916 : Calc : Dynamic column container

2015-10-12 Thread Eike Rathke
Hi, On Saturday, 2015-10-10 00:05:11 +0200, Markus Mohrhard wrote: > Most likely a few more that I have not in mind right now. Additional caveats that sprang to mind: * sizes and distribution of area listener slots * this currently is based on MAXCOLCOUNT values on compile time and there e

Re: tdf#50916 : Calc : Dynamic column container

2015-10-10 Thread Markus Mohrhard
Hey Dennis, On Sat, Oct 10, 2015 at 3:30 PM, Dennis Francis wrote: > Hi Markus > > Thanks for your valuable feedback ! > > 1. > """ > A simple high level design could be to use a std::vector and > only allocate columns that really contain content or formatting. > Additionally we'd need to introd

Re: tdf#50916 : Calc : Dynamic column container

2015-10-10 Thread Dennis Francis
Hi Markus Thanks for your valuable feedback ! 1. """ A simple high level design could be to use a std::vector and only allocate columns that really contain content or formatting. Additionally we'd need to introduce a way to store the format of a row. These row formats might not be visible to the

Re: tdf#50916 : Calc : Dynamic column container

2015-10-09 Thread Markus Mohrhard
Hey Dennis, so I suppose it is my turn to respond. Maybe Eike and/or Kohei will jump in as well. On Fri, Oct 9, 2015 at 2:14 AM, Dennis Francis wrote: > Hi All > > I have made an attempt at making the column container relatively dynamic in > the hope of increasing the column limit to 16K. The p