Re: [Development] Regular expression libraries for QRegExp

2011-11-24 Thread Olivier Goffart
On Friday 25 November 2011 03:50:37 Giuseppe D'Angelo wrote: > On 24 November 2011 22:49, Oswald Buddenhagen > > wrote: > > On Wed, Nov 23, 2011 at 03:35:57PM +0100, ext Thiago Macieira wrote: > >> At first thought, I'd say that the pattern class should be a regular, > >> implicitly-shared, atomi

Re: [Development] QML: onCountChanged in ListModel and ListView

2011-11-24 Thread bea.lam
On 24/11/2011, at 11:39 PM, ext Sandro Andrade wrote: > Hi there, > > Any idea why ListView { onCountChanged: ... } works fine while > ListModel { onCountChanged: ... } gives me a "undefined property > 'onCountChanged'" ? > Both qdeclarativelistview_p.h and qdeclarativexmllistmodel_p.h have > co

Re: [Development] Regular expression libraries for QRegExp

2011-11-24 Thread Giuseppe D'Angelo
2011/11/23 Thiago Macieira : > Question: where does it get its Unicode tables from? Are they compiled in, or > does it link to another library, such as ICU? > > Here, my libpcre links to nothing but libc. Same here. They're internal tables, f.i. pcre_ucd.c http://vcs.pcre.org/viewvc/code/trunk/pcr

Re: [Development] Regular expression libraries for QRegExp

2011-11-24 Thread Giuseppe D'Angelo
On 24 November 2011 22:49, Oswald Buddenhagen wrote: > On Wed, Nov 23, 2011 at 03:35:57PM +0100, ext Thiago Macieira wrote: >> At first thought, I'd say that the pattern class should be a regular, >> implicitly-shared, atomic copy-on-write value class. If you call a non-const >> method, it detache

Re: [Development] Regular expression libraries for QRegExp

2011-11-24 Thread Thiago Macieira
On Thursday, 24 de November de 2011 23:49:02 Oswald Buddenhagen wrote: > On Wed, Nov 23, 2011 at 03:35:57PM +0100, ext Thiago Macieira wrote: > > At first thought, I'd say that the pattern class should be a regular, > > implicitly-shared, atomic copy-on-write value class. If you call a > > non-cons

Re: [Development] Dropping QSound?

2011-11-24 Thread jeremy . laine
(n9 top posting sorry) +1 for me, it's hard enough making sense of phonon vs qtmultimedia. Also from a naming point of view QSound is far too generic. Jeremy On 24/11/2011 12:23 Thiago Macieira wrote: An idea to consider. I don't think *anyone* uses QSound these days. -- Thiago Macieira -

Re: [Development] Rebasing a contribution

2011-11-24 Thread Oswald Buddenhagen
On Thu, Nov 24, 2011 at 12:21:55AM +0100, ext Thiago Macieira wrote: > On Wednesday, 23 de November de 2011 21:33:14 Oswald Buddenhagen wrote: > > On Wed, Nov 23, 2011 at 07:07:17PM +0100, ext Thiago Macieira wrote: > > > So, if I have reviewed your patch #6 in the contribution and you > > > need t

Re: [Development] Regular expression libraries for QRegExp

2011-11-24 Thread Oswald Buddenhagen
On Wed, Nov 23, 2011 at 03:35:57PM +0100, ext Thiago Macieira wrote: > At first thought, I'd say that the pattern class should be a regular, > implicitly-shared, atomic copy-on-write value class. If you call a non-const > method, it detaches. > > There should be no const methods that modify inte

[Development] Losing keyboard events after sheet appears in Mac OS

2011-11-24 Thread Chris Meyer
In my window, if I have a QGraphicsView. I then display a dialog in the form of a sheet attached to the window. After the sheet closes, I lose all keyboard events directed towards the window, although menu keyboard shortcuts still work. This bug did not occur in 4.7 and it does occur in 4.8. It is

Re: [Development] Qt 5 Raspberry Pi device program

2011-11-24 Thread quim.gil
(mobiletopposting, sorry) There are many approaches to build Qt 5 on top of Raspberry Pi. We are taking one and we welcome contributors adding to it or interested in pushing alternatives as long as the focus keeps being Qt 5 centric. Since this is not a Qt 5 discussion strictly speaking we ha

[Development] Building Qt Creator with Qt 5

2011-11-24 Thread Friedemann Kleint
Hi, for those interested, it is now possible to compile Qt Creator / master with Qt 5 with the exception of QML Designer and WebKit-based help. In your Qt 5 setup, go to the Qt Creator directory and run: fixqt4headers.pl qmake make The need to run fixqt4headers will go away once Qt Creator's c

Re: [Development] Dropping QSound?

