forked from qt-creator/qt-creator
Prepare merge of qds-1.59 to 4.13
It is not compiling but we are closing this branch anyway. Change-Id: If96318175d92ae492871d668d5c937c473fd05d5 Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
@@ -55,4 +55,5 @@ SOURCES += $$PWD/qt5nodeinstanceserver.cpp \
|
|||||||
$$PWD/positionernodeinstance.cpp \
|
$$PWD/positionernodeinstance.cpp \
|
||||||
$$PWD/layoutnodeinstance.cpp \
|
$$PWD/layoutnodeinstance.cpp \
|
||||||
$$PWD/qt3dpresentationnodeinstance.cpp \
|
$$PWD/qt3dpresentationnodeinstance.cpp \
|
||||||
$$PWD/quick3dnodeinstance.cpp
|
$$PWD/quick3dnodeinstance.cpp \
|
||||||
|
$$PWD/quick3dtexturenodeinstance.cpp
|
||||||
|
@@ -29,6 +29,7 @@
|
|||||||
#include "nodeinstanceview.h"
|
#include "nodeinstanceview.h"
|
||||||
|
|
||||||
#include <QLocalSocket>
|
#include <QLocalSocket>
|
||||||
|
#include <QTimer>
|
||||||
|
|
||||||
namespace QmlDesigner {
|
namespace QmlDesigner {
|
||||||
|
|
||||||
|
@@ -27,6 +27,10 @@
|
|||||||
|
|
||||||
#include <coreplugin/messagebox.h>
|
#include <coreplugin/messagebox.h>
|
||||||
|
|
||||||
|
#include <QCoreApplication>
|
||||||
|
#include <QDebug>
|
||||||
|
#include <QTimer>
|
||||||
|
|
||||||
namespace QmlDesigner {
|
namespace QmlDesigner {
|
||||||
|
|
||||||
void CapturingConnectionManager::setUp(NodeInstanceServerProxy *nodeInstanceServerProxy,
|
void CapturingConnectionManager::setUp(NodeInstanceServerProxy *nodeInstanceServerProxy,
|
||||||
|
@@ -37,6 +37,7 @@
|
|||||||
|
|
||||||
#include <QLocalServer>
|
#include <QLocalServer>
|
||||||
#include <QLocalSocket>
|
#include <QLocalSocket>
|
||||||
|
#include <QTimer>
|
||||||
#include <QUuid>
|
#include <QUuid>
|
||||||
|
|
||||||
namespace QmlDesigner {
|
namespace QmlDesigner {
|
||||||
|
@@ -27,6 +27,7 @@
|
|||||||
|
|
||||||
#include <QLocalSocket>
|
#include <QLocalSocket>
|
||||||
#include <QProcess>
|
#include <QProcess>
|
||||||
|
#include <QTimer>
|
||||||
|
|
||||||
namespace QmlDesigner {
|
namespace QmlDesigner {
|
||||||
|
|
||||||
|
@@ -26,6 +26,7 @@
|
|||||||
#include "qprocessuniqueptr.h"
|
#include "qprocessuniqueptr.h"
|
||||||
#include <qmldesignercorelib_global.h>
|
#include <qmldesignercorelib_global.h>
|
||||||
|
|
||||||
|
#include <QTimer>
|
||||||
|
|
||||||
QT_BEGIN_NAMESPACE
|
QT_BEGIN_NAMESPACE
|
||||||
class QLocalSocket;
|
class QLocalSocket;
|
||||||
|
@@ -32,6 +32,7 @@
|
|||||||
#include <coreplugin/messagebox.h>
|
#include <coreplugin/messagebox.h>
|
||||||
|
|
||||||
#include <QLocalSocket>
|
#include <QLocalSocket>
|
||||||
|
#include <QTimer>
|
||||||
|
|
||||||
namespace QmlDesigner {
|
namespace QmlDesigner {
|
||||||
|
|
||||||
|
@@ -134,6 +134,7 @@ Project {
|
|||||||
"commands/changestatecommand.h",
|
"commands/changestatecommand.h",
|
||||||
"commands/changevaluescommand.cpp",
|
"commands/changevaluescommand.cpp",
|
||||||
"commands/changevaluescommand.h",
|
"commands/changevaluescommand.h",
|
||||||
|
"commands/captureddatacommand.h",
|
||||||
"commands/childrenchangedcommand.cpp",
|
"commands/childrenchangedcommand.cpp",
|
||||||
"commands/childrenchangedcommand.h",
|
"commands/childrenchangedcommand.h",
|
||||||
"commands/clearscenecommand.cpp",
|
"commands/clearscenecommand.cpp",
|
||||||
|
@@ -10,6 +10,7 @@ add_qtc_plugin(QmlPreview
|
|||||||
qmldebugtranslationclient.cpp qmldebugtranslationclient.h
|
qmldebugtranslationclient.cpp qmldebugtranslationclient.h
|
||||||
qmlpreview_global.h
|
qmlpreview_global.h
|
||||||
projectfileselectionswidget.cpp projectfileselectionswidget.h
|
projectfileselectionswidget.cpp projectfileselectionswidget.h
|
||||||
|
qmldebugtranslationwidget.cpp qmldebugtranslationwidget.h
|
||||||
)
|
)
|
||||||
|
|
||||||
extend_qtc_plugin(QmlPreview
|
extend_qtc_plugin(QmlPreview
|
||||||
|
@@ -288,7 +288,8 @@ void QmlDebugTranslationWidget::runTest()
|
|||||||
connect(runControl, &ProjectExplorer::RunControl::started, [this, runControl, previewPlugin]() {
|
connect(runControl, &ProjectExplorer::RunControl::started, [this, runControl, previewPlugin]() {
|
||||||
//Q_ASSERT(m_currentRunControl == nullptr); //TODO: who deletes the runcontrol
|
//Q_ASSERT(m_currentRunControl == nullptr); //TODO: who deletes the runcontrol
|
||||||
m_currentRunControl = runControl;
|
m_currentRunControl = runControl;
|
||||||
m_runOutputWindow->setFormatter(runControl->outputFormatter());
|
m_runOutputWindow->setLineParsers(
|
||||||
|
ProjectExplorer::OutputFormatterFactory::createFormatters(runControl->target()));
|
||||||
int timerCounter = 1;
|
int timerCounter = 1;
|
||||||
const auto testLanguageList = m_testLanguages;
|
const auto testLanguageList = m_testLanguages;
|
||||||
|
|
||||||
@@ -414,11 +415,6 @@ void QmlDebugTranslationWidget::appendMessage(const QString &message, Utils::Out
|
|||||||
fileLine = qmlLineColumnMatch.captured(2).toInt();
|
fileLine = qmlLineColumnMatch.captured(2).toInt();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!m_runOutputWindow->formatter()) {
|
|
||||||
auto defaultFormatter = new Utils::OutputFormatter();
|
|
||||||
defaultFormatter->setParent(this);
|
|
||||||
m_runOutputWindow->setFormatter(defaultFormatter);
|
|
||||||
}
|
|
||||||
m_runOutputWindow->appendMessage(message, format);
|
m_runOutputWindow->appendMessage(message, format);
|
||||||
|
|
||||||
|
|
||||||
|
@@ -52,7 +52,7 @@ extend_qtc_executable(qml2puppet
|
|||||||
inputeventcommand.cpp inputeventcommand.h
|
inputeventcommand.cpp inputeventcommand.h
|
||||||
view3dactioncommand.cpp view3dactioncommand.h
|
view3dactioncommand.cpp view3dactioncommand.h
|
||||||
valueschangedcommand.cpp
|
valueschangedcommand.cpp
|
||||||
captureddatacommand.cpp captureddatacommand.h
|
captureddatacommand.h
|
||||||
)
|
)
|
||||||
|
|
||||||
extend_qtc_executable(qml2puppet
|
extend_qtc_executable(qml2puppet
|
||||||
|
@@ -107,7 +107,6 @@ QtcTool {
|
|||||||
"commands/inputeventcommand.h",
|
"commands/inputeventcommand.h",
|
||||||
"commands/view3dactioncommand.cpp",
|
"commands/view3dactioncommand.cpp",
|
||||||
"commands/view3dactioncommand.h",
|
"commands/view3dactioncommand.h",
|
||||||
"commands/captureddatacommand.cpp",
|
|
||||||
"commands/captureddatacommand.h",
|
"commands/captureddatacommand.h",
|
||||||
"container/addimportcontainer.cpp",
|
"container/addimportcontainer.cpp",
|
||||||
"container/addimportcontainer.h",
|
"container/addimportcontainer.h",
|
||||||
|
Reference in New Issue
Block a user