Re: [Development] Help with build failure on Windows

2013-08-05 Thread Chris Meyer
On Mon, Aug 5, 2013 at 8:27 PM, Thiago Macieira wrote: > On segunda-feira, 5 de agosto de 2013 19:51:00, Chris Meyer wrote: > > I assume that means that it includes the qdesktopwidget.h file (which I > > _do_ see is properly included)... but how does it know to include > > q

Re: [Development] Help with build failure on Windows

2013-08-05 Thread Chris Meyer
On Mon, Aug 5, 2013 at 6:32 PM, Thiago Macieira wrote: > On segunda-feira, 5 de agosto de 2013 17:39:37, Chris Meyer wrote: > > On a general note, how is qdesktopwidget_qpa_p.h supposed to be included > in > > the moc_ file? I don't see any code (other than qdesktopw

[Development] Help with build failure on Windows

2013-08-05 Thread Chris Meyer
I updated the source files (stable) today and tried to build [qtbase] on Windows using nmake. When I do this, I get an error compiling moc_qdesktopwidget.cpp that says 'QDesktopWidgetPrivate' cannot be found. Does anyone have an idea as to why this error is occurring? My build worked fine until t

Re: [Development] QtQuick External Drag Drop Partial Patch -- Help Requested

2013-07-24 Thread Chris Meyer
On Wed, Jul 24, 2013 at 1:36 AM, Rutledge Shawn wrote: > > On 23 Jul 2013, at 9:16 PM, Chris Meyer wrote: > > > I've been working on adding support for external drag and drop to > QtQuick. I've created a patch which addresses the basic needs and have used > the r

[Development] QtQuick External Drag Drop Partial Patch -- Help Requested

2013-07-23 Thread Chris Meyer
I've been working on adding support for external drag and drop to QtQuick. I've created a patch which addresses the basic needs and have used the resulting capabilities in my non-trivial application to implement drag and drop between a QtQuick view and a widget. I'll need help on one particular fe

[Development] QWidget::createWindowContainer and keyboard focus issues

2013-07-02 Thread Chris Meyer
I've been doing testing with Qt 5.1.0rc2. My application mixes QWidgets and Qml. I've been using QWidget::createWindowContainer which I don't think it's ready for release. I've encountered numerous keyboard focus issues that make QWidget::createWindowContainer difficult to use and I haven't been a

Re: [Development] Community effort in updating Qt5 docs -- QThread focus

2012-09-29 Thread Chris Meyer
On Sat, Sep 29, 2012 at 11:04 AM, João Abecasis wrote: > João Abecasis wrote: >> Chris Meyer wrote: >>> The documentation promotes the idea of using 'moveToThread' as a >>> preferred threading mechanism. However, we've found that moveToThread >>

Re: [Development] Community effort in updating Qt5 docs -- QThread focus

