Re: [Development] [Qt-creator] No headers in Mac frameworks?

2012-07-09 Thread Stephen Chu
On 7/9/12 6:03 PM, Shawn Rutledge wrote: > On 9 July 2012 22:25, Stephen Chu wrote: >> On 7/9/12 3:53 PM, Stephen Chu wrote: >>> On 7/9/12 3:18 PM, Stephen Chu wrote: I built Qt 5 from git on Mac with -developer-build option and find there's no link to headers in the resulted frameworks.

Re: [Development] [Qt-creator] No headers in Mac frameworks?

2012-07-09 Thread Shawn Rutledge
On 9 July 2012 22:25, Stephen Chu wrote: > On 7/9/12 3:53 PM, Stephen Chu wrote: >> On 7/9/12 3:18 PM, Stephen Chu wrote: >>> I built Qt 5 from git on Mac with -developer-build option and find >>> there's no link to headers in the resulted frameworks. There are only >>> symlinks to the libs but no

Re: [Development] QSvg, why is QSvgHandler private?

2012-07-09 Thread Thiago Macieira
On segunda-feira, 9 de julho de 2012 22.29.31, Mark wrote: > So, is there anyway for me to use the private class anyway? I know it > shouldn't be done, but it's just something i'd like to try if possible > and see how much difference it makes if i use that opposed to > QSvgRenderer::load. > Do i ne

[Development] QSvg, why is QSvgHandler private?

2012-07-09 Thread Mark
Hi, I was playing a bit with some code profiling and noticed that some project is using QSvgRenderer::load(...) to determine if a svg is valid or not. That is quite a heavy operation! When digging in the Qt code i "discovered" that Qt internally is using QSvgHandler https://qt.gitorious.org/qt/qts

Re: [Development] [Qt-creator] No headers in Mac frameworks?

2012-07-09 Thread Stephen Chu
On 7/9/12 3:53 PM, Stephen Chu wrote: > On 7/9/12 3:18 PM, Stephen Chu wrote: >> I built Qt 5 from git on Mac with -developer-build option and find >> there's no link to headers in the resulted frameworks. There are only >> symlinks to the libs but not headers like in Qt 4.8. >> >> Qt Creator edito

Re: [Development] [Qt-creator] No headers in Mac frameworks?

2012-07-09 Thread Stephen Chu
On 7/9/12 3:18 PM, Stephen Chu wrote: > I built Qt 5 from git on Mac with -developer-build option and find > there's no link to headers in the resulted frameworks. There are only > symlinks to the libs but not headers like in Qt 4.8. > > Qt Creator editor has trouble finding the headers with this s

[Development] No headers in Mac frameworks?

2012-07-09 Thread Stephen Chu
I built Qt 5 from git on Mac with -developer-build option and find there's no link to headers in the resulted frameworks. There are only symlinks to the libs but not headers like in Qt 4.8. Qt Creator editor has trouble finding the headers with this setup. This makes finding definitions of Qt t

Re: [Development] Multitouch on top of XInput 2.2

2012-07-09 Thread Shawn Rutledge
On Thursday wk26 2012 June 28 05:09:41 PM ext Shawn Rutledge wrote: > On 28 June 2012 13:03, Christian Spielberger > > wrote: > > Hi, > > > > I got multitouch on top of XInput 2.2 to work. > > > > See http://www.youtube.com/watch?v=sRSC4CEYmIg ! > > > > Repo: > > See https://gitorious.org/~csp

[Development] QtCS - Qt Printing Session Notes

2012-07-09 Thread John Layt
Apologies for the late posting. The Qt Printing session consisted mostly of a ramble by me on the current status and future plans, followed by some discussion on areas of common interest. Release status: * Linux looking good, just some clean-ups and bug fixes in the print dialog * Mac mostly goo

Re: [Development] QtCS: Javascript backend session

2012-07-09 Thread Dan Leinir Turthra Jensen
Unfortunately so - but thanks none the less, was informative! :) On Monday 09 July 2012 15:08:29 Jedrzej Nowacki wrote: > That was a nice chat, but a bit unrelated to a JavaScript backend :-) > > Cheers, > Jędrek > > On Saturday 30. June 2012 15.04.27 ext Dan Leinir Turthra Jensen wrote: > > Tw

Re: [Development] QtCS: Javascript backend session

2012-07-09 Thread Jedrzej Nowacki
That was a nice chat, but a bit unrelated to a JavaScript backend :-) Cheers, Jędrek On Saturday 30. June 2012 15.04.27 ext Dan Leinir Turthra Jensen wrote: > Two people did - myself and another guy whose name i unfortunately have > forgotten. So, we sat and had a chat about Gluon's use of QtScr

Re: [Development] Move math3d from QtGui to QtCore

2012-07-09 Thread gunnar.sletta
On Jul 9, 2012, at 11:44 AM, ext Uwe Rathmann wrote: > On 07/09/2012 11:30 AM, Thiago Macieira wrote: >> But we need to explain the difference between QPointF / QVector2D and >> QPointF3D >> and QVector3D. A point's coordinates are equal to that of the vector pointing >> to the point in question

Re: [Development] Move math3d from QtGui to QtCore

2012-07-09 Thread Uwe Rathmann
On 07/09/2012 11:30 AM, Thiago Macieira wrote: > But we need to explain the difference between QPointF / QVector2D and > QPointF3D > and QVector3D. A point's coordinates are equal to that of the vector pointing > to the point in question from the origin of the coordinate system. > > Laszlo, you're

Re: [Development] Move math3d from QtGui to QtCore

2012-07-09 Thread Thiago Macieira
On segunda-feira, 9 de julho de 2012 08.44.17, gunnar.sle...@nokia.com wrote: > The integer QPoint was used throughout Qt for mouse events, drawing and > widget geometry. It makes sense. I do not see the same for an integer 3D > point, but Thiago gets to decide I think it has value, so I will allo

Re: [Development] Move math3d from QtGui to QtCore

2012-07-09 Thread gunnar.sletta
On Jul 9, 2012, at 8:55 AM, ext Laszlo Papp wrote: > >> And how useful is really the integer version? There is almost no 3D math >> that works with integer only arithmetics. > > If there is a point representing 2d with integers, I do not see the > problem with having the analogy for 3D. Please

Re: [Development] Move math3d from QtGui to QtCore

2012-07-09 Thread Laszlo Papp
On Mon, Jul 9, 2012 at 7:55 AM, Laszlo Papp wrote: >> The float version is a simplified duplicate of QVector3D. Is this really the >> right way to go? > > You should really consider in QtGui to use 3D point base in the > future, and extend that with your math wishes. Not to mention, it is the sa