Re: [Interest] Interest Digest, Vol 28, Issue 19

2014-01-09 Thread Dmitrii Volosnykh
Regards, Igor Mironchik. -- next part -- An HTML attachment was scrubbed... URL: http://lists.qt-project.org/pipermail/interest/attachments/20140109/f3ac34b2/attachment-0001.html -- ___ Interest

Re: [Interest] Interest Digest, Vol 28, Issue 19

2014-01-09 Thread Igor Mironchik
. And my question is how to tell in app's .pro file to build this lib? -- Best Regards, Igor Mironchik. -- next part -- An HTML attachment was scrubbed... URL: http://lists.qt-project.org/pipermail/interest/attachments/20140109/f3ac34b2

Re: [Interest] Unexplained offset in QML

2014-01-09 Thread Jason H
Thanks Alan. Actually, A this the case. However I don't understand why it matters? The missing code is just the Animal.qml, that only nests the elements accordingly for layering/grouping: Item {  Item { id: head     Item { id: earL}    Item { id: earR}    Item { id: face} } } Item { id: tail}

Re: [Interest] [QQuickView] deadlock on exit

2014-01-09 Thread Thiago Macieira
On quinta-feira, 9 de janeiro de 2014 12:00:09, Tim Blechmann wrote: which causes an assertion failure in QCoreApplication::arguments() [2]. but if using QApplication without exec() is unsupported, maybe this could be either fixed or removed or declared as unsupported? exec() is basically a

Re: [Interest] Adding extra target to pro file

2014-01-09 Thread Thiago Macieira
On quinta-feira, 9 de janeiro de 2014 10:57:02, Igor Mironchik wrote: else:unix: PRE_TARGETDEPS += $$OUT_PWD/../../../lib/libQtMWidgets.a As you can see this app depends on QtMWidget library that is in separate directory. I have sources and .pro file for this library. And my question

Re: [Interest] Adding extra target to pro file

2014-01-09 Thread Francisco Ares
2014/1/9 Igor Mironchik igor.mironc...@gmail.com Hi. I have the next .pro file TEMPLATE = app TARGET = Picker DESTDIR = . CONFIG += windows QT += core gui widgets ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android SOURCES += main.cpp OTHER_FILES += android/AndroidManifest.xml

Re: [Interest] Adding extra target to pro file

2014-01-09 Thread Till Oliver Knoll
Am 09.01.2014 um 17:19 schrieb Francisco Ares fra...@gmail.com: 2014/1/9 Igor Mironchik igor.mironc...@gmail.com ... If so and AFAIK, you can't do this in a single .pro file Correct: each *.pro file with either an app or lib set as template will produce exactly one binary, either an

[Interest] QtQuick/QML performance issue

2014-01-09 Thread VStevenP
I'm trying to understand a curious performance problem I observe in my QtQuick apps. First off, here's something good:  If I have a simple app that contains one Knob widget, editing that knob causes 'top' to show a CPU% of ~7% (typical) and ~15% (max).  When the app is idle, top reports CPU%

Re: [Interest] QtQuick/QML performance issue

2014-01-09 Thread Jason H
I would not trust top. How it is counting the time slices and how you are using them may not match reality.  I would try to overload it, rather than say 20 is half of your processing power. Some things take different amounts of CPU, but take time slices. On that board you should be hardware

[Interest] how to cast the returned pointer of QImage::scanLine(int i) to QRgb ? format is Format_RGB32

2014-01-09 Thread iMath
how to cast the returned pointer of uchar * QImage::scanLine(int i) to QRgb ? the image format is Format_RGB32___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] QtQuick/QML performance issue

2014-01-09 Thread Jason H
I would not trust top. How it is counting the time slices and how you are using them may not match reality.  I would try to overload it, rather than say 20 is half of your processing power. Some things take different amounts of CPU, but take time slices. On that board you should be hardware