2011-11-24 Thread Boudewijn Rempt
On Thursday 24 November 2011 Nov, Thiago Macieira wrote: > On Thursday, 24 de November de 2011 14:07:50 Markus Goetz wrote: > > > So sure, this is a huge source incompatible change for the users of QSound > > > (which are probably more than what we think, it is i guess used a lot in > > > applicati

Re: [Development] Dropping QSound?

2011-11-24 Thread Thiago Macieira
On Thursday, 24 de November de 2011 14:07:50 Markus Goetz wrote: > > So sure, this is a huge source incompatible change for the users of QSound > > (which are probably more than what we think, it is i guess used a lot in > > applications to just pop a notification sound) > > But i think it would be

[Development] QML: onCountChanged in ListModel and ListView

2011-11-24 Thread Sandro Andrade
Hi there, Any idea why ListView { onCountChanged: ... } works fine while ListModel { onCountChanged: ... } gives me a "undefined property 'onCountChanged'" ? Both qdeclarativelistview_p.h and qdeclarativexmllistmodel_p.h have count property with NOTIFY signal. Thanks, -- Sandro __

Re: [Development] Dropping QSound?

2011-11-24 Thread Markus Goetz
On 24.11.11 13:32, Olivier Goffart wrote: > On Thursday 24 November 2011 13:19:38 Stephen Kelly wrote: >> On Thursday, November 24, 2011 12:23:34 Thiago Macieira wrote: >>> An idea to consider. >>> >>> I don't think *anyone* uses QSound these days. >> Do you mean removing or putting in some qt4supp

Re: [Development] Dropping QSound?

2011-11-24 Thread Robin Burchell
On Thu, Nov 24, 2011 at 1:32 PM, Olivier Goffart wrote: > On Thursday 24 November 2011 13:19:38 Stephen Kelly wrote: >> On Thursday, November 24, 2011 12:23:34 Thiago Macieira wrote: >> > An idea to consider. >> > >> > I don't think *anyone* uses QSound these days. >> >> Do you mean removing or pu

Re: [Development] Dropping QSound?

2011-11-24 Thread Olivier Goffart
On Thursday 24 November 2011 13:19:38 Stephen Kelly wrote: > On Thursday, November 24, 2011 12:23:34 Thiago Macieira wrote: > > An idea to consider. > > > > I don't think *anyone* uses QSound these days. > > Do you mean removing or putting in some qt4support library? Note that the backend do not

Re: [Development] Dropping QSound?

2011-11-24 Thread Stephen Kelly
On Thursday, November 24, 2011 12:23:34 Thiago Macieira wrote: > An idea to consider. > > I don't think *anyone* uses QSound these days. Do you mean removing or putting in some qt4support library? -- Stephen Kelly | Software Engineer KDAB (Deutschland) GmbH & Co.KG, a KDAB Group Company www.kd

[Development] Renaming QMovie or dropping it?

2011-11-24 Thread Alexis Menard
Hi all, After the email of Thiago bringing up some old dragons of our dungeon (QSound) I was wondering about QMovie. Can we achieve playing animated gif easily without it? If yes then should we remove it? If no should we rename it at the very least (any proposal?)? I volunteer whatever we decide

[Development] More feedback for the Contacts API of the QtPim module

2011-11-24 Thread Friedrich W. H. Kossebau
Hi, seems the former Qt Mobility Contacts module is going to be (part of) a normal Qt module for version 5, so here is some more feedback from the developers of the backend for Qt Mobility Contacts on the N9, the qtcontacts-tracker engine [qct]. (You might not have heard of it that much because

Re: [Development] Dropping QSound?

2011-11-24 Thread lars.knoll
Yes! Go for it. Cheers, Lars On 11/24/11 12:23 PM, "ext Thiago Macieira" wrote: >An idea to consider. > >I don't think *anyone* uses QSound these days. > >-- >Thiago Macieira - thiago.macieira (AT) intel.com > Software Architect - Intel Open Source Technology Center > Intel Sweden AB - Re

Re: [Development] Dropping QSound?

2011-11-24 Thread bradley.hughes
+2 :P On 24 Nov, 2011, at 12:23 , ext Thiago Macieira wrote: > An idea to consider. > > I don't think *anyone* uses QSound these days. > > -- > Thiago Macieira - thiago.macieira (AT) intel.com > Software Architect - Intel Open Source Technology Center > Intel Sweden AB - Registration Numb

[Development] Dropping QSound?

2011-11-24 Thread Thiago Macieira
An idea to consider. I don't think *anyone* uses QSound these days. -- Thiago Macieira - thiago.macieira (AT) intel.com Software Architect - Intel Open Source Technology Center Intel Sweden AB - Registration Number: 556189-6027 Knarrarnäsgatan 15, 164 40 Kista, Stockholm, Sweden sig

Re: [Development] Qt 5 Raspberry Pi device program

2011-11-24 Thread Thiago Macieira
On Thursday, 24 de November de 2011 20:26:20 Mark Constable wrote: > On 2011-11-24 09:22 AM, quim@nokia.com wrote: > > In any case don't hold your breath for Taku: it's just a collection > > of upstream packages required to run Qt 5 on top of the hardware. > > But we are glad that you ask since

Re: [Development] Qt 5 Raspberry Pi device program

2011-11-24 Thread Mark Constable
On 2011-11-24 09:22 AM, quim@nokia.com wrote: > In any case don't hold your breath for Taku: it's just a collection > of upstream packages required to run Qt 5 on top of the hardware. > But we are glad that you ask since it will surely welcome more > expertise in order to get the plumbing below

Re: [Development] Qt 5 Raspberry Pi device program

2011-11-24 Thread quim.gil
Hi Mark, > Where or how can we found out more about Taku? Please give us a few more days to release everything and explain it at Dev Days and the wiki. Also note that the contributors of this tiny project are enjoying some Thanksgiving rest during the rest of the week. In any case don't hold y