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
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
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
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
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
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
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
>>
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
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
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
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
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
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.
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
&
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
30 matches
Mail list logo