- 27 May, 2013 - 8 commits
-
-
Liang Qi authored
If there was no item that accepted focus, it would go into an endless loop. This also changes the default behavior of QQuickWindow. When there is not any activeFocusItem in the whole window, it means the contentItem got focused. The Tab/BackTab key will now focus the next item in the tab focus chain. Autotest is included. Done-with: Frederik Gladhorn <frederik.gladhorn@digia.com> Task-number: QTBUG-31344 Change-Id: I854292f89a327c493eec21969907c94aa9cfddcb Reviewed-by:
Jens Bache-Wiig <jens.bache-wiig@digia.com> Reviewed-by:
Gabriel de Dietrich <gabriel.dedietrich@digia.com>
-
Jerome Pasion authored
Change-Id: I97971f27d9ff7e94e14f442d1baf78b0e56ca312 Reviewed-by:
Shawn Rutledge <shawn.rutledge@digia.com>
-
Caroline Chao authored
And add a landing page for Qt Quick Dialogs. Change-Id: I0c2611bf5cdbf9937b4fd94228915553d8b3bb77 Reviewed-by:
Jerome Pasion <jerome.pasion@digia.com> Reviewed-by:
Shawn Rutledge <shawn.rutledge@digia.com>
-
Sergio Ahumada authored
This means that we are going to use the same branch name for the dependencies as the branch of the repository under test. If we are testing the 'stable' branch, all dependencies will point to the 'stable' branch as well. Change-Id: I0959eea83b620af805b2113422bae5ae306af120 Reviewed-by:
Iikka Eklund <iikka.eklund@digia.com>
-
Liang Qi authored
Task-number: QTBUG-31388 Change-Id: I13a821a009c6c06f2c7fe7f7d28f1a579d69c8df Reviewed-by:
Shawn Rutledge <shawn.rutledge@digia.com>
-
Shawn Rutledge authored
Failing on mac, which is a blocker for CI. Task-number: QTBUG-31370 Change-Id: Icb42bb5ae59510a8754de895070d7a3d08af2623 Reviewed-by:
Sergio Ahumada <sergio.ahumada@digia.com>
-
Caroline Chao authored
Change-Id: Ide4afaa74d73ea09cf329de593283c269ecdacb3 Reviewed-by:
Jerome Pasion <jerome.pasion@digia.com> Reviewed-by:
Shawn Rutledge <shawn.rutledge@digia.com>
-
Christiaan Janssen authored
Change-Id: I54c960f0b0da061816223a51795c83a9f9dd3f66 Reviewed-by:
Kai Koehne <kai.koehne@digia.com>
-
- 24 May, 2013 - 1 commit
-
-
Kai Koehne authored
So far we didn't protect this access. Change-Id: Id738453db5e655371fa2fbf88f81cab6c0af466f Reviewed-by:
Aurindam Jana <aurindam.jana@digia.com>
-
- 23 May, 2013 - 4 commits
-
-
Friedemann Kleint authored
Task-number: QTBUG-31258 Change-Id: I13dfc17c75075de155505d20c57400753de0a71d Reviewed-by:
Shawn Rutledge <shawn.rutledge@digia.com>
-
Albert Astals Cid authored
It can happen that cacheItem->object in QQmlDelegateModelPrivate::object already has a value but that the cacheItem->incubationTask is still Loading. If we return the object here we can confuse some of QQmlDelegateModel consumers like QQuickItemView. E.g. in QQuickItemView if we get to return the object before the createdItem signal is emitted we will make that when the createdItem signal happens QQuickItemView::createdItem will be called it will add the item to unrequestedItems items and will expect that layout/refill will remove it from unrequestedItems if it is really one of the items we are creating, but as it has been already created the item will wrongly remain in unrequestedItems making the item view to act weird Task-number: QTBUG-28403 Change-Id: I4359391eb2a4012afd3f01d082a99692d63b6639 Reviewed-by:
Alan Alpert <aalpert@blackberry.com>
-
Gunnar Sletta authored
The hash-lookup in this function is costing us a lot, and since we're looking up the same materials again and again, and the material has a place holder for it, we can store it directly in the material at no extra cost. This was a 10% gain in this particular benchmark. Change-Id: I46b67791ce39f453fa86d1ee82f6f5c7785b46a1 Reviewed-by:
Yoann Lopes <yoann.lopes@digia.com> Reviewed-by:
Samuel Rødal <samuel.rodal@digia.com>
-
Gunnar Sletta authored
Change-Id: I15aea1b1dc3d41c9efe0a38f53d6858bae273566 Reviewed-by:
Samuel Rødal <samuel.rodal@digia.com>
-
- 22 May, 2013 - 11 commits
-
-
Shawn Rutledge authored
That way Component.onCompleted() can optionally do showMaximized() without being overridden. Task-number: QTBUG-31260 Change-Id: I6f5c3025efd3b38809be85da4172241695168a6c Reviewed-by:
Nikita Krupenko <krnekit@gmail.com> Reviewed-by:
Alan Alpert <aalpert@blackberry.com>
-
Alan Alpert authored
Current deferred properties implementation did not store context or compiled data pointers correctly. Those pointers are now stored when the defer is reached, so as to avoid confusion (confusion leads to asserts or crashes). Does not extend the deferred property support to allow multiple deferred blocks per item. This now prints and error and the side effect is only that one of the deferred blocks is lost. This use case is sufficiently rare that it may not be worth the cost. Task-number: QTBUG-30325 Change-Id: I80cb074ed4452e95020208a0142a91e721bced7d Reviewed-by:
Matthew Vogt <matthew.vogt@qinetic.com.au> Reviewed-by:
Lars Knoll <lars.knoll@digia.com>
-
J-P Nurmi authored
Task-number: QTBUG-31154 Change-Id: I9d3e31352967b99b4bbb38f5819d3d093438ee37 Reviewed-by:
Caroline Chao <caroline.chao@digia.com>
-
Gunnar Sletta authored
Change-Id: I3694b075e98eab9f3eacf7758881a9473999b46e Reviewed-by:
Yoann Lopes <yoann.lopes@digia.com>
-
Gunnar Sletta authored
In our usecase, the color is always used as a float so using QColor (which is ushort) internally adds a lot of pointless conversion. Enough so that it shows up in profiles as 1-2% each. Not a lot, but easy to fix. The compare function is also somewhat simplified. For colors we're primarily searching for equallity. If that fails, we just need to provide consistent values, so use the address instead of doing any fancy calculation. Change-Id: Icae7e78ed767e802c137bab7fcacff66e9a4bc66 Reviewed-by:
Yoann Lopes <yoann.lopes@digia.com>
-
Gunnar Sletta authored
Task-number: QTBUG-30077 Change-Id: I8b6e4b8a33819fe84c843e85d863b582cfd69439 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@digia.com>
-
Liang Qi authored
Only tst_fontloader.qml fails on Mac, and we have useful Qt.platform.os. Task-number: QTBUG-25306 Change-Id: I6f4082028a188453378ad7ef73f51b1df2d89f11 Reviewed-by:
Gabriel de Dietrich <gabriel.dedietrich@digia.com> Reviewed-by:
Sergio Ahumada <sergio.ahumada@digia.com>
-
J-P Nurmi authored
Change-Id: Id6fe03677e93119a63bfe87ade3cd333bf4890a1 Reviewed-by:
Caroline Chao <caroline.chao@digia.com> Reviewed-by:
Pierre Rossi <pierre.rossi@gmail.com>
-
Eskil Abrahamsen Blomfeldt authored
Since we don't have any way of parsing QML to find out which imports will be used, we need to always load Qt5QuickParticles library when using Qt Quick, since this is a dependency of the particles import itself. Otherwise, apps that use particles would crash. Task-number: QTBUG-30848 Change-Id: I24326e2d59fc05f7867233fe503b2708d50eee78 Reviewed-by:
Paul Olav Tvete <paul.tvete@digia.com>
-
Caroline Chao authored
Change-Id: Ia06527a0a3c3cfd68ecb3372316de476e02e6c26 Reviewed-by:
Albert Astals Cid <albert.astals@canonical.com> Reviewed-by:
Alan Alpert <aalpert@blackberry.com>
-
Albert Astals Cid authored
Change-Id: Ie2a259a02becdf6fb0c21d93013e0e3148187ed8 Reviewed-by:
Alan Alpert <aalpert@blackberry.com>
-
- 20 May, 2013 - 3 commits
-
-
Alan Alpert authored
Task-number: QTBUG-31063 Change-Id: I2329f5c92c5985ed4a65a896521ddd3f6649ce2c Reviewed-by:
Bea Lam <bea.lam@jollamobile.com>
-
Liang Qi authored
Embed Info.plist in qmlplugindump executable in a special way. Change-Id: I7eb73d0f832ab53d352c1fd2275f77e853269c2c Reviewed-by:
Fawzi Mohamed <fawzi.mohamed@digia.com> Reviewed-by:
Kai Koehne <kai.koehne@digia.com>
-
Sze Howe Koh authored
Change-Id: I1385a8947107a7c80b32306fc587aff45536a4ec Reviewed-by:
Alan Alpert <aalpert@blackberry.com>
-
- 19 May, 2013 - 1 commit
-
-
Matt Vogt authored
Otherwise the explanatory message won't be seen in release mode. Change-Id: I5c9fbc86753ac5ecea3d0714b8f17207f6b713d6 Reviewed-by:
Alan Alpert <aalpert@blackberry.com>
-
- 17 May, 2013 - 2 commits
-
-
Alan Alpert authored
If the text has not changed when textFormat changes between states other than RichText, the text was not re-laid-out. This is necessary if the text includes control tags. Task-number: QTBUG-31191 Change-Id: I3c6f5343aa85e8337b90cf86748a696d5742e906 Reviewed-by:
Andrew den Exter <andrew.den.exter@qinetic.com.au>
-
Liang Qi authored
Task-number: QTBUG-31114 Change-Id: I4d6aac534fbc1e84593e4d7084e6a892eea4256c Reviewed-by:
Caroline Chao <caroline.chao@digia.com> Reviewed-by:
Jens Bache-Wiig <jens.bache-wiig@digia.com>
-
- 16 May, 2013 - 6 commits
-
-
J-P Nurmi authored
Change-Id: Iedf45862323ca8233be155ce65cd3348abd0a8e5 Reviewed-by:
Caroline Chao <caroline.chao@digia.com> Reviewed-by:
Jens Bache-Wiig <jens.bache-wiig@digia.com> Reviewed-by:
Alan Alpert <aalpert@blackberry.com>
-
Alan Alpert authored
Using a singleton (at least a QJSValue one) improperly leads to a crash. Assert with an explanatory comment is a low-cost improvement until better capitalization checking is implemented. Task-number: QTBUG-30090 Change-Id: I237a1dd2aab743ae1f09e8d653aa5aeb4bd0240f Reviewed-by:
Lars Knoll <lars.knoll@digia.com>
-
Gunnar Sletta authored
Change-Id: I6ca0d8549891302cc9d71bdfac11704752caaf60 Reviewed-by:
Yoann Lopes <yoann.lopes@digia.com>
-
Sze Howe Koh authored
An indirect way of fixing a broken snippet path. The entire (but very short) file is included as a snippet in only one place, and the license text takes far more space than the snippet. Change-Id: I6f4bf588b8701b655d418a71f83a2f9263d6b532 Reviewed-by:
Jerome Pasion <jerome.pasion@digia.com>
-
Sze Howe Koh authored
The snippet belongs to Qt Quick's "QML Basic Type: color" (src/quick/doc/src/qmltypereference.qdoc) Change-Id: I47defee04c34f9c98ec57d840c377c680d114d71 Reviewed-by:
Jerome Pasion <jerome.pasion@digia.com>
-
Mitch Curtis authored
Change-Id: I8ea85269c2666d18bf3c3815d2de0f90e9e0a3f4 Reviewed-by:
Jerome Pasion <jerome.pasion@digia.com> Reviewed-by:
Gunnar Sletta <gunnar.sletta@digia.com>
-
- 15 May, 2013 - 4 commits
-
-
Gunnar Sletta authored
Change-Id: I6e68fcfc534aca139484a9b2970e61fb22688c58 Reviewed-by:
Samuel Rødal <samuel.rodal@digia.com> Reviewed-by:
Mitch Curtis <mitch.curtis@digia.com>
-
Alan Alpert authored
Task-number: QTBUG-31155 Change-Id: I4f1ac7c31ce6d4529c368d796706aa5f93a78d1a Reviewed-by:
Jerome Pasion <jerome.pasion@digia.com>
-
Friedemann Kleint authored
Change-Id: I091a0369f2026ae820d623aadd13a3190d40a56b Reviewed-by:
Shawn Rutledge <shawn.rutledge@digia.com>
-
Thiago Macieira authored
qmlExecuteDeferred is exported using Q_QML_EXPORT in qqml.h, so we don't need to use one here. Better not have any than have the wrong one, which can cause problems. Cherry picked from d6d2074ff in qtquick1 Change-Id: Ief978feb503b7381ed462f71ebbd7986bd6862c3 Reviewed-by:
Thiago Macieira <thiago.macieira@intel.com>
-