2012-09-29 Thread Chris Meyer
On Sat, Sep 29, 2012 at 12:59 AM, Sze Howe Koh wrote: > Hi all, > > As part of the effort to polishing the documentation for Qt 5 > (http://community.kde.org/Qt5/Documentation), I'm taking on the > QThread-related docs, which have been outdated since Qt 4.4, causing much > confusion across the int

[Development] rebuild Qt 5 on Mac OS

2012-09-22 Thread Chris Meyer
I'm rebuilding Qt 5 from source on Mac OS. I did git pull git submodule update --recursive make I get an error: make[4]: *** No rule to make target `inspector/InspectorWebGLAgent.cpp', needed by `obj/debug/inspector/InspectorAllInOne.o'. Stop. make[3]: *** [debug-all] Error 2 make[2]: *** [sub

Re: [Development] Accelerated/OpenGL drawing under Qt 5.0

2012-09-14 Thread Chris Meyer
On Fri, Sep 14, 2012 at 2:49 AM, Samuel Rødal wrote: > On 09/12/2012 06:52 AM, ext Chris Meyer wrote: >> My software makes use of accelerated drawing using the techniques with >> QGraphicsView and QGraphicsScene shown in this article: >> >> http://doc.qt.nokia.co

Re: [Development] Accelerated/OpenGL drawing under Qt 5.0

2012-09-14 Thread Chris Meyer
On Fri, Sep 14, 2012 at 2:49 AM, Samuel Rødal wrote: > On 09/12/2012 06:52 AM, ext Chris Meyer wrote: >> My software makes use of accelerated drawing using the techniques with >> QGraphicsView and QGraphicsScene shown in this article: >> >> http://doc.qt.nokia.co

Re: [Development] Accelerated/OpenGL drawing under Qt 5.0

2012-09-13 Thread Chris Meyer
On Thu, Sep 13, 2012 at 1:57 AM, Samuel Rødal wrote: > On 09/12/2012 04:33 PM, ext Chris Meyer wrote: >> On Tue, Sep 11, 2012 at 9:52 PM, Chris Meyer wrote: >>> My software makes use of accelerated drawing using the techniques with >>> QGraphicsView and QGraphics

[Development] QGLWidget drawing origin inconsistent in 5.0

2012-09-12 Thread Chris Meyer
After doing further testing with my application under Qt 5.0, I've narrowed down one of the OpenGL issues I'm seeing. It looks like if QGLWidget is added to a view hierarchy that hasn't been inserted into a window yet, the QGLWidget uses the wrong origin, even after it is later added to a window.

Re: [Development] Accelerated/OpenGL drawing under Qt 5.0

2012-09-12 Thread Chris Meyer
On Tue, Sep 11, 2012 at 9:52 PM, Chris Meyer wrote: > My software makes use of accelerated drawing using the techniques with > QGraphicsView and QGraphicsScene shown in this article: > > http://doc.qt.nokia.com/qq/qq26-openglcanvas.html > > Unfortunately things don't wor

[Development] Accelerated/OpenGL drawing under Qt 5.0

2012-09-11 Thread Chris Meyer
My software makes use of accelerated drawing using the techniques with QGraphicsView and QGraphicsScene shown in this article: http://doc.qt.nokia.com/qq/qq26-openglcanvas.html Unfortunately things don't work smoothly under Qt 5.0. Is this technique expected to work? If not, what is the suggeste

Re: [Development] qmake 5.0 question about available modules

2012-09-11 Thread Chris Meyer
11, 2012 at 11:06 AM, Thiago Macieira wrote: > On terça-feira, 11 de setembro de 2012 10.39.00, Chris Meyer wrote: >> In 4.8, qmake could include a line 'QT += xmlpatterns'. This does not >> work in 5.0 qmake (although 'QT += xml' does). > > Yes, it do

[Development] QMacPasteboardMime removed in 5.0?

2012-09-11 Thread Chris Meyer
In 4.8 I used QMacPasteboardMime to convert between Mac pasteboard types and mime types. What is the preferred mechanism to do this in 5.0? Is the list of classes removed in 5.0 and suggested alternatives available anywhere? ___ Development mailing list

[Development] qmake 5.0 question about available modules

2012-09-11 Thread Chris Meyer
In 4.8, qmake could include a line 'QT += xmlpatterns'. This does not work in 5.0 qmake (although 'QT += xml' does). Why aren't all of the 5.0 modules available in qmake? Was this a configuration error on my part (I built from source, omitting webkit), or is limited modules intentional, or is it

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

2011-11-26 Thread Chris Meyer
On Thu, Nov 24, 2011 at 10:52 AM, Chris Meyer wrote: > 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 shortcut

[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] configure qtbase on mac os

2011-11-07 Thread Chris Meyer
2011/11/7 Thiago Macieira : > On Monday, 7 de November de 2011 11:44:56 Chris Meyer wrote: >> I don't know the history of the endian test; but it seems to make more >> sense to use something direct like: >> >> int num = 1; >> if(*(char *)&num

Re: [Development] configure qtbase on mac os

2011-11-07 Thread Chris Meyer
On Sun, Nov 6, 2011 at 2:09 PM, Rohan McGovern wrote: > Chris Meyer said: >> I'm configuring qtbase (Mac OS 10.6.8, Xcode 4.2, and qtbase/master) >> using the following command: >> >> export QTDIR=/some/path/for/installation >> ./configure -prefix $QTDI

Re: [Development] configure qtbase on mac os

2011-11-07 Thread Chris Meyer
On Sun, Nov 6, 2011 at 2:09 PM, Rohan McGovern wrote: > Chris Meyer said: >> I'm configuring qtbase (Mac OS 10.6.8, Xcode 4.2, and qtbase/master) >> using the following command: >> >> export QTDIR=/some/path/for/installation >> ./configure -prefix $QTDI

Re: [Development] configure qtbase on mac os

2011-11-07 Thread Chris Meyer
On Sun, Nov 6, 2011 at 2:09 PM, Rohan McGovern wrote: > Chris Meyer said: >> I'm configuring qtbase (Mac OS 10.6.8, Xcode 4.2, and qtbase/master) >> using the following command: >> >> export QTDIR=/some/path/for/installation >> ./configure -prefix $QTDI

[Development] configure qtbase on mac os

2011-11-04 Thread Chris Meyer
I'm configuring qtbase (Mac OS 10.6.8, Xcode 4.2, and qtbase/master) using the following command: export QTDIR=/some/path/for/installation ./configure -prefix $QTDIR -opensource -no-sql-mysql -qt-libpng -qt-libjpeg -no-dbus -nomake examples -nomake demos After a while, I get an error that configu

Re: [Development] Best place for new patches, qt or qtbase?

2011-11-04 Thread Chris Meyer
2011/11/4 Thiago Macieira : > On Friday, 4 de November de 2011 12:36:40 Chris Meyer wrote: >> I'm preparing some patches that help applications built on Qt get >> accepted into the App Store. >> >> My project is currently being built on qt/4.7 and I'll

[Development] Best place for new patches, qt or qtbase?

2011-11-04 Thread Chris Meyer
I'm preparing some patches that help applications built on Qt get accepted into the App Store. My project is currently being built on qt/4.7 and I'll be switching to qt/4.8 when it is officially released. What is the best place to submit those merge requests? In qtbase/master, qt/4.7, qt/4.8, or

[Development] 4.8 Build failing on Mac OS 10.7 / XCode 4.2

2011-10-29 Thread Chris Meyer
I would like to call attention to the following problem which is that the Qt 4.8 build fails using the latest Mac OS 10.7 / Xcode 4.2 tools. https://bugreports.qt.nokia.com/browse/QTBUG-20619 Somehow the RC 1 candidates are being built... so there must be some workaround. Is it possible to post t

Re: [Development] Why does QFactoryLoader and QLibrary cache information in QSettings?

2011-10-25 Thread Chris Meyer
On Tue, Oct 25, 2011 at 12:54 PM, Robin Burchell wrote: > Hi, > > On Tue, Oct 25, 2011 at 9:38 PM, Chris Meyer wrote: >> Why does QFactoryLoader and QLibrary cache information in QSettings? >> >> Does this cache information need to be available between application &

[Development] Why does QFactoryLoader and QLibrary cache information in QSettings?

2011-10-25 Thread Chris Meyer
Why does QFactoryLoader and QLibrary cache information in QSettings? Does this cache information need to be available between application launches? Is there a performance reason? Are the reasons different from platform to platform? Could the use of QSettings be replaced with a local QMap object