Index: Makefile =================================================================== --- Makefile (revision 375689) +++ Makefile (working copy) @@ -2,59 +2,25 @@ # $FreeBSD$ PORTNAME= qtcreator -DISTVERSION= 2.8.0 +DISTVERSION= 3.3.0 CATEGORIES= devel -MASTER_SITES= ${MASTER_SITE_QT:S/$/:qtcreator/} \ - ${MASTER_SITE_QT} -MASTER_SITE_SUBDIR= official_releases/qtcreator/${DISTVERSION:R}/${DISTVERSION}/:qtcreator \ - official_releases/qt/${QT4_VERSION:R}/${QT4_VERSION} -DISTNAME= qt-creator-${DISTVERSION}-src -DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:qtcreator \ - ${QT_DISTNAME}.tar.gz +MASTER_SITES= ${MASTER_SITE_QT} +MASTER_SITE_SUBDIR=official_releases/qtcreator/${DISTVERSION:R}/${DISTVERSION}/ +DISTNAME= qt-creator-opensource-src-${DISTVERSION} DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org COMMENT= C++ and QML IDE for Qt development -LIB_DEPENDS= libImath.so:${PORTSDIR}/graphics/ilmbase \ - libIlmImf.so:${PORTSDIR}/graphics/OpenEXR \ - libjasper.so:${PORTSDIR}/graphics/jasper \ - libjpeg.so:${PORTSDIR}/graphics/jpeg - -USE_QT4= moc_build rcc_build uic_build \ - linguist_build assistant_run qt3support \ - dbus designer gui help-tools_build network script \ - corelib sql svg testlib xml webkit qdoc3_build +USE_LDCONFIG= ${LOCALBASE}/lib/${PORTNAME} USES= qmake:outsource -MAKE_JOBS_UNSAFE= yes -ALL_TARGET= all docs -INSTALL_TARGET= install install_docs -MAKE_ENV= XDG_CONFIG_HOME=/dev/null -USE_LDCONFIG= ${PREFIX}/lib/${PORTNAME} +USE_QT5= buildtools concurrent core declarative designer gui linguist network\ + qml quick quickcontrols script script sql svg webkit widgets xml\ + xmlpatterns -QMAKE_ARGS= CONFIG+="configure" QTC_PREFIX=${PREFIX} +# enforce install to ${PREFIX} +QMAKE_ARGS+= CONFIG+="configure" QTC_PREFIX=${PREFIX} -# Build Qt Quick Designer (requires update on every Qt update). -QT_DISTNAME= qt-everywhere-opensource-src-${QT4_VERSION} -DO_NOT_EXTRACT= config.profiles config.tests demos doc examples lib \ - mkspecs tools translations -.for dne in ${DO_NOT_EXTRACT} -EXTRACT_AFTER_ARGS+= --exclude '${QT_DISTNAME}/${dne}' -.endfor -QMAKE_ARGS+= QT_PRIVATE_HEADERS="${WRKDIR}/${QT_DISTNAME}/include" +.include -DESKTOP_ENTRIES="Qt Creator" "" "QtProject-qtcreator" \ - "${PREFIX}/bin/${PORTNAME}" "Development;Qt;" true -post-patch: - ${REINPLACE_CMD} -e 's|lrelease|lrelease-qt4|' \ - ${WRKSRC}/share/qtcreator/translations/translations.pro - ${REINPLACE_CMD} -e 's|lupdate|lupdate-qt4|' \ - ${WRKSRC}/share/qtcreator/translations/translations.pro - ${REINPLACE_CMD} -e 's|/usr/bin/gnuplot|${LOCALBASE}/gnuplot|' \ - ${WRKSRC}/share/qtcreator/dumper/gbridge.py - ${REINPLACE_CMD} -e 's|/usr/bin/ant|${LOCALBASE}/ant|' \ - ${WRKSRC}/src/plugins/android/androidsettingswidget.cpp - ${RM} ${WRKSRC}/share/qtcreator/dumper/gbridge.py.bak - -.include Index: distinfo =================================================================== --- distinfo (revision 375689) +++ distinfo (working copy) @@ -1,4 +1,2 @@ -SHA256 (KDE/qt-creator-2.8.0-src.tar.gz) = 7ac5d9a36c2f561f74d77378d4eae95a78c7752b323e1df924d6e895e99f45d2 -SIZE (KDE/qt-creator-2.8.0-src.tar.gz) = 24210148 -SHA256 (KDE/qt-everywhere-opensource-src-4.8.6.tar.gz) = 8b14dd91b52862e09b8e6a963507b74bc2580787d171feda197badfa7034032c -SIZE (KDE/qt-everywhere-opensource-src-4.8.6.tar.gz) = 241623667 +SHA256 (KDE/qt-creator-opensource-src-3.3.0.tar.gz) = 27a5c8815fab95f959134047f8315686de4de6f99b0bedfd46b5dedae390525a +SIZE (KDE/qt-creator-opensource-src-3.3.0.tar.gz) = 22950004 Index: files/patch-git_ac627bb77 =================================================================== --- files/patch-git_ac627bb77 (revision 375689) +++ files/patch-git_ac627bb77 (working copy) @@ -1,42 +0,0 @@ -commit ac627bb77001fa6d182a8a247646a810a94a06ee -Author: Daniel Teske -Date: Tue Oct 22 15:51:21 2013 +0200 - - CMake: Don't expect the version in --help output - - Since we don't actually need it anymore, just remove the code. - - Task-number: QTCREATORBUG-10452 - Change-Id: I59f55f3a319240826569de308491cac697c4f045 - Reviewed-by: Tobias Hunger - ---- src/plugins/cmakeprojectmanager/cmakevalidator.cpp -+++ src/plugins/cmakeprojectmanager/cmakevalidator.cpp -@@ -86,16 +86,11 @@ void CMakeValidator::finished(int exitCode) - } - if (m_state == CMakeValidator::RunningBasic) { - QByteArray response = m_process->readAll(); -- QRegExp versionRegexp(QLatin1String("^cmake version ([\\d\\.]*)")); -- versionRegexp.indexIn(QString::fromLocal8Bit(response)); - - m_hasCodeBlocksMsvcGenerator = response.contains("CodeBlocks - NMake Makefiles"); - m_hasCodeBlocksNinjaGenerator = response.contains("CodeBlocks - Ninja"); -- m_version = versionRegexp.cap(1); -- if (versionRegexp.capturedTexts().size() > 3) -- m_version += QLatin1Char('.') + versionRegexp.cap(3); - -- if (m_version.isEmpty()) { -+ if (response.isEmpty()) { - m_state = CMakeValidator::Invalid; - } else { - m_state = CMakeValidator::RunningFunctionList; ---- src/plugins/cmakeprojectmanager/cmakevalidator.h -+++ src/plugins/cmakeprojectmanager/cmakevalidator.h -@@ -74,7 +74,6 @@ private: - QProcess *m_process; - bool m_hasCodeBlocksMsvcGenerator; - bool m_hasCodeBlocksNinjaGenerator; -- QString m_version; - QString m_executable; - - QMap m_functionArgs; Index: files/patch-src__shared__qbs__src__lib__parser__qmljs.g =================================================================== --- files/patch-src__shared__qbs__src__lib__parser__qmljs.g (revision 375689) +++ files/patch-src__shared__qbs__src__lib__parser__qmljs.g (working copy) @@ -1,20 +0,0 @@ -commit b196bb68f7ac03b3bf9fcbcb4af3ae81e0ca0d7e -Author: Christian Kandeler -Date: Fri Aug 9 11:32:05 2013 +0200 - - Fix typo in QmlJsParser. - - Change-Id: Iade7c0ad78576e1b5bc8110bef8dfb51db7eff8a - Reviewed-by: Tobias Hunger - ---- src/shared/qbs/src/lib/parser/qmljs.g -+++ src/shared/qbs/src/lib/parser/qmljs.g -@@ -291,7 +291,7 @@ public: - inline DiagnosticMessage diagnosticMessage() const - { - foreach (const DiagnosticMessage &d, diagnostic_messages) { -- if (! d.kind == DiagnosticMessage::Warning) -+ if (d.kind != DiagnosticMessage::Warning) - return d; - } - Index: files/patch-src__shared__qbs__src__lib__parser__qmljsparser_p.h =================================================================== --- files/patch-src__shared__qbs__src__lib__parser__qmljsparser_p.h (revision 375689) +++ files/patch-src__shared__qbs__src__lib__parser__qmljsparser_p.h (working copy) @@ -1,20 +0,0 @@ -commit b196bb68f7ac03b3bf9fcbcb4af3ae81e0ca0d7e -Author: Christian Kandeler -Date: Fri Aug 9 11:32:05 2013 +0200 - - Fix typo in QmlJsParser. - - Change-Id: Iade7c0ad78576e1b5bc8110bef8dfb51db7eff8a - Reviewed-by: Tobias Hunger - ---- src/shared/qbs/src/lib/parser/qmljsparser_p.h -+++ src/shared/qbs/src/lib/parser/qmljsparser_p.h -@@ -153,7 +153,7 @@ public: - inline DiagnosticMessage diagnosticMessage() const - { - foreach (const DiagnosticMessage &d, diagnostic_messages) { -- if (! d.kind == DiagnosticMessage::Warning) -+ if (d.kind != DiagnosticMessage::Warning) - return d; - } - Index: files/patch-src_tools_buildoutputparser_buildoutputparser.pro =================================================================== --- files/patch-src_tools_buildoutputparser_buildoutputparser.pro (revision 0) +++ files/patch-src_tools_buildoutputparser_buildoutputparser.pro (working copy) @@ -0,0 +1,11 @@ +--- src/tools/buildoutputparser/buildoutputparser.pro.orig 2014-12-27 17:37:40 UTC ++++ src/tools/buildoutputparser/buildoutputparser.pro +@@ -13,7 +13,7 @@ include(../../rpath.pri) + win32|equals(TEST, 1):DEFINES += HAS_MSVC_PARSER + + DESTDIR = $$IDE_BIN_PATH +-target.path = /bin ++target.path = $$QTC_PREFIX/bin + INSTALLS += target + + SOURCES = \ Property changes on: files/patch-src_tools_buildoutputparser_buildoutputparser.pro ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: pkg-plist =================================================================== --- pkg-plist (revision 375689) +++ pkg-plist (working copy) @@ -1,3 +1,11 @@ +bin/buildoutputparser +bin/qbs +bin/qbs-config +bin/qbs-config-ui +bin/qbs-qmltypes +bin/qbs-setup-qt +bin/qbs-setup-toolchains +bin/qml2puppet bin/qmlpuppet bin/qtcreator bin/qtcreator.sh @@ -46,166 +54,69 @@ lib/qtcreator/libUtils.so.1.0.0 lib/qtcreator/libqbscore.so lib/qtcreator/libqbscore.so.1 -lib/qtcreator/libqbscore.so.1.0 -lib/qtcreator/libqbscore.so.1.0.0 -lib/qtcreator/libzeroconf.so -lib/qtcreator/libzeroconf.so.1 -lib/qtcreator/libzeroconf.so.1.0 -lib/qtcreator/libzeroconf.so.1.0.0 -lib/qtcreator/plugins/BlackBerry/Qnx.pluginspec -lib/qtcreator/plugins/BlackBerry/libQnx.so -lib/qtcreator/plugins/QtProject/AnalyzerBase.pluginspec -lib/qtcreator/plugins/QtProject/Android.pluginspec -lib/qtcreator/plugins/QtProject/AutotoolsProjectManager.pluginspec -lib/qtcreator/plugins/QtProject/Bazaar.pluginspec -lib/qtcreator/plugins/QtProject/BinEditor.pluginspec -lib/qtcreator/plugins/QtProject/Bookmarks.pluginspec -lib/qtcreator/plugins/QtProject/CMakeProjectManager.pluginspec -lib/qtcreator/plugins/QtProject/CVS.pluginspec -lib/qtcreator/plugins/QtProject/ClassView.pluginspec -lib/qtcreator/plugins/QtProject/ClearCase.pluginspec -lib/qtcreator/plugins/QtProject/CodePaster.pluginspec -lib/qtcreator/plugins/QtProject/Core.pluginspec -lib/qtcreator/plugins/QtProject/CppEditor.pluginspec -lib/qtcreator/plugins/QtProject/CppTools.pluginspec -lib/qtcreator/plugins/QtProject/Debugger.pluginspec -lib/qtcreator/plugins/QtProject/Designer.pluginspec -lib/qtcreator/plugins/QtProject/DiffEditor.pluginspec -lib/qtcreator/plugins/QtProject/FakeVim.pluginspec -lib/qtcreator/plugins/QtProject/Find.pluginspec -lib/qtcreator/plugins/QtProject/GLSLEditor.pluginspec -lib/qtcreator/plugins/QtProject/GenericProjectManager.pluginspec -lib/qtcreator/plugins/QtProject/Git.pluginspec -lib/qtcreator/plugins/QtProject/HelloWorld.pluginspec -lib/qtcreator/plugins/QtProject/Help.pluginspec -lib/qtcreator/plugins/QtProject/ImageViewer.pluginspec -lib/qtcreator/plugins/QtProject/Locator.pluginspec -lib/qtcreator/plugins/QtProject/Macros.pluginspec -lib/qtcreator/plugins/QtProject/Madde.pluginspec -lib/qtcreator/plugins/QtProject/Mercurial.pluginspec -lib/qtcreator/plugins/QtProject/Perforce.pluginspec -lib/qtcreator/plugins/QtProject/ProjectExplorer.pluginspec -lib/qtcreator/plugins/QtProject/PythonEditor.pluginspec -lib/qtcreator/plugins/QtProject/QbsProjectManager.pluginspec -lib/qtcreator/plugins/QtProject/QmlDesigner.pluginspec -lib/qtcreator/plugins/QtProject/QmlJSEditor.pluginspec -lib/qtcreator/plugins/QtProject/QmlJSTools.pluginspec -lib/qtcreator/plugins/QtProject/QmlProfiler.pluginspec -lib/qtcreator/plugins/QtProject/QmlProjectManager.pluginspec -lib/qtcreator/plugins/QtProject/Qt4ProjectManager.pluginspec -lib/qtcreator/plugins/QtProject/QtSupport.pluginspec -lib/qtcreator/plugins/QtProject/RemoteLinux.pluginspec -lib/qtcreator/plugins/QtProject/ResourceEditor.pluginspec -lib/qtcreator/plugins/QtProject/Subversion.pluginspec -lib/qtcreator/plugins/QtProject/TaskList.pluginspec -lib/qtcreator/plugins/QtProject/TextEditor.pluginspec -lib/qtcreator/plugins/QtProject/Todo.pluginspec -lib/qtcreator/plugins/QtProject/UpdateInfo.pluginspec -lib/qtcreator/plugins/QtProject/Valgrind.pluginspec -lib/qtcreator/plugins/QtProject/VcsBase.pluginspec -lib/qtcreator/plugins/QtProject/Welcome.pluginspec -lib/qtcreator/plugins/QtProject/libAnalyzerBase.so -lib/qtcreator/plugins/QtProject/libAndroid.so -lib/qtcreator/plugins/QtProject/libAutotoolsProjectManager.so -lib/qtcreator/plugins/QtProject/libBazaar.so -lib/qtcreator/plugins/QtProject/libBinEditor.so -lib/qtcreator/plugins/QtProject/libBookmarks.so -lib/qtcreator/plugins/QtProject/libCMakeProjectManager.so -lib/qtcreator/plugins/QtProject/libCVS.so -lib/qtcreator/plugins/QtProject/libClassView.so -lib/qtcreator/plugins/QtProject/libClearCase.so -lib/qtcreator/plugins/QtProject/libCodePaster.so -lib/qtcreator/plugins/QtProject/libCore.so -lib/qtcreator/plugins/QtProject/libCppEditor.so -lib/qtcreator/plugins/QtProject/libCppTools.so -lib/qtcreator/plugins/QtProject/libDebugger.so -lib/qtcreator/plugins/QtProject/libDesigner.so -lib/qtcreator/plugins/QtProject/libDiffEditor.so -lib/qtcreator/plugins/QtProject/libFakeVim.so -lib/qtcreator/plugins/QtProject/libFind.so -lib/qtcreator/plugins/QtProject/libGLSLEditor.so -lib/qtcreator/plugins/QtProject/libGenericProjectManager.so -lib/qtcreator/plugins/QtProject/libGit.so -lib/qtcreator/plugins/QtProject/libHelloWorld.so -lib/qtcreator/plugins/QtProject/libHelp.so -lib/qtcreator/plugins/QtProject/libImageViewer.so -lib/qtcreator/plugins/QtProject/libLocator.so -lib/qtcreator/plugins/QtProject/libMacros.so -lib/qtcreator/plugins/QtProject/libMadde.so -lib/qtcreator/plugins/QtProject/libMercurial.so -lib/qtcreator/plugins/QtProject/libPerforce.so -lib/qtcreator/plugins/QtProject/libProjectExplorer.so -lib/qtcreator/plugins/QtProject/libPythonEditor.so -lib/qtcreator/plugins/QtProject/libQbsProjectManager.so -lib/qtcreator/plugins/QtProject/libQmlDesigner.so -lib/qtcreator/plugins/QtProject/libQmlJSEditor.so -lib/qtcreator/plugins/QtProject/libQmlJSTools.so -lib/qtcreator/plugins/QtProject/libQmlProfiler.so -lib/qtcreator/plugins/QtProject/libQmlProjectManager.so -lib/qtcreator/plugins/QtProject/libQt4ProjectManager.so -lib/qtcreator/plugins/QtProject/libQtSupport.so -lib/qtcreator/plugins/QtProject/libRemoteLinux.so -lib/qtcreator/plugins/QtProject/libResourceEditor.so -lib/qtcreator/plugins/QtProject/libSubversion.so -lib/qtcreator/plugins/QtProject/libTaskList.so -lib/qtcreator/plugins/QtProject/libTextEditor.so -lib/qtcreator/plugins/QtProject/libTodo.so -lib/qtcreator/plugins/QtProject/libUpdateInfo.so -lib/qtcreator/plugins/QtProject/libValgrind.so -lib/qtcreator/plugins/QtProject/libVcsBase.so -lib/qtcreator/plugins/QtProject/libWelcome.so -lib/qtcreator/qmldesigner/libcomponentsplugin.so -lib/qtcreator/qmldesigner/libqtquickplugin.so -lib/qtcreator/qtcomponents/Button.qml -lib/qtcreator/qtcomponents/ButtonRow.qml -lib/qtcreator/qtcomponents/CheckBox.qml -lib/qtcreator/qtcomponents/ChoiceList.qml -lib/qtcreator/qtcomponents/ContextMenu.qml -lib/qtcreator/qtcomponents/Dial.qml -lib/qtcreator/qtcomponents/Frame.qml -lib/qtcreator/qtcomponents/GroupBox.qml -lib/qtcreator/qtcomponents/Menu.qml -lib/qtcreator/qtcomponents/MenuItem.qml -lib/qtcreator/qtcomponents/ProgressBar.qml -lib/qtcreator/qtcomponents/RadioButton.qml -lib/qtcreator/qtcomponents/ScrollArea.qml -lib/qtcreator/qtcomponents/ScrollBar.qml -lib/qtcreator/qtcomponents/Slider.qml -lib/qtcreator/qtcomponents/SpinBox.qml -lib/qtcreator/qtcomponents/SplitterRow.qml -lib/qtcreator/qtcomponents/Switch.qml -lib/qtcreator/qtcomponents/Tab.qml -lib/qtcreator/qtcomponents/TabBar.qml -lib/qtcreator/qtcomponents/TabFrame.qml -lib/qtcreator/qtcomponents/TableColumn.qml -lib/qtcreator/qtcomponents/TableView.qml -lib/qtcreator/qtcomponents/TextArea.qml -lib/qtcreator/qtcomponents/TextField.qml -lib/qtcreator/qtcomponents/ToolBar.qml -lib/qtcreator/qtcomponents/ToolButton.qml -lib/qtcreator/qtcomponents/custom/BasicButton.qml -lib/qtcreator/qtcomponents/custom/Button.qml -lib/qtcreator/qtcomponents/custom/ButtonColumn.qml -lib/qtcreator/qtcomponents/custom/ButtonGroup.js -lib/qtcreator/qtcomponents/custom/ButtonRow.qml -lib/qtcreator/qtcomponents/custom/CheckBox.qml -lib/qtcreator/qtcomponents/custom/ChoiceList.qml -lib/qtcreator/qtcomponents/custom/GroupBox.qml -lib/qtcreator/qtcomponents/custom/ProgressBar.qml -lib/qtcreator/qtcomponents/custom/Slider.qml -lib/qtcreator/qtcomponents/custom/SpinBox.qml -lib/qtcreator/qtcomponents/custom/SplitterRow.qml -lib/qtcreator/qtcomponents/custom/TextField.qml -lib/qtcreator/qtcomponents/custom/behaviors/ButtonBehavior.qml -lib/qtcreator/qtcomponents/custom/behaviors/ModalPopupBehavior.qml -lib/qtcreator/qtcomponents/custom/components.pro -lib/qtcreator/qtcomponents/custom/private/ChoiceListPopup.qml -lib/qtcreator/qtcomponents/custom/qmldir -lib/qtcreator/qtcomponents/images/folder_new.png -lib/qtcreator/qtcomponents/plugin/libstyleplugin.so -lib/qtcreator/qtcomponents/qmldir -share/doc/qtcreator/qtcreator-dev.qch -share/doc/qtcreator/qtcreator.qch +lib/qtcreator/libqbscore.so.1.3 +lib/qtcreator/libqbscore.so.1.3.3 +lib/qtcreator/libqbsqtprofilesetup.so +lib/qtcreator/libqbsqtprofilesetup.so.1 +lib/qtcreator/libqbsqtprofilesetup.so.1.3 +lib/qtcreator/libqbsqtprofilesetup.so.1.3.3 +lib/qtcreator/plugins/libAnalyzerBase.so +lib/qtcreator/plugins/libAndroid.so +lib/qtcreator/plugins/libAutotoolsProjectManager.so +lib/qtcreator/plugins/libBareMetal.so +lib/qtcreator/plugins/libBazaar.so +lib/qtcreator/plugins/libBeautifier.so +lib/qtcreator/plugins/libBinEditor.so +lib/qtcreator/plugins/libBookmarks.so +lib/qtcreator/plugins/libCMakeProjectManager.so +lib/qtcreator/plugins/libCVS.so +lib/qtcreator/plugins/libClassView.so +lib/qtcreator/plugins/libClearCase.so +lib/qtcreator/plugins/libCodePaster.so +lib/qtcreator/plugins/libCore.so +lib/qtcreator/plugins/libCppEditor.so +lib/qtcreator/plugins/libCppTools.so +lib/qtcreator/plugins/libDebugger.so +lib/qtcreator/plugins/libDesigner.so +lib/qtcreator/plugins/libDiffEditor.so +lib/qtcreator/plugins/libEmacsKeys.so +lib/qtcreator/plugins/libFakeVim.so +lib/qtcreator/plugins/libGLSLEditor.so +lib/qtcreator/plugins/libGenericProjectManager.so +lib/qtcreator/plugins/libGit.so +lib/qtcreator/plugins/libHelloWorld.so +lib/qtcreator/plugins/libHelp.so +lib/qtcreator/plugins/libImageViewer.so +lib/qtcreator/plugins/libIos.so +lib/qtcreator/plugins/libMacros.so +lib/qtcreator/plugins/libMercurial.so +lib/qtcreator/plugins/libPerforce.so +lib/qtcreator/plugins/libProjectExplorer.so +lib/qtcreator/plugins/libPythonEditor.so +lib/qtcreator/plugins/libQbsProjectManager.so +lib/qtcreator/plugins/libQmakeAndroidSupport.so +lib/qtcreator/plugins/libQmakeProjectManager.so +lib/qtcreator/plugins/libQmlDesigner.so +lib/qtcreator/plugins/libQmlJSEditor.so +lib/qtcreator/plugins/libQmlJSTools.so +lib/qtcreator/plugins/libQmlProfiler.so +lib/qtcreator/plugins/libQmlProjectManager.so +lib/qtcreator/plugins/libQnx.so +lib/qtcreator/plugins/libQtSupport.so +lib/qtcreator/plugins/libRemoteLinux.so +lib/qtcreator/plugins/libResourceEditor.so +lib/qtcreator/plugins/libSubversion.so +lib/qtcreator/plugins/libTaskList.so +lib/qtcreator/plugins/libTextEditor.so +lib/qtcreator/plugins/libTodo.so +lib/qtcreator/plugins/libValgrind.so +lib/qtcreator/plugins/libVcsBase.so +lib/qtcreator/plugins/libWelcome.so +lib/qtcreator/plugins/libWinRt.so +lib/qtcreator/plugins/qbs/plugins/libqbs_cpp_scanner.so +lib/qtcreator/plugins/qbs/plugins/libqbs_qt_scanner.so +lib/qtcreator/plugins/qmldesigner/libcomponentsplugin.so +lib/qtcreator/plugins/qmldesigner/libqtquickplugin.so share/icons/hicolor/128x128/apps/QtProject-qtcreator.png share/icons/hicolor/16x16/apps/QtProject-qtcreator.png share/icons/hicolor/24x24/apps/QtProject-qtcreator.png @@ -214,6 +125,20 @@ share/icons/hicolor/48x48/apps/QtProject-qtcreator.png share/icons/hicolor/512x512/apps/QtProject-qtcreator.png share/icons/hicolor/64x64/apps/QtProject-qtcreator.png +share/qtcreator/cplusplus/qt5-qobjectdefs-injected.h +share/qtcreator/debugger/LGPL_EXCEPTION.TXT +share/qtcreator/debugger/LICENSE.LGPL +share/qtcreator/debugger/README.txt +share/qtcreator/debugger/boosttypes.py +share/qtcreator/debugger/creatortypes.py +share/qtcreator/debugger/dumper.py +share/qtcreator/debugger/gdbbridge.py +share/qtcreator/debugger/lldbbridge.py +share/qtcreator/debugger/misctypes.py +share/qtcreator/debugger/pdumper.py +share/qtcreator/debugger/personaltypes.py +share/qtcreator/debugger/qttypes.py +share/qtcreator/debugger/stdtypes.py share/qtcreator/designer/templates.xml share/qtcreator/designer/templates/Dialog_with_Buttons_Bottom.ui share/qtcreator/designer/templates/Dialog_with_Buttons_Right.ui @@ -220,18 +145,6 @@ share/qtcreator/designer/templates/Dialog_without_Buttons.ui share/qtcreator/designer/templates/Main_Window.ui share/qtcreator/designer/templates/Widget.ui -share/qtcreator/dumper/LGPL_EXCEPTION.TXT -share/qtcreator/dumper/LICENSE.LGPL -share/qtcreator/dumper/dumper.cpp -share/qtcreator/dumper/dumper.h -share/qtcreator/dumper/dumper.pro -share/qtcreator/dumper/dumper_p.h -share/qtcreator/dumper/gbridge.py -share/qtcreator/dumper/lbridge.py -share/qtcreator/dumper/pdumper.py -share/qtcreator/dumper/qttypes.py -share/qtcreator/dumper/test/dumpertest.pro -share/qtcreator/dumper/test/main.cpp share/qtcreator/externaltools/lrelease.xml share/qtcreator/externaltools/lupdate.xml share/qtcreator/externaltools/qmlscene.xml @@ -249,6 +162,7 @@ share/qtcreator/generic-highlighter/ini.xml share/qtcreator/generic-highlighter/java.xml share/qtcreator/generic-highlighter/javadoc.xml +share/qtcreator/generic-highlighter/makefile.xml share/qtcreator/generic-highlighter/perl.xml share/qtcreator/generic-highlighter/ruby.xml share/qtcreator/generic-highlighter/valgrind-suppression.xml @@ -260,63 +174,83 @@ share/qtcreator/glsl/glsl_es_100.frag share/qtcreator/glsl/glsl_es_100.vert share/qtcreator/glsl/glsl_es_100_common.glsl -share/qtcreator/qbs/lib/qbs/plugins/libqbs_cpp_scanner.so -share/qtcreator/qbs/lib/qbs/plugins/libqbs_qt_scanner.so +share/qtcreator/qbs/share/qbs/examples/app-and-lib/app/app.qbs +share/qtcreator/qbs/share/qbs/examples/app-and-lib/app/main.cpp +share/qtcreator/qbs/share/qbs/examples/app-and-lib/app_and_lib.qbs +share/qtcreator/qbs/share/qbs/examples/app-and-lib/lib/lib.cpp +share/qtcreator/qbs/share/qbs/examples/app-and-lib/lib/lib.qbs +share/qtcreator/qbs/share/qbs/examples/cocoa-application/CocoaApplication.qbs +share/qtcreator/qbs/share/qbs/examples/cocoa-application/CocoaApplication.xcodeproj/project.pbxproj +share/qtcreator/qbs/share/qbs/examples/cocoa-application/CocoaApplication/AppDelegate.h +share/qtcreator/qbs/share/qbs/examples/cocoa-application/CocoaApplication/AppDelegate.m +share/qtcreator/qbs/share/qbs/examples/cocoa-application/CocoaApplication/CocoaApplication-Info.plist +share/qtcreator/qbs/share/qbs/examples/cocoa-application/CocoaApplication/CocoaApplication-Prefix.pch +share/qtcreator/qbs/share/qbs/examples/cocoa-application/CocoaApplication/en.lproj/Credits.rtf +share/qtcreator/qbs/share/qbs/examples/cocoa-application/CocoaApplication/en.lproj/InfoPlist.strings +share/qtcreator/qbs/share/qbs/examples/cocoa-application/CocoaApplication/en.lproj/MainMenu.xib +share/qtcreator/qbs/share/qbs/examples/cocoa-application/CocoaApplication/main.m +share/qtcreator/qbs/share/qbs/examples/cocoa-touch-application/CocoaTouchApplication.qbs +share/qtcreator/qbs/share/qbs/examples/cocoa-touch-application/CocoaTouchApplication.xcodeproj/project.pbxproj +share/qtcreator/qbs/share/qbs/examples/cocoa-touch-application/CocoaTouchApplication/AppDelegate.h +share/qtcreator/qbs/share/qbs/examples/cocoa-touch-application/CocoaTouchApplication/AppDelegate.m +share/qtcreator/qbs/share/qbs/examples/cocoa-touch-application/CocoaTouchApplication/CocoaTouchApplication-Info.plist +share/qtcreator/qbs/share/qbs/examples/cocoa-touch-application/CocoaTouchApplication/CocoaTouchApplication-Prefix.pch +share/qtcreator/qbs/share/qbs/examples/cocoa-touch-application/CocoaTouchApplication/Default-568h@2x.png +share/qtcreator/qbs/share/qbs/examples/cocoa-touch-application/CocoaTouchApplication/Default.png +share/qtcreator/qbs/share/qbs/examples/cocoa-touch-application/CocoaTouchApplication/Default@2x.png +share/qtcreator/qbs/share/qbs/examples/cocoa-touch-application/CocoaTouchApplication/DetailViewController.h +share/qtcreator/qbs/share/qbs/examples/cocoa-touch-application/CocoaTouchApplication/DetailViewController.m +share/qtcreator/qbs/share/qbs/examples/cocoa-touch-application/CocoaTouchApplication/MasterViewController.h +share/qtcreator/qbs/share/qbs/examples/cocoa-touch-application/CocoaTouchApplication/MasterViewController.m +share/qtcreator/qbs/share/qbs/examples/cocoa-touch-application/CocoaTouchApplication/en.lproj/DetailViewController_iPad.xib +share/qtcreator/qbs/share/qbs/examples/cocoa-touch-application/CocoaTouchApplication/en.lproj/DetailViewController_iPhone.xib +share/qtcreator/qbs/share/qbs/examples/cocoa-touch-application/CocoaTouchApplication/en.lproj/InfoPlist.strings +share/qtcreator/qbs/share/qbs/examples/cocoa-touch-application/CocoaTouchApplication/en.lproj/MasterViewController_iPad.xib +share/qtcreator/qbs/share/qbs/examples/cocoa-touch-application/CocoaTouchApplication/en.lproj/MasterViewController_iPhone.xib +share/qtcreator/qbs/share/qbs/examples/cocoa-touch-application/CocoaTouchApplication/main.m +share/qtcreator/qbs/share/qbs/examples/collidingmice/collidingmice.qbs +share/qtcreator/qbs/share/qbs/examples/collidingmice/images/cheese.jpg +share/qtcreator/qbs/share/qbs/examples/collidingmice/main.cpp +share/qtcreator/qbs/share/qbs/examples/collidingmice/mice.qrc +share/qtcreator/qbs/share/qbs/examples/collidingmice/mouse.cpp +share/qtcreator/qbs/share/qbs/examples/collidingmice/mouse.h +share/qtcreator/qbs/share/qbs/examples/examples.qbs +share/qtcreator/qbs/share/qbs/examples/helloworld-complex/hello.qbs +share/qtcreator/qbs/share/qbs/examples/helloworld-complex/src/foo.cpp +share/qtcreator/qbs/share/qbs/examples/helloworld-complex/src/foo.h +share/qtcreator/qbs/share/qbs/examples/helloworld-complex/src/main.cpp +share/qtcreator/qbs/share/qbs/examples/helloworld-complex/src/specialfeature.cpp +share/qtcreator/qbs/share/qbs/examples/helloworld-complex/src/specialfeature.h +share/qtcreator/qbs/share/qbs/examples/helloworld-minimal/hello.qbs +share/qtcreator/qbs/share/qbs/examples/helloworld-minimal/main.cpp +share/qtcreator/qbs/share/qbs/examples/helloworld-qt/hello.qbs +share/qtcreator/qbs/share/qbs/examples/helloworld-qt/main.cpp +share/qtcreator/qbs/share/qbs/imports/qbs/BundleTools/bundle-tools.js +share/qtcreator/qbs/share/qbs/imports/qbs/DarwinTools/darwin-tools.js share/qtcreator/qbs/share/qbs/imports/qbs/FileInfo/fileinfo.js +share/qtcreator/qbs/share/qbs/imports/qbs/ModUtils/utils.js +share/qtcreator/qbs/share/qbs/imports/qbs/PathTools/path-tools.js share/qtcreator/qbs/share/qbs/imports/qbs/Probes/BinaryProbe.qbs share/qtcreator/qbs/share/qbs/imports/qbs/Probes/FrameworkProbe.qbs share/qtcreator/qbs/share/qbs/imports/qbs/Probes/IncludeProbe.qbs share/qtcreator/qbs/share/qbs/imports/qbs/Probes/PathProbe.qbs share/qtcreator/qbs/share/qbs/imports/qbs/Probes/PkgConfigProbe.qbs -share/qtcreator/qbs/share/qbs/imports/qbs/Probes/utils.js +share/qtcreator/qbs/share/qbs/imports/qbs/UnixUtils/unix-utils.js +share/qtcreator/qbs/share/qbs/imports/qbs/WindowsUtils/windows-utils.js share/qtcreator/qbs/share/qbs/imports/qbs/base/Application.qbs share/qtcreator/qbs/share/qbs/imports/qbs/base/CppApplication.qbs share/qtcreator/qbs/share/qbs/imports/qbs/base/DynamicLibrary.qbs -share/qtcreator/qbs/share/qbs/imports/qbs/base/QmlApp.qbs +share/qtcreator/qbs/share/qbs/imports/qbs/base/NSISSetup.qbs +share/qtcreator/qbs/share/qbs/imports/qbs/base/NodeJSApplication.qbs +share/qtcreator/qbs/share/qbs/imports/qbs/base/QtApplication.qbs +share/qtcreator/qbs/share/qbs/imports/qbs/base/QtGuiApplication.qbs share/qtcreator/qbs/share/qbs/imports/qbs/base/StaticLibrary.qbs -share/qtcreator/qbs/share/qbs/imports/qbs/base/qmlapplicationviewer/qmlapplicationviewer.h -share/qtcreator/qbs/share/qbs/imports/qbs/base/qmlapplicationviewer/qmlapplicationviewer_qt4.cpp -share/qtcreator/qbs/share/qbs/imports/qbs/base/qmlapplicationviewer/qmlapplicationviewer_qt4.h -share/qtcreator/qbs/share/qbs/imports/qbs/base/qmlapplicationviewer/qmlapplicationviewer_qt5.cpp -share/qtcreator/qbs/share/qbs/imports/qbs/base/qmlapplicationviewer/qmlapplicationviewer_qt5.h -share/qtcreator/qbs/share/qbs/modules/Qt/QtModule.qbs -share/qtcreator/qbs/share/qbs/modules/Qt/axcontainer/axcontainer.qbs -share/qtcreator/qbs/share/qbs/modules/Qt/axserver/axserver.qbs -share/qtcreator/qbs/share/qbs/modules/Qt/concurrent/concurrent.qbs -share/qtcreator/qbs/share/qbs/modules/Qt/core/core.qbs -share/qtcreator/qbs/share/qbs/modules/Qt/core/moc.js -share/qtcreator/qbs/share/qbs/modules/Qt/dbus/dbus.qbs -share/qtcreator/qbs/share/qbs/modules/Qt/declarative/declarative.qbs -share/qtcreator/qbs/share/qbs/modules/Qt/designer/designer.qbs -share/qtcreator/qbs/share/qbs/modules/Qt/designercomponents/designercomponents.qbs -share/qtcreator/qbs/share/qbs/modules/Qt/enginio/enginio.qbs -share/qtcreator/qbs/share/qbs/modules/Qt/gui/gui.qbs -share/qtcreator/qbs/share/qbs/modules/Qt/help/help.qbs -share/qtcreator/qbs/share/qbs/modules/Qt/jsonstream/jsonstream.qbs -share/qtcreator/qbs/share/qbs/modules/Qt/multimedia/multimedia.qbs -share/qtcreator/qbs/share/qbs/modules/Qt/multimediawidgets/multimediawidgets.qbs -share/qtcreator/qbs/share/qbs/modules/Qt/network/network.qbs -share/qtcreator/qbs/share/qbs/modules/Qt/opengl/opengl.qbs -share/qtcreator/qbs/share/qbs/modules/Qt/phonon/phonon.qbs -share/qtcreator/qbs/share/qbs/modules/Qt/printsupport/printsupport.qbs -share/qtcreator/qbs/share/qbs/modules/Qt/qml/qml.qbs -share/qtcreator/qbs/share/qbs/modules/Qt/qtfunctions.js -share/qtcreator/qbs/share/qbs/modules/Qt/quick/quick.qbs -share/qtcreator/qbs/share/qbs/modules/Qt/script/script.qbs -share/qtcreator/qbs/share/qbs/modules/Qt/sql/sql.qbs -share/qtcreator/qbs/share/qbs/modules/Qt/svg/svg.qbs -share/qtcreator/qbs/share/qbs/modules/Qt/test/test.qbs -share/qtcreator/qbs/share/qbs/modules/Qt/webkit/webkit.qbs -share/qtcreator/qbs/share/qbs/modules/Qt/webkitwidgets/webkitwidgets.qbs -share/qtcreator/qbs/share/qbs/modules/Qt/widgets/widgets.qbs -share/qtcreator/qbs/share/qbs/modules/Qt/xml/xml.qbs -share/qtcreator/qbs/share/qbs/modules/Qt/xmlpatterns/xmlpatterns.qbs +share/qtcreator/qbs/share/qbs/imports/qbs/base/WindowsInstallerPackage.qbs +share/qtcreator/qbs/share/qbs/imports/qbs/base/WindowsSetupPackage.qbs share/qtcreator/qbs/share/qbs/modules/cpp/CppModule.qbs share/qtcreator/qbs/share/qbs/modules/cpp/DarwinGCC.qbs share/qtcreator/qbs/share/qbs/modules/cpp/GenericGCC.qbs share/qtcreator/qbs/share/qbs/modules/cpp/UnixGCC.qbs -share/qtcreator/qbs/share/qbs/modules/cpp/bundle-tools.js -share/qtcreator/qbs/share/qbs/modules/cpp/darwin-tools.js share/qtcreator/qbs/share/qbs/modules/cpp/gcc.js share/qtcreator/qbs/share/qbs/modules/cpp/genericunix-gcc.qbs share/qtcreator/qbs/share/qbs/modules/cpp/ios-gcc.qbs @@ -323,12 +257,15 @@ share/qtcreator/qbs/share/qbs/modules/cpp/linux-gcc.qbs share/qtcreator/qbs/share/qbs/modules/cpp/msvc.js share/qtcreator/qbs/share/qbs/modules/cpp/osx-gcc.qbs -share/qtcreator/qbs/share/qbs/modules/cpp/path-tools.js share/qtcreator/qbs/share/qbs/modules/cpp/windows-mingw.qbs share/qtcreator/qbs/share/qbs/modules/cpp/windows-msvc.qbs -share/qtcreator/qbs/share/qbs/modules/cpp/windows.js +share/qtcreator/qbs/share/qbs/modules/ib/IBModule.qbs +share/qtcreator/qbs/share/qbs/modules/ib/ib.js +share/qtcreator/qbs/share/qbs/modules/nodejs/NodeJS.qbs +share/qtcreator/qbs/share/qbs/modules/nsis/NSISModule.qbs share/qtcreator/qbs/share/qbs/modules/qbs/common.qbs -share/qtcreator/qbs/share/qbs/modules/utils.js +share/qtcreator/qbs/share/qbs/modules/typescript/TypeScriptModule.qbs +share/qtcreator/qbs/share/qbs/modules/wix/WiXModule.qbs share/qtcreator/qml-type-descriptions/builtins.qmltypes share/qtcreator/qml-type-descriptions/qbs-bundle.json share/qtcreator/qml-type-descriptions/qmlproject-bundle.json @@ -361,89 +298,6 @@ share/qtcreator/qml/qmldump/qmldump.pro share/qtcreator/qml/qmldump/qmlstreamwriter.cpp share/qtcreator/qml/qmldump/qmlstreamwriter.h -share/qtcreator/qml/qmljsdebugger/editor/abstractliveedittool.cpp -share/qtcreator/qml/qmljsdebugger/editor/abstractliveedittool.h -share/qtcreator/qml/qmljsdebugger/editor/boundingrecthighlighter.cpp -share/qtcreator/qml/qmljsdebugger/editor/boundingrecthighlighter.h -share/qtcreator/qml/qmljsdebugger/editor/colorpickertool.cpp -share/qtcreator/qml/qmljsdebugger/editor/colorpickertool.h -share/qtcreator/qml/qmljsdebugger/editor/livelayeritem.cpp -share/qtcreator/qml/qmljsdebugger/editor/livelayeritem.h -share/qtcreator/qml/qmljsdebugger/editor/liverubberbandselectionmanipulator.cpp -share/qtcreator/qml/qmljsdebugger/editor/liverubberbandselectionmanipulator.h -share/qtcreator/qml/qmljsdebugger/editor/liveselectionindicator.cpp -share/qtcreator/qml/qmljsdebugger/editor/liveselectionindicator.h -share/qtcreator/qml/qmljsdebugger/editor/liveselectionrectangle.cpp -share/qtcreator/qml/qmljsdebugger/editor/liveselectionrectangle.h -share/qtcreator/qml/qmljsdebugger/editor/liveselectiontool.cpp -share/qtcreator/qml/qmljsdebugger/editor/liveselectiontool.h -share/qtcreator/qml/qmljsdebugger/editor/livesingleselectionmanipulator.cpp -share/qtcreator/qml/qmljsdebugger/editor/livesingleselectionmanipulator.h -share/qtcreator/qml/qmljsdebugger/editor/subcomponentmasklayeritem.cpp -share/qtcreator/qml/qmljsdebugger/editor/subcomponentmasklayeritem.h -share/qtcreator/qml/qmljsdebugger/editor/zoomtool.cpp -share/qtcreator/qml/qmljsdebugger/editor/zoomtool.h -share/qtcreator/qml/qmljsdebugger/include/jsdebuggeragent.h -share/qtcreator/qml/qmljsdebugger/include/qdeclarativeinspectorservice.h -share/qtcreator/qml/qmljsdebugger/include/qdeclarativeviewinspector.h -share/qtcreator/qml/qmljsdebugger/include/qdeclarativeviewobserver.h -share/qtcreator/qml/qmljsdebugger/include/qmlinspectorconstants.h -share/qtcreator/qml/qmljsdebugger/include/qmljsdebugger_global.h -share/qtcreator/qml/qmljsdebugger/include/qt_private/qdeclarativedebughelper_p.h -share/qtcreator/qml/qmljsdebugger/include/qt_private/qdeclarativedebugservice_p.h -share/qtcreator/qml/qmljsdebugger/include/qt_private/qdeclarativestate_p.h -share/qtcreator/qml/qmljsdebugger/jsdebuggeragent.cpp -share/qtcreator/qml/qmljsdebugger/protocol/inspectorprotocol.h -share/qtcreator/qml/qmljsdebugger/protocol/protocol.pri -share/qtcreator/qml/qmljsdebugger/qdeclarativeinspectorservice.cpp -share/qtcreator/qml/qmljsdebugger/qdeclarativeviewinspector.cpp -share/qtcreator/qml/qmljsdebugger/qdeclarativeviewinspector_p.h -share/qtcreator/qml/qmljsdebugger/qmljsdebugger-lib.pri -share/qtcreator/qml/qmljsdebugger/qmljsdebugger-src.pri -share/qtcreator/qml/qmljsdebugger/qmljsdebugger.pro -share/qtcreator/qml/qmlobserver/Info.plist.in -share/qtcreator/qml/qmlobserver/LGPL_EXCEPTION.TXT -share/qtcreator/qml/qmlobserver/LICENSE.LGPL -share/qtcreator/qml/qmlobserver/browser/Browser.qml -share/qtcreator/qml/qmlobserver/browser/browser.qrc -share/qtcreator/qml/qmlobserver/browser/images/folder.png -share/qtcreator/qml/qmlobserver/browser/images/titlebar.png -share/qtcreator/qml/qmlobserver/browser/images/titlebar.sci -share/qtcreator/qml/qmlobserver/browser/images/up.png -share/qtcreator/qml/qmlobserver/deviceorientation.cpp -share/qtcreator/qml/qmlobserver/deviceorientation.h -share/qtcreator/qml/qmlobserver/deviceorientation_harmattan.cpp -share/qtcreator/qml/qmlobserver/deviceorientation_maemo5.cpp -share/qtcreator/qml/qmlobserver/deviceorientation_symbian.cpp -share/qtcreator/qml/qmlobserver/loggerwidget.cpp -share/qtcreator/qml/qmlobserver/loggerwidget.h -share/qtcreator/qml/qmlobserver/main.cpp -share/qtcreator/qml/qmlobserver/proxysettings.cpp -share/qtcreator/qml/qmlobserver/proxysettings.h -share/qtcreator/qml/qmlobserver/proxysettings.ui -share/qtcreator/qml/qmlobserver/proxysettings_maemo5.ui -share/qtcreator/qml/qmlobserver/qdeclarativetester.cpp -share/qtcreator/qml/qmlobserver/qdeclarativetester.h -share/qtcreator/qml/qmlobserver/qml.icns -share/qtcreator/qml/qmlobserver/qml.pri -share/qtcreator/qml/qmlobserver/qmlobserver.pro -share/qtcreator/qml/qmlobserver/qmlruntime.cpp -share/qtcreator/qml/qmlobserver/qmlruntime.h -share/qtcreator/qml/qmlobserver/recopts.ui -share/qtcreator/qml/qmlobserver/recopts_maemo5.ui -share/qtcreator/qml/qmlobserver/startup/Logo.qml -share/qtcreator/qml/qmlobserver/startup/qt-back.png -share/qtcreator/qml/qmlobserver/startup/qt-blue.jpg -share/qtcreator/qml/qmlobserver/startup/qt-front.png -share/qtcreator/qml/qmlobserver/startup/qt-sketch.jpg -share/qtcreator/qml/qmlobserver/startup/qt-text.png -share/qtcreator/qml/qmlobserver/startup/quick-blur.png -share/qtcreator/qml/qmlobserver/startup/quick-regular.png -share/qtcreator/qml/qmlobserver/startup/shadow.png -share/qtcreator/qml/qmlobserver/startup/startup.qml -share/qtcreator/qml/qmlobserver/startup/startup.qrc -share/qtcreator/qml/qmlobserver/startup/white-star.png -share/qtcreator/qml/qmlobserver/texteditautoresizer_maemo5.h share/qtcreator/qml/qmlpuppet/commands/changeauxiliarycommand.cpp share/qtcreator/qml/qmlpuppet/commands/changeauxiliarycommand.h share/qtcreator/qml/qmlpuppet/commands/changebindingscommand.cpp @@ -479,6 +333,8 @@ share/qtcreator/qml/qmlpuppet/commands/informationchangedcommand.h share/qtcreator/qml/qmlpuppet/commands/pixmapchangedcommand.cpp share/qtcreator/qml/qmlpuppet/commands/pixmapchangedcommand.h +share/qtcreator/qml/qmlpuppet/commands/puppetalivecommand.cpp +share/qtcreator/qml/qmlpuppet/commands/puppetalivecommand.h share/qtcreator/qml/qmlpuppet/commands/removeinstancescommand.cpp share/qtcreator/qml/qmlpuppet/commands/removeinstancescommand.h share/qtcreator/qml/qmlpuppet/commands/removepropertiescommand.cpp @@ -514,6 +370,9 @@ share/qtcreator/qml/qmlpuppet/container/propertyvaluecontainer.h share/qtcreator/qml/qmlpuppet/container/reparentcontainer.cpp share/qtcreator/qml/qmlpuppet/container/reparentcontainer.h +share/qtcreator/qml/qmlpuppet/container/sharedmemory.h +share/qtcreator/qml/qmlpuppet/container/sharedmemory_qt.cpp +share/qtcreator/qml/qmlpuppet/container/sharedmemory_unix.cpp share/qtcreator/qml/qmlpuppet/html/welcome.html share/qtcreator/qml/qmlpuppet/images/template_image.png share/qtcreator/qml/qmlpuppet/images/webkit.png @@ -526,7 +385,8 @@ share/qtcreator/qml/qmlpuppet/interfaces/nodeinstanceglobal.h share/qtcreator/qml/qmlpuppet/interfaces/nodeinstanceserverinterface.cpp share/qtcreator/qml/qmlpuppet/interfaces/nodeinstanceserverinterface.h -share/qtcreator/qml/qmlpuppet/qml2puppet/Info.plist.in +share/qtcreator/qml/qmlpuppet/mockfiles/Window.qml +share/qtcreator/qml/qmlpuppet/qml2puppet/Info.plist share/qtcreator/qml/qmlpuppet/qml2puppet/instances/anchorchangesnodeinstance.cpp share/qtcreator/qml/qmlpuppet/qml2puppet/instances/anchorchangesnodeinstance.h share/qtcreator/qml/qmlpuppet/qml2puppet/instances/behaviornodeinstance.cpp @@ -539,8 +399,6 @@ share/qtcreator/qml/qmlpuppet/qml2puppet/instances/dummycontextobject.h share/qtcreator/qml/qmlpuppet/qml2puppet/instances/dummynodeinstance.cpp share/qtcreator/qml/qmlpuppet/qml2puppet/instances/dummynodeinstance.h -share/qtcreator/qml/qmlpuppet/qml2puppet/instances/graphicalnodeinstance.cpp -share/qtcreator/qml/qmlpuppet/qml2puppet/instances/graphicalnodeinstance.h share/qtcreator/qml/qmlpuppet/qml2puppet/instances/instances.pri share/qtcreator/qml/qmlpuppet/qml2puppet/instances/layoutnodeinstance.cpp share/qtcreator/qml/qmlpuppet/qml2puppet/instances/layoutnodeinstance.h @@ -570,10 +428,10 @@ share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5previewnodeinstanceserver.h share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5rendernodeinstanceserver.cpp share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5rendernodeinstanceserver.h +share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5testnodeinstanceserver.cpp +share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5testnodeinstanceserver.h share/qtcreator/qml/qmlpuppet/qml2puppet/instances/quickitemnodeinstance.cpp share/qtcreator/qml/qmlpuppet/qml2puppet/instances/quickitemnodeinstance.h -share/qtcreator/qml/qmlpuppet/qml2puppet/instances/quickwindownodeinstance.cpp -share/qtcreator/qml/qmlpuppet/qml2puppet/instances/quickwindownodeinstance.h share/qtcreator/qml/qmlpuppet/qml2puppet/instances/servernodeinstance.cpp share/qtcreator/qml/qmlpuppet/qml2puppet/instances/servernodeinstance.h share/qtcreator/qml/qmlpuppet/qml2puppet/qml2puppet.pri @@ -580,7 +438,7 @@ share/qtcreator/qml/qmlpuppet/qml2puppet/qml2puppet.pro share/qtcreator/qml/qmlpuppet/qml2puppet/qml2puppetmain.cpp share/qtcreator/qml/qmlpuppet/qmlpuppet.qrc -share/qtcreator/qml/qmlpuppet/qmlpuppet/Info.plist.in +share/qtcreator/qml/qmlpuppet/qmlpuppet/Info.plist share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/anchorchangesnodeinstance.cpp share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/anchorchangesnodeinstance.h share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/behaviornodeinstance.cpp @@ -630,153 +488,132 @@ share/qtcreator/qml/qmlpuppet/qmlpuppet/qmlpuppet.pro share/qtcreator/qml/qmlpuppet/qmlpuppet/qmlpuppetmain.cpp share/qtcreator/qml/qmlpuppet/qmlpuppet_utilities.pri -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/AlignmentHorizontalButtons.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/AlignmentVerticalButtons.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/AnchorBox.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/AnchorButtons.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/CheckBox.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ColorGroupBox.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ColorLabel.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ColorLineEdit.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ColorScheme.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ColorTypeButtons.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ComboBox.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/DoubleSpinBox.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/DoubleSpinBoxAlternate.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ExpressionEditor.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Extended.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ExtendedFunctionButton.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ExtendedPane.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ExtendedSwitches.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/FlagedButton.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/FontComboBox.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/FontGroupBox.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/FontStyleButtons.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Geometry.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/GroupBox.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/GroupBoxOption.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/HorizontalLayout.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/HorizontalWhiteLine.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/IntEditor.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Label.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Layout.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/LayoutPane.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/LineEdit.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Modifiers.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/PlaceHolder.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/PropertyFrame.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/ScrollArea.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/SliderWidget.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/SpinBox.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/StandardTextColorGroupBox.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/StandardTextGroupBox.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Switches.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/TextEditor.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/TextInputGroupBox.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Transformation.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Type.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/UrlEdit.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/VerticalLayout.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/Visibility.qml -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorbottom.css -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorbox.css -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorfill.css -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorhorizontal.css -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorleft.css -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorright.css -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorspacer.css -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchortop.css -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/anchorvertical.css -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/applybutton.css -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/aspectlock.css -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/cancelbutton.css -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/checkbox_tr.css -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentbottom-h-icon.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentbottom-icon.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentcenterh-h-icon.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentcenterh-icon.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentleft-h-icon.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentleft-icon.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentmiddle-h-icon.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentmiddle-icon.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentright-h-icon.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmentright-icon.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmenttop-h-icon.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/alignmenttop-icon.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/apply.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/behaivour.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/blended-image-icon.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/bold-h-icon.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/bold-icon.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/button.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/cancel.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/default-icon.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/downArrow.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/expression.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/extended.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/grid-icon.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/icon_color_gradient.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/icon_color_none.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/icon_color_solid.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/image-icon.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/italic-h-icon.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/italic-icon.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/item-icon.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/layout.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/leftArrow.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/list-icon.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/mouse-area-icon.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/placeholder.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/rect-icon.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/reset-button.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/rightArrow.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/standard.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/strikeout-h-icon.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/strikeout-icon.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/submenu.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/text-edit-icon.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/text-icon.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/underline-h-icon.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/underline-icon.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/images/upArrow.png -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/layoutWidget.css -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/propertyEditor.css -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/qmldir -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/specialCheckBox.css -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/styledbuttonleft.css -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/styledbuttonmiddle.css -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/styledbuttonright.css -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/switch.css -share/qtcreator/qmldesigner/propertyeditor/HelperWidgets/typeLabel.css -share/qtcreator/qmldesigner/propertyeditor/PropertyTemplates/BooleanEditorTemplate.template -share/qtcreator/qmldesigner/propertyeditor/PropertyTemplates/ColorEditorTemplate.template -share/qtcreator/qmldesigner/propertyeditor/PropertyTemplates/IntEditorTemplate.template -share/qtcreator/qmldesigner/propertyeditor/PropertyTemplates/RealEditorTemplate.template -share/qtcreator/qmldesigner/propertyeditor/PropertyTemplates/StringEditorTemplate.template -share/qtcreator/qmldesigner/propertyeditor/PropertyTemplates/TemplateTypes.qml -share/qtcreator/qmldesigner/propertyeditor/PropertyTemplates/UrlEditorTemplate.template -share/qtcreator/qmldesigner/propertyeditor/QtQuick/BorderImageSpecifics.qml -share/qtcreator/qmldesigner/propertyeditor/QtQuick/FlickableGroupBox.qml -share/qtcreator/qmldesigner/propertyeditor/QtQuick/FlickableSpecifics.qml -share/qtcreator/qmldesigner/propertyeditor/QtQuick/FlipableSpecifics.qml -share/qtcreator/qmldesigner/propertyeditor/QtQuick/FlowSpecifics.qml -share/qtcreator/qmldesigner/propertyeditor/QtQuick/GridSpecifics.qml -share/qtcreator/qmldesigner/propertyeditor/QtQuick/GridViewSpecifics.qml -share/qtcreator/qmldesigner/propertyeditor/QtQuick/ImageSpecifics.qml -share/qtcreator/qmldesigner/propertyeditor/QtQuick/ItemPane.qml -share/qtcreator/qmldesigner/propertyeditor/QtQuick/ListViewSpecifics.qml -share/qtcreator/qmldesigner/propertyeditor/QtQuick/MouseAreaSpecifics.qml -share/qtcreator/qmldesigner/propertyeditor/QtQuick/PathViewSpecifics.qml -share/qtcreator/qmldesigner/propertyeditor/QtQuick/QtObjectPane.qml -share/qtcreator/qmldesigner/propertyeditor/QtQuick/RectangleColorGroupBox.qml -share/qtcreator/qmldesigner/propertyeditor/QtQuick/RectangleSpecifics.qml -share/qtcreator/qmldesigner/propertyeditor/QtQuick/RowSpecifics.qml -share/qtcreator/qmldesigner/propertyeditor/QtQuick/TextEditSpecifics.qml -share/qtcreator/qmldesigner/propertyeditor/QtQuick/TextInputSpecifics.qml -share/qtcreator/qmldesigner/propertyeditor/QtQuick/TextSpecifics.qml -share/qtcreator/qmldesigner/propertyeditor/QtQuick/Window/WindowPane.qml -share/qtcreator/qmldesigner/propertyeditor/QtQuick/emptyPane.qml -share/qtcreator/qmldesigner/propertyeditor/QtWebKit/WebViewSpecifics.qml +share/qtcreator/qml/qmlpuppet/types/enumeration.cpp +share/qtcreator/qml/qmlpuppet/types/enumeration.h +share/qtcreator/qml/qmlpuppet/types/types.pri +share/qtcreator/qmldesigner/common/DesignerScrollViewStyle.qml +share/qtcreator/qmldesigner/itemLibraryQmlSources/ItemDelegate.qml +share/qtcreator/qmldesigner/itemLibraryQmlSources/ItemsView.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/AligmentHorizontalButtons.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/AligmentVerticalButtons.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/AnchorButtons.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/BoolButtonRowButton.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/Button.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ButtonRow.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ButtonRow2.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ButtonRowButton.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/CheckBox.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ColorButton.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ColorCheckButton.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ColorEditor.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ColorLogic.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ComboBox.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/Constants.js +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/CustomCheckBoxStyle.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/CustomComboBoxStyle.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/CustomSpinBoxStyle.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ExpandingSpacer.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ExtendedFunctionButton.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/FlickableSection.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/FontComboBox.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/FontSection.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/FontStyleButtons.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/GradientLine.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/GroupBox.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/HueSlider.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/IconLabel.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/Label.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/LineEdit.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/OriginControl.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/RoundedPanel.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ScrollView.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/SecondColumnLayout.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/Section.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/SectionLayout.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/SliderSpinBox.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/SpinBox.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/StandardTextSection.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/Tab.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/TabView.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/ToolTipArea.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/UrlChooser.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/alignmentbottom-h-icon.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/alignmentbottom-icon.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/alignmentcenterh-h-icon.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/alignmentcenterh-icon.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/alignmentleft-h-icon.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/alignmentleft-icon.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/alignmentmiddle-h-icon.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/alignmentmiddle-icon.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/alignmentright-h-icon.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/alignmentright-icon.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/alignmenttop-h-icon.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/alignmenttop-icon.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/anchor-bottom.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/anchor-fill.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/anchor-horizontal.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/anchor-left.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/anchor-right.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/anchor-top.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/anchor-vertical.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/apply.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/bold-h-icon.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/bold-icon.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/cancel.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/down-arrow.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/expression.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/icon_color_gradient.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/icon_color_none.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/icon_color_solid.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/italic-h-icon.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/italic-icon.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/placeholder.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/strikeout-h-icon.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/strikeout-icon.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/submenu.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/underline-h-icon.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/underline-icon.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/up-arrow.png +share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/qmldir +share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/BooleanEditorTemplate.template +share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/ColorEditorTemplate.template +share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/IntEditorTemplate.template +share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/RealEditorTemplate.template +share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/StringEditorTemplate.template +share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/TemplateTypes.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/UrlEditorTemplate.template +share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/AdvancedSection.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/AnchorRow.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/BorderImageSpecifics.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ColumnSpecifics.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/FlickableSpecifics.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/FlipableSpecifics.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/FlowSpecifics.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GeometrySection.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GridSpecifics.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GridViewSpecifics.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ImageSpecifics.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ItemPane.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/LayoutSection.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ListViewSpecifics.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/MouseAreaSpecifics.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/PathViewSpecifics.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/QtObjectPane.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/RectangleSpecifics.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/RowSpecifics.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TargetComboBox.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TextEditSpecifics.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TextInputSection.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TextInputSpecifics.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TextSpecifics.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Window/WindowSpecifics.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/emptyPane.qml +share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/project.qmlproject +share/qtcreator/qmldesigner/statesEditorQmlSources/DesignerTextFieldStyle.qml +share/qtcreator/qmldesigner/statesEditorQmlSources/StatesDelegate.qml +share/qtcreator/qmldesigner/statesEditorQmlSources/StatesList.qml +share/qtcreator/qmldesigner/statesEditorQmlSources/images/darkclose.png +share/qtcreator/qmldesigner/statesEditorQmlSources/images/plus.png share/qtcreator/qmlicons/Qt/16x16/BorderImage.png share/qtcreator/qmlicons/Qt/16x16/BusyIndicator.png share/qtcreator/qmlicons/Qt/16x16/Button.png @@ -835,46 +672,40 @@ share/qtcreator/snippets/cpp.xml share/qtcreator/snippets/qml.xml share/qtcreator/snippets/text.xml -share/qtcreator/styles/darkvim.xml +share/qtcreator/styles/dark.xml share/qtcreator/styles/default.xml share/qtcreator/styles/grayscale.xml share/qtcreator/styles/inkpot.xml share/qtcreator/styles/intellij.xml -share/qtcreator/templates/html5app/app.pro -share/qtcreator/templates/html5app/html/index.html -share/qtcreator/templates/html5app/html5applicationviewer/html5applicationviewer.cpp -share/qtcreator/templates/html5app/html5applicationviewer/html5applicationviewer.h -share/qtcreator/templates/html5app/html5applicationviewer/html5applicationviewer.pri -share/qtcreator/templates/html5app/html5applicationviewer/touchnavigation/navigationcontroller.cpp -share/qtcreator/templates/html5app/html5applicationviewer/touchnavigation/navigationcontroller.h -share/qtcreator/templates/html5app/html5applicationviewer/touchnavigation/touchnavigation.pri -share/qtcreator/templates/html5app/html5applicationviewer/touchnavigation/webnavigation.cpp -share/qtcreator/templates/html5app/html5applicationviewer/touchnavigation/webnavigation.h -share/qtcreator/templates/html5app/html5applicationviewer/touchnavigation/webtouchevent.cpp -share/qtcreator/templates/html5app/html5applicationviewer/touchnavigation/webtouchevent.h -share/qtcreator/templates/html5app/html5applicationviewer/touchnavigation/webtouchnavigation.cpp -share/qtcreator/templates/html5app/html5applicationviewer/touchnavigation/webtouchnavigation.h -share/qtcreator/templates/html5app/html5applicationviewer/touchnavigation/webtouchphysics.cpp -share/qtcreator/templates/html5app/html5applicationviewer/touchnavigation/webtouchphysics.h -share/qtcreator/templates/html5app/html5applicationviewer/touchnavigation/webtouchphysicsinterface.cpp -share/qtcreator/templates/html5app/html5applicationviewer/touchnavigation/webtouchphysicsinterface.h -share/qtcreator/templates/html5app/html5applicationviewer/touchnavigation/webtouchscroller.cpp -share/qtcreator/templates/html5app/html5applicationviewer/touchnavigation/webtouchscroller.h -share/qtcreator/templates/html5app/main.cpp -share/qtcreator/templates/mobileapp/app.pro -share/qtcreator/templates/mobileapp/main.cpp -share/qtcreator/templates/mobileapp/mainwindow.cpp -share/qtcreator/templates/mobileapp/mainwindow.h -share/qtcreator/templates/mobileapp/mainwindow.ui -share/qtcreator/templates/qml/qtquick1_1/main.qml -share/qtcreator/templates/qml/qtquick1_1/main.qmlproject -share/qtcreator/templates/qml/qtquick1_1/template.xml -share/qtcreator/templates/qml/qtquick2/main.qml -share/qtcreator/templates/qml/qtquick2/main.qmlproject -share/qtcreator/templates/qml/qtquick2/template.xml -share/qtcreator/templates/qml/qtquickcontrols/main.qml -share/qtcreator/templates/qml/qtquickcontrols/main.qmlproject -share/qtcreator/templates/qml/qtquickcontrols/template.xml +share/qtcreator/templates/qml/qtquick_1_1/main.qml +share/qtcreator/templates/qml/qtquick_1_1/main.qmlproject +share/qtcreator/templates/qml/qtquick_1_1/template.xml +share/qtcreator/templates/qml/qtquick_2_1/main.qml +share/qtcreator/templates/qml/qtquick_2_1/main.qmlproject +share/qtcreator/templates/qml/qtquick_2_1/template.xml +share/qtcreator/templates/qml/qtquick_2_2/main.qml +share/qtcreator/templates/qml/qtquick_2_2/main.qmlproject +share/qtcreator/templates/qml/qtquick_2_2/template.xml +share/qtcreator/templates/qml/qtquick_2_3/main.qml +share/qtcreator/templates/qml/qtquick_2_3/main.qmlproject +share/qtcreator/templates/qml/qtquick_2_3/template.xml +share/qtcreator/templates/qml/qtquick_2_4/MainForm.ui.qml +share/qtcreator/templates/qml/qtquick_2_4/main.qml +share/qtcreator/templates/qml/qtquick_2_4/main.qmlproject +share/qtcreator/templates/qml/qtquick_2_4/template.xml +share/qtcreator/templates/qml/qtquickcontrols_1_0/main.qml +share/qtcreator/templates/qml/qtquickcontrols_1_0/main.qmlproject +share/qtcreator/templates/qml/qtquickcontrols_1_0/template.xml +share/qtcreator/templates/qml/qtquickcontrols_1_1/main.qml +share/qtcreator/templates/qml/qtquickcontrols_1_1/main.qmlproject +share/qtcreator/templates/qml/qtquickcontrols_1_1/template.xml +share/qtcreator/templates/qml/qtquickcontrols_1_2/main.qml +share/qtcreator/templates/qml/qtquickcontrols_1_2/main.qmlproject +share/qtcreator/templates/qml/qtquickcontrols_1_2/template.xml +share/qtcreator/templates/qml/qtquickcontrols_1_3/MainForm.ui.qml +share/qtcreator/templates/qml/qtquickcontrols_1_3/main.qml +share/qtcreator/templates/qml/qtquickcontrols_1_3/main.qmlproject +share/qtcreator/templates/qml/qtquickcontrols_1_3/template.xml share/qtcreator/templates/qt4project/customwidgetwizard/tpl_collection.cpp share/qtcreator/templates/qt4project/customwidgetwizard/tpl_collection.h share/qtcreator/templates/qt4project/customwidgetwizard/tpl_plugin.pro @@ -891,58 +722,116 @@ share/qtcreator/templates/qt4project/mywidget_form.cpp share/qtcreator/templates/qt4project/mywidget_form.h share/qtcreator/templates/qt4project/widget.ui -share/qtcreator/templates/qtquick2app/app.pro -share/qtcreator/templates/qtquick2app/main.cpp -share/qtcreator/templates/qtquick2app/qml/app/qtquick20/main.qml -share/qtcreator/templates/qtquick2app/qtquick2applicationviewer/qtquick2applicationviewer.cpp -share/qtcreator/templates/qtquick2app/qtquick2applicationviewer/qtquick2applicationviewer.h -share/qtcreator/templates/qtquick2app/qtquick2applicationviewer/qtquick2applicationviewer.pri -share/qtcreator/templates/qtquickapp/app.pro -share/qtcreator/templates/qtquickapp/main.cpp -share/qtcreator/templates/qtquickapp/qml/app/meego10/MainPage.qml -share/qtcreator/templates/qtquickapp/qml/app/meego10/main.qml -share/qtcreator/templates/qtquickapp/qml/app/qtquick10/main.qml -share/qtcreator/templates/qtquickapp/qmlapplicationviewer/qmlapplicationviewer.cpp -share/qtcreator/templates/qtquickapp/qmlapplicationviewer/qmlapplicationviewer.h -share/qtcreator/templates/qtquickapp/qmlapplicationviewer/qmlapplicationviewer.pri +share/qtcreator/templates/qtquick/qtquick_1_1/app.pro +share/qtcreator/templates/qtquick/qtquick_1_1/main.cpp +share/qtcreator/templates/qtquick/qtquick_1_1/main.qml +share/qtcreator/templates/qtquick/qtquick_1_1/qml.qrc +share/qtcreator/templates/qtquick/qtquick_1_1/template.xml +share/qtcreator/templates/qtquick/qtquick_2_1/app.pro +share/qtcreator/templates/qtquick/qtquick_2_1/main.cpp +share/qtcreator/templates/qtquick/qtquick_2_1/main.qml +share/qtcreator/templates/qtquick/qtquick_2_1/qml.qrc +share/qtcreator/templates/qtquick/qtquick_2_1/template.xml +share/qtcreator/templates/qtquick/qtquick_2_2/app.pro +share/qtcreator/templates/qtquick/qtquick_2_2/main.cpp +share/qtcreator/templates/qtquick/qtquick_2_2/main.qml +share/qtcreator/templates/qtquick/qtquick_2_2/qml.qrc +share/qtcreator/templates/qtquick/qtquick_2_2/template.xml +share/qtcreator/templates/qtquick/qtquick_2_3/app.pro +share/qtcreator/templates/qtquick/qtquick_2_3/main.cpp +share/qtcreator/templates/qtquick/qtquick_2_3/main.qml +share/qtcreator/templates/qtquick/qtquick_2_3/qml.qrc +share/qtcreator/templates/qtquick/qtquick_2_3/template.xml +share/qtcreator/templates/qtquick/qtquick_2_4/MainForm.ui.qml +share/qtcreator/templates/qtquick/qtquick_2_4/app.pro +share/qtcreator/templates/qtquick/qtquick_2_4/main.cpp +share/qtcreator/templates/qtquick/qtquick_2_4/main.qml +share/qtcreator/templates/qtquick/qtquick_2_4/qml.qrc +share/qtcreator/templates/qtquick/qtquick_2_4/template.xml +share/qtcreator/templates/qtquick/qtquickcontrols_1_0/app.pro +share/qtcreator/templates/qtquick/qtquickcontrols_1_0/main.cpp +share/qtcreator/templates/qtquick/qtquickcontrols_1_0/main.qml +share/qtcreator/templates/qtquick/qtquickcontrols_1_0/qml.qrc +share/qtcreator/templates/qtquick/qtquickcontrols_1_0/template.xml +share/qtcreator/templates/qtquick/qtquickcontrols_1_1/app.pro +share/qtcreator/templates/qtquick/qtquickcontrols_1_1/main.cpp +share/qtcreator/templates/qtquick/qtquickcontrols_1_1/main.qml +share/qtcreator/templates/qtquick/qtquickcontrols_1_1/qml.qrc +share/qtcreator/templates/qtquick/qtquickcontrols_1_1/template.xml +share/qtcreator/templates/qtquick/qtquickcontrols_1_2/app.pro +share/qtcreator/templates/qtquick/qtquickcontrols_1_2/main.cpp +share/qtcreator/templates/qtquick/qtquickcontrols_1_2/main.qml +share/qtcreator/templates/qtquick/qtquickcontrols_1_2/qml.qrc +share/qtcreator/templates/qtquick/qtquickcontrols_1_2/template.xml +share/qtcreator/templates/qtquick/qtquickcontrols_1_3/MainForm.ui.qml +share/qtcreator/templates/qtquick/qtquickcontrols_1_3/app.pro +share/qtcreator/templates/qtquick/qtquickcontrols_1_3/main.cpp +share/qtcreator/templates/qtquick/qtquickcontrols_1_3/main.qml +share/qtcreator/templates/qtquick/qtquickcontrols_1_3/qml.qrc +share/qtcreator/templates/qtquick/qtquickcontrols_1_3/template.xml share/qtcreator/templates/shared/app.desktop share/qtcreator/templates/shared/deployment.pri -share/qtcreator/templates/shared/icon64.png -share/qtcreator/templates/shared/icon80.png share/qtcreator/templates/shared/manifest.aegis +share/qtcreator/templates/shared/qrcdeployment.pri +share/qtcreator/templates/shared/qtquickapplicationviewer/qtquick1applicationviewer/qtquick1applicationviewer.cpp +share/qtcreator/templates/shared/qtquickapplicationviewer/qtquick1applicationviewer/qtquick1applicationviewer.h +share/qtcreator/templates/shared/qtquickapplicationviewer/qtquick1applicationviewer/qtquick1applicationviewer.pri share/qtcreator/templates/wizards/README.txt share/qtcreator/templates/wizards/bb-bardescriptor/bar-descriptor.xml share/qtcreator/templates/wizards/bb-bardescriptor/wizard.xml -share/qtcreator/templates/wizards/bb-cascades-app/assets/SecondPage.qml share/qtcreator/templates/wizards/bb-cascades-app/assets/main.qml share/qtcreator/templates/wizards/bb-cascades-app/bar-descriptor.xml share/qtcreator/templates/wizards/bb-cascades-app/icon.png -share/qtcreator/templates/wizards/bb-cascades-app/main.cpp -share/qtcreator/templates/wizards/bb-cascades-app/project.cpp -share/qtcreator/templates/wizards/bb-cascades-app/project.hpp share/qtcreator/templates/wizards/bb-cascades-app/project.pro +share/qtcreator/templates/wizards/bb-cascades-app/src/applicationui.cpp +share/qtcreator/templates/wizards/bb-cascades-app/src/applicationui.h +share/qtcreator/templates/wizards/bb-cascades-app/src/main.cpp share/qtcreator/templates/wizards/bb-cascades-app/wizard.xml -share/qtcreator/templates/wizards/bb-guiapp/bar-descriptor.xml -share/qtcreator/templates/wizards/bb-guiapp/icon.png -share/qtcreator/templates/wizards/bb-guiapp/main.cpp -share/qtcreator/templates/wizards/bb-guiapp/mainwidget.cpp -share/qtcreator/templates/wizards/bb-guiapp/mainwidget.h -share/qtcreator/templates/wizards/bb-guiapp/mainwidget.ui -share/qtcreator/templates/wizards/bb-guiapp/project.pro -share/qtcreator/templates/wizards/bb-guiapp/wizard.xml share/qtcreator/templates/wizards/bb-qt5-bardescriptor/bar-descriptor.xml share/qtcreator/templates/wizards/bb-qt5-bardescriptor/wizard.xml -share/qtcreator/templates/wizards/bb-qt5-guiapp/bar-descriptor.xml -share/qtcreator/templates/wizards/bb-qt5-guiapp/icon.png -share/qtcreator/templates/wizards/bb-qt5-guiapp/main.cpp -share/qtcreator/templates/wizards/bb-qt5-guiapp/mainwidget.cpp -share/qtcreator/templates/wizards/bb-qt5-guiapp/mainwidget.h -share/qtcreator/templates/wizards/bb-qt5-guiapp/mainwidget.ui -share/qtcreator/templates/wizards/bb-qt5-guiapp/project.pro -share/qtcreator/templates/wizards/bb-qt5-guiapp/wizard.xml +share/qtcreator/templates/wizards/classes/cpp/file.cpp +share/qtcreator/templates/wizards/classes/cpp/file.h +share/qtcreator/templates/wizards/classes/cpp/wizard.json +share/qtcreator/templates/wizards/classes/python/file.py +share/qtcreator/templates/wizards/classes/python/wizard.json +share/qtcreator/templates/wizards/classes/qtquickui/file.qml.tpl +share/qtcreator/templates/wizards/classes/qtquickui/fileForm.ui.qml.tpl +share/qtcreator/templates/wizards/classes/qtquickui/wizard.json share/qtcreator/templates/wizards/codesnippet/main.cpp share/qtcreator/templates/wizards/codesnippet/project.pro share/qtcreator/templates/wizards/codesnippet/wizard.xml +share/qtcreator/templates/wizards/files/cppheader/file.h +share/qtcreator/templates/wizards/files/cppheader/wizard.json +share/qtcreator/templates/wizards/files/cppsource/file.cpp +share/qtcreator/templates/wizards/files/cppsource/wizard.json +share/qtcreator/templates/wizards/files/form/file.ui +share/qtcreator/templates/wizards/files/form/wizard.json +share/qtcreator/templates/wizards/files/glsl/gl/fragment/file.frag +share/qtcreator/templates/wizards/files/glsl/gl/fragment/wizard.json +share/qtcreator/templates/wizards/files/glsl/gl/vertex/file.vert +share/qtcreator/templates/wizards/files/glsl/gl/vertex/wizard.json +share/qtcreator/templates/wizards/files/glsl/gles/fragment/file.fsh +share/qtcreator/templates/wizards/files/glsl/gles/fragment/wizard.json +share/qtcreator/templates/wizards/files/glsl/gles/vertex/file.vsh +share/qtcreator/templates/wizards/files/glsl/gles/vertex/wizard.json +share/qtcreator/templates/wizards/files/java/source.java +share/qtcreator/templates/wizards/files/java/wizard.json +share/qtcreator/templates/wizards/files/js/file.js +share/qtcreator/templates/wizards/files/js/wizard.json +share/qtcreator/templates/wizards/files/python/file.py +share/qtcreator/templates/wizards/files/python/wizard.json +share/qtcreator/templates/wizards/files/qrc/file.qrc +share/qtcreator/templates/wizards/files/qrc/wizard.json +share/qtcreator/templates/wizards/files/qtquick1/file.qml +share/qtcreator/templates/wizards/files/qtquick1/wizard.json +share/qtcreator/templates/wizards/files/qtquick2/file.qml +share/qtcreator/templates/wizards/files/qtquick2/wizard.json +share/qtcreator/templates/wizards/files/scratch/file.txt +share/qtcreator/templates/wizards/files/scratch/wizard.json +share/qtcreator/templates/wizards/files/text/file.txt +share/qtcreator/templates/wizards/files/text/wizard.json +share/qtcreator/templates/wizards/global/genericfilewizard.png +share/qtcreator/templates/wizards/global/guiapplication.png share/qtcreator/templates/wizards/helloworld/console.png share/qtcreator/templates/wizards/helloworld/main.cpp share/qtcreator/templates/wizards/helloworld/project.pro @@ -950,27 +839,29 @@ share/qtcreator/templates/wizards/listmodel/listmodel.cpp share/qtcreator/templates/wizards/listmodel/listmodel.h share/qtcreator/templates/wizards/listmodel/wizard_sample.xml -share/qtcreator/templates/wizards/plaincapp-cmake/CMakeLists.txt -share/qtcreator/templates/wizards/plaincapp-cmake/console.png -share/qtcreator/templates/wizards/plaincapp-cmake/main.c -share/qtcreator/templates/wizards/plaincapp-cmake/wizard.xml -share/qtcreator/templates/wizards/plaincapp/console.png -share/qtcreator/templates/wizards/plaincapp/main.c -share/qtcreator/templates/wizards/plaincapp/project.pro -share/qtcreator/templates/wizards/plaincapp/wizard.xml -share/qtcreator/templates/wizards/plaincppapp-cmake/CMakeLists.txt -share/qtcreator/templates/wizards/plaincppapp-cmake/console.png -share/qtcreator/templates/wizards/plaincppapp-cmake/main.cpp -share/qtcreator/templates/wizards/plaincppapp-cmake/wizard.xml -share/qtcreator/templates/wizards/plaincppapp/console.png -share/qtcreator/templates/wizards/plaincppapp/main.cpp -share/qtcreator/templates/wizards/plaincppapp/project.pro -share/qtcreator/templates/wizards/plaincppapp/wizard.xml -share/qtcreator/templates/wizards/qtcreatorplugin/MyPlugin.pluginspec.in +share/qtcreator/templates/wizards/plaincapp/cmake/CMakeLists.txt +share/qtcreator/templates/wizards/plaincapp/cmake/wizard.xml +share/qtcreator/templates/wizards/plaincapp/common/console.png +share/qtcreator/templates/wizards/plaincapp/common/main.c +share/qtcreator/templates/wizards/plaincapp/qbs/project.qbs +share/qtcreator/templates/wizards/plaincapp/qbs/wizard.xml +share/qtcreator/templates/wizards/plaincapp/qmake/project.pro +share/qtcreator/templates/wizards/plaincapp/qmake/wizard.xml +share/qtcreator/templates/wizards/plaincppapp/cmake/CMakeLists.txt +share/qtcreator/templates/wizards/plaincppapp/cmake/wizard.xml +share/qtcreator/templates/wizards/plaincppapp/common/console.png +share/qtcreator/templates/wizards/plaincppapp/common/main.cpp +share/qtcreator/templates/wizards/plaincppapp/qbs/project.qbs +share/qtcreator/templates/wizards/plaincppapp/qbs/wizard.xml +share/qtcreator/templates/wizards/plaincppapp/qmake/project.pro +share/qtcreator/templates/wizards/plaincppapp/qmake/wizard.xml +share/qtcreator/templates/wizards/projects/qmake/empty/file.pro +share/qtcreator/templates/wizards/projects/qmake/empty/wizard.json +share/qtcreator/templates/wizards/projects/qmake/git.ignore +share/qtcreator/templates/wizards/qtcreatorplugin/MyPlugin.json.in share/qtcreator/templates/wizards/qtcreatorplugin/myplugin.cpp share/qtcreator/templates/wizards/qtcreatorplugin/myplugin.h share/qtcreator/templates/wizards/qtcreatorplugin/myplugin.pro -share/qtcreator/templates/wizards/qtcreatorplugin/myplugin_dependencies.pri share/qtcreator/templates/wizards/qtcreatorplugin/myplugin_global.h share/qtcreator/templates/wizards/qtcreatorplugin/mypluginconstants.h share/qtcreator/templates/wizards/qtcreatorplugin/qtcreator_logo_24.png @@ -993,6 +884,8 @@ share/qtcreator/templates/wizards/qtquick2-extension/wizard.xml share/qtcreator/templates/wizards/scriptgeneratedproject/generate.pl share/qtcreator/templates/wizards/scriptgeneratedproject/wizard_sample.xml +share/qtcreator/themes/dark.creatortheme +share/qtcreator/themes/default.creatortheme share/qtcreator/translations/qtcreator_cs.qm share/qtcreator/translations/qtcreator_de.qm share/qtcreator/translations/qtcreator_fr.qm @@ -1009,24 +902,23 @@ share/qtcreator/welcomescreen/dummydata/sessionList.qml share/qtcreator/welcomescreen/dummydata/tutorialsModel.qml share/qtcreator/welcomescreen/examples.qml -share/qtcreator/welcomescreen/examples_fallback.xml -share/qtcreator/welcomescreen/gettingstarted.qml share/qtcreator/welcomescreen/images_areaofinterest.xml share/qtcreator/welcomescreen/qtcreator_tutorials.xml share/qtcreator/welcomescreen/tutorials.qml share/qtcreator/welcomescreen/welcomescreen.qml share/qtcreator/welcomescreen/welcomescreen.qmlproject +share/qtcreator/welcomescreen/widgets/Button.qml share/qtcreator/welcomescreen/widgets/ComboBox.qml -share/qtcreator/welcomescreen/widgets/CustomColors.qml share/qtcreator/welcomescreen/widgets/CustomFonts.qml share/qtcreator/welcomescreen/widgets/CustomTab.qml share/qtcreator/welcomescreen/widgets/CustomizedGridView.qml share/qtcreator/welcomescreen/widgets/Delegate.qml -share/qtcreator/welcomescreen/widgets/GettingStartedItem.qml share/qtcreator/welcomescreen/widgets/IconAndLink.qml +share/qtcreator/welcomescreen/widgets/LeftSideBar.qml share/qtcreator/welcomescreen/widgets/LinkedText.qml share/qtcreator/welcomescreen/widgets/LinksBar.qml share/qtcreator/welcomescreen/widgets/Logo.qml +share/qtcreator/welcomescreen/widgets/NativeText.qml share/qtcreator/welcomescreen/widgets/PageCaption.qml share/qtcreator/welcomescreen/widgets/PageLoader.qml share/qtcreator/welcomescreen/widgets/ProjectItem.qml @@ -1034,6 +926,8 @@ share/qtcreator/welcomescreen/widgets/SearchBar.qml share/qtcreator/welcomescreen/widgets/SessionItem.qml share/qtcreator/welcomescreen/widgets/Sessions.qml +share/qtcreator/welcomescreen/widgets/SideBar.qml +share/qtcreator/welcomescreen/widgets/Tabs.qml share/qtcreator/welcomescreen/widgets/ToolTip.qml share/qtcreator/welcomescreen/widgets/dummydata/context/ExampleDelegate.qml share/qtcreator/welcomescreen/widgets/dummydata/context/ExampleGridView.qml @@ -1043,39 +937,37 @@ share/qtcreator/welcomescreen/widgets/dummydata/tabsModel.qml share/qtcreator/welcomescreen/widgets/images/arrowBig.png share/qtcreator/welcomescreen/widgets/images/arrow_down.png +share/qtcreator/welcomescreen/widgets/images/arrow_down@2x.png share/qtcreator/welcomescreen/widgets/images/arrow_up.png +share/qtcreator/welcomescreen/widgets/images/arrow_up@2x.png +share/qtcreator/welcomescreen/widgets/images/background.png share/qtcreator/welcomescreen/widgets/images/bullet.png share/qtcreator/welcomescreen/widgets/images/dropshadow.png -share/qtcreator/welcomescreen/widgets/images/gettingStarted01.png -share/qtcreator/welcomescreen/widgets/images/gettingStarted02.png -share/qtcreator/welcomescreen/widgets/images/gettingStarted03.png -share/qtcreator/welcomescreen/widgets/images/gettingStarted04.png share/qtcreator/welcomescreen/widgets/images/icons/adressbook.png +share/qtcreator/welcomescreen/widgets/images/icons/androidapp.png +share/qtcreator/welcomescreen/widgets/images/icons/blogs.png share/qtcreator/welcomescreen/widgets/images/icons/buildrun.png share/qtcreator/welcomescreen/widgets/images/icons/clone.png -share/qtcreator/welcomescreen/widgets/images/icons/communityIcon.png +share/qtcreator/welcomescreen/widgets/images/icons/clone@2x.png share/qtcreator/welcomescreen/widgets/images/icons/components.png -share/qtcreator/welcomescreen/widgets/images/icons/createIcon.png -share/qtcreator/welcomescreen/widgets/images/icons/ddays09.png -share/qtcreator/welcomescreen/widgets/images/icons/ddays10.png -share/qtcreator/welcomescreen/widgets/images/icons/ddays11.png share/qtcreator/welcomescreen/widgets/images/icons/ddays12.png +share/qtcreator/welcomescreen/widgets/images/icons/ddays13.png share/qtcreator/welcomescreen/widgets/images/icons/delete.png +share/qtcreator/welcomescreen/widgets/images/icons/delete@2x.png share/qtcreator/welcomescreen/widgets/images/icons/developing_with_qt_creator.png -share/qtcreator/welcomescreen/widgets/images/icons/feedbackIcon.png -share/qtcreator/welcomescreen/widgets/images/icons/ico_community.png -share/qtcreator/welcomescreen/widgets/images/icons/labsIcon.png -share/qtcreator/welcomescreen/widgets/images/icons/openIcon.png -share/qtcreator/welcomescreen/widgets/images/icons/qt_quick_1.png -share/qtcreator/welcomescreen/widgets/images/icons/qt_quick_2.png -share/qtcreator/welcomescreen/widgets/images/icons/qt_quick_3.png +share/qtcreator/welcomescreen/widgets/images/icons/onlineCommunity.png +share/qtcreator/welcomescreen/widgets/images/icons/qt_account.png +share/qtcreator/welcomescreen/widgets/images/icons/qt_cloud.png share/qtcreator/welcomescreen/widgets/images/icons/qt_sdk.png share/qtcreator/welcomescreen/widgets/images/icons/qtquick.png share/qtcreator/welcomescreen/widgets/images/icons/qwidget.png share/qtcreator/welcomescreen/widgets/images/icons/rename.png -share/qtcreator/welcomescreen/widgets/images/icons/userguideIcon.png +share/qtcreator/welcomescreen/widgets/images/icons/rename@2x.png +share/qtcreator/welcomescreen/widgets/images/icons/tutorialicon.png +share/qtcreator/welcomescreen/widgets/images/icons/userGuide.png share/qtcreator/welcomescreen/widgets/images/icons/videoIcon.png share/qtcreator/welcomescreen/widgets/images/info.png +share/qtcreator/welcomescreen/widgets/images/info@2x.png share/qtcreator/welcomescreen/widgets/images/mockup/designer-examples.png share/qtcreator/welcomescreen/widgets/images/mockup/desktop-examples.png share/qtcreator/welcomescreen/widgets/images/mockup/draganddrop-examples.png @@ -1088,6 +980,11 @@ share/qtcreator/welcomescreen/widgets/images/mockup/qtscript-examples.png share/qtcreator/welcomescreen/widgets/images/mockup/thread-examples.png share/qtcreator/welcomescreen/widgets/images/more.png +share/qtcreator/welcomescreen/widgets/images/new.png +share/qtcreator/welcomescreen/widgets/images/open.png +share/qtcreator/welcomescreen/widgets/images/project.png +share/qtcreator/welcomescreen/widgets/images/project@2x.png share/qtcreator/welcomescreen/widgets/images/qtcreator.png +share/qtcreator/welcomescreen/widgets/images/sessions.png share/qtcreator/welcomescreen/widgets/images/tab.png share/qtcreator/welcomescreen/widgets/qmldir