- 26 Feb, 2012 1 commit
-
-
Michael Brasser authored
Change-Id: Ifc433f6c430d430bfb8b2d8b47a84ad2688e4cb2 Reviewed-by:
Chris Adams <christopher.adams@nokia.com>
-
- 24 Feb, 2012 1 commit
-
-
Matthew Vogt authored
Symbols beginning with QDeclarative are already exported by the quick1 module. Users can apply the bin/rename-qtdeclarative-symbols.sh script to modify client code using the previous names of the renamed symbols. Task-number: QTBUG-23737 Change-Id: Ifaa482663767634931e8711a8e9bf6e404859e66 Reviewed-by:
Martin Jones <martin.jones@nokia.com>
-
- 22 Feb, 2012 1 commit
-
-
Oswald Buddenhagen authored
remove "header" and assignmets which are defaults or bogus Change-Id: I1d777f5418b0f353bf276a979c6300a941927e7e Reviewed-by:
Marius Storm-Olsen <marius.storm-olsen@nokia.com> Reviewed-by:
Kent Hansen <kent.hansen@nokia.com>
-
- 07 Feb, 2012 1 commit
-
-
Michael Brasser authored
The new backend improves performance, and allows us to create multiple running animation jobs from a single Transition. It is based off of the existing Qt animation framework. Change-Id: Id1d0162f6e5c65bf31267f3f9f2042c354375d57 Reviewed-by:
Yunqiao Yin <charles.yin@nokia.com>
-
- 02 Feb, 2012 1 commit
-
-
Matthew Vogt authored
QtQuick1 is now contained in a separate repository. Task-number: QTBUG-23737 Change-Id: I09eae67af5693a22b896b916f816f73ccc3a89b1 Reviewed-by:
Martin Jones <martin.jones@nokia.com>
-
- 30 Jan, 2012 1 commit
-
-
Jason McDonald authored
As in the past, to avoid rewriting various autotests that contain line-number information, an extra blank line has been inserted at the end of the license text to ensure that this commit does not change the total number of lines in the license header. Change-Id: If39bd256b0fa85eba17ea30f8ab87ea27d758908 Reviewed-by:
Rohan McGovern <rohan.mcgovern@nokia.com>
-
- 23 Jan, 2012 1 commit
-
-
Jason McDonald authored
Replace Nokia contact email address with Qt Project website. Change-Id: I6a730abc0c396fb545a48b2d6938abedac2e3f1c Reviewed-by:
Rohan McGovern <rohan.mcgovern@nokia.com> Reviewed-by:
Alan Alpert <alan.alpert@nokia.com>
-
- 20 Jan, 2012 1 commit
-
-
Kent Hansen authored
Remove benchmarks for functions that are going away. Task-number: QTBUG-23604 Change-Id: Ia65c7981652011f89f2131ff14f63aae410013cf Reviewed-by:
Simon Hausmann <simon.hausmann@nokia.com> Reviewed-by:
Jędrzej Nowacki <jedrzej.nowacki@nokia.com>
-
- 17 Jan, 2012 1 commit
-
-
Jason McDonald authored
Update copyright headers from before 2011, and a couple of new ones that were merged after the previous change to copyright headers. Change-Id: Ia76e08e2734afa4ef3f1207dbcda5ff3bc81b366 Reviewed-by:
Rohan McGovern <rohan.mcgovern@nokia.com>
-
- 05 Jan, 2012 1 commit
-
-
Jason McDonald authored
Change-Id: I0a8d99909cac867dce72da70b1bbcb649989a51b Reviewed-by:
Rohan McGovern <rohan.mcgovern@nokia.com>
-
- 06 Dec, 2011 1 commit
-
-
Jason McDonald authored
These comments were mostly empty or inaccurate. Appropriate naming of tests and appropriate placement of tests within the directory tree provide more reliable indicators of what is being tested. Change-Id: If69bdb39fd162d167cb948ddcbb73503b414e791 Reviewed-by:
Rohan McGovern <rohan.mcgovern@nokia.com>
-
- 02 Dec, 2011 1 commit
-
-
Kent Hansen authored
This change moves the QtQuick 2 types and C++ API (including SceneGraph) to a new module (AKA library), QtQuick. 99% of this change is moving files from src/declarative to src/quick, and from tests/auto/declarative to tests/auto/qtquick2. The loading of QtQuick 2 ("import QtQuick 2.0") is now delegated to a plugin, src/imports/qtquick2, just like it's done for QtQuick 1. All tools, examples, and tests that use QtQuick C++ API have gotten "QT += quick" or "QT += quick-private" added to their .pro file. A few additional internal QtDeclarative classes had to be exported (via Q_DECLARATIVE_PRIVATE_EXPORT) since they're needed by the QtQuick 2 implementation. The old header locations (e.g. QtDeclarative/qquickitem.h) will still be supported for some time, but will produce compile-time warnings. (To avoid the QtQuick implementation using the compatibility headers (since QtDeclarative's includepath comes first), a few include statements were modified, e.g. from "#include <qsgnode.h>" to "#include <QtQuick/qsgnode.h>".) There's a change in qtbase that automatically adds QtQuick to the module list if QtDeclarative is used. Together with the compatibility headers, this should help reduce the migration pain for existing projects. In theory, simply getting an existing QtDeclarative-based project to compile and link shouldn't require any changes for now -- but porting to the new scheme is of course recommended, and will eventually become mandatory. Task-number: QTBUG-22889 Reviewed-by:
Lars Knoll <lars.knoll@nokia.com> Change-Id: Ia52be9373172ba2f37e7623231ecb060316c96a7 Reviewed-by:
Kent Hansen <kent.hansen@nokia.com> Reviewed-by:
Sergio Ahumada <sergio.ahumada@nokia.com>
-
- 24 Nov, 2011 1 commit
-
-
Kent Hansen authored
Change-Id: Ia56fcb06ee1ef73d81288358f584cb65e3242254 Reviewed-by:
Aurindam Jana <aurindam.jana@nokia.com>
-
- 24 Oct, 2011 1 commit
-
-
Alan Alpert authored
Change-Id: I793eaf16f3810df0cb0f9f8482ac0b9d6137595d Reviewed-by:
Alan Alpert <alan.alpert@nokia.com>
-
- 21 Oct, 2011 2 commits
-
-
Kent Hansen authored
The QSG (SceneGraph) prefix is too generic for Qt Quick(2)-specific classes. All the classes and files in the declarative/items directory have been renamed. In particular, for classes that are currently public, the renaming is as follows: QSGView --> QQuickView QSGCanvas --> QQuickCanvas QSGItem --> QQuickItem QSGPaintedItem --> QQuickPaintedItem The header files have been renamed accordingly (e.g. qsgview.h --> qquickview.h). Change-Id: Iac937fff81db20bb639486a793c3aeb5230b038c Reviewed-by:
Kent Hansen <kent.hansen@nokia.com>
-
Jason McDonald authored
The SkipMode parameter to QSKIP has been removed in qtbase, therefore it must also be removed here. Task-number: QTBUG-21851, QTBUG-21652 Change-Id: I8016f8c28338b1b532bdb593c796d699b99250dc Reviewed-by:
Charles Yin <charles.yin@nokia.com> Reviewed-by:
Rohan McGovern <rohan.mcgovern@nokia.com>
-
- 17 Oct, 2011 2 commits
-
-
Alan Alpert authored
Just for generic affector. Change-Id: I62acf524eb2c6491bc88fd687a0065866d7ceaaa Reviewed-by:
Martin Jones <martin.jones@nokia.com>
-
Alan Alpert authored
Exposed another function on ParticleSystem in order to work. Change-Id: I62acf524eb2c6491bc88fd687a0065866d7ce852 Reviewed-by:
Martin Jones <martin.jones@nokia.com>
-
- 11 Oct, 2011 1 commit
-
-
Rohan McGovern authored
qttest_p4.prf was added as a convenience for Qt's own autotests in Qt4. It enables various crufty undocumented magic, of dubious value. Stop using it, and explicitly enable the things from it which we want. Since QT+= had to be touched already, this change also removes a lot of useless duplication on those lines. Change-Id: I9f2f20eaf4a0e676beddf474c7db8680e4712f78 Reviewed-on: http://codereview.qt-project.org/6302 Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by:
Jason McDonald <jason.mcdonald@nokia.com>
-
- 10 Oct, 2011 1 commit
-
-
Aaron Kennedy authored
Change-Id: I80763db7108990b121de085b8c33cb90382b6cd1 Reviewed-on: http://codereview.qt-project.org/6292Reviewed-by:
Aaron Kennedy <aaron.kennedy@nokia.com> Sanity-Review: Aaron Kennedy <aaron.kennedy@nokia.com> Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com>
-
- 30 Sep, 2011 1 commit
-
-
Jason McDonald authored
Symbian is not a supported platform for Qt5, so this code is no longer required. Change-Id: I5cb6d3b41fbb9fa5fea6176ad949e4e7be7c30b5 Reviewed-on: http://codereview.qt-project.org/5767Reviewed-by:
Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by:
Rohan McGovern <rohan.mcgovern@nokia.com>
-
- 20 Sep, 2011 1 commit
-
-
Kent Hansen authored
The samegame files were out of date. Change-Id: Idf25a3c1d327ae94a76717aa7dde9a9dd15af9bb Reviewed-on: http://codereview.qt-project.org/5193Reviewed-by:
Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by:
Aaron Kennedy <aaron.kennedy@nokia.com>
-
- 19 Sep, 2011 1 commit
-
-
Kent Hansen authored
Change-Id: I9ecbdcfc373e95de38e432aa627f6ab93d92afe6 Reviewed-on: http://codereview.qt-project.org/5138Reviewed-by:
Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by:
Kent Hansen <kent.hansen@nokia.com>
-
- 09 Sep, 2011 1 commit
-
-
Jason McDonald authored
Change-Id: I940ced2e84a86daabc5158d348b05b7532cb1c22 Reviewed-on: http://codereview.qt-project.org/4314Reviewed-by:
Alan Alpert <alan.alpert@nokia.com>
-
- 30 Aug, 2011 2 commits
-
-
Aaron Kennedy authored
Change-Id: I5969686a796cbfb2eeb3729014df7f01e51b0620 Reviewed-on: http://codereview.qt.nokia.com/3797Reviewed-by:
Roberto Raggi <roberto.raggi@nokia.com>
-
Roberto Raggi authored
Change-Id: I69d39ef005900803f6c620ea8f1ca00d054dc8d2 Reviewed-on: http://codereview.qt.nokia.com/3757Reviewed-by:
Roberto Raggi <roberto.raggi@nokia.com> Reviewed-by:
Qt Sanity Bot <qt_sanity_bot@ovi.com>
-
- 29 Aug, 2011 1 commit
-
-
Michael Brasser authored
Change-Id: I0a2948728796e72651c86f84f0a296b63e22044f Reviewed-on: http://codereview.qt.nokia.com/3825Reviewed-by:
Michael Brasser <michael.brasser@nokia.com>
-
- 10 Aug, 2011 1 commit
-
-
Jedrzej Nowacki authored
Benchmarks for QJSValue QJSEngine and for QJSValueIterator were added. Change-Id: Ie52a3e8f5a461add3269d41d6e9a1a9bfb0c7abd Reviewed-on: http://codereview.qt.nokia.com/2705Reviewed-by:
Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by:
Simon Hausmann <simon.hausmann@nokia.com>
-
- 29 Jul, 2011 1 commit
-
-
Simon Hausmann authored
This replaces the dependency to QtScript with two new builtin classes QJSValue and QJSEngine. This is still work in progress, development continues now in the master branch. Change-Id: I7f5487feb45c972f25a22b10cc81b9218b9805de Reviewed-on: http://codereview.qt.nokia.com/2299Reviewed-by:
Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by:
Simon Hausmann <simon.hausmann@nokia.com>
-
- 08 Jul, 2011 1 commit
-
-
Jyri Tahtela authored
Replace old license header with correct one. Change-Id: I492ddaaa0227b2c8faf11bdcd6e12e7231a54a10 Reviewed-on: http://codereview.qt.nokia.com/1312Reviewed-by:
Jyri Tahtela <jyri.tahtela@nokia.com>
-
- 17 Jun, 2011 1 commit
-
-
Aaron Kennedy authored
-
- 10 Jun, 2011 1 commit
-
-
Aaron Kennedy authored
-
- 02 Jun, 2011 1 commit
-
-
Michael Brasser authored
QElapsedTimer has added a nsecsElapsed() function, so QPerformanceTimer is no longer needed. Reviewed-by: Charles Yin
-
- 24 May, 2011 1 commit
-
-
Jyri Tahtela authored
Updated version of LGPL and FDL licenseheaders. Apply release phase licenseheaders for all source files. Reviewed-by: Trust Me
-
- 10 May, 2011 1 commit
-
-
Martin Jones authored
-
- 05 May, 2011 1 commit
-
-
Aaron Kennedy authored
Change-Id: Iaa875817367d3a9600dd1ad685f996377af9f82d
-
- 27 Apr, 2011 2 commits
-
-
Qt by Nokia authored
Branched from the monolithic repo, Qt qtquick2 branch, at commit a4a585d2ee907746682846ae6e8a48e19deef469
-
Qt by Nokia authored
This is the beginning of revision history for this module. If you want to look at revision history older than this, please refer to the Qt Git wiki for how to use Git history grafting. At the time of writing, this wiki is located here: http://qt.gitorious.org/qt/pages/GitIntroductionWithQt If you have already performed the grafting and you don't see any history beyond this commit, try running "git log" with the "--follow" argument. Branched from the monolithic repo, Qt master branch, at commit 896db169ea224deb96c59ce8af800d019de63f12
-