Heads up, working on autocompletion and breadcrumbbar!

2012-01-14 Thread Mark
Hi, This is just a mail to inform people that I'm working on auto completion for QML. Initially this was meant for my Breadcrumbbar that i'm also making for QML, but after making the completion logic in C++ i figured that i might as well make a generic version that can be used to autocomplete abou

Re: Heads up, working on autocompletion and breadcrumbbar!

2012-01-15 Thread todd rme
On Sat, Jan 14, 2012 at 4:21 PM, Mark wrote: > My goal with the breadcrumbbar is to make it work exactly like the bar in > Dolphin. Only then written in QML and with fancy animations and that is > working really well at the moment ^_^ Nice! Will it support things like drag-and-drop, middle click

Re: Heads up, working on autocompletion and breadcrumbbar!

2012-01-15 Thread Mark
On Sun, Jan 15, 2012 at 3:36 PM, todd rme wrote: > On Sat, Jan 14, 2012 at 4:21 PM, Mark wrote: > > My goal with the breadcrumbbar is to make it work exactly like the bar in > > Dolphin. Only then written in QML and with fancy animations and that is > > working really well at the moment ^_^ > >

Re: Heads up, working on autocompletion and breadcrumbbar!

2012-01-15 Thread todd rme
On Sun, Jan 15, 2012 at 3:47 PM, Mark wrote: > On Sun, Jan 15, 2012 at 3:36 PM, todd rme wrote: >> >> On Sat, Jan 14, 2012 at 4:21 PM, Mark wrote: >> > My goal with the breadcrumbbar is to make it work exactly like the bar >> > in >> > Dolphin. Only then written in QML and with fancy animations

Re: Heads up, working on autocompletion and breadcrumbbar!

2012-01-15 Thread Mark
On Sun, Jan 15, 2012 at 4:23 PM, todd rme wrote: > On Sun, Jan 15, 2012 at 3:47 PM, Mark wrote: > > On Sun, Jan 15, 2012 at 3:36 PM, todd rme wrote: > >> > >> On Sat, Jan 14, 2012 at 4:21 PM, Mark wrote: > >> > My goal with the breadcrumbbar is to make it work exactly like the bar > >> > in >

Re: Heads up, working on autocompletion and breadcrumbbar!

2012-01-15 Thread Mark
On Sun, Jan 15, 2012 at 4:35 PM, Mark wrote: > On Sun, Jan 15, 2012 at 4:23 PM, todd rme wrote: > >> On Sun, Jan 15, 2012 at 3:47 PM, Mark wrote: >> > On Sun, Jan 15, 2012 at 3:36 PM, todd rme >> wrote: >> >> >> >> On Sat, Jan 14, 2012 at 4:21 PM, Mark wrote: >> >> > My goal with the breadcru

Re: Heads up, working on autocompletion and breadcrumbbar!

2012-01-15 Thread todd rme
On Sun, Jan 15, 2012 at 4:35 PM, Mark wrote: > On Sun, Jan 15, 2012 at 4:23 PM, todd rme wrote: >> >> On Sun, Jan 15, 2012 at 3:47 PM, Mark wrote: >> > On Sun, Jan 15, 2012 at 3:36 PM, todd rme wrote: >> >> >> >> On Sat, Jan 14, 2012 at 4:21 PM, Mark wrote: >> >> > My goal with the breadcrumbb

Re: Heads up, working on autocompletion and breadcrumbbar!

2012-01-16 Thread Marco Martin
On Sunday 15 January 2012, todd rme wrote: > On Sat, Jan 14, 2012 at 4:21 PM, Mark wrote: > > My goal with the breadcrumbbar is to make it work exactly like the bar in > > Dolphin. Only then written in QML and with fancy animations and that is > > working really well at the moment ^_^ > > Nice!

Re: Heads up, working on autocompletion and breadcrumbbar!

2012-01-16 Thread Marco Martin
On Saturday 14 January 2012, Mark wrote: > Hi, > > This is just a mail to inform people that I'm working on auto completion > for QML. > Initially this was meant for my Breadcrumbbar that i'm also making for QML, > but after making the completion logic in C++ i figured that i might as well > make

Re: Heads up, working on autocompletion and breadcrumbbar!

2012-01-16 Thread Mark
On Mon, Jan 16, 2012 at 9:31 PM, Marco Martin wrote: > On Sunday 15 January 2012, todd rme wrote: > > On Sat, Jan 14, 2012 at 4:21 PM, Mark wrote: > > > My goal with the breadcrumbbar is to make it work exactly like the bar > in > > > Dolphin. Only then written in QML and with fancy animations a

Re: Heads up, working on autocompletion and breadcrumbbar!

2012-01-16 Thread Mark
On Mon, Jan 16, 2012 at 9:40 PM, Marco Martin wrote: > On Saturday 14 January 2012, Mark wrote: > > Hi, > > > > This is just a mail to inform people that I'm working on auto completion > > for QML. > > Initially this was meant for my Breadcrumbbar that i'm also making for > QML, > > but after mak

Re: Heads up, working on autocompletion and breadcrumbbar!

2012-01-16 Thread Marco Martin
On Monday 16 January 2012, Mark wrote: > On Mon, Jan 16, 2012 at 9:40 PM, Marco Martin wrote: > > On Saturday 14 January 2012, Mark wrote: > > > Hi, > > > > > > This is just a mail to inform people that I'm working on auto > > > completion for QML. > > > Initially this was meant for my Breadcrumb

Re: Heads up, working on autocompletion and breadcrumbbar!

2012-01-16 Thread Mark
On Mon, Jan 16, 2012 at 10:19 PM, Marco Martin wrote: > On Monday 16 January 2012, Mark wrote: > > On Mon, Jan 16, 2012 at 9:40 PM, Marco Martin wrote: > > > On Saturday 14 January 2012, Mark wrote: > > > > Hi, > > > > > > > > This is just a mail to inform people that I'm working on auto > > > >

Re: Heads up, working on autocompletion and breadcrumbbar!

2012-01-17 Thread Sebastian Kügler
On Monday, January 16, 2012 22:41:58 Mark wrote: > > I would go for an API like this (just doing it out of my head..): > > AutoCompleter > > { > > id: autoCompleter > > } > > > > TextField > > { > > completer: autoCompleter > > } > > what is the advantage of declaring autocompleter i

Re: Heads up, working on autocompletion and breadcrumbbar!

2012-01-18 Thread Alin M Elena
Hi Mark, I was reading about your autocompleter. I have few questions... is it able to use a kde spelling dictionary for it? I ask that because would be interesting to have it in ktp-text-ui component of kde-telepathy... regards, Alin -- Without Questions there are no Answers!

Re: Heads up, working on autocompletion and breadcrumbbar!

2012-01-18 Thread Mark
On Wed, Jan 18, 2012 at 11:06 AM, Alin M Elena wrote: > Hi Mark, > > I was reading about your autocompleter. > I have few questions... is it able to use a kde spelling dictionary for it? > I ask that because would be interesting to have it in ktp-text-ui > component of > kde-telepathy... > > > reg