Migrate gui dependencies from QtQml to QtQuick.
authorMatthew Vogt <matthew.vogt@nokia.com>
Thu, 1 Mar 2012 22:25:43 +0000 (08:25 +1000)
committerQt by Nokia <qt-info@nokia.com>
Tue, 20 Mar 2012 02:15:43 +0000 (03:15 +0100)
commitab1e510121c8a679fdaca12ccd30e0f7ac12a26b
tree68c377ba468a667c43211f005ead5b49b16e49f3
parentb143d3fb589e7ce7171c9975679fa47181a6a10f
Migrate gui dependencies from QtQml to QtQuick.

Ensure that users of declarative that have no need for functionality
provided by the Qt Gui module do not have to link against it.

Any use of QtGui functionality is delegated to providers that can
be installed by another library; QtQuick adds default providers
for this functionality when linked against QtQml.

Task-number: QTBUG-24559
Change-Id: I5e6a58a4198732dc2f8f52f71abfa1152b871aa7
Reviewed-by: Martin Jones <martin.jones@nokia.com>
39 files changed:
src/qml/qml.pro
src/qml/qml/qml.pri
src/qml/qml/qqmlcompiler.cpp
src/qml/qml/qqmlengine.cpp
src/qml/qml/qqmlglobal.cpp [new file with mode: 0644]
src/qml/qml/qqmlglobal_p.h
src/qml/qml/qqmlstringconverters.cpp
src/qml/qml/qqmlstringconverters_p.h
src/qml/qml/qqmlvaluetype.cpp
src/qml/qml/qqmlvaluetype_p.h
src/qml/qml/qqmlvme.cpp
src/qml/qml/qqmlvmemetaobject.cpp
src/qml/qml/qqmlvmemetaobject_p.h
src/qml/qml/qquicklistmodelworkeragent_p.h
src/qml/qml/v4/qv4bindings.cpp
src/qml/qml/v8/qqmlbuiltinfunctions.cpp
src/qml/qml/v8/qv8engine.cpp
src/qml/qml/v8/qv8engine_p.h
src/quick/qtquick2.cpp
src/quick/util/qquickanimation.cpp
src/quick/util/qquickapplication.cpp [moved from src/qml/qml/qquickapplication.cpp with 68% similarity]
src/quick/util/qquickapplication_p.h [moved from src/qml/qml/qquickapplication_p.h with 92% similarity]
src/quick/util/qquickglobal.cpp [new file with mode: 0644]
src/quick/util/qquickvaluetypes.cpp [new file with mode: 0644]
src/quick/util/qquickvaluetypes_p.h [new file with mode: 0644]
src/quick/util/util.pri
tests/auto/qml/qml.pro
tests/auto/qml/qqmlecmascript/testtypes.h
tests/auto/qml/qqmlglobal/qqmlglobal.pro [new file with mode: 0644]
tests/auto/qml/qqmlglobal/tst_qqmlglobal.cpp [new file with mode: 0644]
tests/auto/qml/qqmlinstruction/tst_qqmlinstruction.cpp
tests/auto/qml/qqmllanguage/data/wrongType.7.errors.txt
tests/auto/qml/qqmllanguage/data/wrongType.7.qml
tests/auto/qml/qqmlqt/qqmlqt.pro
tests/auto/qml/qqmlqt/tst_qqmlqt.cpp
tests/auto/qml/qqmlvaluetypes/qqmlvaluetypes.pro
tests/auto/qml/qqmlvaluetypes/tst_qqmlvaluetypes.cpp
tests/auto/quick/qquickapplication/tst_qquickapplication.cpp
tests/auto/quick/qquicktext/tst_qquicktext.cpp