2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2011-05-12 16:22:51 +02:00
|
|
|
**
|
2016-01-15 14:59:14 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2011-05-12 16:22:51 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2011-05-12 16:22:51 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Commercial License Usage
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2016-01-15 14:59:14 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2011-05-12 16:22:51 +02:00
|
|
|
**
|
2015-09-18 11:34:48 +02:00
|
|
|
** GNU General Public License Usage
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
2016-01-15 14:59:14 +01:00
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2011-05-12 16:22:51 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2011-05-12 16:22:51 +02:00
|
|
|
|
2011-06-09 15:50:48 +02:00
|
|
|
#include "qt5nodeinstanceclientproxy.h"
|
2011-05-12 16:22:51 +02:00
|
|
|
|
2011-06-09 15:50:48 +02:00
|
|
|
#include <QCoreApplication>
|
|
|
|
|
|
|
|
#include "qt5informationnodeinstanceserver.h"
|
|
|
|
#include "qt5previewnodeinstanceserver.h"
|
|
|
|
#include "qt5rendernodeinstanceserver.h"
|
2013-07-04 17:06:31 +02:00
|
|
|
#include "qt5testnodeinstanceserver.h"
|
2011-05-12 16:22:51 +02:00
|
|
|
|
2015-07-14 12:06:07 +02:00
|
|
|
#include <designersupportdelegate.h>
|
2012-10-08 13:40:43 +02:00
|
|
|
|
2014-08-05 16:33:22 +02:00
|
|
|
#if defined(Q_OS_UNIX)
|
|
|
|
#include <unistd.h>
|
|
|
|
#elif defined(Q_OS_WIN)
|
2018-07-19 00:07:58 +03:00
|
|
|
#include <windows.h>
|
2014-08-05 16:33:22 +02:00
|
|
|
#endif
|
|
|
|
|
2011-05-12 16:22:51 +02:00
|
|
|
namespace QmlDesigner {
|
2014-08-05 16:33:22 +02:00
|
|
|
static void prioritizeDown()
|
|
|
|
{
|
|
|
|
#if defined(Q_OS_UNIX)
|
|
|
|
nice(19);
|
|
|
|
#elif defined(Q_OS_WIN)
|
|
|
|
SetPriorityClass(GetCurrentProcess(), BELOW_NORMAL_PRIORITY_CLASS);
|
|
|
|
#endif
|
|
|
|
}
|
2011-05-12 16:22:51 +02:00
|
|
|
|
2011-06-09 15:50:48 +02:00
|
|
|
Qt5NodeInstanceClientProxy::Qt5NodeInstanceClientProxy(QObject *parent) :
|
|
|
|
NodeInstanceClientProxy(parent)
|
2011-05-12 16:22:51 +02:00
|
|
|
{
|
2014-08-05 16:33:22 +02:00
|
|
|
prioritizeDown();
|
2020-03-02 15:51:28 +02:00
|
|
|
DesignerSupport::activateDesignerWindowManager();
|
2013-07-04 17:06:31 +02:00
|
|
|
if (QCoreApplication::arguments().at(1) == QLatin1String("--readcapturedstream")) {
|
|
|
|
qputenv("DESIGNER_DONT_USE_SHARED_MEMORY", "1");
|
|
|
|
setNodeInstanceServer(new Qt5TestNodeInstanceServer(this));
|
|
|
|
initializeCapturedStream(QCoreApplication::arguments().at(2));
|
|
|
|
readDataStream();
|
|
|
|
QCoreApplication::exit();
|
|
|
|
} else if (QCoreApplication::arguments().at(2) == QLatin1String("previewmode")) {
|
2011-06-09 15:50:48 +02:00
|
|
|
setNodeInstanceServer(new Qt5PreviewNodeInstanceServer(this));
|
2013-07-04 17:06:31 +02:00
|
|
|
initializeSocket();
|
2011-06-09 15:50:48 +02:00
|
|
|
} else if (QCoreApplication::arguments().at(2) == QLatin1String("editormode")) {
|
|
|
|
setNodeInstanceServer(new Qt5InformationNodeInstanceServer(this));
|
2013-07-04 17:06:31 +02:00
|
|
|
initializeSocket();
|
2011-06-09 15:50:48 +02:00
|
|
|
} else if (QCoreApplication::arguments().at(2) == QLatin1String("rendermode")) {
|
|
|
|
setNodeInstanceServer(new Qt5RenderNodeInstanceServer(this));
|
2013-07-04 17:06:31 +02:00
|
|
|
initializeSocket();
|
2011-06-09 15:50:48 +02:00
|
|
|
}
|
|
|
|
}
|
2011-05-12 16:22:51 +02:00
|
|
|
|
|
|
|
} // namespace QmlDesigner
|